/* klik — white, sky, grass, black text. sampled off the @klikdotfamily banner. no glow. */

:root {
  --white: #ffffff;
  --sky-1: #a5d9f1;
  --sky-2: #e6f4f8;
  --sky-3: #f4fafc;
  --peach: #f3dccb;
  --grass: #95a266;
  --grass-2: #bab16e;
  --grass-deep: #56662a;
  --grass-pale: #eef0e0;
  --ink: #0d0d0c;
  --ink-2: #4f5049;
  --ink-3: #95968d;
  --hair: rgba(13, 13, 12, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --gut: clamp(20px, 4vw, 56px);
  --max: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
html.lenis, html.lenis body { height: auto; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-loading { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--grass); color: #fff; }

/* ─── type ─── */
.label {
  font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--ink-2); margin: 0;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 0.98; margin: 0; }
h1 { font-size: clamp(76px, 13vw, 230px); line-height: .86; letter-spacing: -0.035em; }
h2 { font-size: clamp(44px, 6.2vw, 96px); }
h3 { font-size: clamp(32px, 3vw, 46px); }
em { font-style: italic; }

.grass-text {
  background: url("img/texture.jpg") center / 520px auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ─── buttons: small, slightly round ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 34px; padding: 0 14px; border-radius: 9px;
  font: 500 13px/1 var(--sans); letter-spacing: -0.005em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--grass-deep); }
.btn-glass { background: rgba(255,255,255,.55); color: var(--ink); border-color: rgba(13,13,12,.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn-glass:hover { background: #fff; }
.icon-btn {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  border: 1px solid rgba(13,13,12,.12); background: rgba(255,255,255,.5);
  transition: background .3s;
}
.icon-btn:hover { background: #fff; }

/* ─── loader ─── */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 45%, #fff 75%, var(--peach) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: clip-path 1.1s var(--ease);
  clip-path: inset(0 0 0 0);
}
.loader.done { clip-path: inset(0 0 100% 0); }
.loader-mark { width: 120px; animation: breathe 1.6s var(--ease) infinite alternate; }
.loader-text { margin: 0; font-size: 13px; color: var(--ink-2); letter-spacing: 0; }
.loader-text span { animation: dot 1.2s infinite; opacity: 0; }
.loader-text span:nth-child(2) { animation-delay: .15s; } .loader-text span:nth-child(3) { animation-delay: .3s; } .loader-text span:nth-child(4) { animation-delay: .45s; }
@keyframes dot { 30%, 70% { opacity: 1; } }
@keyframes breathe { from { transform: scale(.94); } to { transform: scale(1.04); } }


/* ─── nav: one floating glass pill ─── */
.nav { position: fixed; top: 14px; left: 0; right: 0; z-index: 50; display: flex; justify-content: center; pointer-events: none; transition: transform .7s var(--ease), opacity .5s var(--ease); }
.nav.hide { transform: translateY(-140%); opacity: 0; }
.nav-pill {
  pointer-events: auto; display: flex; align-items: center; gap: 4px;
  padding: 5px 5px 5px 12px; border-radius: 14px;
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(22px) saturate(1.7); -webkit-backdrop-filter: blur(22px) saturate(1.7);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 1px 2px rgba(13,13,12,.04), 0 12px 32px -20px rgba(13,13,12,.22);
  transition: background .5s var(--ease), padding .6s var(--ease);
}
.nav.scrolled .nav-pill { background: rgba(255,255,255,.78); }
.brand { display: inline-flex; align-items: center; gap: 7px; margin-right: 10px; }
.brand img { width: 22px; height: 22px; border-radius: 6px; }
.brand span { font-family: var(--serif); font-size: 25px; line-height: 1; letter-spacing: -0.03em; }
.nav-links { position: relative; display: flex; gap: 2px; margin-right: 6px; }
.nav-links a { position: relative; z-index: 1; font-size: 13px; color: var(--ink-2); padding: 7px 12px; border-radius: 9px; transition: color .3s; }
.nav-links a:hover, .nav-links a.on { color: var(--ink); }
.nav-hl { position: absolute; top: 0; bottom: 0; left: 0; width: 0; border-radius: 9px; background: rgba(13,13,12,.06); opacity: 0; transition: transform .6s var(--ease), width .6s var(--ease), opacity .4s var(--ease); }
.nav .icon-btn { width: 30px; height: 30px; border-radius: 9px; border-color: transparent; background: transparent; }
.nav .icon-btn:hover { background: rgba(13,13,12,.06); }
.btn-sm { height: 30px; padding: 0 12px; font-size: 12.5px; border-radius: 9px; }

/* intro reveal (after loader) */
.intro { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1.2s var(--ease); display: inline-block; }
.line { display: block; overflow: hidden; padding: 0 .06em .08em; will-change: transform; }
.line .intro { transform: translateY(105%); }
body.ready .intro { opacity: 1; transform: none; }
.i1 { transition-delay: .05s; } .i2 { transition-delay: .12s; } .i3 { transition-delay: .2s; } .i4 { transition-delay: .28s; } .i5 { transition-delay: .4s; } .i6 { transition-delay: .5s; }

/* ─── 1 hero ─── */
.hero { height: 100vh; min-height: 640px; position: relative; }
.hero-stage { position: relative; height: 100%; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
.hero-sky { position: absolute; inset: 0; background: linear-gradient(180deg, var(--sky-1) 0%, #cfeaf6 30%, var(--sky-2) 55%, #fbfcfb 80%, var(--peach) 100%); }
.hero-land { position: absolute; left: 0; right: 0; bottom: -18vh; height: calc(100% + 18vh); will-change: transform; transform-origin: 50% 100%; }
.hero-land::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(165,217,241,.0) 0%, rgba(255,255,255,0) 60%); }
.hero-poster, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; }
.hero-video { opacity: 0; transition: opacity 1.4s var(--ease); }
.hero-video.ready { opacity: 1; }


.hero-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 24vh; transform-origin: 50% 100%; will-change: transform; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 45%, #fff 100%); pointer-events: none; z-index: 1; }
.hero-copy { z-index: 2; position: relative; text-align: center; padding: clamp(130px, 20vh, 210px) var(--gut) 0; max-width: 1200px; will-change: transform, opacity; }
.hero-copy .label { color: var(--ink); opacity: .7; margin-bottom: 24px; }
.hero-sub { font-size: clamp(15px, 1.2vw, 17px); color: var(--ink); opacity: .78; margin: 26px auto 0; max-width: 460px; }
.hero-cta { display: flex !important; gap: 8px; justify-content: center; margin-top: 40px; }
.hero-foot { z-index: 2; position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex !important; flex-direction: column; align-items: center; gap: 12px; }
body.ready .hero-foot { transform: translateX(-50%); }
.hero-foot .label { color: var(--ink); }
.hero-line { width: 1px; height: 40px; background: var(--ink); opacity: .35; animation: drip 2.4s var(--ease) infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ─── 2 manifesto ─── */
.manifesto { max-width: var(--max); margin: 0 auto; padding: clamp(110px, 14vw, 200px) var(--gut) clamp(90px, 10vw, 150px); }
.manifesto > .label { margin-bottom: 30px; }
.fill { font-family: var(--serif); font-size: clamp(40px, 5.8vw, 88px); line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
.fill .w { opacity: .13; transition: opacity .3s linear; }
.fill .w.on { opacity: 1; }
.manifesto-foot { display: flex; align-items: center; gap: 22px; margin-top: clamp(50px, 6vw, 80px); padding-top: 26px; border-top: 1px solid var(--hair); }
.m-mark { width: 44px; }
.manifesto-foot p { margin: 0; color: var(--ink-2); max-width: 420px; }

/* ─── 3 phone scene ─── */
.phone-scene { height: 360vh; position: relative; }
.ps-stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(24px, 4vw, 70px);
  padding: 70px var(--gut) 0;
}
.ps-bg { position: absolute; inset: 0; z-index: -1; }
.ps-bg span { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); }
.ps-bg .ps-bg-0 { background: linear-gradient(180deg, #fff 0%, var(--sky-3) 100%); opacity: 1; }
.ps-bg .ps-bg-1 { background: linear-gradient(180deg, var(--sky-2) 0%, #f7fbfc 100%); }
.ps-bg .ps-bg-2 { background: linear-gradient(180deg, var(--grass-pale) 0%, #f8f7ee 100%); }
.phone-scene[data-step="1"] .ps-bg-1, .phone-scene[data-step="2"] .ps-bg-1 { opacity: 1; }
.phone-scene[data-step="2"] .ps-bg-2 { opacity: 1; }

.ps-left .label { margin-bottom: 26px; }
.ps-heads, .ps-copies { display: grid; }
.ps-h, .ps-c { grid-area: 1 / 1; opacity: 0; transform: translateY(30px); filter: blur(6px); transition: opacity .7s var(--ease), transform .9s var(--ease), filter .7s var(--ease); pointer-events: none; }
.ps-h.is-on, .ps-c.is-on { opacity: 1; transform: none; filter: none; pointer-events: auto; }
.ps-h { font-size: clamp(40px, 4.4vw, 70px); }
.ps-h span { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .25em; color: var(--grass-deep); margin-bottom: 18px; }
.ps-right { justify-self: end; max-width: 330px; }
.ps-c { margin: 0; font-size: 16px; color: var(--ink-2); }
.ps-meter { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.ps-count { font-size: 12px; color: var(--ink-3); white-space: nowrap; }
.ps-count b { color: var(--ink); font-weight: 500; }
.ps-track { flex: 1; height: 1px; background: var(--hair); position: relative; }
.ps-track span { position: absolute; inset: 0; background: var(--ink); transform-origin: left; transform: scaleX(0); }

.how { position: relative; width: clamp(290px, 26vw, 390px); display: grid; align-items: center; will-change: transform; }
.how-l { grid-area: 1 / 1; position: relative; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(26px) scale(.97); filter: blur(8px); transition: opacity .7s var(--ease), transform .9s var(--ease), filter .7s var(--ease); }
.how-l.is-on { opacity: 1; transform: none; filter: none; }

.how-photo { width: 100%; aspect-ratio: 4 / 5.2; object-fit: cover; border-radius: 26px; }
.how-tag { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); white-space: nowrap; display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 11px; font-size: 12px; background: rgba(255,255,255,.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(13,13,12,.08); }
.how-tag b { font-weight: 500; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grass-deep); }

.receipt { position: relative; background: #fff; padding: 30px 26px 38px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; color: #2a2a27; letter-spacing: 0; box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 34px 60px -34px rgba(40,60,20,.3); overflow: hidden; }
.receipt p { margin: 0; }
.r-brand { font-family: var(--sans); font-weight: 600; font-size: 18px; letter-spacing: .34em; text-align: center; color: var(--ink); }
.r-s { text-align: center; color: #8a8a82; font-size: 10.5px; margin-top: 5px !important; }
.r-rule { border-top: 1px dashed #cfcfc6; margin: 16px 0; }
.r-row { display: flex; justify-content: space-between; margin: 7px 0 !important; }
.r-t { font-weight: 700; color: var(--ink); font-size: 13px; margin-bottom: 14px !important; }
.r-zig { position: absolute; left: 0; right: 0; bottom: -1px; height: 10px; background: linear-gradient(-45deg, var(--sky-2) 5px, transparent 0) 0 5px / 10px 10px repeat-x, linear-gradient(45deg, var(--sky-2) 5px, transparent 0) 0 5px / 10px 10px repeat-x; }
.scanline { position: absolute; left: 0; right: 0; height: 40%; top: -40%; background: linear-gradient(180deg, rgba(86,102,42,0), rgba(86,102,42,.08) 85%, rgba(86,102,42,.7)); pointer-events: none; }
.h-1.is-on .scanline { animation: scan 1.7s var(--ease) .25s forwards; }
@keyframes scan { 0% { top: -40%; opacity: 1; } 85% { top: 100%; opacity: 1; } 100% { top: 100%; opacity: 0; } }
.v-checks { list-style: none; margin: 26px 0 0; padding: 0; }
.v-checks li { display: flex; align-items: center; gap: 10px; font-size: 13px; padding: 11px 2px; border-bottom: 1px solid var(--hair); opacity: 0; transform: translateX(-8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.v-checks li:first-child { border-top: 1px solid var(--hair); }
.v-checks em { margin-left: auto; font-style: normal; color: var(--ink-3); }
.h-1.is-on .v-checks li { opacity: 1; transform: none; }
.h-1.is-on .v-checks li:nth-child(1) { transition-delay: .9s; } .h-1.is-on .v-checks li:nth-child(2) { transition-delay: 1.25s; } .h-1.is-on .v-checks li:nth-child(3) { transition-delay: 1.6s; }
.tick { width: 15px; height: 15px; border-radius: 50%; background: var(--grass-deep); position: relative; flex: none; }
.tick::after { content: ""; position: absolute; left: 5px; top: 3px; width: 3.5px; height: 6.5px; border: solid #fff; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }

.pass { border-radius: 24px; padding: 24px 24px 20px; background: url("img/texture.jpg") center / 500px auto; color: #fff; position: relative; overflow: hidden; }
.pass::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(20,30,5,.05), rgba(20,30,5,.5)); }
.pass > * { position: relative; margin: 0; }
.pass-k { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; }
.pass-n { font-family: var(--serif); font-size: clamp(64px, 6vw, 92px); line-height: .9; letter-spacing: -.03em; margin: 8px 0 30px !important; }
.pass-bar { height: 2px; background: rgba(255,255,255,.35); }
.pass-bar span { display: block; height: 100%; width: 0; background: #fff; transition: width 1.8s var(--ease) .3s; }
.h-2.is-on .pass-bar span { width: 100%; }
.pass-m { display: flex; justify-content: space-between; margin-top: 9px !important; font-size: 11px; opacity: .9; }
.pass-perks { list-style: none; margin: 18px 0 0; padding: 0; }
.pass-perks li { display: flex; justify-content: space-between; align-items: center; padding: 11px 2px; border-bottom: 1px solid var(--hair); font-size: 13px; opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.pass-perks b { font-weight: 500; }
.pass-perks small { color: var(--grass-deep); font-size: 11px; }
.h-2.is-on .pass-perks li { opacity: 1; transform: none; }
.h-2.is-on .pass-perks li:nth-child(1) { transition-delay: .5s; } .h-2.is-on .pass-perks li:nth-child(2) { transition-delay: .65s; } .h-2.is-on .pass-perks li:nth-child(3) { transition-delay: .8s; } .h-2.is-on .pass-perks li:nth-child(4) { transition-delay: .95s; }

/* ─── 4 rail ─── */
.rail-scene { height: 420vh; position: relative; background: linear-gradient(180deg, #f8f7ee 0%, #fff 12%); }
.rail-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.rail-head { padding: 0 var(--gut); max-width: calc(var(--max) + 2 * var(--gut)); width: 100%; margin: 0 auto 4vh; }
.rail-head .label { margin-bottom: 18px; }
.rail-head h2 { font-size: clamp(40px, 5vw, 80px); }
.rail { display: flex; gap: clamp(16px, 2vw, 28px); padding: 0 var(--gut); will-change: transform; width: max-content; }
.obj { width: clamp(260px, 26vw, 380px); flex: none; }
.obj-art {
  aspect-ratio: 4 / 4.2; border-radius: 22px; overflow: hidden; position: relative;
  background: linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 45%, #fff 75%, var(--peach) 100%);
  display: grid; place-items: center;
}
.obj-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.4s var(--ease); }
.obj:hover .obj-art img { transform: scale(1.04) !important; }
.obj-n { font-size: 11px; color: var(--ink-3); letter-spacing: .2em; margin: 18px 0 8px; }
.obj h3 { font-size: clamp(28px, 2.4vw, 38px); margin-bottom: 6px; }
.obj p:last-child { margin: 0; color: var(--ink-2); }
.obj-end { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 22px; padding-left: clamp(10px, 3vw, 50px); }
.obj-end-t { font-family: var(--serif); font-size: clamp(38px, 3.6vw, 58px); line-height: 1; letter-spacing: -.02em; margin: 0; }
.rail-meter { margin: 5vh var(--gut) 0; height: 1px; background: var(--hair); max-width: calc(var(--max)); }
.rail-meter span { display: block; height: 100%; background: var(--ink); transform-origin: left; transform: scaleX(0); }

/* ─── 5 stack ─── */
.stack-scene { padding: clamp(110px, 12vw, 180px) 0 clamp(60px, 8vw, 120px); }
.sec-head { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.sec-head .label { margin-bottom: 22px; }
.sec-head.split { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.side { max-width: 360px; color: var(--ink-2); margin: 0; }
.stack { max-width: var(--max); margin: clamp(60px, 7vw, 100px) auto 0; padding: 0 var(--gut); }
.card {
  position: sticky; top: calc(90px + var(--i, 0) * 22px);
  height: min(72vh, 600px); margin-bottom: 7vh;
  border-radius: 28px; padding: clamp(26px, 3.4vw, 50px);
  overflow: hidden; transform-origin: 50% 0;
  display: flex; flex-direction: column;
  border: 1px solid var(--hair);
  will-change: transform;
}
.card:last-child { margin-bottom: 0; }
.c-1 { --i: 0; background: linear-gradient(180deg, #ffffff, var(--sky-3)); }
.c-2 { --i: 1; background: linear-gradient(180deg, var(--sky-2), #f8fcfd); }
.c-3 { --i: 2; background: linear-gradient(180deg, var(--grass-pale), #f8f7ee); }
.c-4 { --i: 3; background: linear-gradient(180deg, #fbefe6, #fffaf6); }
.card-top { display: flex; justify-content: space-between; }
.card h3 { font-size: clamp(54px, 8vw, 132px); margin-top: auto; max-width: 70%; line-height: .92; }
.card p { max-width: 380px; color: var(--ink-2); margin: 20px 0 0; font-size: 16px; }
.card-obj { position: absolute; right: clamp(10px, 4vw, 60px); top: 50%; width: clamp(150px, 24vw, 340px); transform: translateY(-50%); }

/* ─── 7 grow ─── */
.grow { padding: clamp(120px, 14vw, 200px) 0 clamp(80px, 10vw, 140px); }
.bars { max-width: var(--max); margin: clamp(60px, 7vw, 100px) auto 0; padding: 0 var(--gut); }
.bar-row { display: grid; grid-template-columns: 150px 1fr 190px; align-items: center; gap: clamp(16px, 3vw, 40px); padding: 22px 0; border-top: 1px solid var(--hair); }
.bar-row:last-child { border-bottom: 1px solid var(--hair); }
.bar-l { color: var(--ink-2); }
.bar-l b { font-family: var(--serif); font-weight: 400; font-size: 40px; color: var(--ink); margin-right: 6px; letter-spacing: -.02em; }
.bar { height: 44px; border-radius: 10px; background: var(--sky-3); overflow: hidden; }
.bar-fill { display: block; height: 100%; width: 100%; border-radius: 10px; background: url("img/texture.jpg") left center / 700px auto; transform-origin: left; transform: scaleX(0); will-change: transform; }
.bar-r { text-align: right; font-size: 14px; }
.caption { max-width: var(--max); margin: 18px auto 0; padding: 0 var(--gut); font-size: 11px; color: var(--ink-3); }

/* ─── 8 clarity ─── */
.clarity { padding: clamp(60px, 8vw, 120px) 0 clamp(120px, 13vw, 190px); }
.clarity-grid { max-width: var(--max); margin: clamp(60px, 7vw, 100px) auto 0; padding: 0 var(--gut); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 100px); }
.col-head { margin-bottom: 18px; }
.lines { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hair); }
.lines li { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 36px); line-height: 1.2; letter-spacing: -.015em; padding: 18px 0; border-bottom: 1px solid var(--hair); }
.lines span { position: relative; display: inline-block; }
.strike li span { color: var(--ink-3); transition: color .8s var(--ease); }
.strike li span::after { content: ""; position: absolute; left: -2px; right: -2px; top: 55%; height: 1.5px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease); }
.strike li.on span::after { transform: scaleX(1); }
.plus-lines li span { opacity: .15; transform: translateX(-10px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.plus-lines li.on span { opacity: 1; transform: none; }
.clarity-note { max-width: var(--max); margin: clamp(56px, 6vw, 80px) auto 0; padding: 0 var(--gut); color: var(--ink-2); font-size: 16px; }

/* ─── 9 numbers ─── */
.numbers { position: relative; overflow: hidden; padding: clamp(160px, 18vw, 260px) 0 clamp(100px, 10vw, 150px); }
.numbers-bg { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; object-position: 50% 100%; will-change: transform; }
.numbers-fade { position: absolute; inset: 0; background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0) 30%); }
.numbers-in { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: clamp(50px, 6vw, 80px); }
.tile {
  aspect-ratio: 1 / 1; border-radius: 22px; padding: 22px;
  background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
  display: flex; flex-direction: column; justify-content: space-between;
}
.tile-n { font-family: var(--serif); font-size: clamp(54px, 6vw, 96px); line-height: .9; margin: 0; letter-spacing: -.03em; }
.tile-t { margin: 0; font-size: 13px; color: var(--ink-2); max-width: 180px; }
.tile-go { background: url("img/texture.jpg") center / 600px auto; color: #fff; border-color: transparent; position: relative; overflow: hidden; transition: transform .6s var(--ease); }
.tile-go::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(20,30,5,.0), rgba(20,30,5,.45)); }
.tile-go > * { position: relative; }
.tile-go .tile-n { font-size: clamp(34px, 3.4vw, 54px); }
.tile-go .tile-t { color: #fff; font-size: 24px; transition: transform .5s var(--ease); }
.tile-go:hover .tile-t { transform: translateX(8px); }

/* ─── 10 faq ─── */
.faq { padding: clamp(110px, 12vw, 180px) 0 clamp(120px, 14vw, 200px); }
.qs { max-width: var(--max); margin: clamp(48px, 6vw, 80px) auto 0; padding: 0 var(--gut); }
.qs details { border-bottom: 1px solid var(--hair); }
.qs details:first-child { border-top: 1px solid var(--hair); }
.qs summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; font-size: clamp(17px, 1.5vw, 21px); letter-spacing: -.015em; }
.qs summary::-webkit-details-marker { display: none; }
.plus { position: relative; width: 12px; height: 12px; flex: none; }
.plus::before, .plus::after { content: ""; position: absolute; left: 0; top: 5.5px; width: 12px; height: 1px; background: var(--ink); transition: transform .45s var(--ease); }
.plus::after { transform: rotate(90deg); }
details[open] .plus::after { transform: rotate(0); }
.qs details p { margin: -8px 0 28px; max-width: 640px; color: var(--ink-2); }

/* ─── 5 picker ─── */
.picker { padding: clamp(120px, 13vw, 190px) 0 clamp(80px, 9vw, 130px); }
.chips { max-width: var(--max); margin: clamp(50px, 6vw, 80px) auto 0; padding: 0 var(--gut); display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font: 400 clamp(18px, 1.8vw, 26px)/1 var(--serif); letter-spacing: -.01em; color: var(--ink);
  padding: 13px 20px 12px; border-radius: 12px; cursor: pointer;
  background: var(--sky-3); border: 1px solid var(--hair);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.chip:hover { border-color: rgba(13,13,12,.3); }
.chip:active { transform: scale(.96); }
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.tally { max-width: var(--max); margin: clamp(40px, 5vw, 64px) auto 0; padding: 26px var(--gut) 0; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.tally-n { margin: 0; font-family: var(--serif); font-size: clamp(80px, 11vw, 170px); line-height: .8; letter-spacing: -.04em; display: flex; align-items: flex-end; gap: 18px; }
.tally-n small { font-family: var(--sans); font-size: 13px; letter-spacing: 0; color: var(--ink-2); line-height: 1.3; max-width: 120px; padding-bottom: 8px; }
.tally-l { margin: 0; max-width: 420px; color: var(--ink-2); font-size: 15px; text-align: right; }

/* ─── 7 receipts ─── */
.receipts { padding: clamp(110px, 12vw, 180px) 0 clamp(60px, 7vw, 110px); }
.rtypes { max-width: var(--max); margin: clamp(56px, 7vw, 96px) auto 0; padding: 0 var(--gut); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.rt-art { aspect-ratio: 4 / 3.6; border-radius: 22px; display: grid; place-items: center; overflow: hidden; margin-bottom: 22px; }
.rt-paper { background: linear-gradient(180deg, var(--sky-2), #fff 70%, var(--peach)); }
.rt-mail { background: linear-gradient(180deg, var(--grass-pale), #fbfaf2); }
.rt-order { background: linear-gradient(180deg, #fbefe6, #fffaf6); }
.rtype h3 { margin-bottom: 6px; }
.rtype > p { margin: 0; color: var(--ink-2); }
.mini, .mail, .order { width: 62%; background: #fff; box-shadow: 0 24px 50px -30px rgba(40,60,20,.35); transition: transform .9s var(--ease); }
.rtype:hover .mini, .rtype:hover .mail, .rtype:hover .order { transform: translateY(-6px); }
.mini { padding: 16px 14px 20px; font-family: ui-monospace, Menlo, monospace; font-size: 10px; color: #333; }
.mini p { margin: 0; }
.m-b { font-family: var(--sans); font-weight: 600; letter-spacing: .3em; text-align: center; font-size: 12px !important; }
.m-s { text-align: center; color: #999; margin-top: 3px !important; }
.m-r { border-top: 1px dashed #ccc; margin: 10px 0; }
.m-row { display: flex; justify-content: space-between; }
.m-t { font-weight: 700; }
.mail { border-radius: 14px; padding: 16px; font-size: 12px; }
.mail p { margin: 0; }
.mail-f { display: flex; justify-content: space-between; }
.mail-f span { color: var(--ink-3); font-size: 11px; }
.mail-s { color: var(--ink-2); margin: 4px 0 12px !important; }
.mail-line { height: 6px; border-radius: 3px; background: var(--sky-3); margin-bottom: 6px; }
.w80 { width: 80%; } .w60 { width: 60%; }
.mail-row { display: flex; justify-content: space-between; border-top: 1px solid var(--hair); padding-top: 10px; margin-top: 12px !important; font-weight: 500; }
.order { border-radius: 14px; padding: 16px; font-size: 12px; }
.order p { margin: 0; }
.o-h { font-weight: 500; margin-bottom: 10px !important; }
.o-row { display: grid; grid-template-columns: 8px 1fr auto; gap: 8px; align-items: center; padding: 7px 0; border-top: 1px solid var(--hair); }
.o-dot { width: 7px; height: 7px; border-radius: 50%; background: #0058a3; }
.o-t { display: flex; justify-content: space-between; border-top: 1px solid var(--hair); padding-top: 9px; font-weight: 500; }
.o-t span:first-child { color: var(--grass-deep); }

/* ─── 8 window ─── */
.window { padding: clamp(80px, 9vw, 140px) 0 clamp(80px, 9vw, 140px); }
.tl { position: relative; max-width: var(--max); margin: clamp(80px, 9vw, 130px) auto 0; padding: 0 var(--gut); height: 150px; }
.tl-track { position: absolute; left: var(--gut); right: var(--gut); top: 7px; height: 14px; border-radius: 7px; background: var(--sky-3); overflow: hidden; }
.tl-fill { position: absolute; inset: 0; border-radius: 7px; background: url("img/texture.jpg") left center / 600px auto; transform-origin: left; transform: scaleX(0); }
.tl-pt { position: absolute; top: 0; left: calc(var(--gut) + (100% - 2 * var(--gut)) * var(--x)); transform: translateX(calc(var(--x) * -100%)); width: max-content; max-width: 200px; }
.tl-dot { display: block; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 1px solid var(--hair); margin: 0 0 18px; transition: background .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease); position: relative; z-index: 1; }
.tl-pt[style*="--x:1"] .tl-dot { margin-left: auto; }
.tl-pt.on .tl-dot { background: var(--ink); border-color: var(--ink); transform: scale(.72); }
.tl-d { margin: 0; font-family: var(--serif); font-size: 30px; line-height: 1; letter-spacing: -.02em; opacity: .25; transition: opacity .6s var(--ease); }
.tl-t { margin: 6px 0 0; font-size: 13px; color: var(--ink-2); opacity: .25; transition: opacity .6s var(--ease); }
.tl-pt[style*="--x:1"] p { text-align: right; }
.tl-pt.on .tl-d, .tl-pt.on .tl-t { opacity: 1; }

/* ─── finale: the door ─── */
.door-scene { height: 250vh; position: relative; }
.door-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
.door-frame { position: absolute; inset: 0; clip-path: inset(22% 34% 22% 34% round 28px); will-change: clip-path; }
.door-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; transform: scale(1.25); will-change: transform; }
.door-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,0) 45%, rgba(255,255,255,0) 70%, rgba(255,255,255,.55) 100%); opacity: 0; }
.door-content { position: relative; z-index: 2; text-align: center; padding: clamp(100px, 15vh, 150px) var(--gut) 0; }
.door-q { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4.6vw, 74px); line-height: 1.02; letter-spacing: -.02em; }
.door-q span, .door-q em, .door-cta { display: block; opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1.2s var(--ease); }
.door-content.on span, .door-content.on em, .door-content.on .door-cta { opacity: 1; transform: none; }
.door-content.on em { transition-delay: .15s; }
.door-content.on .door-cta { transition-delay: .35s; }
.join { display: flex; align-items: center; gap: 10px; max-width: 380px; margin: 36px auto 0; padding: 5px 5px 5px 16px; background: rgba(255,255,255,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(13,13,12,.1); border-radius: 12px; }
.join input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: inherit; font-size: 14px; color: var(--ink); }
.join input::placeholder { color: var(--ink-3); }
.join-msg { min-height: 20px; margin: 12px 0 0; font-size: 13px; }
.foot {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px 30px;
  padding: 14px 20px; border-radius: 16px;
  background: rgba(255,255,255,.78); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.8);
  opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform 1s var(--ease);
}
.foot.on { opacity: 1; transform: none; }
.foot .brand span { font-size: 24px; }
.foot .brand img { width: 22px; height: 22px; border-radius: 6px; }
.foot nav { display: flex; gap: 24px; justify-content: flex-end; font-size: 13px; color: var(--ink-2); flex-wrap: wrap; }
.foot nav a:hover { color: var(--ink); }
.foot-legal { grid-column: 1 / -1; margin: 0; padding-top: 10px; border-top: 1px solid var(--hair); font-size: 11px; color: var(--ink-3); }

/* ─── reveal ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .intro { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-video { display: none; }
  .hero-line, .loader-mark { animation: none; }
}

/* ─── responsive ─── */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .brand { margin-right: 18px; }
  .ps-stage { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; align-items: start; justify-items: center; text-align: center; padding-top: 84px; gap: 16px; }
  .ps-left .label { display: none; }
  .ps-h { font-size: clamp(32px, 8vw, 48px); }
  .ps-h span { margin-bottom: 8px; }
  .how { width: min(66vw, 300px); align-self: center; }
  .ps-right { justify-self: center; max-width: 440px; padding-bottom: 26px; }
  .ps-c { font-size: 14px; }
  .ps-meter { margin-top: 14px; }
  .clarity-grid { grid-template-columns: 1fr; }
  .rtypes { grid-template-columns: 1fr; gap: 44px; }
  .tally-l { text-align: left; }
  .foot { grid-template-columns: 1fr; }
  .foot nav { justify-content: flex-start; gap: 10px 18px; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .bar-row { grid-template-columns: 110px 1fr; }
  .bar-r { grid-column: 2; text-align: left; margin-top: -6px; }
  .card-obj { width: 40%; top: auto; bottom: 30%; transform: none; }
  .card h3 { max-width: 100%; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(64px, 20vw, 110px); }
  .hero-copy { padding-top: 130px; }
  .obj { width: 72vw; }
  .how { width: min(66vw, 260px); }
  .h-0 .how-photo { aspect-ratio: 4 / 4.4; }
  .receipt { padding: 22px 18px 30px; font-size: 10.5px; }
  .v-checks li, .pass-perks li { padding: 7px 2px; font-size: 12px; }
  .ps-c { font-size: 13px; }
  .card { height: 64vh; }
  .tl { height: auto; padding-left: 52px; }
  .tl-track { left: 20px; right: auto; width: 14px; top: 0; bottom: 0; height: auto; }
  .tl-fill { transform-origin: top; background-size: 200px auto; }
  .tl-pt { position: relative; left: auto; transform: none; margin-bottom: 34px; max-width: none; display: grid; grid-template-columns: 1fr; }
  .tl-dot { position: absolute; left: -45px; top: 0; margin: 0; }
  .tl-pt[style*="--x:1"] .tl-dot { margin: 0; }
  .tl-pt[style*="--x:1"] p { text-align: left; }
  .chip { padding: 10px 14px 9px; }
}

/* ─── scroll-split headings ─── */
.wm { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .04em .1em; margin: 0 -.04em -.1em; }
.wi { display: inline-block; will-change: transform; transform: translateY(110%); }
.no-split .wi { transform: none; }

/* media that opens as it arrives */
[data-media] { will-change: clip-path; }

/* hairlines that draw in */
.qs details, .lines li { border-bottom: 0 !important; position: relative; }
.qs details:first-child { border-top: 0 !important; }
.lines { border-top: 0 !important; }
.qs details::after, .lines li::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--hair); transform: scaleX(0); transform-origin: left; transition: transform 1.3s var(--ease); }
.qs.drawn details::after, .lines.drawn li::after { transform: scaleX(1); }
.qs.drawn details:nth-child(2)::after, .lines.drawn li:nth-child(2)::after { transition-delay: .08s; }
.qs.drawn details:nth-child(3)::after, .lines.drawn li:nth-child(3)::after { transition-delay: .16s; }
.qs.drawn details:nth-child(4)::after, .lines.drawn li:nth-child(4)::after { transition-delay: .24s; }
.qs.drawn details:nth-child(5)::after { transition-delay: .32s; }
.rail, .chips { will-change: transform; }

/* admin preview bar */
.admin-bar { position: fixed; left: 16px; bottom: 16px; z-index: 90; display: flex; align-items: center; gap: 12px; padding: 7px 7px 7px 14px; border-radius: 12px; font-size: 12px; color: #fff; background: rgba(13,13,12,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.admin-bar[hidden] { display: none; }
.ab-dot { width: 6px; height: 6px; border-radius: 50%; background: #b9c77a; }
.admin-bar a, .admin-bar button { font: 500 12px/1 var(--sans); color: #fff; background: rgba(255,255,255,.12); border: 0; border-radius: 8px; padding: 7px 10px; cursor: pointer; }
.admin-bar a:hover, .admin-bar button:hover { background: rgba(255,255,255,.22); }
@media (max-width: 560px) { .admin-bar > span:nth-child(2) { display: none; } }
