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

:root {
  --green-dark: #2D3B2D;
  --green-medium: #3D5A3D;
  --cream: #F7F3ED;
  --cream-dark: #EDE8E0;
  --coral: #D4836A;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 243, 237, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-medium);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-links .nav-cta {
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  background: var(--green-medium);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 32px 20px;
  gap: 16px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-medium);
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav .nav-cta {
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

/* HERO */
.hero {
  padding: 140px 32px 40px;
  background: var(--cream);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-centered {
  justify-content: center;
  text-align: center;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -1.5px;
}

.hero-title-line {
  display: block;
  color: var(--green-dark);
}

.hero-title-accent {
  display: block;
  color: var(--coral);
  font-style: italic;
  font-size: 80px;
}

.hero-closer {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--green-dark);
  margin-top: 16px;
  margin-bottom: 48px;
  opacity: 0.6;
}

.peek-characters {
  display: flex;
  justify-content: center;
  gap: 90px;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-char {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.hero-char-salt {
  transform: rotate(-8deg);
}

.hero-char-pepper {
  transform: rotate(6deg);
}

.value-prop {
  background: var(--green-dark);
  position: relative;
  padding: 0;
  z-index: 2;
}

.value-prop-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 40px 140px;
}

.value-kicker {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.value-headline {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.value-body {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}

.value-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 64px auto;
}

.value-headline-secondary {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.value-headline-secondary em {
  font-style: italic;
  color: var(--coral);
}

.highlight-coral {
  color: var(--coral);
}

.quote-coral {
  color: var(--coral);
  font-style: normal;
}

.highlight-white-italic {
  color: var(--white);
  font-style: italic;
}


.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download-buttons-center {
  justify-content: center;
}

.store-badge img {
  height: 52px;
  transition: transform 0.2s;
}

.store-badge:hover img {
  transform: scale(1.05);
}

.hero-phone {
  flex: 0 0 auto;
}

.phone-screen {
  width: 280px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.screen-img {
  width: 100%;
  height: auto;
  display: block;
}

.screen-img-bare {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

/* Radar Search Visualization */
.radar-container {
  position: relative;
  width: 480px;
  height: 480px;
}

.radar-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(61, 90, 61, 0.22);
  transform: translate(-50%, -50%);
  animation: radar-pulse 4s ease-out infinite;
}

.ring-1 {
  width: 180px;
  height: 180px;
  animation-delay: 0s;
}

.ring-2 {
  width: 320px;
  height: 320px;
  animation-delay: 1.3s;
}

.ring-3 {
  width: 440px;
  height: 440px;
  animation-delay: 2.6s;
}

@keyframes radar-pulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  20% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

/* Search Bar */
.radar-search-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text-dark);
  border-radius: 28px;
  padding: 14px 24px;
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.radar-search-icon {
  width: 18px;
  height: 18px;
  color: #888;
  flex-shrink: 0;
}

.radar-search-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #ccc;
  white-space: nowrap;
}

/* Source Cards */
.source-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 5;
  white-space: nowrap;
  animation: card-float 6s ease-in-out infinite;
}

.sc-favicon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
}

.sc-text {
  min-width: 0;
}

.sc-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.sc-snippet {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-light);
}

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

/* Card Positions — 5 cards, no overlaps */
.sc-1 {
  top: 14%;
  right: 0;
  animation-delay: 0s;
}

.sc-2 {
  top: 28%;
  left: 4%;
  animation-delay: 1s;
}

.sc-3 {
  top: 58%;
  right: 2%;
  animation-delay: 2s;
}

.sc-4 {
  bottom: 18%;
  left: 2%;
  animation-delay: 0.5s;
}

.sc-5 {
  bottom: 6%;
  right: 16%;
  animation-delay: 1.5s;
}

.guided-phone-wrapper {
  position: relative;
}

.guided-peek-character {
  position: absolute;
  width: 70px;
  height: auto;
  top: -3.5%;
  right: 20%;
  transform: rotate(6deg);
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.screen-img-guided {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.screen-img-cooking {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* FEATURE SECTIONS */
.feature {
  padding: 100px 32px;
}

.feature-light {
  background: var(--white);
}

.feature-cream {
  background: var(--cream);
}

.feature-dark {
  background: var(--green-dark);
  color: var(--white);
}

.feature-guided {
  padding-top: 140px;
  padding-bottom: 140px;
}

.feature-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.feature-reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.feature-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-medium);
  margin-bottom: 12px;
}

.feature-dark .feature-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.feature-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-medium);
}

.feature-dark .feature-text p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-text .feature-subheadline {
  font-size: 28px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  margin-top: -8px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-closer {
  font-style: italic;
  color: var(--coral) !important;
  font-weight: 500;
  margin-top: 8px;
}

.highlight-green {
  color: var(--green-dark);
}

.highlight-white {
  color: var(--cream);
}

.feature-phone {
  flex: 0 0 auto;
}

.feature-phone .phone-screen {
  width: 260px;
}

/* MORE FEATURES CAROUSEL */
.more-features {
  padding: 100px 32px;
  background: var(--cream);
  overflow: hidden;
}

.more-features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 56px;
}

.scroll-carousel-wrapper {
  position: relative;
}

.carousel-arrow {
  display: none;
}

@media (min-width: 769px) {
  .carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(45, 59, 45, 0.08);
    color: var(--green-dark);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, opacity 0.25s;
    opacity: 0.7;
  }

  .carousel-arrow:hover {
    background: rgba(45, 59, 45, 0.15);
    opacity: 1;
  }

  .carousel-arrow-left {
    left: -8px;
  }

  .carousel-arrow-right {
    right: -8px;
  }

  .carousel-arrow.hidden {
    opacity: 0;
    pointer-events: none;
  }
}

