/* ===========================================================================
   MiNT Movement — funnel styles
   Brand system: Navy #043353 + Mint Green #7AE9C8, Anton display / Poppins body.
   Single shared stylesheet, no build step.
   =========================================================================== */

:root {
  /* MiNT brand palette */
  --navy: #043353;       /* primary brand — text + dark surfaces */
  --navy-soft: #1C3A4F;  /* softer navy for lede/body emphasis */
  --mint: #7AE9C8;       /* primary accent — CTAs, highlights */
  --mint-deep: #1DBB8A;  /* deeper mint — text-safe accent, links */
  --mint-tint: #F4FDFB;  /* off-white mint — section backgrounds, cards */

  /* semantic tokens used throughout */
  --ink: var(--navy);
  --ink-soft: var(--navy-soft);
  --paper: #FFFFFF;      /* page background */
  --paper-2: var(--mint-tint);
  --muted: #4A6070;      /* blue-gray secondary text */
  --line: #DCE7EC;       /* hairline borders */
  --accent: var(--mint-deep);
  --white: #FFFFFF;
  --danger: #E05555;

  --serif: 'Anton', sans-serif;   /* display font (kept var name for reuse) */
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: var(--serif);
  --font-body: var(--sans);

  --maxw: 760px;
  --maxw-wide: 1080px;
  --radius: 4px;
  --space-section: clamp(44px, 6vw, 76px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em;
  background: var(--paper-2);
  padding: 0.1em 0.4em;
  border-radius: var(--radius);
}

/* ---- Layout ---- */
.section { padding: var(--space-section) 24px; }
.section > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section--wide > * { max-width: var(--maxw-wide); }
.center { text-align: center; }

/* ---- Header / footer ---- */
.site-header {
  display: flex; justify-content: center; align-items: center;
  padding: 14px 24px; border-bottom: 1px solid var(--line);
}
.wordmark {
  text-decoration: none; color: var(--ink);
  display: inline-flex; align-items: center; gap: 12px;
}
.wordmark__logo { height: 32px; width: auto; display: block; }
.wordmark__sub {
  font-family: var(--sans); font-size: 14px; letter-spacing: 0.26em;
  color: var(--ink); text-transform: uppercase; font-weight: 600;
}
.site-footer {
  border-top: 1px solid var(--line); padding: 40px 24px;
  text-align: center; color: var(--muted); font-size: 13px; letter-spacing: 0.02em;
}

/* ---- Type ---- */
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.28em; font-size: 12px;
  font-weight: 700; color: var(--mint-deep); margin: 0 auto 14px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 4px 10px;
}
.eyebrow .sep { opacity: 0.7; }
.eyebrow .phase { white-space: nowrap; }
/* On phones, shrink so the full 1→2→3 line still fits on one row */
@media (max-width: 600px) {
  .eyebrow { font-size: 10px; letter-spacing: 0.04em; gap: 3px 6px; }
}
@media (max-width: 360px) {
  .eyebrow { font-size: 9px; letter-spacing: 0.02em; gap: 2px 4px; }
}
.display {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 6vw, 58px); line-height: 1.04;
  letter-spacing: 0.01em; margin: 0 auto 18px; color: var(--ink);
}
.heading {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4.5vw, 44px); line-height: 1.08;
  letter-spacing: 0.01em; margin: 0 auto 16px; color: var(--ink);
}
.lede { font-size: clamp(18px, 2.4vw, 21px); color: var(--ink-soft); margin: 0 0 28px; }
.sub { color: var(--muted); margin: 0; }
/* Section headers are centered across the page for a consistent rhythm;
   body content (lists, long paragraphs) stays left-aligned for readability. */
.section__head { margin-bottom: 44px; text-align: center; }
.section__head .sub { max-width: 600px; margin-left: auto; margin-right: auto; }

