/* ============================================================
   Waylen. textwaylen.com
   Warm cream / navy / orange / purple brand per Waylen "The Relay"
   references. Layout mirrors the Winslow-style page designs.
   ============================================================ */

:root {
  --cream: #FFF8F1;
  --cream-2: #FFFCF7;
  --cream-3: #F8EBDD;
  --ink: #0A1B3D;
  --ink-2: #122A56;
  --muted: #52618A;
  --orange: #FF5A1F;
  --orange-dark: #E84814;
  --orange-soft: #FFE5D6;
  --teal: #6E55E8;
  --teal-dark: #4E32C8;
  --teal-soft: #EEE9FF;
  --mascot: #FFE5D6;
  --navy-band: #0E2148;
  --white: #FFFFFF;
  --line: #EADFCE;
  --shadow-sm: 0 2px 10px rgba(10, 27, 61, .06);
  --shadow-md: 0 10px 30px rgba(10, 27, 61, .10);
  --shadow-lg: 0 24px 60px rgba(10, 27, 61, .16);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Nunito", -apple-system, "Segoe UI", sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ---------- type ---------- */
.serif { font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; }
.display { font-weight: 900; letter-spacing: -.02em; line-height: 1.06; }
.ink { color: var(--ink); }
.accent { color: var(--orange); }
.center { text-align: center; }

h1.display { font-size: clamp(2.4rem, 5vw, 4rem); }
.h1-size { font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
.h2-size { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
section > .serif, .cost .serif, .stories .serif, .builtfor .serif {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.lede { font-size: 1.1rem; color: var(--muted); max-width: 44rem; }
.lede.center { margin-inline: auto; }
.section-sub { color: var(--muted); text-align: center; margin-top: .6rem; }
.copy-mobile { display: none; }

/* ---------- chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .45rem 1rem; border-radius: 999px; margin-bottom: 1.1rem; white-space: nowrap;
}
.chip.center { margin-inline: auto; display: table; }
.chip-teal { background: var(--teal-soft); color: var(--teal-dark); }
.chip-orange { background: var(--orange-soft); color: var(--orange-dark); }
.chip-navy { background: #E3E9F6; color: var(--ink); }
.chip-cream { background: rgba(255, 249, 240, .16); color: #FFE9CF; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 800; border-radius: 999px; padding: .85rem 1.6rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(244, 117, 15, .35); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-white { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.btn-ghost { background: #fff; color: var(--ink); border: 2px solid var(--line); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.55); color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.ic { width: 1.1em; height: 1.1em; }
.ic-sm { width: 1em; height: 1em; flex: none; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 243, 232, .92); backdrop-filter: blur(10px);
  transition: box-shadow .2s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: .9rem 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  font-family: var(--serif); font-weight: 700; font-size: 1.7rem; color: var(--ink);
  display: inline-flex; align-items: flex-start; gap: .1rem; line-height: 1;
}
.logo-spark { width: .55em; height: .55em; color: var(--orange); margin-top: -.05em; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; margin-inline: auto; }
.nav-links a { font-weight: 700; font-size: .95rem; color: var(--ink-2); }
.nav-links a:hover { color: var(--orange); }
.btn-nav { padding: .7rem 1.3rem; font-size: .92rem; }
.nav-mobile-cta { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.nav-burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 3.5rem 1.5rem 0; }
.hero-wave {
  position: absolute; inset: auto 0 0 0; height: 46%;
  background: linear-gradient(180deg, rgba(207, 230, 225, 0) 0%, rgba(207, 230, 225, .5) 100%);
  border-radius: 100% 100% 0 0 / 30% 30% 0 0;
  pointer-events: none;
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.spark { position: absolute; color: var(--orange); opacity: .8; font-size: 1.2rem; }
.s1 { top: 12%; left: 44%; }
.s2 { top: 8%; right: 8%; font-size: 1rem; color: var(--teal); }
.s3 { top: 55%; left: 3%; font-size: .9rem; }
.dash-ring { position: absolute; width: 150px; top: 18%; left: 40%; opacity: .6; }

.hero-grid {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center;
}
.hero-copy { padding-bottom: 3rem; }
.hero-body { margin: 1.2rem 0 1.6rem; font-size: 1.12rem; color: var(--muted); max-width: 30rem; }

.phone-form {
  display: flex; align-items: center; gap: .4rem;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: .4rem .4rem .4rem 1rem; max-width: 34rem; box-shadow: var(--shadow-sm);
}
.phone-form .flag { display: flex; align-items: center; gap: .35rem; }
.phone-form .flag svg:first-child { width: 26px; border-radius: 3px; }
.flag-code { font-weight: 800; font-size: .95rem; }
.phone-form .chev { width: 10px; color: var(--muted); }
.phone-form input {
  flex: 1; min-width: 0; border: 0; outline: none; background: none;
  font: inherit; font-weight: 700; color: var(--ink); padding: .5rem .6rem;
}
.btn-form { padding: .75rem 1.4rem; font-size: .95rem; }
.hero-actions { display: flex; align-items: center; margin-top: 1.7rem; }
.btn-hero-sms {
  min-height: 76px; padding: 1.25rem 2.1rem; gap: 1rem;
  border-radius: 999px; font-size: clamp(1.02rem, 2vw, 1.45rem);
  line-height: 1.15; box-shadow: 0 18px 36px rgba(255, 90, 31, .24);
  max-width: min(100%, 650px); white-space: normal; text-align: left;
}
.btn-hero-sms > span { min-width: 0; overflow-wrap: anywhere; }
.btn-hero-sms .cta-chat { width: 1.25em; height: 1.25em; flex: none; }
.btn-hero-sms .cta-arrow { width: 1.35em; height: 1.35em; flex: none; margin-left: auto; }
.hero-assure { margin: .7rem 0 0 1.2rem; font-size: .85rem; color: var(--muted); }

.hero-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-stats li { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: .6rem; align-items: center; }
.hs-icon {
  grid-row: 1 / 3; width: 40px; height: 40px; border-radius: 12px;
  background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center;
}
.hs-icon svg { width: 20px; height: 20px; }
.hero-stats strong { font-size: .95rem; }
.hero-stats span:not(.hs-icon) { font-size: .8rem; color: var(--muted); }

/* phone frames */
.phone {
  background: #fff; border-radius: 44px; border: 8px solid var(--ink);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.phone-hero { width: min(340px, 88vw); margin-left: auto; }
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px; background: var(--ink); border-radius: 999px; z-index: 2;
}
.phone-status {
  display: flex; justify-content: space-between; padding: .9rem 1.4rem .3rem;
  font-size: .78rem; font-weight: 800;
}
.ps-icons { letter-spacing: 2px; font-size: .65rem; }
.sms-head {
  display: flex; align-items: center; gap: .6rem; padding: .55rem 1rem .7rem;
  border-bottom: 1px solid #EFE7DA;
}
.sms-head .back { font-size: 1.5rem; color: var(--teal); line-height: 1; }
.sms-head .avatar {
  width: 34px; height: 34px; border-radius: 50%; overflow: hidden;
  background: var(--mascot); flex: none; display: grid; place-items: center;
}
.sms-head .avatar img { width: 80%; height: auto; margin-top: 15%; }
.sms-head .name { font-weight: 800; font-size: .92rem; display: flex; flex-direction: column; line-height: 1.2; }
.sms-head .name em { font-style: normal; font-weight: 600; font-size: .68rem; color: var(--muted); }
.sms-head.mini { padding: .7rem 1rem; }

.sms-thread { padding: .9rem .9rem 1rem; display: flex; flex-direction: column; gap: .55rem; }
.bubble {
  max-width: 84%; padding: .6rem .85rem; border-radius: 18px;
  font-size: .84rem; line-height: 1.42; position: relative;
}
.bubble .stamp { display: block; font-size: .62rem; color: var(--muted); margin-top: .3rem; opacity: .85; }
.bubble.them { background: #F1EAE0; border-bottom-left-radius: 6px; align-self: flex-start; }
.bubble.me { background: var(--teal); color: #fff; border-bottom-right-radius: 6px; align-self: flex-end; }
.bubble.me .stamp { color: rgba(255,255,255,.75); }
.typing { display: inline-flex; gap: 4px; padding: .7rem .9rem; background: #F1EAE0; border-radius: 18px; border-bottom-left-radius: 6px; width: max-content; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: #B9AC98; animation: blink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .35; } 30% { opacity: 1; } }
.sms-input {
  display: flex; align-items: center; gap: .6rem;
  margin: 0 .9rem .95rem; padding: .5rem .5rem .5rem 1rem;
  border: 1.5px solid #E7DCCB; border-radius: 999px; color: var(--muted); font-size: .85rem;
}
.sms-input .field { flex: 1; }
.sms-input .send {
  width: 30px; height: 30px; border-radius: 50%; background: var(--orange);
  display: grid; place-items: center; flex: none;
}
.sms-input .send svg { width: 16px; height: 16px; }

.note-card {
  background: #fff; border: 1.5px solid #EFE7DA; border-radius: 14px;
  box-shadow: var(--shadow-sm); padding: .6rem .8rem; font-size: .8rem; max-width: 84%;
}
.nc-title { font-weight: 800; font-size: .82rem; }
.nc-time { color: var(--muted); font-size: .66rem; margin-top: .25rem; }

/* hero stage composition */
.hero-stage { position: relative; padding: 1rem 3.4rem 0 0; }
.hero-mascot {
  position: absolute; bottom: -1.4rem; left: -2.2rem; width: min(240px, 40%);
  z-index: 3; filter: drop-shadow(0 18px 24px rgba(10,27,61,.18));
}
.side-card {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-md);
  padding: .7rem .95rem; width: 172px; z-index: 4;
}
.sc-title { font-weight: 800; font-size: .85rem; display: flex; align-items: center; gap: .4rem; }
.sc-title::before { content: ""; width: 10px; height: 10px; border-radius: 50%; flex: none; }
.sc-title.orange-dot::before { background: var(--orange); }
.sc-title.check::before { background: var(--teal); }
.sc-title.shield::before { background: var(--ink); }
.sc-body { font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.sc-time { font-size: .68rem; color: var(--muted); opacity: .8; margin-top: .3rem; }
.sc-1 { top: 4%; right: -1rem; }
.sc-2 { top: 38%; right: -2.4rem; }
.sc-3 { top: 70%; right: -1.2rem; }
.heart-sticker, .plane-sticker {
  position: absolute; background: #fff; border-radius: 50%;
  box-shadow: var(--shadow-md); display: grid; place-items: center; z-index: 4;
}
.heart-sticker { width: 58px; height: 58px; top: 32%; left: -1.4rem; }
.heart-sticker svg { width: 28px; }
.plane-sticker { width: 74px; height: 74px; bottom: 2%; right: -.6rem; border-radius: 22px; transform: rotate(6deg); }
.plane-sticker svg { width: 44px; }

/* trust strip */
.trust-strip {
  position: relative; max-width: var(--maxw); margin: 2.5rem auto 0;
  background: var(--cream-2); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 2rem 1.8rem; text-align: center;
  box-shadow: var(--shadow-sm);
}
.trust-title { font-weight: 700; color: var(--muted); font-size: .95rem; }
.trust-list {
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.2rem; align-items: center;
}
.trust-list li { display: flex; align-items: center; gap: .6rem; color: var(--ink-2); opacity: .75; flex: 1; justify-content: center; }
.tl-ic { width: 30px; height: 30px; }
.tl-ic svg { width: 100%; height: 100%; }
.tl-name { font-weight: 800; letter-spacing: .14em; font-size: .8rem; text-transform: uppercase; display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.tl-name em { font-style: normal; font-weight: 600; font-size: .62rem; letter-spacing: .22em; color: var(--muted); }

/* ============================================================
   HOW WAYLEN WORKS
   ============================================================ */
.how { max-width: var(--maxw); margin: 0 auto; padding: 5rem 1.5rem 3.5rem; text-align: center; }
.how-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  margin-top: 2.6rem; text-align: left;
}
.how-card {
  position: relative; background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute; top: -16px; left: 1.4rem; width: 34px; height: 34px;
  border-radius: 50%; background: var(--teal); color: #fff; font-weight: 900;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.how-card:nth-child(2) .step-num { background: var(--orange); }
.how-card:nth-child(3) .step-num { background: var(--ink); }
.hc-visual { height: 180px; display: grid; place-items: center; margin-bottom: 1.4rem; overflow: hidden; }
.hc-visual img { max-height: 92%; width: auto; }
.how-card:nth-child(2) .hc-visual { background: var(--cream); border-radius: 16px; border: 1.5px solid var(--line); }
.mini-phone {
  background: var(--cream); border-radius: 16px; padding: .8rem; width: 100%;
  display: flex; flex-direction: column; gap: .45rem; border: 1.5px solid var(--line);
}
.mp-bubble { font-size: .74rem; padding: .45rem .7rem; border-radius: 12px; max-width: 88%; }
.mp-bubble.them { background: #fff; border: 1px solid var(--line); align-self: flex-start; }
.mp-bubble.me { background: var(--teal); color: #fff; align-self: flex-end; }
.clipboard {
  position: relative; background: var(--teal-soft); border-radius: 16px;
  padding: 1.4rem 1.2rem 1rem; width: 78%;
}
.cb-clip { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); width: 46px; height: 16px; background: var(--ink); border-radius: 8px; }
.clipboard ul { background: #fff; border-radius: 10px; padding: .7rem .9rem; font-size: .78rem; font-weight: 700; display: grid; gap: .35rem; }
.cb-check {
  position: absolute; right: -12px; bottom: -12px; width: 42px; height: 42px;
  background: var(--teal); border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.cb-check svg { width: 22px; }
.how-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .4rem; }
.how-card p { color: var(--muted); font-size: .95rem; }
.how-divider { position: relative; height: 46px; margin-top: .4rem; }
.how-divider::before {
  content: ""; position: absolute; left: 12%; right: 12%; top: 50%;
  border-top: 2px dashed #CBBFA9;
}
.hd-dots {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; background: var(--teal); border-radius: 50%;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.hd-dots svg { width: 24px; }

.feature-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: var(--cream-2); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem; margin-top: .6rem; text-align: left;
}
.feature-row li { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: .7rem; align-items: center; }
.fr-icon {
  grid-row: 1 / 3; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--teal-soft); color: var(--teal);
  display: grid; place-items: center;
}
.fr-icon svg { width: 22px; height: 22px; }
.feature-row strong { font-size: .95rem; }
.feature-row span:not(.fr-icon) { font-size: .8rem; color: var(--muted); }

/* ============================================================
   IT'S LITERALLY JUST TEXTING
   ============================================================ */
.texting { padding: 4.5rem 1.5rem 3rem; }
.texting > .lede { margin-top: 1rem; }
.tx-grid {
  max-width: var(--maxw); margin: 3rem auto 0;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1.2rem; align-items: start;
}
.tx-col {
  background: var(--cream-2); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.tx-col header { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.tx-num {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: var(--teal); color: #fff; font-weight: 900; display: grid; place-items: center;
}
.tx-col:nth-of-type(2) .tx-num { background: var(--orange); }
.tx-col:nth-of-type(3) .tx-num { background: var(--ink); }
.tx-col h3 { font-size: 1.05rem; font-weight: 800; line-height: 1.3; }
.phone-tx { border-width: 6px; border-radius: 30px; }
.tx-caption { margin-top: 1.1rem; font-size: .9rem; color: var(--muted); text-align: center; }
.tx-arrow { align-self: center; width: 56px; color: var(--teal); }
.tx-arrow svg { width: 100%; }

/* dark video band */
.video-band {
  position: relative; max-width: var(--maxw); margin: 3.5rem auto 0;
  background: linear-gradient(135deg, #0A1B3D 0%, #12295A 60%, #0E2148 100%);
  border-radius: var(--r-xl); color: #fff;
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr); gap: 2rem; align-items: center;
  padding: 3rem 3rem 6.5rem; overflow: visible;
}
.vb-mascot {
  position: absolute; left: 2.2rem; bottom: 1.2rem; width: 132px; z-index: 2;
  border-radius: 28px; background: rgba(255,255,255,.08);
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.35));
}
.vb-copy { padding-left: 9rem; max-width: 32rem; }
.vb-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.vb-copy p { color: #C6D2EC; margin-top: 1rem; max-width: 26rem; }
.vb-player {
  position: relative; border-radius: 22px; overflow: hidden; cursor: pointer;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .45); border: 4px solid rgba(255,255,255,.12);
}
.vb-player video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.sticky-quote {
  position: absolute; left: 8.6rem; bottom: -3.2rem; background: #EFF6F3;
  padding: 1.1rem 1.3rem; border-radius: 6px 18px 18px 18px;
  box-shadow: var(--shadow-md); transform: rotate(-4deg); color: var(--ink);
  font-weight: 700; z-index: 3;
}
.sq-heart { position: absolute; right: .6rem; bottom: .5rem; width: 18px; display: block; }
.vb-stats {
  position: absolute; left: 18rem; right: 2.5rem; bottom: 1.6rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; padding: 1rem 1.4rem;
}
.vb-stats li { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: .6rem; align-items: center; }
.vbs-ic {
  grid-row: 1 / 3; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #FFD9B3; display: grid; place-items: center;
}
.vbs-ic svg { width: 18px; height: 18px; }
.vb-stats strong { font-size: .85rem; }
.vb-stats span:not(.vbs-ic) { font-size: .72rem; color: #B9C6E4; }

/* ============================================================
   THE REAL COST
   ============================================================ */
.cost { max-width: var(--maxw); margin: 0 auto; padding: 5.5rem 1.5rem 3rem; }
.cost-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; }
.cost-stage { position: relative; min-height: 320px; }
.cost-mascot { width: 250px; margin: 0 auto; filter: drop-shadow(0 16px 22px rgba(10,27,61,.15)); }
.cost-mascot-2 { position: absolute; width: 150px; left: 4%; bottom: -8%; }
.note {
  position: absolute; background: #FFF3C9; padding: .7rem .9rem; width: 128px;
  font-size: .74rem; font-weight: 700; line-height: 1.35; color: #4A421F;
  border-radius: 2px; box-shadow: var(--shadow-sm);
}
.nA { top: 0; right: 22%; transform: rotate(3deg); }
.nB { top: 16%; right: 0; transform: rotate(-2deg); background: #FFE9C9; }
.nC { top: 44%; right: 2%; transform: rotate(2deg); }
.nD { top: 70%; right: 10%; transform: rotate(-3deg); background: #FFE9C9; }
.nE { top: 58%; right: 38%; transform: rotate(-1deg); width: 110px; }

.vs-grid {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
  margin-top: 3rem;
}
.vs-card { border-radius: var(--r-lg); padding: 1.8rem 2rem; }
.vs-card.without { background: #F3EDE3; border: 1.5px solid #E5DAC8; }
.vs-card.with { background: var(--teal-soft); border: 1.5px solid #C6E0D8; }
.vs-card header h3 { font-size: 1rem; font-weight: 800; color: var(--muted); }
.vs-card.with header h3 { color: var(--teal-dark); }
.vs-card header h4 { font-size: 1.3rem; font-weight: 900; margin: .2rem 0 1.1rem; }
.vs-list { display: grid; gap: .8rem; }
.vs-list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; font-size: .95rem; }
.vs-list i {
  flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  font-style: normal; font-size: .7rem; font-weight: 900; margin-top: .1rem;
}
.vs-list.bad i { background: #E2D5BF; color: #7A6A4C; }
.vs-list.good i { background: var(--teal); color: #fff; }
.vs-list.good i svg { width: 13px; }
.vs-pill {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: #fff;
  font-weight: 900; display: grid; place-items: center; z-index: 2;
  border: 5px solid var(--cream); font-size: .85rem;
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.stat {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1.5rem 1.4rem; text-align: center; box-shadow: var(--shadow-sm);
}
.stat-icon {
  width: 46px; height: 46px; margin: 0 auto .7rem; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-num { font-size: 1.7rem; font-weight: 900; color: var(--ink); }
.stat-label { font-size: .85rem; color: var(--muted); margin-top: .2rem; }

/* testimonials */
.stories { margin-top: 5rem; text-align: center; }
.story-heart { display: inline-block; width: 26px; vertical-align: -2px; }
.story-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.2rem; text-align: left; }
.story-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1.3rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.stars { color: #F5A623; letter-spacing: 2px; font-size: .95rem; }
.story-card blockquote { margin: .7rem 0 1rem; font-size: .87rem; color: var(--ink-2); flex: 1; }
.story-card footer { display: flex; align-items: center; gap: .6rem; }
.avatar-ini {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 900; font-size: .8rem; color: #fff; flex: none;
}
.a-teal { background: var(--teal); }
.a-orange { background: var(--orange); }
.a-navy { background: var(--ink); }
.story-card footer strong { font-size: .84rem; display: block; }
.story-card footer span:not(.avatar-ini) { font-size: .74rem; color: var(--muted); }

/* built for */
.builtfor { position: relative; margin-top: 5rem; text-align: center; }
.bf-mascot { position: absolute; left: -4.5rem; bottom: -3.5rem; width: 125px; z-index: 2; }
.bf-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.4rem; text-align: left; }
.bf-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1.1rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.bf-card header { display: flex; align-items: center; gap: .5rem; margin-bottom: .8rem; }
.bf-ic {
  width: 30px; height: 30px; flex: none; border-radius: 9px;
  background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center;
}
.bf-ic svg { width: 17px; height: 17px; }
.bf-card h3 { font-size: .9rem; font-weight: 800; line-height: 1.25; }
.bf-art { border-radius: 12px; overflow: hidden; margin-bottom: .8rem; width: 100%; height: auto; }
.bf-art img, .bf-art svg { width: 100%; height: auto; display: block; }
.bf-card p { font-size: .8rem; color: var(--muted); flex: 1; }
.bf-link { margin-top: .8rem; font-weight: 800; font-size: .82rem; color: var(--teal-dark); }
.bf-link:hover { color: var(--orange); }

/* navy band with phone input */
.navy-band {
  position: relative; margin-top: 4.5rem;
  background: linear-gradient(120deg, #0E2148 0%, #14306A 100%);
  border-radius: var(--r-xl); color: #fff;
  display: grid; grid-template-columns: auto 1fr 1.2fr; gap: 2.5rem; align-items: center;
  padding: 2.6rem 3rem;
}
.nb-mascot { width: 185px; margin-bottom: -3.4rem; align-self: end; filter: drop-shadow(0 14px 20px rgba(0,0,0,.35)); }
.nb-copy h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.phone-form.on-navy { border: 0; }
.nb-stats { display: flex; gap: 1.6rem; margin-top: 1.1rem; flex-wrap: wrap; }
.nb-stats li { display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: #C6D2EC; }
.nb-stats strong { color: #fff; font-size: .82rem; }
.btn-white.btn-form { color: var(--orange-dark); padding: .75rem 1.3rem; font-size: .9rem; }
.trusted-line {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: 2rem; font-weight: 700; font-size: .9rem; color: var(--muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: var(--maxw); margin: 0 auto; padding: 5rem 1.5rem 3rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: start; }
.faq-list { margin-top: 2rem; display: grid; gap: .8rem; }
.faq-list details {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-sm);
}
.faq-list summary {
  list-style: none; cursor: pointer; font-weight: 800; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-chev {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--cream);
  position: relative; transition: transform .2s ease;
}
.faq-chev::before {
  content: ""; position: absolute; inset: 0; margin: auto; width: 8px; height: 8px;
  border-right: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink);
  transform: rotate(45deg) translate(-1px, -1px);
}
details[open] .faq-chev { transform: rotate(180deg); }
.faq-list details p { margin-top: .8rem; color: var(--muted); font-size: .95rem; }

.faq-demo {
  background: var(--cream-2); border: 1.5px solid var(--line); border-radius: var(--r-xl);
  padding: 2rem 2rem 2.6rem; box-shadow: var(--shadow-sm);
}
.faq-demo > .serif { font-size: 1.7rem; margin-top: .2rem; }
.faq-demo > p { color: var(--muted); margin-top: .5rem; }
.fd-stage { position: relative; margin-top: 1.6rem; padding-right: 10.5rem; padding-bottom: 1rem; }
.phone-demo { width: min(300px, 100%); margin: 0 auto; }
.fd-video {
  position: relative; margin: 0; cursor: pointer; border-radius: 22px; overflow: hidden;
  border: 1.5px solid var(--line); box-shadow: var(--shadow-md); background: #fff;
}
.fd-video video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.fd-1 { top: 2%; right: 0; }
.fd-2 { top: 36%; right: -.6rem; }
.fd-3 { top: 68%; right: .4rem; }

/* CTA panel */
.cta-panel {
  margin-top: 4rem; background: linear-gradient(120deg, #0E2148 0%, #14306A 100%);
  border-radius: var(--r-xl); color: #fff;
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: center;
  padding: 3rem 3.4rem;
}
.cp-mascot-wrap { position: relative; }
.cp-mascot { width: min(300px, 100%); margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.4)); }
.cp-heart {
  position: absolute; top: 8%; left: 2%; width: 58px; height: 58px; background: #fff;
  border-radius: 18px; display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.cp-heart svg { width: 30px; }
.cp-spark { position: absolute; color: #FFC98A; font-size: 1.3rem; }
.sp1 { top: 0; right: 16%; }
.sp2 { bottom: 14%; left: -4%; font-size: 1rem; }
.sp3 { top: 34%; right: -2%; font-size: .9rem; }
.cp-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cp-copy > p { color: #C6D2EC; margin-top: 1rem; max-width: 34rem; }
.cp-actions { display: flex; gap: 1rem; margin-top: 1.6rem; flex-wrap: wrap; }
.cp-stats { display: flex; gap: 2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.cp-stats li { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; column-gap: .5rem; align-items: center; font-size: .8rem; }
.cp-stats .ic-sm { grid-row: 1 / 3; width: 30px; height: 30px; padding: 6px; background: rgba(255,255,255,.1); border-radius: 50%; color: #FFD9B3; }
.cp-stats strong { font-size: .85rem; }
.cp-stats span:not(.ic-sm) { color: #B9C6E4; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { max-width: var(--maxw); margin: 0 auto; padding: 4.5rem 1.5rem 3rem; }
.pricing-panel {
  background: var(--cream-2); border: 1.5px solid var(--line); border-radius: var(--r-xl);
  padding: 3rem; display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem;
  box-shadow: var(--shadow-sm);
}
.pr-copy { position: relative; }
.pr-mascot { width: 170px; margin-top: 2rem; }
.pr-cards { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.4rem; align-items: start; }
.price-card {
  position: relative; background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
}
.price-card.popular { border: 2.5px solid var(--orange); box-shadow: var(--shadow-md); }
.pc-flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-weight: 800; font-size: .78rem;
  padding: .35rem 1.2rem; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.25rem; font-weight: 900; }
.pc-sub { font-size: .85rem; color: var(--muted); }
.pc-amount { font-size: 2.6rem; font-weight: 900; margin-top: .8rem; line-height: 1; }
.pc-amount span { font-size: 1rem; font-weight: 700; color: var(--muted); }
.pc-note { font-size: .8rem; color: var(--muted); margin: .3rem 0 1.2rem; }
.price-card ul { display: grid; gap: .65rem; margin-bottom: 1.6rem; }
.price-card li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; font-weight: 600; }
.price-card li i {
  flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-soft);
  color: var(--teal-dark); display: grid; place-items: center; margin-top: .1rem;
}
.price-card li i svg { width: 12px; }

/* family */
.family { margin-top: 3rem; text-align: center; }
.fam-title { font-weight: 700; color: var(--muted); font-size: .95rem; }
.fam-row { display: flex; justify-content: center; gap: 1rem; margin-top: 1.2rem; flex-wrap: wrap; }
.fam-row a {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.6rem; font-family: var(--serif); font-weight: 700; font-size: 1.2rem;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.fam-row a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fam-row a[aria-current] { border-color: var(--orange); }
.fam-row em { font-style: normal; font-family: var(--sans); font-weight: 600; font-size: .78rem; color: var(--muted); margin-top: .2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--cream-3); border-top: 1.5px solid var(--line); margin-top: 4rem; }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 3.5rem 1.5rem 2rem;
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr) 1.6fr; gap: 2rem;
}
.f-brand p { font-size: .88rem; color: var(--muted); margin-top: .9rem; max-width: 17rem; }
.f-social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.f-social a {
  width: 36px; height: 36px; border-radius: 50%; background: #fff;
  border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--ink-2);
  transition: color .15s ease, border-color .15s ease;
}
.f-social a:hover { color: var(--orange); border-color: var(--orange); }
.f-social svg { width: 17px; height: 17px; }
.f-col h3 { font-size: .85rem; font-weight: 900; letter-spacing: .04em; margin-bottom: .9rem; }
.f-col a { display: block; font-size: .88rem; color: var(--muted); padding: .28rem 0; font-weight: 600; }
.f-col a:hover { color: var(--orange); }
.f-news h3 { font-size: .95rem; font-weight: 900; }
.f-news p { font-size: .85rem; color: var(--muted); margin: .5rem 0 .9rem; }
.news-form {
  display: flex; background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: .3rem .3rem .3rem 1.1rem;
}
.news-form input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; font: inherit; font-weight: 600; }
.news-form button {
  width: 40px; height: 40px; border-radius: 50%; background: var(--orange); flex: none;
  display: grid; place-items: center;
}
.news-form button svg { width: 18px; }
.footer-legal {
  max-width: var(--maxw); margin: 0 auto; padding: 1.4rem 1.5rem 2rem;
  border-top: 1px solid var(--line); display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; font-size: .78rem; color: var(--muted);
}
.footer-legal a { text-decoration: underline; }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; }
.video-modal[hidden] { display: none; }
.vm-backdrop { position: absolute; inset: 0; background: rgba(7, 15, 34, .75); backdrop-filter: blur(4px); }
.vm-body { position: relative; width: min(880px, 92vw); }
.vm-body video { width: 100%; border-radius: 18px; box-shadow: var(--shadow-lg); }
.vm-close {
  position: absolute; top: -44px; right: 0; color: #fff; font-size: 1.3rem;
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15);
}

/* ============================================================
   REVEAL + PARALLAX
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  [data-plx] { transform: none !important; }
}
[data-plx] { will-change: transform; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .story-grid { grid-template-columns: repeat(3, 1fr); }
  .bf-grid { grid-template-columns: repeat(3, 1fr); }
  .vb-copy { padding-left: 8rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream-2); padding: 1.4rem; gap: 1.1rem; box-shadow: var(--shadow-md);
  }
  .nav-mobile-cta { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }

  .hero-grid, .cost-head, .faq-grid, .pricing-panel, .cta-panel { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-stage { padding: 1rem 0 3rem; margin-top: 1rem; }
  .phone-hero { margin-inline: auto; }
  .sc-1 { right: 0; } .sc-2 { right: 0; } .sc-3 { right: 0; }
  .hero-mascot { left: -.6rem; width: 180px; }
  .heart-sticker { left: -.2rem; }
  .plane-sticker { right: 0; }

  .how-cards { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .tx-grid { grid-template-columns: 1fr; }
  .tx-arrow { display: none; }

  .video-band { grid-template-columns: 1fr; padding: 2.4rem 1.6rem 2rem; }
  .vb-copy { padding-left: 0; }
  .vb-mascot { position: static; width: 110px; margin-bottom: -.5rem; }
  .sticky-quote { display: none; }
  .vb-stats { position: static; margin-top: 1.6rem; grid-template-columns: 1fr 1fr; }
  .video-band { padding-bottom: 2rem; }

  .vs-grid { grid-template-columns: 1fr; }
  .vs-pill { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .bf-grid { grid-template-columns: 1fr 1fr; }
  .bf-mascot { display: none; }

  .navy-band { grid-template-columns: 1fr; padding: 2.2rem 1.6rem; gap: 1.4rem; }
  .nb-mascot { margin: 0 auto -1rem; width: 120px; }

  .fd-stage { padding-right: 0; }
  .fd-1, .fd-2, .fd-3 { display: none; }
  .pr-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .stats, .story-grid, .bf-grid, .feature-row, .vb-stats { grid-template-columns: 1fr; }
  .hero { padding-inline: 1.25rem; }
  .hero-grid {
    display: block; width: calc(100vw - 2.5rem); max-width: calc(100vw - 2.5rem);
    min-width: 0; margin-inline: 0;
  }
  .hero-copy, .hero-stage { width: 100%; max-width: 100%; min-width: 0; }
  .hero-body { width: 100%; max-width: 100%; overflow-wrap: anywhere; }
  .copy-desktop { display: none; }
  .copy-mobile { display: inline; }
  .phone-hero { width: min(340px, calc(100vw - 3rem)); }
  .phone-form { flex-wrap: wrap; border-radius: 22px; padding: .7rem; gap: .6rem; }
  .phone-form input { width: 100%; flex: 1 1 8rem; }
  .btn-form { width: 100%; }
  .hero-actions { width: 100%; }
  .btn-hero-sms {
    width: 100%; max-width: calc(100vw - 2.5rem); min-height: 72px; padding: 1rem 1.1rem; gap: .7rem;
    font-size: .98rem; text-align: left;
  }
  .btn-hero-sms .cta-arrow { width: 1.15em; height: 1.15em; }
  .hero-stats { gap: 1.2rem; }
  .trust-list { gap: 1rem; }
  .trust-list li { flex: 1 1 40%; }
  .cost-stage { min-height: 300px; margin-top: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; }
  .cp-actions .btn { width: 100%; }
}

/* ---------- legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.legal h1 { font-family: var(--serif); font-size: 2.2rem; margin-bottom: .4rem; }
.legal .updated { color: var(--muted); font-size: .88rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.25rem; font-weight: 800; margin: 2rem 0 .6rem; }
.legal p, .legal li { color: var(--ink-2); font-size: .97rem; margin-bottom: .7rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal a { color: var(--teal-dark); text-decoration: underline; }
