/* ==========================================================
   NONA - landing page styles
   Palette: mint #2ECC9A · ink #1A1A1A · black #000 · white #FFF
   ========================================================== */

:root {
  --mint: #2ecc9a;
  --mint-dark: #25a87d;
  --mint-soft: #eafbf4;
  --mint-tint: #f4fdf9;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-mute: #6b7280;
  --black: #000000;
  --white: #ffffff;
  --line: #e8ebe9;
  --bg: #ffffff;
  --bg-alt: #f7faf8;

  --maxw: 1120px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 24, 0.04), 0 2px 8px rgba(16, 24, 24, 0.04);
  --shadow-md: 0 4px 14px rgba(16, 24, 24, 0.06), 0 14px 40px rgba(16, 24, 24, 0.08);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* ----------------- reset / base ----------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0 0 0.4em;
  letter-spacing: -0.02em;
  color: var(--black);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.35;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Show/hide utilities for content variations across breakpoints */
.mobile-only { display: none; }
@media (max-width: 720px) {
  .mobile-hide { display: none !important; }
  .mobile-only { display: block; }
  .desktop-only { display: none; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 14px;
}

.eyebrow.on-dark {
  color: var(--mint);
}

.accent {
  color: var(--mint-dark);
  position: relative;
  white-space: nowrap;
}

/* ----------------- header ----------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
}

.logo-mark {
  color: var(--mint-dark);
  flex-shrink: 0;
}

.logo-word {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  background: linear-gradient(180deg, transparent 65%, var(--mint) 65%, var(--mint) 78%, transparent 78%);
  padding: 0 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a {
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--mint-dark);
  transform: translateY(-1px);
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
  margin-left: 6px;
}

.lang-btn {
  background: transparent;
  color: var(--ink-mute);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
  font-family: inherit;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.is-active {
  background: var(--black);
  color: var(--white);
}

@media (max-width: 720px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
  .nav {
    gap: 8px;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  .lang-toggle {
    margin-left: 0;
  }
  .lang-btn {
    padding: 5px 8px;
  }
}

/* ----------------- hero ----------------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 112px);
  background:
    radial-gradient(1200px 500px at 80% -10%, var(--mint-soft), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--mint-tint) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.hero-copy h1 {
  margin-top: 6px;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 38em;
  margin-bottom: 22px;
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.hero-price strong {
  color: var(--mint-dark);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

/* ----------------- email form ----------------- */
.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
  margin-bottom: 12px;
}

.email-form input[type="email"],
.email-form input[type="text"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.email-form input:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(46, 204, 154, 0.18);
}

.email-form button {
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.email-form button:hover {
  background: var(--mint-dark);
  transform: translateY(-1px);
}

.email-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.email-form.success button {
  background: var(--mint-dark);
}

.form-note {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
  max-width: 520px;
}

.form-note em {
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
}

.form-note.on-dark {
  color: rgba(255, 255, 255, 0.65);
  margin-left: auto;
  margin-right: auto;
}

.form-note.on-dark em {
  color: var(--white);
}

.email-form.on-dark input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.email-form.on-dark input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.email-form.on-dark input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(46, 204, 154, 0.25);
}

.email-form.on-dark button {
  background: var(--mint);
  color: var(--black);
}

.email-form.on-dark button:hover {
  background: var(--white);
}

/* ---------- extended form fields (waitlist) ---------- */
.form-extra {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
  text-align: left;
}

