/* ── Atlas Intelligence — aalo.com grammar, Atlas palette ──
   Cinematic full-bleed photography, giant light grotesk, pinned narrative,
   dark→cream world flip, engagement cards. Native scroll + GSAP ScrollTrigger.
   Cloned from the TrustBuilder landing reference; palette + copy swapped. */

:root {
  --dark: #0D1014;          /* graphite near-black */
  --dark-2: #14171C;
  --serif: "Playfair Display", Georgia, serif;
  --cream: #F3F0E7;         /* warm paper world */
  --cream-2: #EAE6D9;
  --ink: #171A1E;
  --mut-d: rgba(243, 240, 231, .62);
  --mut-l: #545E5C;
  --gold: #C5A028;
  --gold-soft: #E8CF8A;
  --green: #0F4E4A;         /* deep petrol */
  --green-deep: #0B3835;
  --line-d: rgba(243, 240, 231, .16);
  --line-l: rgba(23, 26, 30, .14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark); color: var(--cream);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1280px, 92vw); margin: 0 auto; }
.kicker { font-size: 13px; font-weight: 400; color: var(--mut-l); margin-bottom: 18px; }
.kicker-gold { color: var(--gold-soft); }

/* reveal-on-enter default state (site.js animates in) */
.rv { opacity: 0; transform: translateY(28px); }
.no-js .rv, .rv.rv-done { opacity: 1; transform: none; }

/* ── nav ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: 40px;
  padding: 22px min(44px, 4vw);
  transition: background .4s ease, backdrop-filter .4s ease;
}
.nav.scrolled { background: rgba(12, 14, 18, .55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav-logo { font-size: 19px; font-weight: 500; letter-spacing: -.01em; }
.nav-logo span { color: var(--gold-soft); font-weight: 300; }
.nav-links { display: flex; gap: 28px; margin: 0 auto; }
.nav-links a { font-size: 14.5px; font-weight: 400; opacity: .92; transition: opacity .2s; }
.nav-links a:hover { opacity: .6; }
.nav-cta {
  font-size: 13.5px; font-weight: 600; padding: 11px 22px; border-radius: 999px;
  background: linear-gradient(180deg, #F0DA9E, var(--gold-soft)); color: var(--ink);
  box-shadow: 0 6px 20px rgba(197, 160, 40, .38);
  transition: transform .2s ease, box-shadow .3s ease;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 8px 26px rgba(197, 160, 40, .55); }
/* nav over light sections */
.nav.nav-light { color: var(--ink); }
.nav.nav-light.scrolled { background: rgba(243, 240, 231, .6); }
.nav.nav-light .nav-logo span { color: var(--gold); }
.nav.nav-light .nav-cta { box-shadow: 0 6px 20px rgba(197, 160, 40, .3); }

/* ── 1 · hero (pinned: scroll shrinks media into a rounded card) ── */
.hero { position: relative; height: 100vh; overflow: hidden; background: var(--dark); }
.hero-media {
  position: absolute; inset: 0; overflow: hidden;
  border-radius: 0; will-change: transform, border-radius; transform-origin: 50% 62%;
}
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; transform-origin: 50% 40%; }
.hero-scrim {
  position: absolute; inset: 0;
  /* soft: keep the golden hour alive, darken only under the text */
  background: linear-gradient(to top, rgba(9, 11, 14, .62) 0%, rgba(9, 11, 14, .1) 45%, rgba(9, 11, 14, .18) 100%);
}
.hero-title {
  position: absolute; left: min(56px, 5vw); bottom: 22vh; z-index: 2;
  font-family: var(--serif); font-size: clamp(40px, 5.4vw, 84px); font-weight: 460;
  line-height: 1.06; letter-spacing: -.015em;
}
/* bottom padding + negative margin: slide-up mask doesn't clip descenders */
.hero-title .hl { display: block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; }
.hero-title .hl span { display: inline-block; will-change: transform; }
/* CTA card: glass UI panel. Entrance animation on CHILDREN only — the card itself
   belongs to the GSAP scrub (single-owner rule; see reference). */
