:root {
  --primary-color: #f7b34f;
  --primary-dark: #f19a3e;
  --primary-light: #a5b4fc;
  --bg-light: #2a2a2a;
  --bg-lighter: #3a3a3a;
  --bg-card: #2a2a2a;
  --bg-card-hover: #3a3a3a;
  --text-primary: #ffffff;
  --text-secondary: lightgray;
  --text-muted: #64748b;
  --border-color: #2a2a2a;
  --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.15);
  --border-radius: 12px;
  --max-width: 1200px;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.loading-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Loader Animation */
.loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 6rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: pulsOut 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
}
.loader:before {
  width: 100%;
  padding-bottom: 100%;
  box-shadow: inset 0 0 0 1rem #fff;
  animation-name: pulsIn;
}
.loader:after {
  width: calc(100% - 2rem);
  padding-bottom: calc(100% - 2rem);
  box-shadow: 0 0 0 0 #fff;
}

@keyframes pulsIn {
  0% {
    box-shadow: inset 0 0 0 1rem #fff;
    opacity: 1;
  }
  50%,
  100% {
    box-shadow: inset 0 0 0 0 #fff;
    opacity: 0;
  }
}

@keyframes pulsOut {
  0%,
  50% {
    box-shadow: 0 0 0 0 #fff;
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 1rem #fff;
    opacity: 1;
  }
}

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Exo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
} */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 16px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