.hero { text-align: center; padding-top: clamp(20px, 3vw, 36px); }
.hero .lede { max-width: 640px; margin-left: auto; margin-right: auto; }
/* Booking page: smaller headline + tighter spacing around the embed */
[data-page="book"] .display { font-size: clamp(30px, 4.6vw, 46px); }
/* Thank-you page: keep the headline on one line on desktop */
[data-page="thank-you"] .hero .display { font-size: clamp(28px, 4.3vw, 44px); max-width: 820px; }
[data-page="book"] .hero .lede { margin-bottom: 6px; }
[data-page="book"] .hero .embed--calendly { margin-top: 4px; }
[data-page="book"] .hero { padding-bottom: 32px; }
[data-page="book"] .hero + .section { padding-top: 44px; }
.booking-help {
  text-align: center; max-width: 560px; margin: 22px auto 0;
  color: var(--ink-soft); font-size: 15px; line-height: 1.5;
}
.booking-help a { color: var(--mint-deep); font-weight: 700; text-decoration: underline; }

/* ---- Embeds (video + calendly) ---- */
.embed { position: relative; margin: 8px auto 0; }
.embed--video { aspect-ratio: 16 / 9; width: 100%; }
.embed__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center;
  background: var(--ink); color: #C7CDD6; border-radius: var(--radius);
}
.embed__placeholder p { margin: 0; font-size: 13px; color: #8A93A3; }
.embed__placeholder code { background: rgba(255, 255, 255, 0.08); color: #C7CDD6; }
.embed__tag {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600; color: #fff; border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px; border-radius: 100px;
}
.embed iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius); display: block; }