@keyframes card-in { from { opacity: 0; transform: translateY(18px); } }
.hero-card > * { animation: card-in 1s cubic-bezier(.22,.61,.36,1) .9s backwards; }
.hero-card {
  position: absolute; right: min(56px, 4vw); bottom: 22vh; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 24px; border-radius: 18px;
  background: rgba(12, 14, 18, .55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 207, 138, .55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35), 0 0 0 1px rgba(232, 207, 138, .12);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.hero-card:hover { background: rgba(12, 14, 18, .58); border-color: rgba(232, 207, 138, .55); transform: translateY(-3px); }
.hero-card-top {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 500; color: var(--cream); letter-spacing: -.01em;
}
.hero-card-top i {
  font-style: normal; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold-soft); color: var(--ink);
  font-size: 15px; transition: transform .3s ease;
}
.hero-card:hover .hero-card-top i { transform: translateX(3px); }
.hero-card-meta { font-size: 12.5px; font-weight: 400; color: var(--mut-d); }

/* logo marquee — bottom band of the hero. Entrance on children (single-owner:
   the container itself belongs to the hero scrub timeline). */
@keyframes logos-in { from { opacity: 0; transform: translateY(14px); } }
.hero-logos > * { animation: logos-in 1.1s cubic-bezier(.22,.61,.36,1) 1.15s backwards; }
.hero-logos {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 20px 0 26px; overflow: hidden;
  background: linear-gradient(to top, rgba(9, 11, 14, .6), rgba(9, 11, 14, 0));
}
.hlg-label {
  text-align: center; margin-bottom: 16px;
  font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(243, 240, 231, .55);
}
.hlg-track {
  display: flex; align-items: center; width: max-content;
  animation: hlg-scroll 30s linear infinite;
}
.hlg-item {
  display: inline-flex; align-items: center; gap: 11px; margin-right: 76px;
  color: rgba(243, 240, 231, .6); white-space: nowrap;
}
.hlg-item i {
  font-style: normal; font-size: 19px; font-weight: 600; letter-spacing: -.01em;
}
.hlg-svg { display: block; height: 24px; width: auto; }
.hlg-amazon { height: 26px; transform: translateY(4px); }  /* smile sits low in its viewBox */
@keyframes hlg-scroll { to { transform: translateX(-50%); } }

/* ── 2 · narrative (pinned) ── */
.narrative { position: relative; height: 520vh; background: #05070A; }
.narrative-pin { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.narrative-bg { position: absolute; inset: 0; opacity: .6; }
.narrative-bg img, .narrative-bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  will-change: transform; transform-origin: 50% 55%;
}
.nline {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(880px, 88vw); text-align: center;
  font-family: var(--serif); font-size: clamp(26px, 3vw, 44px); font-weight: 440;
  letter-spacing: -.005em; line-height: 1.28;
  opacity: 0; filter: blur(6px);
  text-shadow: 0 2px 26px rgba(0, 0, 0, .6), 0 1px 8px rgba(0, 0, 0, .45);
}
.nline b { font-weight: 500; color: var(--gold-soft); }
.nline-last { font-weight: 400; }

/* kicker above each line + progress dots */
.nk {
  display: block; margin-bottom: 20px;
  font-size: 12px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-soft); opacity: .85;
}
.nprog {
  position: absolute; left: 50%; bottom: 6vh; transform: translateX(-50%);
  display: flex; gap: 10px;
}
.nprog i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(165, 155, 132, .45);
  transition: background .35s ease, transform .35s ease;
}
.nprog i.on { background: var(--gold-soft); transform: scale(1.35); }

/* ── 3 · selected work: sticky card deck ── */
.why { background: var(--dark); padding: 14vh 0 0; }
.why-title {
  font-family: var(--serif); font-size: clamp(38px, 4.4vw, 70px); font-weight: 460;
  letter-spacing: -.015em; line-height: 1.08; margin-bottom: 7vh;
}
/* each wcard is sticky at the same top inside one container:
   the next card slides up and covers it. Pure CSS. */
.wdeck { padding-bottom: 22vh; }
.wcard {
  position: sticky; top: 96px;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 4vw; align-items: center;
  min-height: min(560px, 72vh);
  background: var(--dark-2); border: 1px solid var(--line-d); border-radius: 24px;
  padding: clamp(28px, 3.4vw, 56px);
  margin-bottom: 26px;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, .38);
}
.wcard-pill {
  display: inline-flex; align-items: center; align-self: flex-start;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
  background: rgba(232, 207, 138, .12); border: 1px solid rgba(232, 207, 138, .3);
  color: var(--gold-soft); font-size: 12.5px; font-weight: 500; letter-spacing: .08em;
}
.wcard-copy { display: flex; flex-direction: column; align-items: flex-start; }
.wcard-copy h3 {
  font-family: var(--serif); font-size: clamp(28px, 2.9vw, 46px); font-weight: 460;
  letter-spacing: -.012em; line-height: 1.12; margin-bottom: 16px;
}
.wcard-copy p { font-size: clamp(15px, 1.2vw, 17.5px); font-weight: 300; line-height: 1.55; color: var(--mut-d); max-width: 46ch; }
.wcard-img {
  width: 100%; height: min(440px, 56vh); object-fit: cover; border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .4);
}