.form-radios {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-radios legend {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 0;
  color: var(--ink);
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-radio:hover {
  border-color: var(--mint);
}

.form-radio input[type="radio"] {
  accent-color: var(--mint-dark);
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
}

.form-radio:has(input:checked) {
  border-color: var(--mint-dark);
  background: rgba(46, 204, 154, 0.08);
}

/* on-dark variants for the waitlist card */
.email-form.on-dark .form-radios legend {
  color: var(--white);
}

.email-form.on-dark .form-radio {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.email-form.on-dark .form-radio:hover {
  border-color: var(--mint);
}

.email-form.on-dark .form-radio:has(input:checked) {
  border-color: var(--mint);
  background: rgba(46, 204, 154, 0.16);
}

/* ---------- GDPR consent line ---------- */
.form-consent {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 6px 0 4px;
  max-width: 520px;
}

.form-consent.on-dark {
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ----------------- hero visual: phone mockup ----------------- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 280 / 560;
}

/* soft mint aura behind the phone */
.hero-phone-aura {
  position: absolute;
  inset: -8% -14%;
  background:
    radial-gradient(60% 50% at 50% 45%, rgba(46, 204, 154, 0.28), transparent 70%),
    radial-gradient(70% 60% at 50% 65%, rgba(46, 204, 154, 0.10), transparent 75%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

.hero-phone .phone-svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
}

/* Pulsing red alert dot - the visual heartbeat of the mockup */
.phone-alert-dot {
  transform-origin: center;
  transform-box: fill-box;
  animation: phoneAlertPulse 1.6s ease-in-out infinite;
}

.phone-alert-ring {
  transform-origin: center;
  transform-box: fill-box;
  animation: phoneAlertRing 2s ease-out infinite;
}

.phone-live-dot {
  transform-origin: center;
  transform-box: fill-box;
  animation: phoneLivePulse 2.4s ease-in-out infinite;
}

@keyframes phoneAlertPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.18); opacity: 0.7; }
}

@keyframes phoneAlertRing {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes phoneLivePulse {
  0%, 100% { opacity: 1;   }
  50%      { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .phone-alert-dot,
  .phone-alert-ring,
  .phone-live-dot {
    animation: none;
  }
}

/* ----------------- generic sections ----------------- */
.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
}

.section-sub {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* ----------------- problem ----------------- */
.problem {
  background: var(--bg-alt);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 920px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.problem-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-grid li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mint-soft);
  color: var(--mint-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
}

.problem-grid h3 {
  margin-bottom: 8px;
}

.problem-grid p {
  margin: 0;
  font-size: 0.95rem;
}

/* ----------------- how it works ----------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}

@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps li {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--mint-tint);
  border: 1px solid rgba(46, 204, 154, 0.18);
}

/* Step number anchored to the top-left corner of each card -
   sits half-on the card edge as a "sticker" so it reads consistently
   regardless of the visual/caption height above it. */
.step-number {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint-dark);
  color: var(--white);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  z-index: 2;
  box-shadow:
    0 4px 12px rgba(46, 204, 154, 0.35),
    0 0 0 4px var(--bg);
}

/* SVG illustration above each step */
.step-visual {
  width: calc(100% + 20px);
  height: 116px;
  margin: -8px -10px 10px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(46, 204, 154, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Caption sits between illustration and step-number - small mint label */
.step-caption {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--white);
  border: 1px solid rgba(46, 204, 154, 0.4);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* speed light bar on the ambulance - gentle blink */
.amb-light {
  animation: ambBlink 0.9s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes ambBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .amb-light { animation: none; }
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

/* ----------------- privacy / differentiator ----------------- */
.privacy {
  background: var(--black);
  color: var(--white);
}

.privacy h2 {
  color: var(--white);
}

.privacy p {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 880px) {
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.checklist {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--mint);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

/* ----------------- guarantee card (right side of privacy) ----------------- */
.guarantee-card {
  position: relative;
  background: var(--mint);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 36px 36px 30px;
  overflow: hidden;
}

.guarantee-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(0, 0, 0, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.guarantee-card h3 {
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--black);
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}

.guarantee-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 500;
  font-size: 1rem;
}

.guarantee-stamp {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 110px;
  height: 110px;
  color: var(--black);
  opacity: 0.12;
  pointer-events: none;
}

.guarantee-stamp svg {
  width: 100%;
  height: 100%;
}

/* ----------------- testimonials ----------------- */
.families {
  background: var(--bg-alt);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 880px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 204, 154, 0.35);
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 26px;
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: var(--mint);
}

.testimonial blockquote {
  margin: 18px 0 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(46, 204, 154, 0.18);
}

.t-avatar--alt {
  background: var(--ink);
  color: var(--mint);
  box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.08);
}

.t-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.t-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.t-meta {
  color: var(--ink-mute);
  font-size: 0.85rem;
}

/* ----------------- waitlist ----------------- */
.waitlist {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--bg-alt);
}

.waitlist-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(
    400px 200px at 50% 0%,
    rgba(46, 204, 154, 0.25),
    transparent 70%
  );
  pointer-events: none;
}

.waitlist-card h2 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.waitlist-card > p {
  max-width: 38em;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
}

.waitlist-card .email-form {
  margin: 0 auto 12px;
  position: relative;
}

.waitlist-card .form-note {
  position: relative;
}

/* ----------------- pricing ----------------- */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 920px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 204, 154, 0.4);
}