/* VSL "tap for sound" overlay (autoplays muted, click restarts with sound) */
.vsl-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; padding: 0; border: 0;
  border-radius: var(--radius); cursor: pointer;
  /* Darker top/bottom strips mask YouTube's title bar + logo; center stays visible */
  background: linear-gradient(
    to bottom,
    rgba(14, 23, 38, 0.94) 0%,
    rgba(14, 23, 38, 0.94) 13%,
    rgba(14, 23, 38, 0.14) 30%,
    rgba(14, 23, 38, 0.14) 78%,
    rgba(14, 23, 38, 0.88) 100%
  );
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.vsl-overlay--hidden { opacity: 0; pointer-events: none; }
/* Wrapper (no visible frame) */
.vsl-overlay__frame {
  display: flex; width: 72%; max-width: 560px;
}
/* Brand-tinted card with evenly-emanating ripple rings */
.vsl-overlay__card {
  position: relative;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(10px, 1.6vw, 16px);
  padding: clamp(22px, 4vw, 40px) clamp(20px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(29, 187, 138, 0.42);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  transition: transform 0.2s ease;
}
/* Ripple rings: box-shadow spread grows the ring evenly on all sides (no scale distortion) */
.vsl-overlay__card::before,
.vsl-overlay__card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  animation: vslRipple 3s ease-out infinite;
}
.vsl-overlay__card::after { animation-delay: 1.5s; }
.vsl-overlay:hover .vsl-overlay__card { transform: scale(1.03); }
@keyframes vslRipple {
  0%   { box-shadow: 0 0 0 0 rgba(122, 233, 200, 0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(122, 233, 200, 0); }
  100% { box-shadow: 0 0 0 16px rgba(122, 233, 200, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .vsl-overlay__card::before, .vsl-overlay__card::after { animation: none; }
}
.vsl-overlay__icon { color: #fff; line-height: 0; }
.vsl-overlay__icon svg {
  width: clamp(40px, 6vw, 60px); height: clamp(40px, 6vw, 60px);
  fill: currentColor;
}
.vsl-overlay__text { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.vsl-overlay__l1, .vsl-overlay__l2 {
  color: #fff; font-weight: 800; line-height: 1.22;
  font-size: clamp(17px, 2.4vw, 26px); letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
/* Wide so Calendly renders its two-column layout (event panel + calendar) */
.embed--calendly { min-height: 660px; max-width: 1000px; width: 100%; }
.embed--calendly .embed__placeholder { position: relative; min-height: 480px; }
.embed--live { background: transparent; }

/* ---- Form ---- */
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; position: relative; }
.field label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px; width: 100%;
  transition: border-color 0.15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink);
}
.field--invalid input, .field--invalid select, .field--invalid textarea { border-color: var(--danger); }
.field__error { margin: 0; color: var(--danger); font-size: 13px; min-height: 0; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field-row { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 13px; }
  .form { gap: 13px; }
  .field { gap: 5px; }
  .field label { font-size: 12px; letter-spacing: 0.03em; }
  .field input, .field select, .field textarea { padding: 12px 14px; }
  .form .btn { margin-top: 2px; }
  .form .note { margin-top: 16px; }
  /* keep the apply subhead on one line on phones (scales to fit narrow screens) */
  .apply .section__head .sub { white-space: nowrap; font-size: clamp(10px, 3.1vw, 14px); }
}

/* ---- Buttons (brand: mint pill, navy uppercase Poppins Bold) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--mint); color: var(--navy); border: 1px solid var(--mint);
  border-radius: 100px; padding: 17px 40px; cursor: pointer;
  text-decoration: none; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { background: var(--navy); border-color: var(--navy); color: var(--mint); }
.btn:disabled { background: var(--mint); border-color: var(--mint); color: var(--navy); opacity: 0.5; cursor: default; }
.btn--block { width: 100%; }
.form .btn { margin-top: 4px; }
.form-status { color: var(--danger); font-size: 14px; margin: 0 0 4px; }

/* ---- Not a fit ---- */
.not-a-fit {
  text-align: center; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 48px 32px; background: var(--white);
}
.not-a-fit h3 { font-family: var(--font-body); font-weight: 700; font-size: 22px; margin: 0 0 12px; color: var(--ink); }
.not-a-fit p { color: var(--muted); margin: 0 auto; max-width: 440px; }

/* ---- Reviews ---- */
.reviews { background: var(--paper-2); }
.reviews__grid {
  display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); margin-top: 48px;
}
@media (max-width: 820px) {
  .reviews__grid { grid-template-columns: 1fr; max-width: 520px; }
}
.review {
  margin: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.review .stars { letter-spacing: 3px; color: var(--accent); font-size: 13px; }
.review__quote { font-family: var(--font-body); font-weight: 500; font-size: 17px; line-height: 1.55; margin: 0; flex: 1; color: var(--ink-soft); }
.review__by { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--paper-2);
  border: 1px solid var(--line); flex: 0 0 auto;
}
.review__name { font-size: 14px; font-weight: 600; margin: 0; }
.review__co { font-size: 13px; color: var(--muted); margin: 0; }

/* ---- Expectations list (thank-you) ---- */
.expect { list-style: none; padding: 0; margin: 44px auto 0; max-width: 640px; display: grid; gap: 0; }
.expect li {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.expect li:last-child { border-bottom: 0; }
.expect .num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; line-height: 1; flex: 0 0 auto;
}
@media (max-width: 560px) { .expect .num { width: 40px; height: 40px; font-size: 18px; } }
.expect strong { display: block; margin-bottom: 4px; }
.expect .t { color: var(--muted); }

/* ---- Cards (What You Get): icon inline with title, copy beneath ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.card {
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px;
  align-items: center; align-content: start;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px; box-shadow: 0 2px 10px rgba(4, 51, 83, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(4, 51, 83, 0.13);
  border-color: rgba(122, 233, 200, 0.7);
}
.card__icon {
  width: 46px; height: 46px; border-radius: 13px; flex: 0 0 auto;
  background: var(--mint); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.card__icon svg { width: 23px; height: 23px; }
.card h3 { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--ink); margin: 0; letter-spacing: -0.01em; line-height: 1.2; }
.card p { grid-column: 1 / -1; margin: 16px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
@media (max-width: 860px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

/* ---- Timeline (months): big number on the left, title + copy on the right ---- */
.timeline { list-style: none; padding: 0; margin: 40px auto 0; max-width: 640px; }
.timeline > li {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.timeline > li:first-child { padding-top: 0; }
.timeline > li:last-child { border-bottom: 0; }
.timeline__marker { display: flex; flex-direction: column; align-items: flex-start; min-width: 64px; }
.timeline__label {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--mint-deep);
  line-height: 1; margin-bottom: 7px;
}
.timeline__num { font-family: var(--font-display); font-size: 54px; line-height: 0.78; color: var(--navy); }
/* push body down by the kicker height so the title aligns with the big number's top */
.timeline__body { padding-top: 17px; }
.timeline__body strong { display: block; font-size: 21px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.timeline__body p { margin: 0; color: var(--muted); }
@media (max-width: 560px) {
  .timeline > li { gap: 16px; }
  .timeline__marker { min-width: 46px; }
  .timeline__num { font-size: 40px; }
  .timeline__body { padding-top: 14px; }
}

/* ---- Misc ---- */
.note { color: var(--muted); font-size: 14px; text-align: center; margin-top: 24px; }
.placeholder-copy { color: var(--muted); font-style: italic; }

/* ---- Long-form landing sections ---- */
.section--tint { background: var(--paper-2); }
.cta-row { text-align: center; margin-top: 44px; }

/* MiNT Momentum community banner (keep-building page) */
.momentum-banner {
  display: block; max-width: 620px; margin: 40px auto 0;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(4, 51, 83, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.momentum-banner img { width: 100%; display: block; }
@media (hover: hover) {
  .momentum-banner:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(4, 51, 83, 0.17); }
}
.hero .btn { margin-top: 40px; }

.prose > p { font-size: clamp(17px, 2vw, 19px); color: var(--ink-soft); margin: 0 0 1.15em; }
.prose > p:last-child { margin-bottom: 0; }
.prose .lead-in { color: var(--ink); }

/* Stacked list: bold lead + muted detail, hairline dividers (Is This You / What You Get) */
.stack { list-style: none; padding: 0; margin: 44px auto 0; max-width: 640px; }
.stack > li { padding: 24px 0; border-bottom: 1px solid var(--line); }
.stack > li:first-child { padding-top: 0; }
.stack > li:last-child { border-bottom: 0; padding-bottom: 0; }
.stack strong { display: block; margin-bottom: 8px; font-size: 19px; font-weight: 600; color: var(--ink); }
.stack p { margin: 0; color: var(--muted); }
/* Icon variant: navy circle + mint icon to the left of each point */
.stack--icons > li { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.stack__icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--mint);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.stack__icon svg { width: 22px; height: 22px; }
@media (max-width: 560px) {
  .stack--icons > li { gap: 14px; }
  .stack__icon { width: 40px; height: 40px; }
  .stack__icon svg { width: 20px; height: 20px; }
}

/* Dashed bullet list (Who This Isn't For) */
.points { list-style: none; padding: 0; margin: 36px auto 0; max-width: 640px; display: grid; gap: 16px; }
.points li { position: relative; padding-left: 28px; color: var(--ink-soft); }
.points li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* Testimonial video grid */
.video-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.video-grid .embed { margin: 0; }
/* Vertical (Shorts) testimonials: 9:16 tiles, narrower columns, centered */
.embed--portrait { position: relative; aspect-ratio: 9 / 16; width: 100%; }
.video-grid--portrait {
  grid-template-columns: repeat(3, minmax(0, 230px));
  justify-content: center; margin-top: 24px;
}
@media (max-width: 820px) {
  .video-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .video-grid--portrait { grid-template-columns: minmax(0, 240px); }
}

/* Success-story screenshots — featured top row + masonry, click to expand */
.proof-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; align-items: start; }
.proof-featured img, .proof-shots img {
  width: 100%; display: block;
  border-radius: var(--radius); border: 1px solid var(--line); cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
@media (hover: hover) {
  .proof-featured img:hover, .proof-shots img:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(4, 51, 83, 0.16);
    border-color: rgba(122, 233, 200, 0.7);
  }
}
.proof-shots { column-count: 2; column-gap: 24px; margin-top: 24px; }
.proof-shots img { margin: 0 0 24px; break-inside: avoid; }
@media (max-width: 640px) {
  .proof-featured { grid-template-columns: 1fr; }
  .proof-featured, .proof-shots { column-count: 1; max-width: 460px; margin-left: auto; margin-right: auto; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(4, 51, 83, 0.92); cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(680px, 92vw); max-height: 92vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45); }
.lightbox__close {
  position: absolute; top: 16px; right: 22px; color: #fff; font-size: 34px;
  line-height: 1; background: none; border: 0; cursor: pointer;
}

/* "How it works" subheading under the proof copy */
.subheading {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.01em; margin: 64px 0 24px; text-align: center; color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