.scroll-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -32px;
  padding: 0 32px;
}

.scroll-carousel::-webkit-scrollbar {
  display: none;
}

.scroll-track {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
}

.scroll-card {
  flex: 0 0 260px;
  text-align: center;
}

.card-phone {
  width: 220px;
  margin: 0 auto 20px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
}

.card-phone .screen-img {
  width: 100%;
  height: auto;
  display: block;
}


.scroll-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.scroll-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-medium);
}

/* FAQ */
.faq {
  padding: 100px 32px;
  background: var(--white);
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq .section-title {
  margin-bottom: 48px;
}

.faq-category-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.faq-category-title:first-of-type {
  margin-top: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-medium);
}

/* FINAL CTA */
.final-cta {
  padding: 100px 32px;
  background: var(--green-dark);
  text-align: center;
}

.final-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-tagline {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--coral);
  font-style: italic;
  margin-bottom: 40px;
}

/* FOOTER */
.footer {
  padding: 40px 32px;
  background: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  margin-bottom: 4px;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-description {
    max-width: 100%;
  }

  .download-buttons {
    justify-content: center;
  }

  .feature-container,
  .feature-reverse {
    flex-direction: column;
    text-align: left;
    gap: 48px;
    align-items: center;
  }

  .feature-phone {
    order: -1;
  }

  .radar-container {
    width: 400px;
    height: 400px;
  }

  .feature-text h2 {
    font-size: 36px;
  }

  .feature-text .feature-subheadline {
    font-size: 24px;
  }

  .scroll-card {
    flex: 0 0 220px;
  }

  .card-phone {
    width: 190px;
  }

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

  .final-cta h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav.open {
    display: flex;
  }

  .hero {
    padding: 100px 20px 40px;
    min-height: 100vh;
    min-height: 100dvh;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 52px;
  }

  .hero-title-accent {
    font-size: 58px;
  }

  .hero-closer {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .peek-characters {
    gap: 50px;
    bottom: -30px;
  }

  .hero-char {
    width: 60px;
  }

  .value-prop-content {
    padding: 80px 24px 100px;
  }

  .value-kicker {
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
  }

  .value-headline {
    font-size: 44px;
    margin-bottom: 20px;
  }

  .value-body {
    font-size: 16px;
  }

  .value-divider {
    margin: 48px auto;
  }

  .value-headline-secondary {
    font-size: 24px;
  }

  .phone-screen {
    width: 240px;
  }

  .feature {
    padding: 64px 20px;
  }

  .feature-text h2 {
    font-size: 30px;
  }

  .feature-text .feature-subheadline {
    font-size: 20px;
  }

  .feature-phone .phone-screen {
    width: 220px;
  }

  .screen-img-bare {
    max-width: 200px;
  }

  .radar-container {
    width: 320px;
    height: 320px;
  }

  .ring-1 { width: 140px; height: 140px; }
  .ring-2 { width: 240px; height: 240px; }
  .ring-3 { width: 310px; height: 310px; }

  .radar-search-bar {
    padding: 10px 18px;
    min-width: 200px;
  }

  .radar-search-text {
    font-size: 12px;
  }

  .radar-container {
    overflow: visible;
  }

  .source-card {
    padding: 6px 10px;
    border-radius: 10px;
    gap: 8px;
  }

  .sc-favicon {
    width: 22px;
    height: 22px;
  }

  .sc-name { font-size: 11px; }
  .sc-snippet { font-size: 9px; }

  .sc-1 { top: 0; right: 4%; left: auto; }
  .sc-2 { top: 17%; left: 0; right: auto; }
  .sc-3 { top: 62%; right: 0; left: auto; transform: none; }
  .sc-4 { bottom: 10%; left: 0; right: auto; }
  .sc-5 { bottom: -6%; right: 4%; left: auto; }

  .scroll-carousel {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .scroll-card {
    flex: 0 0 200px;
  }

  .card-phone {
    width: 170px;
  }

  .scroll-card h3 {
    font-size: 18px;
  }

  .scroll-card p {
    font-size: 14px;
  }

  .more-features {
    padding: 64px 20px;
  }

  .faq {
    padding: 64px 20px;
  }

  .final-cta {
    padding: 64px 20px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .store-badge img {
    height: 44px;
  }
}

.coming-soon-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeInOverlay 0.25s ease;
}

.coming-soon-overlay.active {
  display: flex;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.coming-soon-modal {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  animation: slideUpModal 0.35s ease;
}

.coming-soon-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.coming-soon-close:hover {
  color: var(--text-dark);
  background: var(--cream-dark);
}

.coming-soon-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.coming-soon-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.coming-soon-subtitle {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 28px;
}

.coming-soon-cta {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.5;
}

.coming-soon-input-row {
  display: flex;
  gap: 10px;
}

.coming-soon-email {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.coming-soon-email:focus {
  border-color: var(--coral);
}

.coming-soon-email::placeholder {
  color: var(--text-light);
}

.coming-soon-submit {
  padding: 14px 24px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.coming-soon-submit:hover {
  background: #C07560;
  transform: translateY(-1px);
}

.coming-soon-submit:active {
  transform: translateY(0);
}

.coming-soon-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.coming-soon-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}

.coming-soon-success {
  margin-top: 8px;
}

.coming-soon-check {
  width: 52px;
  height: 52px;
  background: var(--green-medium);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.coming-soon-success p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .coming-soon-modal {
    padding: 40px 24px 32px;
  }

  .coming-soon-input-row {
    flex-direction: column;
  }

  .coming-soon-submit {
    width: 100%;
  }

  .coming-soon-title {
    font-size: 22px;
  }
}