.pricing-card--featured {
  background: var(--mint-tint);
  border: 2px solid var(--mint);
  box-shadow: 0 18px 40px rgba(46, 204, 154, 0.18);
  transform: translateY(-6px);
}

@media (max-width: 920px) {
  .pricing-card--featured {
    transform: none;
  }
}

.pricing-card--featured:hover {
  transform: translateY(-9px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-name {
  margin: 0 0 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-unit {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-weight: 500;
}

.pricing-rooms {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mint-dark);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* Tiny "rooms covered" diagram - small mint squares, one per room */
.rooms-viz {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.rooms-viz .room-box {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--mint-soft);
  border: 1px solid rgba(46, 204, 154, 0.45);
  position: relative;
}

.rooms-viz .room-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint-dark);
  transform: translate(-50%, -50%);
}

.pricing-card--featured .rooms-viz .room-box {
  background: var(--white);
  border-color: var(--mint);
}

.pricing-card--featured .pricing-rooms {
  border-bottom-color: rgba(46, 204, 154, 0.35);
}

.pricing-bullets {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.pricing-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.4 2.4 4.6-5' fill='none' stroke='%2325a87d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  margin-top: auto;
}

.pricing-cta:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.pricing-cta--featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.pricing-cta--featured:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
}

/* Trust badges row - sits between pricing cards and the footnote.
   Reinforces guarantees right at the buying decision moment. */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin: 40px 0 0;
  padding: 22px 24px;
  border-top: 1px dashed rgba(46, 204, 154, 0.35);
  border-bottom: 1px dashed rgba(46, 204, 154, 0.35);
}

.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.trust-badges li svg {
  width: 22px;
  height: 22px;
  color: var(--mint-dark);
  flex-shrink: 0;
}

.pricing-footnote {
  text-align: center;
  margin: 24px 0 0;
  font-size: 0.92rem;
  color: var(--ink-mute);
}

/* ----------------- footer ----------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: var(--white);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.footer-brand .logo-mark {
  color: var(--mint-dark);
}

.footer-tag {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.92rem;
  text-align: center;
  flex: 1 1 320px;
}

.footer-meta {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================
   MOBILE TUNING (≤720px)
   Goal: blueprint-clean, generous tap targets, less density,
   no decorative weight, one focal point per screen.
   ========================================================== */