/* ── 3b · metrics: proof band (cream) ── */
.metrics { background: var(--cream); color: var(--ink); padding: 16vh 0 14vh; }
.metrics-title {
  font-family: var(--serif); font-size: clamp(30px, 3.2vw, 50px); font-weight: 460;
  letter-spacing: -.012em; line-height: 1.16; max-width: 22ch; margin-bottom: 11vh;
}
.metrics-title b { font-weight: 520; color: var(--gold); }
.metrics-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3vw; }
.metric { display: flex; flex-direction: column; }
.metric-num {
  font-family: var(--serif); font-size: clamp(34px, 3.4vw, 60px); font-weight: 480;
  letter-spacing: -.02em; line-height: 1; color: var(--ink);
  padding-bottom: 26px; border-bottom: 1px solid var(--line-l); margin-bottom: 18px;
}
.metric-label { font-size: 15px; font-weight: 400; color: var(--mut-l); line-height: 1.5; max-width: 30ch; }

/* ── 4 · flip: approach ── */
.flip { background: var(--cream); color: var(--ink); }
.flip-pin { position: relative; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.flip-kicker { position: absolute; top: 12vh; font-size: 13px; color: var(--mut-l); }
.flip-stage { position: relative; width: 100%; height: 46vh; }
.flip-old, .flip-new {
  position: absolute; left: 0; right: 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px; will-change: transform;
}
.flip-old { bottom: 52%; }
.flip-new { top: 54%; opacity: 0; }
.flip-strike {
  position: absolute; left: -3%; right: -3%; top: 52%; height: 5px; border-radius: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left center;
}
.flip-num { display: inline-block; font-family: var(--serif); font-size: clamp(56px, 8.6vw, 144px); font-weight: 480; letter-spacing: -.025em; line-height: .98; }
/* sentence-length lines need a smaller scale than price numerals */
.flip-num-long { font-size: clamp(30px, 4.6vw, 76px); line-height: 1.1; max-width: 92vw; }
.flip-num-new { font-size: clamp(36px, 5.8vw, 98px); line-height: 1.06; }
.flip-old .flip-num { position: relative; color: #B0A997; }
.flip-new .flip-num { color: var(--green-deep); }
.flip-tag { font-size: 14px; color: var(--mut-l); }
.flip-cols {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 4vw;
  padding: 4vh 0 16vh; border-top: 1px solid var(--line-l);
}
.flip-lede { font-size: clamp(19px, 1.7vw, 26px); font-weight: 300; letter-spacing: -.015em; line-height: 1.4; max-width: 24ch; }
.fcol h4 { font-size: 14.5px; font-weight: 500; margin-bottom: 12px; }
.fcol p { font-size: 14.5px; font-weight: 400; line-height: 1.55; color: var(--mut-l); }
.fcol-me h4 { color: var(--green); }
.fcol-me p { color: var(--ink); }

/* ── 5 · engagements ── */
.plans { background: var(--cream); color: var(--ink); padding: 4vh 0 14vh; text-align: center; }
.giant { font-family: var(--serif); font-size: clamp(42px, 5.2vw, 86px); font-weight: 480; letter-spacing: -.02em; line-height: 1.02; margin-bottom: 5vh; }
.stage { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 7vh; }
.stage img { width: 100%; max-height: 56vh; object-fit: cover; object-position: 50% 62%; }
.stage-cap {
  position: absolute; left: 28px; bottom: 22px; font-size: 13px; font-weight: 400;
  color: rgba(243, 240, 231, .85); letter-spacing: .02em;
}
.plan-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 34rem)); gap: 30px; justify-content: center; text-align: left; }
.pcard {
  position: relative; background: #fff; border: 1px solid var(--cream-2); border-radius: 22px;
  padding: clamp(32px, 3.1vw, 50px); box-shadow: 0 18px 50px rgba(23, 26, 30, .07);
  transition: transform .35s ease, box-shadow .35s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(23, 26, 30, .13); }
