/* ============================================================
   HIIPE.io — WEBSITE design system v2
   White canvas · #fdbc58 · black. Lucidity Condensed (display, = the logo)
   + Hanken Grotesk (everything readable). Disciplined type & size scale.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

@font-face {
  font-family: "Lucidity Condensed";
  src: url("assets/fonts/lucidity-condensed.ttf") format("truetype");
  font-weight: 400 800; font-display: swap;
}

:root {
  --yellow: #fdbc58;
  --yellow-deep: #b97f1a;
  --yellow-ink: #1a1206;
  --black: #0b0b0b;
  --ink: #141414;
  --paper: #ffffff;
  --paper-2: #f7f6f3;
  --paper-3: #edece8;
  --line: rgba(0,0,0,0.09);
  --line-2: rgba(0,0,0,0.16);
  --text: #111111;
  --text-dim: #555555;
  --text-faint: #8d8d8d;
  --display: "Lucidity Condensed", "Arial Narrow", sans-serif;
  --body: "Hanken Grotesk", -apple-system, "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
  --wrap: 1140px;
  --r: 18px;
  /* type scale */
  --fs-hero: clamp(56px, 9.5vw, 112px);
  --fs-h2:   clamp(36px, 5.4vw, 66px);
  --fs-h3:   clamp(22px, 2.4vw, 30px);
  --fs-lead: clamp(18px, 1.9vw, 21px);
  --fs-body: 17px;
  --fs-eyebrow: 12.5px;
  /* spacing scale */
  --sec-y: clamp(72px, 9vw, 124px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper); color: var(--text);
  font-family: var(--body); font-size: var(--fs-body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
::selection { background: var(--yellow); color: var(--yellow-ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* display titles use Lucidity Condensed; the condensed face wants generous size + tight leading */
h1, h2, .display { font-family: var(--display); font-weight: 700; line-height: 0.94; letter-spacing: 0.005em; text-transform: none; }
h3 { font-family: var(--body); font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
.accent { color: var(--yellow); }
.dim { color: var(--text-dim); }

/* yellow highlight (the "Own it." marker) */
.hl { background: var(--yellow); color: var(--yellow-ink); padding: 0.02em 0.16em; border-radius: 0.1em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* eyebrow / kicker */
.eyebrow { font-family: var(--body); font-weight: 600; font-size: var(--fs-eyebrow); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.kicker { display: inline-flex; align-items: baseline; gap: 10px; }
.kicker .kf { font-family: var(--body); font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; font-size: 15px; color: #fff; }
.kicker #rotor { font-family: var(--display); font-weight: 600; font-size: 30px; line-height: 1; letter-spacing: .01em; color: var(--yellow-deep); transition: opacity .25s ease; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-family: var(--body); font-weight: 600; font-size: 15px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; }
.btn-primary { background: var(--yellow); color: var(--yellow-ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(253,188,88,.5); }
.btn-ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-ghost:hover { background: var(--paper-2); box-shadow: inset 0 0 0 1px var(--text); }

/* ---------- nav ---------- */
.nav { position: fixed; top:0; left:0; right:0; z-index: 900; height: var(--nav-h);
  display:flex; align-items:center; background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(160%) blur(16px); backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.92); }
.nav .wrap { display:flex; align-items:center; justify-content:space-between; width:100%; }
.nav-logo img { height: 40px; }
.nav-center { display:flex; gap:2px; }
.nav-link { padding: 9px 15px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--text-dim); transition: color .2s, background .2s; }
.nav-link:hover { color: var(--text); background: rgba(0,0,0,.05); }
.nav-link.active { color: var(--text); font-weight: 600; }
.nav-right { display:flex; align-items:center; gap:10px; }
.nav-burger { display:none; font-size:22px; padding:6px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 86px) 0 56px; text-align:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; pointer-events:none; z-index:-1;
  background: radial-gradient(ellipse 60% 50% at 50% 8%, rgba(253,188,88,.14), transparent 60%); }
.hero-grid { position:absolute; inset:0; pointer-events:none; z-index:-1; opacity:.6;
  background-image: linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 28%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 28%, #000 25%, transparent 72%); }
.hero .kicker { margin-bottom: 22px; height: auto; }
.hero h1 { font-size: var(--fs-hero); max-width: 16ch; margin: 0 auto; text-wrap: balance; }
.hero .sub { font-family: var(--body); font-size: var(--fs-lead); color: var(--text-dim); max-width: 44ch; margin: 26px auto 0; line-height: 1.5; }
.hero .sub b { color: var(--text); font-weight: 600; }
.cta-row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top: 34px; }
.micro { margin-top: 16px; font-size: 13px; color: var(--text-faint); }

/* ---------- live wall (2-row opposite carousel) ---------- */
.livewall { padding: 18px 0 var(--sec-y); overflow:hidden; }
.lw-head { text-align:center; margin-bottom: clamp(30px, 4vw, 50px); }
.lw-line { font-family: var(--body); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow-deep); font-weight: 700; display:inline-flex; align-items:center; gap:14px; }
.lw-line::before, .lw-line::after { content:""; width: 40px; height:1px; background: var(--yellow-deep); opacity:.55; }
.lw-row { overflow:hidden; padding: 9px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.lw-track { display:flex; gap: 18px; width:max-content; animation: lw-scroll 64s linear infinite; }
.lw-row.rev .lw-track { animation-direction: reverse; animation-duration: 78s; }
.lw-row:hover .lw-track { animation-play-state: paused; }
@keyframes lw-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .lw-track { animation: none; } }
.lw-card { width: clamp(118px, 11.2vw, 157px); flex:none; }
.lw-card .ph { position:relative; aspect-ratio: 4/5; border-radius: 16px; overflow:hidden; border:1px solid var(--line); }
.lw-card img { width:100%; height:100%; object-fit:cover; transition: transform .45s var(--ease); }
.lw-card:hover img { transform: scale(1.045); }
.lw-card .ov { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; align-items:flex-start; gap:6px; padding:11px; background: linear-gradient(transparent 38%, rgba(0,0,0,.78)); }
.lw-name { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing:.02em; text-transform:uppercase; color:#fff; line-height:1; }
.lw-role { font-family: var(--body); font-size: 8px; letter-spacing:.14em; text-transform:uppercase; color: var(--yellow); font-weight:600; padding: 3px 8px; border-radius:999px; background: rgba(0,0,0,.35); border:1px solid rgba(253,188,88,.5); }

/* ---------- generic section ---------- */
section { padding: var(--sec-y) 0; }
.sec-h2 { font-size: var(--fs-h2); margin: 14px 0 0; }
.sec-lead { font-family: var(--body); font-size: var(--fs-lead); color: var(--text-dim); margin-top: 18px; max-width: 52ch; line-height:1.5; }
.center .sec-lead { margin-left:auto; margin-right:auto; }
.punch { font-family: var(--display); font-weight:700; font-size: clamp(24px,3.4vw,40px); margin-top: 22px; line-height:1; }
.arrow-line { color: var(--text-dim); font-style: italic; margin-top: 12px; font-size: 17px; }

/* ---------- absorb-the-logos ---------- */
.absorb { display:flex; align-items:center; justify-content:center; gap: 30px; flex-wrap:wrap; margin-top: 44px; }
.absorb .stack { display:flex; gap:22px; flex-wrap:wrap; justify-content:center; align-items:center; }
.absorb .stack img { height: 24px; opacity:.45; filter: grayscale(1); transition: opacity .3s; }
/* logo parity — balance optical weight (KOMI bold reads loud, Mailchimp compact reads small) */
.absorb .stack img[alt="Linktree"] { height: 21px; }
.absorb .stack img[alt="Mailchimp"] { height: 26px; }
.absorb .stack img[alt="KOMI"] { height: 18px; }
.absorb:hover .stack img { opacity:.65; }
.absorb .into { color: var(--text-faint); font-size: 26px; }
.absorb .hiipe-tile { background: var(--black); border-radius: 16px; padding: 18px 26px; display:flex; align-items:center; }
.absorb .hiipe-tile img { height: 24px; }

/* ---------- spine cards ---------- */
.grid-2 { display:grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 48px; }
.card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; display:flex; flex-direction:column; }
.card .num { font-family: var(--display); font-size: 26px; font-weight:600; color: var(--yellow-deep); letter-spacing:.01em; line-height:1; margin-bottom: 2px; }
.card h3 { font-size: var(--fs-h3); margin: 12px 0 10px; }
.card p { color: var(--text-dim); font-size: 16px; }
.card .out { margin-top: auto; min-height: 86px; padding-top: 16px; border-top: 1px solid var(--line); font-weight: 600; font-size: 15px; }
.card .out small { display:block; color: var(--text-faint); font-weight:500; font-style:italic; margin-top:4px; }
.card .out small.stat { color: var(--yellow-deep); font-style: normal; font-weight: 600; }
.flexes.flowers .flex-item { align-items: center; }
.flexes.flowers .flex-item::before { content: ""; width: 18px; height: 18px; flex: 0 0 18px; background: url(assets/daisy-large.png) center/contain no-repeat; }

/* ---------- asset holes ---------- */
.asset-slot { border: 1.5px dashed var(--line-2); border-radius: var(--r); background: repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 12px, var(--paper) 12px, var(--paper) 24px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; min-height: 300px; color: var(--text-faint); text-align:center; padding: 24px; }
.asset-slot .tag { font-family: var(--body); font-weight:600; font-size: 14px; color: var(--text-dim); }
.asset-slot .note { font-size: 12px; }
.phone-slot { width: 250px; min-height: 500px; border-radius: 34px; margin: 0 auto; }

/* real product visuals */
.shot img { width: 100%; height: auto; display: block; border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.08); }
/* phone frame (portrait screenshots) */
.phone { position: relative; width: 264px; max-width: 82%; aspect-ratio: 9 / 19.5; margin: 0 auto; background: #0b0b0c; border-radius: 38px; padding: 9px; box-shadow: 0 30px 80px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.14); }
.phone .screen { position: absolute; inset: 9px; border-radius: 30px; overflow: hidden; background: #000; }
.phone .screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone .screen img:nth-child(2) { opacity: 0; animation: ph-swap 4s ease-in-out infinite; }
@keyframes ph-swap { 0%,45% { opacity: 0; } 55%,95% { opacity: 1; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .phone .screen img:nth-child(2) { animation: none; } }

/* ---------- features modules ---------- */
.module { display:grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items:center; padding: 48px 0; border-top: 1px solid var(--line); }
.module:nth-child(even) .mod-text { order: 2; }
.module .mod-text h3 { font-size: var(--fs-h3); margin-bottom: 12px; }
.module .mod-buyer { font-size: 13px; color: var(--text-faint); font-style:italic; margin-bottom: 10px; }
.module .mod-text p { color: var(--text-dim); }
.module .mod-out { margin-top: 14px; font-weight:600; }
.nested { margin-top: 18px; display:flex; flex-direction:column; gap:10px; }
.nested div { font-size: 15px; } .nested b { font-weight:600; }

/* ---------- pricing ---------- */
.toggle { display:inline-flex; gap:4px; padding:5px; background: var(--paper-3); border-radius:999px; margin: 26px auto 0; }
.toggle button { padding:8px 18px; border-radius:999px; font-size:14px; font-weight:600; color: var(--text-dim); cursor:pointer; outline:none; transition: color .2s, background .2s; }
.toggle button:focus-visible { box-shadow: 0 0 0 2px var(--yellow-deep); }
.toggle button.on { background:#fff; color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.toggle .save.on, .toggle .save { color: var(--yellow-ink); }
.toggle .save.on { background: var(--yellow); }
.tiers { display:grid; grid-template-columns: repeat(4,1fr); gap:14px; margin-top: 44px; }
.tier { position: relative; background: var(--paper-2); border:1px solid var(--line); border-radius: var(--r); padding: 28px 22px; display:flex; flex-direction:column; }
.tier.feature { background:#fff; box-shadow: 0 12px 46px rgba(0,0,0,.1); border-color: var(--yellow); }
.tier .badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background: var(--yellow); color: var(--yellow-ink); font-family: var(--body); font-weight:700; font-size:11px; letter-spacing:.13em; text-transform:uppercase; padding:5px 14px; border-radius:999px; white-space:nowrap; box-shadow: 0 6px 18px rgba(0,0,0,.28); }
.tier .who { font-size: 13px; color: var(--text-faint); min-height: 2.8em; }
.tier .price { font-family: var(--display); font-size: 44px; font-weight:700; margin: 8px 0 20px; line-height:1; }
.tier .price small { font-family: var(--body); font-size: 15px; font-weight:500; color: var(--text-dim); }
.tier ul { list-style:none; display:flex; flex-direction:column; gap:12px; flex:1; padding-top: 20px; border-top: 1px solid var(--line); }
.tier li { font-size: 14.5px; display:flex; gap:9px; color: var(--text-dim); }
.tier li b { color: var(--text); font-weight:700; }
.tier li::before { content:"✓"; color: var(--yellow-ink); background: var(--yellow); border-radius:50%; width:18px; height:18px; min-width:18px; display:inline-flex; align-items:center; justify-content:center; font-size:11px; margin-top:2px; }
.tier .btn { margin-top: 22px; justify-content:center; }
.flexes { display:flex; flex-wrap:wrap; gap:14px 30px; justify-content:center; margin-top: 48px; }
.flex-item { font-size: 14.5px; display:flex; gap:8px; }
.flex-item::before { content:"✓"; color: var(--yellow-deep); font-weight:700; }
.note-line { text-align:center; color: var(--text-faint); font-size: 13.5px; margin-top: 28px; line-height:1.7; }

/* ---------- faq ---------- */
.faq-list { max-width: 780px; margin: 44px auto 0; display:flex; flex-direction:column; gap: 12px; }
.qa { background:#fff; border:1px solid var(--line); border-radius: 16px; overflow:hidden; transition: border-color .2s; }
.qa[open] { border-color: var(--line-2); }
.qa summary { list-style:none; cursor:pointer; padding: 22px 24px; font-family: var(--body); font-weight:600; font-size: 18px; display:flex; justify-content:space-between; gap:16px; align-items:center; }
.qa summary::-webkit-details-marker { display:none; }
.qa summary::after { content:"+"; color: var(--text-faint); font-weight:400; font-size: 24px; transition: transform .2s; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa .a { padding: 0 24px 24px; color: var(--text-dim); font-size: 16px; }

/* ---------- about: editorial story (tell, don't sell) ---------- */
.about-story { padding: calc(var(--nav-h) + 70px) 0 96px; }
.as-wrap { max-width: 660px; margin: 0 auto; padding: 0 24px; }
.as-kicker { font-family: var(--body); font-weight:600; font-size: 12.5px; letter-spacing:.2em; text-transform:uppercase; color: var(--text-faint); }
.as-title { font-family: var(--display); font-weight:700; font-size: clamp(40px,5.4vw,60px); line-height:1.0; letter-spacing:.01em; margin: 16px 0 38px; }
.as-lead { font-family: var(--body); font-weight:500; font-size: clamp(20px,2.3vw,23px); line-height:1.5; color: var(--text); margin-bottom: 30px; }
.about-story p { font-family: var(--body); font-size: 18px; line-height:1.78; color: var(--text-dim); margin-bottom: 22px; }
.about-story .as-em { color: var(--text); font-weight:500; }
.about-story .as-label { font-family: var(--body); font-weight:700; font-size: 12.5px !important; letter-spacing:.18em; text-transform:uppercase; color: var(--text-faint); margin: 46px 0 14px !important; }
.as-rule { border:0; border-top:1px solid var(--line); margin: 58px 0 38px; }
.about-story .as-meta { font-size: 15px !important; color: var(--text-faint) !important; line-height:1.7; margin-bottom: 0; }
.as-founders { display:flex; flex-wrap:wrap; gap: 22px 46px; margin: 30px 0 4px; }
.as-founders .n { display:block; font-family: var(--body); font-weight:600; font-size: 16px; color: var(--text); }
.as-founders .r { display:block; font-size: 13px; color: var(--text-faint); margin-top: 3px; letter-spacing:.03em; }
.as-note { margin: 52px 0 0; padding-left: 24px; border-left: 2px solid var(--yellow); font-style: italic; font-size: 20px; line-height:1.6; color: var(--text); }
.as-note cite { display:block; font-style:normal; font-size: 14px; color: var(--text-faint); margin-top: 16px; letter-spacing:.03em; }

/* ---------- who it's for: persona wall ---------- */
.persona-wall { display:grid; grid-template-columns: repeat(5,1fr); gap:14px; margin-top: 44px; text-align:center; }
.persona { display:flex; flex-direction:column; align-items:center; gap:7px; padding: 26px 16px 22px; border:1px solid var(--line); border-radius: var(--r); background: var(--paper-2); transition: transform .2s var(--ease), border-color .2s; }
.persona:hover { transform: translateY(-4px); border-color: var(--line-2); }
.p-daisy { height: 80px; width:auto; margin-bottom: 2px; }
.p-who { font-family: var(--body); font-weight:600; font-size: 12px; letter-spacing:.16em; text-transform:uppercase; color: var(--text-faint); }
.p-line { font-family: var(--display); font-weight:600; font-size: 23px; line-height:1.06; letter-spacing:.01em; color: var(--text); min-height: 2.12em; }
.p-sub { font-size: 13.5px; color: var(--text-dim); line-height:1.45; flex:1; }
.p-cta { margin-top: 12px; display:flex; width:100%; align-items:center; justify-content:center; gap:6px; padding: 11px 16px; border-radius:999px; font-family: var(--body); font-weight:600; font-size: 12.5px; background: var(--yellow); color: var(--yellow-ink); transition: transform .2s var(--ease), box-shadow .2s; }
.persona:hover .p-cta { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(253,188,88,.4); }
/* anchored feature modules clear the fixed nav when linked from the persona wall */
.module .mod-text h3[id] { scroll-margin-top: 104px; }

/* ---------- closing cta ---------- */
.closer { background: var(--black); color:#fff; border-radius: 28px; padding: clamp(48px,7vw,76px) 32px; text-align:center; }
.closer h2 { font-size: var(--fs-h2); color:#fff; }
.closer .cta-row { margin-top: 28px; }
.closer .ghost-dark { background: transparent; color:#fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }
.closer .ghost-dark:hover { background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px #fff; }
.closer .sign { margin-top: 22px; font-family: var(--display); font-weight:700; font-size: 22px; letter-spacing:.03em; color: var(--yellow); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.footer .top { display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.footer-logo img { height: 60px; margin-bottom: 14px; }
.footer .cols { display:flex; gap:56px; flex-wrap:wrap; }
.footer .col h4 { font-size: 12px; letter-spacing:.12em; text-transform:uppercase; color: var(--text-faint); margin-bottom: 14px; }
.footer .col a { display:block; font-size: 14.5px; color: var(--text-dim); margin-bottom: 10px; }
.footer .col a:hover { color: var(--text); }
.footer .badges { display:flex; gap:26px; align-items:center; margin-top: 6px; opacity:.82; }
.footer .badges img { height: 38px; filter: grayscale(1); }
.footer .base { display:flex; justify-content:space-between; margin-top: 26px; padding-top: 22px; border-top:1px solid var(--line); color: var(--text-faint); font-size: 13px; flex-wrap:wrap; gap:10px; }
.footer .tagline { font-family: var(--display); font-weight:700; color: var(--text); letter-spacing:.02em; }

/* ---------- responsive ---------- */
/* mobile menu panel is built by site.js; hidden until the burger breakpoint */
.mobile-menu { display: none; }

@media (max-width: 880px) {
  /* nav collapses to a burger-driven panel */
  .nav-center { display: none; }
  .nav-right .btn { display: none; }
  .nav-burger { display: block; color: var(--text); line-height: 1; }
  .mobile-menu {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    padding: 10px 24px 26px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }
  .nav.menu-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu .nav-link {
    padding: 16px 4px; font-size: 19px; font-weight: 600;
    border-radius: 0; border-bottom: 1px solid var(--line);
  }
  .mobile-menu .mm-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
  .mobile-menu .mm-cta .btn { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }

  /* layout stacking */
  .tiers, .persona-wall { grid-template-columns: repeat(2, 1fr); }
  .module { grid-template-columns: 1fr; gap: 24px; }
  .module:nth-child(even) .mod-text { order: 0; }
  .footer .top { flex-direction: column; }
  /* collapse 2-col split sections (grid set on section OR on .wrap inline) to a single
     stacked column so the product shot drops BELOW the text, centered, with room to breathe */
  section[style*="grid-template-columns:1fr 1fr"] > .wrap,
  .wrap[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 36px !important; }
  .asset-shot { max-width: 440px; margin: 4px auto 0; }
}

@media (max-width: 600px) {
  .grid-2, .tiers, .persona-wall { grid-template-columns: 1fr; }
  .persona-wall .p-line { min-height: 0; }
  .wrap { padding: 0 20px; }
  .hero { padding-top: calc(var(--nav-h) + 52px); }
  .closer { padding-left: 22px; padding-right: 22px; }
}