@media (max-width: 720px) {

  /* ---- container / sections ---- */
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 56px 0;
  }
  .section-head {
    margin-bottom: 32px;
  }

  /* ---- typography ---- */
  body { font-size: 16px; }
  h1 {
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }
  h2 {
    font-size: 1.55rem;
    line-height: 1.18;
  }
  h3 { font-size: 1.05rem; }
  .lede {
    font-size: 1.02rem;
    margin-bottom: 18px;
    max-width: none;
  }

  /* ---- header: keep tight at narrow widths ---- */
  .site-header { background: rgba(255, 255, 255, 0.92); }
  .header-row { height: 60px; }
  .logo svg { width: 30px; height: 30px; }
  .logo-word { font-size: 1rem; }
  .nav-cta {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .lang-btn { font-size: 0.75rem; padding: 4px 8px; }

  /* ---- HERO: hide the desktop hero entirely on mobile ----
     Mobile gets its own dedicated, ultra-minimal block (.hero-mobile)
     defined further down. Different content, different priority,
     different goal - instant comprehension over completeness. */
  .hero {
    padding: 56px 0 64px;
  }
  .hero-grid { display: none; }

  /* ---- FORMS: stack everything full-width, fat tap targets ---- */
  .email-form {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 12px;
  }
  .email-form input[type="email"],
  .email-form input[type="text"] {
    flex: 1 1 auto;
    width: 100%;
    padding: 16px 16px;
    font-size: 16px;            /* prevents iOS zoom-on-focus */
    border-radius: 12px;
  }
  .email-form button {
    width: 100%;
    padding: 16px 22px;
    font-size: 1rem;
    min-height: 52px;
  }

  .form-note,
  .form-consent {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .form-note { font-size: 0.82rem; }
  .form-consent { font-size: 0.72rem; }

  /* hide the soft <br> inside the form note so the "free guide" line
     flows naturally instead of forcing a hard break */
  .form-note br { display: none; }
  .form-note em { display: inline; }

  /* ---- PROBLEM ---- */
  .problem-grid li { padding: 22px 20px; }
  .problem-grid h3 { margin-bottom: 6px; }

  /* ---- HOW IT WORKS ---- */
  .steps { gap: 16px; }
  .steps li {
    padding: 22px 22px;
    text-align: left;
  }
  .step-visual {
    height: 110px;
    margin: -6px -8px 12px;
    width: calc(100% + 16px);
    border-radius: 10px;
  }
  .step-number {
    width: 38px;
    height: 38px;
    top: -14px;
    left: -14px;
    font-size: 0.95rem;
  }
  .steps h3 { font-size: 1.08rem; }

  /* ---- PRIVACY + GUARANTEE ---- */
  .privacy-grid { gap: 32px; }
  .privacy p { font-size: 0.98rem; }

  .checklist li { font-size: 0.95rem; gap: 10px; }
  .check { width: 24px; height: 24px; font-size: 0.78rem; }

  .guarantee-card {
    padding: 28px 24px 24px;
    border-radius: 18px;
  }
  .guarantee-card h3 {
    font-size: 1.18rem;
    line-height: 1.3;
  }
  .guarantee-card p { font-size: 0.95rem; }
  .guarantee-stamp {
    width: 84px;
    height: 84px;
    right: -8px;
    bottom: -8px;
  }

  /* ---- PRICING ---- */
  .pricing-grid {
    gap: 28px;            /* breathing room between stacked cards */
    max-width: 100%;
  }
  .pricing-card {
    padding: 28px 24px 24px;
    border-radius: 16px;
  }
  .pricing-card--featured {
    /* a little lifted feel even on mobile, but no transform conflict */
    box-shadow: 0 12px 28px rgba(46, 204, 154, 0.18);
  }
  .pricing-amount { font-size: 2.4rem; }
  .pricing-rooms { margin-bottom: 18px; padding-bottom: 18px; }
  .pricing-bullets { gap: 10px; margin-bottom: 22px; }
  .pricing-bullets li { font-size: 0.94rem; }

  .pricing-cta {
    padding: 15px 18px;
    font-size: 1rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pricing-footnote {
    margin-top: 24px;
    font-size: 0.88rem;
  }

  /* ---- TESTIMONIALS ---- */
  .testimonials { gap: 16px; }
  .testimonial {
    padding: 24px 22px 20px;
    gap: 14px;
  }
  .testimonial blockquote {
    font-size: 1rem;
    margin-top: 14px;
  }
  .t-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  /* ---- TRUST BADGES ---- */
  .trust-badges {
    gap: 14px 18px;
    padding: 18px 14px;
    margin-top: 28px;
  }
  .trust-badges li { font-size: 0.85rem; gap: 8px; }
  .trust-badges li svg { width: 20px; height: 20px; }

  /* ---- WAITLIST ---- */
  .waitlist { padding: 56px 0 110px; } /* extra bottom for sticky CTA */
  .waitlist-card {
    padding: 36px 22px 32px;
    border-radius: 20px;
  }
  .waitlist-card h2 { font-size: 1.55rem; }
  .waitlist-card > p { font-size: 0.98rem; margin-bottom: 24px; }

  .form-radios legend { font-size: 0.95rem; margin-bottom: 10px; }
  .form-radio {
    padding: 14px 14px;
    min-height: 50px;
    font-size: 1rem;
  }

  /* ---- FOOTER ---- */
  .site-footer { padding: 28px 0 calc(28px + env(safe-area-inset-bottom)); }
  .footer-tag { font-size: 0.88rem; }
}

/* ==========================================================
   MOBILE HERO (≤720px only) - cinematic dark + iPhone screenshot
   Full-bleed dark section. iPhone lockscreen mockup with the
   fall-alert banner sliding in. Bold short headline, mint CTA.
   ========================================================== */
.hero-mobile { display: none; }

@media (max-width: 720px) {

  /* The whole hero section goes dark on mobile (full-bleed). */
  .hero {
    background: #050706;
    color: #ffffff;
    padding-top: 28px;
    padding-bottom: 36px;
    /* subtle ambient glow that matches the wallpaper inside the phone */
    background-image:
      radial-gradient(60% 40% at 50% 8%, rgba(46, 204, 154, 0.10), transparent 60%),
      radial-gradient(80% 50% at 50% 100%, rgba(255, 90, 90, 0.06), transparent 70%);
  }

  /* Hide the desktop hero copy/visual on mobile. */
  .hero .hero-grid { display: none; }

  .hero-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding-left: 18px;
    padding-right: 18px;
    width: 100%;
    margin: 0 auto;
    max-width: 460px;
  }

  /* ===== Eyebrow: small white text setting emotional context ===== */
  .hmd-eyebrow {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.005em;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
  }

  /* ===== iPhone frame ===== */
  .hmd-phone {
    position: relative;
    width: 100%;
    /* Locked size: stays stable when Chrome address bar shows/hides on scroll.
       Sized to fit comfortably with the CTA on most phones (>=375 wide). */
    max-width: 210px;
    margin: 2px auto 4px;
    isolation: isolate;
    /* Real iPhone-ish proportions (slightly trimmed from 9/19.5) */
    aspect-ratio: 9 / 18;
  }

  /* Subtle soft glow behind the phone - sells the cinematic vibe. */
  .hmd-phone-glow {
    position: absolute;
    inset: -12% -10% -10% -10%;
    border-radius: 60px;
    background:
      radial-gradient(50% 35% at 50% 30%, rgba(46, 204, 154, 0.28), transparent 70%),
      radial-gradient(40% 30% at 50% 75%, rgba(255, 90, 90, 0.18), transparent 70%);
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
  }

  .hmd-phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 6px;
    border-radius: 38px;
    background:
      linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 50%, #1a1a1a 100%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 0 0 1px rgba(255, 255, 255, 0.04),
      0 30px 60px rgba(0, 0, 0, 0.55),
      0 60px 120px rgba(0, 0, 0, 0.35);
  }

  /* ===== Phone screen ===== */
  .hmd-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #0a0a0a;
  }

  /* Lockscreen wallpaper - moody mint+coral gradient. */
  .hmd-wallpaper {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(80% 50% at 30% 20%, rgba(46, 204, 154, 0.30), transparent 60%),
      radial-gradient(70% 50% at 80% 90%, rgba(255, 90, 90, 0.16), transparent 60%),
      linear-gradient(180deg, #0f1614 0%, #06090a 70%, #050606 100%);
  }

  .hmd-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    border-radius: 12px;
    background: #000;
    z-index: 3;
  }

  /* Status bar (time on left, signal/wifi/battery on right). */
  .hmd-statusbar {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
  }

  .hmd-sb-time { font-variant-numeric: tabular-nums; }

  .hmd-sb-icons {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .hmd-sb-icons svg { display: block; }

  /* Big lockscreen time + date (real iOS look). */
  .hmd-lockmeta {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    z-index: 2;
    pointer-events: none;
  }

  .hmd-lock-date {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.01em;
  }

  .hmd-lock-time {
    margin: -2px 0 0;
    font-size: 50px;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
  }

  /* ===== iOS-style alert banner inside the phone ===== */
  .hmd-banner {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 16px;
    padding: 11px 12px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    color: #0a0a0a;
    text-align: left;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.6) inset,
      0 12px 28px rgba(0, 0, 0, 0.35);
    z-index: 4;
    transform: translateY(8px);
    opacity: 0;
    animation: hmdBannerIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
  }

  @keyframes hmdBannerIn {
    to { transform: translateY(0); opacity: 1; }
  }

  .hmd-banner-head {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hmd-banner-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--mint);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
  }

  .hmd-banner-meta {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex: 1;
    min-width: 0;
  }

  .hmd-banner-app {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: #0a0a0a;
  }

  .hmd-banner-time {
    font-size: 10px;
    color: #8a8a8a;
  }

  .hmd-banner-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.18);
    animation: hmdPulse 1.4s ease-in-out infinite;
    animation-delay: 1s;
    flex-shrink: 0;
  }

  @keyframes hmdPulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%      { transform: scale(1.18); opacity: 0.6; }
  }

  .hmd-banner-title {
    margin: 8px 0 2px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .hmd-banner-sub {
    margin: 0 0 9px;
    font-size: 11px;
    color: #5a5a5a;
  }

  .hmd-banner-amb {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 9px;
    border-radius: 10px;
    background: #fff5f4;
    border: 1px solid rgba(255, 59, 48, 0.22);
  }

  .hmd-banner-amb-icon {
    width: 24px;
    height: 19px;
    color: #ff3b30;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hmd-banner-amb-icon svg { width: 24px; height: 19px; display: block; }

  .hmd-banner-amb-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
  }

  .hmd-banner-amb-title {
    font-size: 11px;
    font-weight: 700;
    color: #0a0a0a;
  }

  .hmd-banner-amb-sub {
    font-size: 10px;
    color: #6a6a6a;
    margin-top: 1px;
  }

  /* gentle vignette at the very bottom of the screen - keeps focus on banner */
  .hmd-screen-fade {
    position: absolute;
    inset: auto 0 0 0;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
    pointer-events: none;
    z-index: 3;
  }

  /* ===== Headline below phone - bold, white + mint accent ===== */
  .hero-mobile-h1 {
    margin: 8px 0 0;
    font-size: clamp(2rem, 8.5vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #ffffff;
    max-width: 18ch;
  }

  .hero-mobile-h1 .accent {
    color: var(--mint);
    white-space: normal;
  }

  /* ===== Mint CTA on dark - high-contrast button ===== */
  .hero-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    min-height: 56px;
    margin-top: 6px;
    padding: 16px 22px;
    border-radius: 14px;
    background: var(--mint);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.005em;
    box-shadow:
      0 10px 24px rgba(46, 204, 154, 0.30),
      0 1px 0 rgba(255, 255, 255, 0.4) inset;
    transition: transform 0.1s ease, box-shadow 0.15s ease;
  }

  .hero-mobile-cta:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(46, 204, 154, 0.30);
  }

  /* Trust line: tight, white-low-opacity. */
  .hero-mobile-trust {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-mobile-trust .sep {
    color: var(--mint);
    font-weight: 700;
    margin: 0 7px;
  }

  @media (prefers-reduced-motion: reduce) {
    .hmd-banner   { animation: none; transform: none; opacity: 1; }
    .hmd-banner-pulse { animation: none; }
  }
}