.pcard-f {
  border: 2px solid var(--green);
  background: linear-gradient(180deg, #FDFCF8, #F1F6F4);
  box-shadow: 0 26px 64px rgba(15, 78, 74, .18);
}
.pcard-f:hover { box-shadow: 0 34px 80px rgba(15, 78, 74, .26); }
.pcard-tag {
  position: absolute; top: -13px; left: 30px; padding: 5px 15px; border-radius: 999px;
  background: var(--green); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.pcard h3 { font-family: var(--serif); font-size: clamp(25px, 2.3vw, 34px); font-weight: 460; letter-spacing: -.015em; margin-bottom: 8px; }
.pcard-desc { font-size: 15.5px; font-weight: 400; color: var(--mut-l); margin-bottom: 20px; }
.pcard ul { list-style: none; margin-bottom: 26px; }
.pcard li {
  position: relative; padding: 13px 0 13px 32px; border-top: 1px solid #EFEBDD;
  font-size: 15.5px; font-weight: 400;
}
.pcard li::before { content: "✓"; position: absolute; left: 2px; top: 12px; color: var(--green); font-weight: 600; }
.pcard-note { margin-top: 14px; font-size: 12.5px; color: var(--mut-l); text-align: center; }
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: transform .2s ease; width: 100%;
}
.pill:hover { transform: scale(1.03); }
.pill-green { background: var(--green); color: #fff; }
.pill-ghost { border: 1px solid var(--ink); color: var(--ink); }
.pill-cream { background: var(--cream); color: var(--green-deep); width: auto; padding: 16px 34px; }
.pill-ghost-cream {
  border: 1px solid rgba(243, 240, 231, .55); color: var(--cream);
  width: auto; padding: 15px 32px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pill-ghost-cream:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* ── contact form (closer) ── */
.contact-form {
  width: min(520px, 90vw); margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px; text-align: left;
}
.cf-input {
  width: 100%; padding: 15px 18px; border-radius: 14px;
  background: rgba(13, 16, 20, .55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(243, 240, 231, .28); color: var(--cream);
  font-family: "Inter", sans-serif; font-size: 15px; font-weight: 300;
  outline: none; transition: border-color .25s ease;
}
.cf-input::placeholder { color: rgba(243, 240, 231, .45); }
.cf-input:focus { border-color: var(--gold-soft); }
.cf-msg { resize: vertical; min-height: 84px; }
.cf-send { border: 0; cursor: pointer; font-family: "Inter", sans-serif; }
.cf-status { min-height: 20px; font-size: 13.5px; color: var(--gold-soft); text-align: center; }
.cf-or {
  display: flex; align-items: center; gap: 14px; width: min(520px, 90vw); margin: 6px auto 14px;
  color: rgba(243, 240, 231, .5); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
}
.cf-or::before, .cf-or::after { content: ""; flex: 1; height: 1px; background: rgba(243, 240, 231, .22); }

/* ── 6 · statement ── */
.insurance { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.ins-media { position: absolute; inset: 0; }
.ins-media img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.ins-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8, 10, 13, .82) 30%, rgba(8, 10, 13, .35) 75%, rgba(8, 10, 13, .5)); }
.ins-content { position: relative; z-index: 2; padding: 16vh 0; }
.ins-title {
  font-family: var(--serif); font-size: clamp(34px, 4vw, 62px); font-weight: 460; letter-spacing: -.012em; line-height: 1.12;
  max-width: 17ch; margin-bottom: 6vh;
}
.ins-ticks { display: flex; flex-direction: column; gap: 16px; font-size: clamp(15px, 1.3vw, 19px); font-weight: 400; color: rgba(243, 240, 231, .9); }

/* ── 7 · faq ── */
.faq { background: var(--cream); color: var(--ink); padding: 16vh 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 6vw; align-items: start; }
.faq-title { font-family: var(--serif); font-size: clamp(30px, 3.1vw, 46px); font-weight: 460; letter-spacing: -.01em; line-height: 1.15; margin-bottom: 5vh; }
.faq-photo { border-radius: 16px; overflow: hidden; }
.faq-photo img { width: 100%; }
.faq-list details {
  background: #fff; border: 1px solid var(--cream-2); border-radius: 14px;
  padding: 4px 22px; margin-bottom: 10px; box-shadow: 0 8px 26px rgba(23, 26, 30, .05);
}
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 16px 0; font-size: 16px; font-weight: 500;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--green); font-size: 1.3em; font-weight: 300; transition: transform .25s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 18px; font-size: 14.5px; font-weight: 400; line-height: 1.6; color: var(--mut-l); max-width: 60ch; }