/* Buttons */
.cta-button {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.nav-cta {
  font-size: 14px;
  padding: 10px 20px;
}

/* Global Highlight */
.highlight-primary {
  color: var(--primary-color);
  font-weight: 600;
}

/* .highlight-accent {
  color: #f7b34f;
  font-weight: 600;
} */

/* Hero Section */
/* .hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-accent {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #f7b34f;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero h2 .text-highlight {
  position: relative;
  display: inline-block;
  z-index: 2;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  background: #f7b34f;
  -webkit-background-clip: initial !important;
  font-size: 24px;
  border-radius: 20px;
  font-weight: 200;
  padding: 0 10px;
  line-height: 29px;
  padding-bottom: 4px;
}

.hero h2 .text-red {
  background: #ef4444 !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  padding: 0px 10px 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin: 0 4px;
}

.hero-description {
  font-size: 18px;
  max-width: 600px;
  margin: 0 0 40px;
  color: var(--text-secondary);
  line-height: 1.8;
} */

.hero-cta {
  font-size: 18px;
  padding: 16px 32px;
}

/* AI Secretary Section */
.ai-secretary {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.ai-secretary-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-secretary-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ai-personalities {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.personality-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.personality-card:hover {
  transform: translateY(-8px);
}

.personality-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
  border: 3px solid var(--bg-light);
}

.personality-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.personality-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Pain Points Section */
.pain-points {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
}

.pain-points-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pain-point {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}

.pain-question {
  color: var(--text-secondary);
  font-weight: 400;
}

.pain-answer {
  color: var(--primary-color);
  font-weight: 700;
  margin-left: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Signal Noise Section */
.signal-noise {
  padding-bottom: 80px;
  background: var(--bg-light);
  text-align: center;
}

.signal-noise-content h2 {
  font-size: 36px;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: var(--bg-lighter);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 60px;
  color: var(--text-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.benefit-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Action Items Showcase Section */
.action-items-showcase {
  position: relative;
  min-height: 600px;
  background-image: url("/images/01-mock-actions.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.action-items-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.showcase-content {
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 2;
  text-align: left;
  max-width: 500px;
}

.showcase-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.action-items-showcase .highlight-primary {
  color: #f7b34f;
  font-weight: 800;
}

.showcase-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Notifications Showcase Section */
.notifications-showcase {
  position: relative;
  min-height: 600px;
  background-image: url("/images/04-mock-notifs.png");
  background-size: cover;
  background-position: center 75%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.notifications-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.notifications-showcase .showcase-content {
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 2;
  text-align: left;
  max-width: 500px;
}

.notifications-showcase .showcase-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.notifications-showcase .highlight-primary {
  color: #f7b34f;
  font-weight: 800;
}

.notifications-showcase .showcase-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Demo Video Section */
.demo-video {
  padding: 80px 0;
  background: var(--bg-light);
}

.video-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.video-showcase {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.main-video {
  width: 100%;
}

.video-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 500px;
  overflow-y: auto;
  padding: 4px;
}

.video-thumbnails::-webkit-scrollbar {
  width: 6px;
}

.video-thumbnails::-webkit-scrollbar-track {
  background: var(--bg-lighter);
  border-radius: 3px;
}

.video-thumbnails::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

.thumbnail-card {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid transparent;
}

.thumbnail-card:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-medium);
}

.thumbnail-card.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.thumbnail-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.thumbnail-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumbnail-card:hover .thumbnail-preview img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.thumbnail-card:hover .play-overlay {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.thumbnail-title {
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-card);
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .video-showcase {
    grid-template-columns: 1fr;
  }

  .video-thumbnails {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .thumbnail-card {
    min-width: 200px;
  }
}

.video-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.demo-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Privacy Section */
.privacy {
  padding: 80px 0;
  background: var(--bg-lighter);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-grid .privacy-item:nth-child(4),
.privacy-grid .privacy-item:nth-child(5) {
  grid-column: span 1;
}

@media (min-width: 769px) {
  .privacy-grid {
    grid-template-areas:
      "item1 item2 item3"
      "item4 item5 .";
  }

  .privacy-item:nth-child(1) {
    grid-area: item1;
  }
  .privacy-item:nth-child(2) {
    grid-area: item2;
  }
  .privacy-item:nth-child(3) {
    grid-area: item3;
  }
  .privacy-item:nth-child(4) {
    grid-area: item4;
  }
  .privacy-item:nth-child(5) {
    grid-area: item5;
  }
}

.privacy-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.privacy-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.privacy-content h3 {
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.privacy-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 200;
  text-transform: lowercase;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 200;
  color: var(--text-primary);
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 200;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 24px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Email Providers Section */
.email-providers {
  padding: 80px 0;
  background: var(--bg-lighter);
}

.providers-subtitle {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 200;
  color: var(--text-secondary);
  margin-bottom: 50px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.provider-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
}

.provider-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.provider-card.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.provider-card.coming-soon {
  opacity: 0.7;
}

.provider-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.provider-card.coming-soon .provider-icon {
  color: var(--text-muted);
}

.provider-card h3 {
  font-size: 24px;
  font-weight: 200;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.provider-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.provider-status {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.provider-card.active .provider-status {
  background: #dcfce7;
  color: #166534;
}

.provider-card.coming-soon .provider-status {
  background: #fef3c7;
  color: #92400e;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s ease;
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: var(--bg-card);
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  flex-shrink: 0;
  width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-secondary);
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* Founder Section */
.founder {
  padding: 80px 0;
  /* background: var(--bg-lighter); */
  background: linear-gradient(180deg, #151515 0%, #2a2a2a 50%, #202020 75%, #151515 100%);
}

.founder-content {
  display: flex;
  align-items: start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  /* background: var(--bg-card); */
  /* border: 1px solid var(--border-color); */
  /* border-radius: var(--border-radius); */
  /* box-shadow: var(--shadow-light); */
  padding: 60px;
}

.founder-image {
  flex-shrink: 0;
}

.founder-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: var(--shadow-medium);
}

.founder-info {
  flex: 1;
}

.founder-info h3 {
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.founder-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.founder-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 200;
}

.founder-social {
  margin-top: 3rem;
  display: flex;
  gap: 16px;
}

/* Founder Story */
.founder-story {
  margin-top: 20px;
  position: relative;
}

.story-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
  font-weight: 200;
  margin-bottom: 0;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.founder-story.expanded .story-text {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.story-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.story-expanded p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
  font-weight: 200;
  margin: 16px 0 0 0;
}

.story-expanded p:first-child {
  margin-top: 0;
}

.founder-story.expanded .story-expanded {
  max-height: 2400px;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  padding: 0;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.founder-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.founder-social a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
  border-color: var(--primary-color);
}

.founder-social svg {
  width: 20px;
  height: 20px;
}

/* Join Community Section */
.join-community {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.community-content {
  max-width: 900px;
  margin: 0 auto;
}

.community-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.community-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.community-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid;
}

.community-button.discord {
  background: #5865f2;
  color: white;
  border-color: #5865f2;
}

.community-button.discord:hover {
  background: #4752c4;
  border-color: #4752c4;
  transform: translateY(-2px);
}

.community-button.reddit {
  background: #ff4500;
  color: white;
  border-color: #ff4500;
}

.community-button.reddit:hover {
  background: #e03d00;
  border-color: #e03d00;
  transform: translateY(-2px);
}

.community-button.twitter {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-color);
}

.community-button.twitter:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Download Section */
.download {
  padding: 80px 0;
  background: var(--bg-lighter);
  text-align: center;
}

.download-subtitle {
  font-size: 1.3rem;
  font-weight: 200;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.download-button {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.download-button:hover {
  transform: scale(1.05);
}

.download-button img {
  width: auto;
  display: block;
  object-fit: contain;
}

.download-button:first-child img {
  height: 60px;
}

.download-button:last-child img {
  height: 85px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-lighter);
  text-align: center;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 200;
}

.contact-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px;
  border-radius: var(--border-radius);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  width: 64px;
  height: 64px;
}

.contact-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
  border-color: var(--primary-color);
}

.contact-link svg {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
}

/* Footer */
.footer {
  padding: 30px 0;
  background: var(--bg-light);
  color: var(--text-secondary);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer p {
  font-weight: 200;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile repositioning for showcase sections */
  .action-items-showcase .showcase-content {
    top: auto;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90%;
    padding: 0 20px;
  }

  .notifications-showcase .showcase-content {
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90%;
    padding: 0 20px;
  }

  .notifications-showcase .showcase-subtitle {
    position: absolute;
    bottom: 60px;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90%;
    padding: 0 20px;
  }

  /* .hero-content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .hero-text p {
    flex: 1;
    text-align: left;
    width: 75%;
    align-self: flex-start;
  }

  .hero-image {
    max-width: 300px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero-description {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  } */

  .section-title {
    font-size: 28px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none !important;
  }

  .privacy-item {
    text-align: center;
  }

  .nav-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-cta {
    font-size: 12px;
    padding: 8px 16px;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .download-buttons {
    flex-direction: column;
  }

  .testimonial-card {
    width: 300px;
  }

  .founder-content {
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px 20px;
  }

  .founder-image img {
    width: 160px;
    height: 160px;
  }

  .founder-social {
    justify-content: center;
  }

  .testimonials-carousel {
    padding: 20px 40px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
}

/* Email Collection Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: var(--bg-card);
  margin: 10% auto;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  width: 90%;
  max-width: 500px;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 200;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.modal-body {
  padding: 24px;
}

.modal-body p {
  margin: 0 0 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 200;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

#emailInput {
  flex: 3;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  background: var(--bg-card);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

#emailInput:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-button {
  flex: 1;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 200;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.submit-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.submit-button:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}

.success-message {
  background: #dcfce7;
  color: #166534;
  padding: 16px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 500;
}

.success-message p {
  margin: 0;
  color: #166534;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.privacy-item,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

.benefit-card:nth-child(2),
.privacy-item:nth-child(2),
.testimonial-card:nth-child(2) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(3),
.privacy-item:nth-child(3),
.testimonial-card:nth-child(3) {
  animation-delay: 0.2s;
}

.privacy-item:nth-child(4) {
  animation-delay: 0.3s;
}

.privacy-item:nth-child(5) {
  animation-delay: 0.4s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  /* background: linear-gradient(180deg, #1F1F1F 0%, #3A3A3A 50%, #2A2A2A 75%, #1A1A1A 100%); */
  background: linear-gradient(180deg, #151515 0%, #2a2a2a 50%, #202020 75%, #151515 100%);
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  z-index: 1;
}

.hero-brand {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.hero-title {
  font-size: 3rem;
  font-weight: 500;
  margin-top: -1rem;
  background: linear-gradient(135deg, #f4b860 0%, #f19a3e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.gmail-title-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gmail-title-icon {
  height: 5rem;
  width: auto;
  margin-top: 0;
  margin-left: 1rem;
}

.hero-subtitle-gmail {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.mobile-showcase-container {
  margin-top: 3rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.mobile-showcase-image {
  width: 100%;
  height: auto;
}

/* AI Features Section */
.ai-features {
  margin-top: 12rem;
  margin-bottom: 12rem;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-features-content {
  width: 100%;
}

/* Hide image in ai-features section on mobile/tablet */
.ai-features-image {
  display: none;
}

.ai-features-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 4rem;
  text-align: center;
}

.everything {
  letter-spacing: 0.1rem;
  text-decoration: line-through;
  text-decoration-color: #f19a3e;
  text-decoration-thickness: 0.1rem;
}

.highlight-secretary {
  color: #f19a3e;
}

.ai-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-feature-item {
  font-size: 1.8rem;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 0.25rem;
  position: relative;
}

.highlight-accent {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #f7b34f;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Feature Section */
.feature-section {
  margin-top: 0;
}

.feature-image {
  width: 100%;
}

/* Questions Section */
.questions-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
  margin-top: -8rem;
  padding: 4rem 1.5rem;
  padding-top: 20rem;
}

.questions-content {
  width: 100%;
  margin: 0 auto;
}

.question {
  font-size: 2.5rem;
  font-weight: 200;
  color: #ffffff;
  text-align: left;
  margin: 0;
  margin-bottom: 6rem;
}

.question:last-child {
  margin-bottom: 0;
}

.solve-section {
  /* border-top: 0.1rem dotted #3A3A3A; */
  /* margin-top: 10rem; */
  margin-bottom: 8rem;
  padding: 2rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

/* Hide solve image container on mobile/tablet */
.solve-image {
  display: none;
}

/* Ensure desktop image is hidden on mobile */
.solve-feature-image-desktop {
  display: none !important;
}

/* Show mobile image on mobile */
.solve-feature-image-mobile {
  display: block;
}

/* Hide desktop-only elements on mobile */
.desktop-only {
  display: none;
}

.solve {
  text-align: center;
}

.solved {
  letter-spacing: 0.1rem;
  text-decoration: line-through;
  text-decoration-color: #e04040;
  text-decoration-thickness: 0.1rem;
}

.highlight {
  color: #e04040;
  font-weight: 200;
}

/* Summary Section */
.action-items-section {
  margin-top: 6rem;
}

.action-image {
  width: 100%;
}

.more-context-section {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.more-context {
  font-size: 2rem;
  font-weight: 200;
  color: #ffffff;
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

.more-context-description {
  font-size: 1rem;
  font-weight: 200;
  color: #ffffff;
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Hide image in more-context section on mobile/tablet */
.more-context-image {
  display: none;
}

/* Summary Section */
.summary-section {
  margin-top: 6rem;
}

.summary-image {
  width: 100%;
}

/* Filter Section */
.filter-section {
  margin-top: 12rem;
  margin-bottom: 12rem;
  padding: 0 1.5rem;
}

.filter-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Hide image in filter section on mobile/tablet */
.filter-image {
  display: none;
}

.filter-text {
  font-size: 3rem;
  font-weight: 200;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.filter-text:last-child {
  margin-bottom: 0;
}

.noise {
  color: #e04040;
}

.notification-image {
  width: 100%;
}

.chat-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.chat-image {
  width: 100%;
}

/* Mobile showcase container visible by default for mobile/tablet */
.mobile-showcase-container {
  display: flex;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .hero-brand {
    font-size: 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .gmail-title-icon {
    height: 4rem;
  }

  .hero-subtitle-gmail {
    font-size: 1.8rem;
  }

  .question {
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }

  .filter-text {
    font-size: 2rem;
  }

  .ai-features-title {
    font-size: 2.2rem;
  }

  .ai-feature-item {
    font-size: 1.5rem;
  }
}

/* Tablet and desktop */
@media (min-width: 769px) {
  .hero {
    padding: 3rem;
  }

  .mobile-showcase-container {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .hero-brand {
    font-size: 6rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .gmail-title-icon {
    height: 7rem;
  }

  .hero-subtitle-gmail {
    font-size: 3.5rem;
  }
}

/* Medium laptop screens (like MacBook 14") */
@media (min-width: 1024px) and (max-width: 1512px) {
  .mobile-only {
    display: none;
  }
  .hero {
    padding-top: 3rem;
  }
}

/* Large screens */
@media (min-width: 1024px) {
  body {
    background: linear-gradient(180deg, #151515 0%, #2a2a2a 50%, #202020 75%, #151515 100%);
  }

  .hero {
    background-image: url("/images/desktop-view-01.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 5rem;
    justify-content: flex-start;
  }

  .hero-brand {
    font-size: clamp(3.5rem, 4.5vw, 5rem);
  }

  .hero-title {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
  }

  .gmail-title-icon {
    height: clamp(3.5rem, 4.5vw, 5.5rem);
  }

  .hero-subtitle-gmail {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  }

  /* Hide both showcase images on desktop since we're using background */
  .mobile-showcase-container {
    display: none;
  }

  /* Larger app store button on desktop */
  .app-store-download-img {
    width: 180px !important;
  }

  /* Center questions on desktop */
  .question {
    text-align: center;
  }

  /* Darker background for questions section on desktop */
  .questions-section {
    margin-top: -6rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
  }

  /* Display questions horizontally on desktop */
  .questions-content {
    padding: 2rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    /* max-width: 1400px; */
  }

  .questions-content .question {
    font-size: 1.8rem;
    flex: 1;
    padding: 1rem;
    margin-bottom: 0;
  }

  /* Solve section layout for desktop */
  .solve-section {
    padding-top: 6rem;
    padding-bottom: 0;
    margin-bottom: 0;
    border-top: none;
    margin-top: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  }

  .solve-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    padding: 0 2rem;
  }

  .solve-text {
    letter-spacing: 0.03rem;
    text-align: center;
    padding: 0;
    padding-top: 4rem;
  }

  .solve-image {
    display: block;
    width: 100vw;
    background: linear-gradient(180deg, #1f1f1f 0%, #5b5b5b 100%);
    padding-top: 6rem;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  /* Show and style the desktop title */
  .desktop-only {
    display: block;
  }

  /* Hide mobile-only elements on desktop */
  .mobile-only {
    display: none;
  }

  .solve-image-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 3rem;
    margin-top: 0;
    letter-spacing: 0.03em;
  }

  .solve-image .feature-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    height: auto;
  }

  /* Show desktop image, hide mobile image on desktop */
  .solve-feature-image-mobile {
    display: none !important;
  }

  .solve-feature-image-desktop {
    display: block !important;
  }

  /* Hide the old feature section on desktop */
  .feature-section {
    display: none;
  }

  /* New Action Desktop Section */
  .action-desktop-section {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, #1f1f1f 0%, #5b5b5b 100%);
  }

  .action-desktop-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .action-desktop-content {
    flex: 1.6;
    display: flex;
    padding-left: 4rem;
    margin-left: 7rem;
    flex-direction: column;
    gap: 10rem;
  }

  .action-block {
    flex: 4;
  }

  .action-block-secretary {
    flex: 1;
    margin-left: 2rem;
  }

  .action-block:last-child {
    margin-bottom: 0;
  }

  .action-title {
    font-size: 2.5rem;
    font-weight: 200;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
  }

  .action-title-secretary {
    font-size: 1.7rem;
    font-weight: 200;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
  }

  .action-subtitle {
    font-size: 1.7rem;
    font-weight: 200;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
  }

  .action-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
  }

  .action-list li {
    font-size: 1.3rem;
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    opacity: 0.9;
  }

  .action-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
  }

  .action-desktop-image {
    flex: 1;
    margin-right: 5rem;
  }

  .action-feature-image {
    width: 23rem;
    height: auto;
  }

  /* New Summary Desktop Section */
  .summary-desktop-section {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, #1f1f1f 0%, #5b5b5b 100%);
    margin-top: -1px; /* Remove gap between sections */
  }

  .summary-desktop-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .summary-desktop-image {
    flex: 1;
    margin-left: 7rem;
    margin-right: 7rem;
    padding-left: 1.5rem;
  }

  .summary-feature-image {
    width: 23rem;
    height: auto;
  }

  .summary-desktop-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    margin-right: 5rem;
  }

  .summary-block {
    flex: 1;
  }

  .summary-block-more {
    flex: 1;
    margin-left: 2rem;
  }

  .summary-title {
    font-size: 2.5rem;
    font-weight: 200;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.03em;
  }

  .summary-title-more {
    font-size: 1.7rem;
  }

  .summary-subtitle {
    font-size: 1.7rem;
    font-weight: 200;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
  }

  .summary-more {
    font-size: 1.3rem;
  }

  /* Filter Noise Section */
  .filter-noise-section {
    background: #000000;
    padding: 8rem 2rem;
    margin-top: -1px; /* Remove gap between sections */
  }

  .filter-noise-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
  }

  .filter-noise-text {
    font-size: 3rem;
    font-weight: 200;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.03em;
  }

  /* New Notification Desktop Section */
  .notification-desktop-section {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -1px; /* Remove gap between sections */
  }

  .notification-image-container {
    width: 100vw;
    background: linear-gradient(180deg, #1f1f1f 0%, #5b5b5b 100%);
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .notification-desktop-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 3rem;
  }

  .notification-image-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 200;
    margin: 0;
    letter-spacing: 0.03em;
    margin-top: 3rem;
  }

  .notification-image-subtitle {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 200;
    margin: 0;
    letter-spacing: 0.03em;
    /* margin-top: 3rem; */
  }

  /* Hide AI Features section on desktop since we have the new action desktop section */
  .ai-features {
    display: none;
  }

  /* AI Features layout for desktop */
  .ai-features-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    gap: 14rem;
    padding-left: 2rem;
  }

  .ai-features-image {
    display: block;
    flex: 0 0 500px;
  }

  .ai-features-image .action-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .ai-features-content {
    flex: 1;
    padding-left: 0;
    padding-right: 6rem;
  }

  .ai-features-title {
    text-align: left;
  }

  /* Hide duplicate action items section on desktop */
  .action-items-section {
    display: none;
  }

  /* Hide more-context section on desktop since we have the new summary desktop section */
  .more-context-section {
    display: none;
  }

  /* More context section layout for desktop */
  .more-context-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .more-context-text {
    flex: 1;
    padding-left: 5rem;
  }

  .more-context-image {
    display: block;
    flex: 0 0 500px;
  }

  .more-context-image .summary-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .more-context {
    font-size: 3rem;
    text-align: left;
  }

  .more-context-description {
    font-size: 1.5rem;
    text-align: left;
  }

  /* Hide duplicate summary section on desktop */
  .summary-section {
    display: none;
  }

  /* Filter section layout for desktop */
  .filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 14rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .filter-image {
    display: block;
    flex: 0 0 500px;
  }

  .filter-image .notification-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .filter-content {
    flex: 1;
    padding-right: 6rem;
  }

  .filter-text {
    text-align: left;
    font-size: 3.5rem;
  }

  /* Hide duplicate filter and notification sections on desktop */
  .filter-section,
  .notification-section {
    display: none;
  }
}

/* Extra large screens */
@media (min-width: 1600px) {
  /* Hide mobile-only elements on desktop */
  .mobile-only {
    display: none;
  }

  .hero-brand {
    font-size: clamp(4.5rem, 5vw, 5.5rem);
  }

  .hero-title {
    font-size: clamp(2.8rem, 3.5vw, 3.5rem);
  }

  .gmail-title-icon {
    height: clamp(4.5rem, 5vw, 6rem);
  }

  .hero-subtitle-gmail {
    font-size: clamp(2.3rem, 3vw, 3rem);
  }

  /* Display questions horizontally on desktop */
  .questions-content {
    gap: 7rem;
  }

  .questions-content .question {
    font-size: 2.2rem;
  }
  .action-desktop-content {
    margin-left: 20rem;
  }
  .action-desktop-image {
    flex: 1;
    margin-right: 10rem;
  }

  .summary-desktop-content {
    margin-left: 0;
  }
  .summary-desktop-image {
    flex: 1;
    margin-left: 20rem;
  }

  .summary-feature-image {
    width: 23rem;
    height: auto;
  }
}