/* Banner sized to fit the locked 210px phone — same on all mobile widths
   so it never reflows when Chrome's address bar shows/hides on scroll. */
@media (max-width: 720px) {
  .hmd-banner { left: 6px; right: 6px; padding: 9px 10px 10px; }
  .hmd-banner-title { font-size: 12px; margin-top: 6px; }
  .hmd-banner-sub { font-size: 10px; margin-bottom: 7px; }
  .hmd-banner-amb { padding: 6px 8px; gap: 7px; }
  .hmd-banner-amb-title { font-size: 10.5px; }
  .hmd-banner-amb-sub { font-size: 9.5px; }
  .hmd-lock-time { font-size: 42px; }
}

/* On very narrow phones (≤360px wide), trim slightly — width-based only,
   width doesn't change when address bar moves so this is safe. */
@media (max-width: 360px) {
  .hmd-phone { max-width: 195px; }
  .hmd-lock-time { font-size: 38px; }
  .hero-mobile-h1 { font-size: 1.85rem; }
}

/* ==========================================================
   STICKY MOBILE CTA BAR
   Appears once the hero is past, hides at the waitlist form.
   Mobile-only. Respects iOS notch via env(safe-area-inset-bottom).
   ========================================================== */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.mobile-cta-bar a .price {
  font-weight: 600;
  color: var(--mint);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.mobile-cta-bar a .price::before {
  content: "·";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 720px) {
  .mobile-cta-bar { display: block; }
}

body.show-mobile-cta .mobile-cta-bar {
  transform: translateY(0);
  pointer-events: auto;
}

/* Once the visitor has signed up, never show the sticky CTA again */
body.signed-up .mobile-cta-bar {
  display: none !important;
}