/* ── 8 · closer ── */
.closer { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.closer-media { position: absolute; inset: 0; }
.closer-media img { width: 100%; height: 112%; object-fit: cover; object-position: 50% 30%; will-change: transform; }
.closer-scrim { position: absolute; inset: 0; background: rgba(8, 10, 13, .68); }
.closer-content { position: relative; z-index: 2; text-align: center; padding: 16vh 6vw 22vh; }
.closer-title {
  font-family: var(--serif); font-size: clamp(38px, 4.8vw, 78px); font-weight: 460; letter-spacing: -.015em; line-height: 1.1;
  margin-bottom: 6vh;
}
.foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 26px min(44px, 4vw); font-size: 12px; color: rgba(243, 240, 231, .55);
}
.foot a:hover { color: var(--cream); }

/* ── scroll hint: fixed, prominent on hero → subtle-persistent after ── */
.scroll-hint {
  /* sits above the hero logo marquee at page top; returns to the edge once mini */
  position: fixed; left: 50%; bottom: 112px; transform: translateX(-50%); z-index: 90;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  pointer-events: none; transition: opacity .5s ease, transform .5s ease, bottom .5s ease;
}
.sh-label {
  font-size: 11px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(243, 240, 231, .75); transition: opacity .4s ease, max-height .4s ease;
}
.sh-chev {
  width: 22px; height: 22px; position: relative;
  animation: sh-bob 1.8s ease-in-out infinite;
}
.sh-chev::before {
  content: ""; position: absolute; left: 50%; top: 40%;
  width: 12px; height: 12px; border-right: 2px solid rgba(232, 207, 138, .9);
  border-bottom: 2px solid rgba(232, 207, 138, .9);
  transform: translate(-50%, -50%) rotate(45deg);
}
@keyframes sh-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
.scroll-hint.mini { transform: translateX(-50%) scale(.72); opacity: .38; bottom: 26px; }
.scroll-hint.mini .sh-label { opacity: 0; max-height: 0; overflow: hidden; }
.scroll-hint.gone { opacity: 0; }

/* ── responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-card { display: none; }
  .hero-title { bottom: 18vh; }
  .scroll-hint { bottom: 108px; }
  .scroll-hint .sh-label { display: none; }
  .hlg-item { margin-right: 48px; gap: 9px; }
  .hlg-item i { font-size: 16px; }
  .hlg-svg { height: 20px; }
  .hlg-amazon { height: 22px; }
  .wcard { grid-template-columns: 1fr; gap: 22px; min-height: 0; top: 76px; }
  .wcard-img { height: 44vw; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .flip-cols { grid-template-columns: 1fr; gap: 28px; }
  .flip-lede { max-width: none; }
  .plan-cards { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-photo { display: none; }
}

/* iOS: 100vh jumps when the URL bar collapses — measure pinned sections with
   stable svh so ScrollTrigger doesn't thrash layout */
@supports (height: 100svh) {
  .hero, .narrative-pin, .flip-pin { height: 100svh; }
  .insurance, .closer { min-height: 100svh; }
}

/* ── WeChat modal (/cn) ── */
.pill-gold {
  background: linear-gradient(180deg, #F0DA9E, var(--gold-soft)); color: var(--ink);
  width: auto; padding: 16px 34px; font-weight: 600;
  box-shadow: 0 8px 26px rgba(197, 160, 40, .4);
}
.wx-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.wx-modal[hidden] { display: none; }
.wx-backdrop { position: absolute; inset: 0; background: rgba(8, 10, 13, .7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.wx-card {
  position: relative; width: min(360px, 88vw); text-align: center;
  background: var(--cream); color: var(--ink); border-radius: 22px;
  padding: 34px 28px 26px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  animation: wx-in .3s cubic-bezier(.22,.61,.36,1);
}
@keyframes wx-in { from { opacity: 0; transform: translateY(16px) scale(.97); } }
.wx-close {
  position: absolute; top: 10px; right: 14px; border: 0; background: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--mut-l);
}
.wx-kicker { font-size: 13px; letter-spacing: .12em; color: var(--mut-l); margin-bottom: 14px; }
.wx-qr { width: 232px; height: 232px; object-fit: contain; margin: 0 auto 16px; border-radius: 14px; background: #fff; box-shadow: 0 10px 30px rgba(23, 26, 30, .12); }
.wx-id { font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; }
.wx-id b { font-weight: 600; }
.wx-copy {
  border: 1px solid var(--green); color: var(--green); background: none; border-radius: 999px;
  padding: 4px 12px; font-size: 12.5px; cursor: pointer;
}
.wx-copy:hover { background: var(--green); color: #fff; }
.wx-note { margin-top: 12px; font-size: 12.5px; color: var(--mut-l); }
.wx-launch { margin-top: 16px; width: 100%; font-size: 14.5px; }
@media (hover: hover) and (pointer: fine) { .wx-launch { display: none; } }  /* desktop: QR is the path */
.wa-cn { margin-top: 12px; font-size: 14px; }

/* ── insights (article system) ── */
.ins-hero { background: var(--dark); padding: 20vh 0 9vh; }
.ins-hero .kicker { color: var(--gold-soft); }
.ins-hero-title { font-family: var(--serif); font-size: clamp(34px, 4.6vw, 68px); font-weight: 460; letter-spacing: -.015em; line-height: 1.08; max-width: 22ch; }
.ins-hero-sub { margin-top: 20px; font-size: clamp(15px, 1.25vw, 18px); color: var(--mut-d); max-width: 58ch; line-height: 1.6; }
.ins-list { background: var(--cream); color: var(--ink); padding: 9vh 0 14vh; }
.ins-card {
  display: block; background: #fff; border: 1px solid var(--cream-2); border-radius: 18px;
  padding: clamp(24px, 2.6vw, 40px); margin-top: 26px;
  box-shadow: 0 12px 36px rgba(23, 26, 30, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ins-card:hover { transform: translateY(-4px); box-shadow: 0 22px 54px rgba(23, 26, 30, .11); }
.ins-card-kicker { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--green); font-weight: 500; }
.ins-card h3 { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 32px); font-weight: 460; letter-spacing: -.012em; margin: 10px 0 10px; line-height: 1.15; }
.ins-card p { font-size: 15px; color: var(--mut-l); line-height: 1.6; max-width: 72ch; }
.ins-card-meta { margin-top: 14px; font-size: 12.5px; color: var(--mut-l); }

.article { background: var(--cream); color: var(--ink); padding: 16vh 0 10vh; }
.article .wrap-r { width: min(760px, 92vw); margin: 0 auto; }
.a-kicker { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 18px; }
.a-title { font-family: var(--serif); font-size: clamp(32px, 4.2vw, 56px); font-weight: 470; letter-spacing: -.015em; line-height: 1.1; }
.a-meta { margin: 18px 0 0; font-size: 13.5px; color: var(--mut-l); }
.a-tldr {
  margin: 40px 0; padding: 26px 30px; border-radius: 16px;
  background: #fff; border: 1px solid var(--cream-2); border-left: 4px solid var(--gold);
}
.a-tldr h2 { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.a-tldr li { margin: 8px 0 8px 18px; font-size: 15px; line-height: 1.55; }
.a-body { font-size: 17px; line-height: 1.75; font-weight: 400; }
.a-body h2 { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 34px); font-weight: 470; letter-spacing: -.012em; line-height: 1.2; margin: 54px 0 18px; }
.a-body h3 { font-size: 18px; font-weight: 600; margin: 36px 0 12px; }
.a-body p { margin: 18px 0; }
.a-body ul, .a-body ol { margin: 18px 0 18px 22px; }
.a-body li { margin: 9px 0; }
.a-body a { color: var(--green); text-decoration: underline; text-decoration-color: rgba(15, 78, 74, .35); text-underline-offset: 3px; }
.a-body blockquote {
  margin: 26px 0; padding: 18px 26px; border-left: 3px solid var(--gold-soft);
  background: rgba(232, 207, 138, .1); border-radius: 0 12px 12px 0;
  font-family: var(--serif); font-size: 19px; line-height: 1.5;
}
.a-body table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.a-body th, .a-body td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--cream-2); }
.a-body th { font-weight: 600; font-size: 13.5px; letter-spacing: .04em; }
.a-note { font-size: 14px; color: var(--mut-l); }
.a-cta {
  margin: 60px 0 0; padding: 34px; border-radius: 18px; text-align: center;
  background: var(--dark); color: var(--cream);
}
.a-cta h2 { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 32px); font-weight: 460; margin-bottom: 10px; }
.a-cta p { color: var(--mut-d); font-size: 15px; margin-bottom: 22px; }
.a-sources { margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--cream-2); }
.a-sources h2 { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--mut-l); margin-bottom: 12px; }
.a-sources li { font-size: 13.5px; margin: 6px 0 6px 18px; color: var(--mut-l); }
.a-sources a { color: var(--green); }
