/* Single committed look: a dark, monochrome brand site with one accent.
   Every colour lives here; one accent: signal green. */
:root {
  color-scheme: dark;
  --black: #060606;
  --ink-0: #0b0b0c;
  --ink-1: #121213;
  --ink-2: #1a1a1c;
  --ink-3: #26262a;
  --hair: rgba(255, 255, 255, 0.08);
  --hair-2: rgba(255, 255, 255, 0.14);
  --white: #f5f5f3;
  --grey-1: #b9b9b6;
  --grey-2: #85857f;
  --grey-3: #5c5c58;
  --paper: #f3f2ee;
  --paper-ink: #0c0c0d;
  --paper-grey: #6a6a66;
  --glass: rgba(18, 18, 20, 0.55);
  --shade: rgba(6, 6, 6, 0.92);
  --shade-0: rgba(6, 6, 6, 0);

  --acc: #1fd46a;
  --acc-ink: #04130a;
  --acc-glow: rgba(31, 212, 106, 0.28);
  --acc-soft: rgba(31, 212, 106, 0.12);


  --display: "Funnel Display", "Helvetica Neue", Arial, sans-serif;
  --sans: "Funnel Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { background: var(--black); }
body { background: var(--black); color: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; border-radius: 6px; }
.gutter { padding-inline: clamp(16px, 4vw, 56px); }
.max { max-width: 1320px; margin-inline: auto; }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

/* grain over everything, like film */
body::after { content: ""; position: fixed; inset: 0; background-image: var(--grain); opacity: 0.07; pointer-events: none; mix-blend-mode: overlay; z-index: 50; }


/* ---------- nav ---------- */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 5; }
.nav .max { display: flex; align-items: center; justify-content: space-between; padding-block: 22px; }
.wordmark { font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; }
.wordmark i { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 14px var(--acc-glow); }
.links { display: flex; align-items: center; gap: 30px; font-size: 14px; color: var(--grey-1); }
.links a:hover { color: var(--white); }
.btn { display: inline-flex; align-items: center; gap: 10px; font: 600 14px/1 var(--sans); padding: 13px 20px; border-radius: 999px; transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s; white-space: nowrap; }
.btn-dark { background: var(--paper-ink); color: var(--paper); }
.btn-acc { background: var(--acc); color: var(--acc-ink); box-shadow: 0 0 0 1px var(--acc), 0 8px 30px -6px var(--acc-glow); }
.btn-acc:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--acc), 0 14px 44px -6px var(--acc-glow); }
.btn-line { color: var(--white); box-shadow: inset 0 0 0 1px var(--hair-2); }
.btn-line:hover { box-shadow: inset 0 0 0 1px var(--grey-2); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.arrow { transition: transform .25s; } .btn:hover .arrow { transform: translateX(3px); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(880px, 100svh); display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.hero-photo { position: absolute; inset: 0; z-index: -2; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 30%; filter: saturate(0.55) contrast(1.08) brightness(0.82); transform: scale(1.04); animation: settle 2.4s cubic-bezier(.2,.7,.1,1) both; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(90deg, var(--black) 0%, var(--shade) 30%, var(--shade-0) 68%),
  linear-gradient(0deg, var(--black) 2%, var(--shade-0) 45%),
  radial-gradient(60% 50% at 18% 78%, var(--acc-soft), transparent 70%); }
.hero-copy { padding-block: 170px 64px; display: grid; gap: 30px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--grey-1); }
.kicker b { width: 22px; height: 1px; background: var(--grey-2); }
h1 { font-family: var(--display); font-weight: 700; font-size: clamp(50px, 8.2vw, 136px); line-height: 0.88; letter-spacing: -0.045em; margin: 0; max-width: none; text-wrap: balance; }
h1 .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
h1 .line > span { display: inline-block; animation: rise 1.1s cubic-bezier(.16,.84,.2,1) both; }
h1 .line:nth-child(2) > span { animation-delay: .12s; }
h1 .acc { color: var(--acc); text-shadow: 0 0 60px var(--acc-glow); }
.hero-sub { display: grid; grid-template-columns: minmax(0, 520px) auto; gap: 40px; align-items: end; justify-content: space-between; }
.hero-sub p { margin: 0; font-size: 19px; line-height: 1.5; color: var(--grey-1); text-wrap: pretty; }
.hero-sub p strong { color: var(--white); font-weight: 500; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.now { justify-self: end; display: grid; gap: 10px; padding: 16px 18px; border-radius: 18px; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: inset 0 0 0 1px var(--hair), 0 20px 50px -20px var(--black); min-width: 250px; }
.now-top { display: flex; align-items: center; gap: 8px; color: var(--grey-2); }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 0 0 var(--acc-glow); animation: ping 2s infinite; }
.now-time { font-family: var(--display); font-size: 40px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.now-time small { font-family: var(--mono); font-size: 12px; color: var(--grey-2); margin-left: 6px; letter-spacing: 0.04em; }
.now-city { font-size: 14px; color: var(--grey-1); }
.route { display: flex; gap: 6px; flex-wrap: wrap; }
.route span { font-family: var(--mono); font-size: 11px; color: var(--grey-3); padding: 4px 8px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--hair); }
.route span.on { color: var(--white); box-shadow: inset 0 0 0 1px var(--hair-2); }

/* ---------- section scaffolding ---------- */
section { position: relative; }
.sec { padding-block: clamp(96px, 12vw, 168px); }
.sec-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px); gap: 40px; align-items: end; margin-bottom: 56px; }
h2 { font-family: var(--display); font-weight: 600; font-size: clamp(40px, 5.6vw, 84px); line-height: 0.95; letter-spacing: -0.04em; margin: 12px 0 0; text-wrap: balance; }
h2 .dim { color: var(--grey-3); }
.sec-head p { margin: 0; color: var(--grey-1); font-size: 17px; }
.eyebrow { color: var(--grey-2); display: inline-flex; gap: 10px; align-items: center; }
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); }

/* ---------- the machine (signature) ---------- */
.machine-wrap { position: relative; }
.machine-wrap::before { content: ""; position: absolute; inset: -12% -6% auto; height: 70%; background: radial-gradient(50% 60% at 50% 40%, var(--acc-soft), transparent 70%); filter: blur(20px); z-index: -1; }
.window { border-radius: 22px; background: linear-gradient(180deg, var(--ink-2), var(--ink-0) 60%); box-shadow: inset 0 1px 0 var(--hair-2), 0 0 0 1px var(--hair), 0 40px 120px -40px var(--black), 0 0 90px -40px var(--acc-glow); overflow: hidden; }
.win-bar { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--hair); }
.dots { display: flex; gap: 7px; } .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--ink-3); }
.win-title { color: var(--grey-2); display: flex; align-items: center; gap: 8px; }
.win-title b { color: var(--white); font-weight: 500; }
.win-state { margin-left: auto; color: var(--grey-2); display: flex; align-items: center; gap: 8px; }
.lanes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lane { padding: 22px; border-right: 1px solid var(--hair); display: grid; align-content: start; gap: 16px; min-height: 380px; position: relative; transition: background .6s; }
.lane:last-child { border-right: 0; }
.lane-h { display: flex; justify-content: space-between; align-items: center; color: var(--grey-3); transition: color .5s; }
.lane-h .n { font-family: var(--mono); font-size: 11px; }
.lane.on { background: linear-gradient(180deg, var(--acc-soft), transparent 55%); }
.lane.on .lane-h, .lane.done .lane-h { color: var(--white); }
.lane .tick { width: 18px; height: 18px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--hair-2); display: grid; place-items: center; transition: background .4s, box-shadow .4s; }
.lane.done .tick { background: var(--acc); box-shadow: 0 0 16px var(--acc-glow); }
.lane .tick svg { width: 10px; height: 10px; opacity: 0; transition: opacity .3s; } .lane.done .tick svg { opacity: 1; }
.tick path { stroke: var(--acc-ink); stroke-width: 3; fill: none; }
.card { border-radius: 14px; background: var(--ink-1); box-shadow: inset 0 0 0 1px var(--hair); padding: 14px; opacity: .35; transform: translateY(8px); transition: opacity .6s, transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s; }
.lane.on .card, .lane.done .card { opacity: 1; transform: none; }
.lane.on .card { box-shadow: inset 0 0 0 1px var(--hair-2), 0 16px 40px -18px var(--acc-glow); }
.ad-img { aspect-ratio: 4 / 3; border-radius: 9px; background: linear-gradient(135deg, var(--ink-3), var(--ink-1)); position: relative; overflow: hidden; margin-bottom: 12px; }
.ad-img::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 70% at 30% 20%, var(--acc-soft), transparent 70%); }
.ad-img span { position: absolute; left: 12px; bottom: 12px; font-family: var(--display); font-weight: 600; font-size: 20px; line-height: 1; letter-spacing: -0.02em; z-index: 1; max-width: 10ch; }
.meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--grey-2); }
.fld { display: grid; gap: 4px; margin-bottom: 10px; }
.fld label { font-size: 11px; color: var(--grey-2); }
.fld div { height: 34px; border-radius: 8px; box-shadow: inset 0 0 0 1px var(--hair-2); display: flex; align-items: center; padding: 0 10px; font-size: 13px; color: var(--grey-1); }
.fake-btn { height: 36px; border-radius: 8px; background: var(--white); color: var(--black); font-size: 13px; font-weight: 600; display: grid; place-items: center; }
.bubbles { display: grid; gap: 8px; }
.bub { max-width: 88%; font-size: 13px; line-height: 1.4; padding: 9px 12px; border-radius: 14px; opacity: 0; transform: translateY(6px); transition: opacity .45s, transform .45s; }
.bub.ai { background: var(--ink-3); border-bottom-left-radius: 4px; }
.bub.me { justify-self: end; background: var(--white); color: var(--black); border-bottom-right-radius: 4px; }
.bub.show { opacity: 1; transform: none; }
.typing { display: inline-flex; gap: 3px; padding: 11px 12px; background: var(--ink-3); border-radius: 14px; border-bottom-left-radius: 4px; width: fit-content; opacity: 0; transition: opacity .3s; }
.typing.show { opacity: 1; } .typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--grey-2); animation: blink 1s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
.cal { display: grid; gap: 6px; }
.slot { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 9px 11px; border-radius: 9px; box-shadow: inset 0 0 0 1px var(--hair); color: var(--grey-2); transition: all .5s; }
.slot.pick { background: var(--acc); color: var(--acc-ink); box-shadow: 0 0 24px -4px var(--acc-glow); font-weight: 600; }
.lane-foot { font-size: 13px; color: var(--grey-2); margin-top: auto; }
.lane-foot b { color: var(--white); font-weight: 500; }
.progress { height: 2px; background: var(--hair); position: relative; }
.progress b { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--acc); box-shadow: 0 0 12px var(--acc); transition: width .9s cubic-bezier(.2,.7,.2,1); }
.machine-foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 28px; color: var(--grey-1); }
.machine-foot p { margin: 0; max-width: 56ch; }

/* ---------- two doors ---------- */
.doors { display: grid; grid-template-columns: 1.05fr 1fr; gap: 16px; }
.door { border-radius: 28px; padding: clamp(28px, 4vw, 48px); display: grid; gap: 26px; align-content: space-between; min-height: 560px; position: relative; overflow: hidden; }
.door h3 { font-family: var(--display); font-weight: 600; font-size: clamp(32px, 3.6vw, 52px); line-height: 0.98; letter-spacing: -0.035em; margin: 10px 0 0; text-wrap: balance; }
.door p { margin: 0; font-size: 17px; }
.door ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.door li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid; font-size: 15px; }
.door li span:first-child { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding-top: 3px; }
.door-paper { background: var(--paper); color: var(--paper-ink); }
.door-paper p, .door-paper li span:first-child { color: var(--paper-grey); }
.door-paper li { border-color: rgba(12, 12, 13, 0.1); }
.door-paper .btn-dark { background: var(--paper-ink); color: var(--paper); }
.door-paper .btn-dark:hover { transform: translateY(-1px); }
.door-paper .eyebrow { color: var(--paper-grey); }
.door-dark { background: var(--ink-1); box-shadow: inset 0 0 0 1px var(--hair); }
.door-dark p { color: var(--grey-1); }
.shot { border-radius: 14px; overflow: hidden; box-shadow: 0 0 0 1px var(--hair-2), 0 30px 60px -30px var(--black); transform: perspective(1400px) rotateX(8deg) rotateY(-6deg) translateY(10px); transform-origin: 50% 100%; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.door-dark:hover .shot { transform: perspective(1400px) rotateX(2deg) rotateY(-1deg); }
.shot img { display: block; width: 100%; }
.shot-bar { display: flex; gap: 6px; padding: 9px 12px; background: var(--ink-2); align-items: center; }
.shot-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); }
.shot-bar span { margin-left: 8px; font-family: var(--mono); font-size: 10px; color: var(--grey-2); }

/* ---------- life ---------- */
.life { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.life-photo { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5; max-width: 100%; }
.life-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 50%; filter: saturate(0.6) contrast(1.05); }
.life-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--shade) 0%, var(--shade-0) 40%); }
.life-photo figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; display: flex; justify-content: space-between; color: var(--grey-1); }
.life .quote, .consult-side .quote, .split .quote { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3.2vw, 46px); line-height: 1.08; letter-spacing: -0.03em; margin: 18px 0 28px; text-wrap: balance; }
.life .quote .dim, .consult-side .quote .dim, .split .quote .dim { color: var(--grey-3); }
.life p { color: var(--grey-1); margin: 0 0 14px; max-width: 52ch; font-size: 17px; }

/* ---------- final ---------- */
.final { text-align: center; overflow: hidden; }
.final::before { content: ""; position: absolute; left: 50%; bottom: -30%; width: 110%; height: 90%; transform: translateX(-50%); background: radial-gradient(50% 50% at 50% 60%, var(--acc-soft), transparent 70%); z-index: -1; }
.final h2 { max-width: 14ch; margin-inline: auto; }
.final p { color: var(--grey-1); max-width: 50ch; margin: 22px auto 34px; font-size: 18px; }
footer .max { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-block: 28px 40px; border-top: 1px solid var(--hair); color: var(--grey-3); font-size: 13px; }
footer nav { display: flex; gap: 22px; }
footer a:hover { color: var(--white); }



/* ---------- what I do ---------- */
.do-list { border-top: 1px solid var(--hair); }
.do-row { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 64px); padding-block: 38px; border-bottom: 1px solid var(--hair); align-items: start; }
.do-row h3 { font-family: var(--display); font-weight: 600; font-size: clamp(30px, 3.4vw, 50px); letter-spacing: -0.035em; line-height: 1; margin: 0; }
.do-row h3 i { font-style: normal; color: var(--acc); }
.do-row p { margin: 0; color: var(--grey-1); font-size: 17px; }
.do-row ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.do-row li { font-family: var(--mono); font-size: 11.5px; color: var(--grey-1); padding: 6px 10px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--hair-2); }
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 56px; }
.fact { padding-top: 16px; border-top: 1px solid var(--hair-2); }
.fact span { display: block; color: var(--grey-2); margin-bottom: 8px; }
.fact b { font-family: var(--display); font-weight: 500; font-size: 22px; letter-spacing: -0.02em; line-height: 1.15; display: block; }
.fact.todo b { color: var(--grey-3); }

/* ---------- the machine, quiet version ---------- */
.track { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding-top: 44px; }
.track::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 1px; background: var(--hair-2); }
.track::after { content: ""; position: absolute; top: 7px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 0 5px var(--acc-soft), 0 0 30px 6px var(--acc-glow); animation: travel 6s cubic-bezier(.6,0,.3,1) infinite; }
.stop { position: relative; padding-right: 20px; }
.stop::before { content: ""; position: absolute; top: -37px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--black); box-shadow: inset 0 0 0 1px var(--grey-2); animation: light 6s infinite; }
.stop:nth-child(2)::before { animation-delay: 1.5s; } .stop:nth-child(3)::before { animation-delay: 3s; } .stop:nth-child(4)::before { animation-delay: 4.5s; }
.stop b { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -0.03em; display: block; line-height: 1; }
.stop span { display: block; margin-top: 10px; color: var(--grey-2); font-size: 15px; max-width: 24ch; }
@keyframes travel { 0% { left: 0; } 85%, 100% { left: calc(75% + 0px); } }
@keyframes light { 0%, 100% { background: var(--black); } 8%, 40% { background: var(--acc); box-shadow: 0 0 14px var(--acc-glow); } }
.story-photo img { object-position: 64% 30%; }
@media (max-width: 1020px) { .do-row { grid-template-columns: 1fr; gap: 14px; } .facts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) {
  .track { grid-template-columns: 1fr; gap: 26px; padding-top: 0; padding-left: 30px; }
  .track::before { left: 4px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .track::after { left: 0; top: 0; animation: travel-v 6s cubic-bezier(.6,0,.3,1) infinite; }
  .stop::before { top: 8px; left: -30px; }
  .facts { grid-template-columns: 1fr; }
}
@keyframes travel-v { 0% { top: 0; } 85%, 100% { top: calc(100% - 9px); } }

/* ---------- consulting ---------- */
.consult { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.consult-card { background: var(--paper); color: var(--paper-ink); border-radius: 28px; padding: clamp(28px, 4vw, 48px); display: grid; gap: 22px; }
.consult-card .eyebrow { color: var(--paper-grey); }
.consult-card h3 { font-family: var(--display); font-weight: 600; font-size: clamp(30px, 3.2vw, 46px); line-height: 1; letter-spacing: -0.035em; margin: 8px 0 0; text-wrap: balance; }
.consult-card p { margin: 0; color: var(--paper-grey); font-size: 17px; }
.consult-card ol { margin: 0; padding: 0; list-style: none; counter-reset: c; display: grid; }
.consult-card li { counter-increment: c; display: grid; grid-template-columns: 36px 1fr; gap: 10px; padding: 14px 0; border-top: 1px solid rgba(12, 12, 13, 0.1); font-size: 15.5px; }
.consult-card li::before { content: counter(c, decimal-leading-zero); font-family: var(--mono); font-size: 11px; color: var(--paper-grey); padding-top: 3px; }
.consult-card li b { font-weight: 600; display: block; }
.consult-card li span { color: var(--paper-grey); }
.consult-side p { color: var(--grey-1); font-size: 17px; margin: 0 0 16px; max-width: 46ch; }
.consult-side .quote { margin-top: 0; }

/* ---------- ad blitz proof ---------- */
.blitz { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.blitz p { color: var(--grey-1); font-size: 17px; margin: 0 0 16px; max-width: 48ch; }
.blitz .shot { transform: perspective(1600px) rotateY(-8deg) rotateX(4deg); }
.blitz .shot:hover { transform: perspective(1600px) rotateY(-2deg) rotateX(1deg); }
.rowlabel { color: var(--grey-2); margin: 64px 0 16px; display: block; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { font-size: 15px; color: var(--grey-1); padding: 9px 14px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--hair-2); }
.words { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.word { border-radius: 20px; padding: 24px; background: var(--ink-1); box-shadow: inset 0 0 0 1px var(--hair); display: grid; gap: 18px; align-content: space-between; min-height: 200px; }
.word q { font-family: var(--display); font-size: 21px; line-height: 1.25; letter-spacing: -0.015em; color: var(--grey-3); quotes: none; }
.word span { color: var(--grey-3); }
.tools { display: flex; flex-wrap: wrap; gap: 10px 34px; align-items: center; }
.tools span { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--grey-2); }

/* ---------- writing ---------- */
.posts { border-top: 1px solid var(--hair); }
.post { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; padding-block: 26px; border-bottom: 1px solid var(--hair); }
.post b { font-family: var(--display); font-weight: 500; font-size: clamp(21px, 2vw, 28px); letter-spacing: -0.02em; }
.post span { color: var(--grey-2); transition: color .25s, transform .25s; }
.post:hover span { color: var(--acc); transform: translateX(4px); }

/* ---------- final: two calls ---------- */
.calls { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 40px auto 0; text-align: left; }
.call { border-radius: 22px; padding: 26px; background: var(--ink-1); box-shadow: inset 0 0 0 1px var(--hair); display: grid; gap: 14px; align-content: space-between; }
.call.main { box-shadow: inset 0 0 0 1px var(--acc), 0 0 60px -20px var(--acc-glow); }
.call h3 { font-family: var(--display); font-weight: 600; font-size: 26px; letter-spacing: -0.025em; margin: 0; }
.call p { margin: 0; color: var(--grey-1); font-size: 15.5px; }
.call .btn { justify-self: start; }
@media (max-width: 1020px) { .consult, .blitz { grid-template-columns: 1fr; } .words { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .calls { grid-template-columns: 1fr; } .post { grid-template-columns: 1fr; gap: 6px; } }


/* ---------- inner page hero (no photo) ---------- */
.page-hero { position: relative; padding-block: 170px 90px; overflow: hidden; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(55% 60% at 12% 90%, var(--acc-soft), transparent 70%); }
.page-hero h1 { font-size: clamp(46px, 7vw, 116px); max-width: 13ch; }
.page-hero p.lede { margin: 30px 0 0; font-size: 20px; color: var(--grey-1); max-width: 52ch; }
.page-hero p.lede strong { color: var(--white); font-weight: 500; }
.page-hero .nav { position: absolute; }

/* ---------- lists of signs / deliverables ---------- */
.signs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; border-top: 1px solid var(--hair); }
.signs div { padding: 24px 0; border-bottom: 1px solid var(--hair); display: grid; grid-template-columns: 26px 1fr; gap: 12px; font-size: 18px; }
.signs div::before { content: ""; width: 9px; height: 9px; margin-top: 9px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--acc); }
.areas { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.area { border-radius: 22px; padding: 26px; background: var(--ink-1); box-shadow: inset 0 0 0 1px var(--hair); display: grid; gap: 14px; align-content: start; }
.area.hi { background: var(--paper); color: var(--paper-ink); box-shadow: none; }
.area h3 { font-family: var(--display); font-weight: 600; font-size: 28px; letter-spacing: -0.03em; margin: 0; }
.area p { margin: 0; color: var(--grey-1); font-size: 15.5px; }
.area.hi p, .area.hi li { color: var(--paper-grey); }
.area ul { margin: 0; padding-left: 18px; display: grid; gap: 6px; color: var(--grey-2); font-size: 14.5px; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: st; border-top: 1px solid var(--hair-2); }
.step { counter-increment: st; padding: 26px 24px 0 0; display: grid; gap: 10px; align-content: start; }
.step::before { content: counter(st, decimal-leading-zero); font-family: var(--mono); font-size: 12px; color: var(--acc); }
.step b { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: -0.025em; }
.step span { color: var(--grey-1); font-size: 15.5px; }
.faq { border-top: 1px solid var(--hair); max-width: 900px; }
.faq details { border-bottom: 1px solid var(--hair); padding-block: 22px; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; font-family: var(--display); font-weight: 500; font-size: 22px; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--grey-2); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 14px 0 0; color: var(--grey-1); max-width: 64ch; }
.faq .todo { color: var(--grey-3); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.split .chips { margin-top: 28px; }
.split p { color: var(--grey-1); font-size: 17px; margin: 0 0 16px; max-width: 48ch; }
@media (max-width: 1020px) { .areas, .steps { grid-template-columns: 1fr 1fr; gap: 16px; } .split { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .signs, .areas, .steps { grid-template-columns: 1fr; } .views { margin-left: 0; } .page-hero { padding-block: 120px 60px; } }
@keyframes rise { from { transform: translateY(105%); } to { transform: none; } }
@keyframes settle { from { transform: scale(1.12); filter: saturate(0.3) contrast(1.08) brightness(0.5); } }
@keyframes ping { 0% { box-shadow: 0 0 0 0 var(--acc-glow); } 80%, 100% { box-shadow: 0 0 0 10px transparent; } }
@keyframes blink { 0%, 100% { opacity: .3 } 50% { opacity: 1 } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 1020px) {
  .lanes { grid-template-columns: 1fr 1fr; }
  .lane:nth-child(2) { border-right: 0; }
  .lane:nth-child(-n+2) { border-bottom: 1px solid var(--hair); }
  .doors, .life, .sec-head { grid-template-columns: 1fr; }
  .door { min-height: 0; }
}
@media (max-width: 720px) {
  .links a:not(.btn) { display: none; }
  .hero { min-height: 0; }
  .hero-photo img { object-position: 62% 20%; }
  .hero::before { background: linear-gradient(0deg, var(--black) 18%, var(--shade) 48%, var(--shade-0) 85%), radial-gradient(80% 40% at 20% 80%, var(--acc-soft), transparent 70%); }
  .hero-copy { padding-block: 300px 40px; }
  .hero-sub { grid-template-columns: 1fr; gap: 24px; }
  .hero-sub p { font-size: 17px; }
  .now { justify-self: stretch; min-width: 0; }
  .lanes { grid-template-columns: 1fr; }
  .lane { border-right: 0; border-bottom: 1px solid var(--hair); min-height: 0; }
  .door li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- smart form modal ---------- */
.sf-dialog { width: min(640px, calc(100vw - 32px)); max-height: calc(100vh - 48px); padding: 0; border: 0; border-radius: 24px; background: var(--ink-1); color: var(--white); box-shadow: inset 0 0 0 1px var(--hair-2), 0 40px 120px -30px var(--black); }
.sf-dialog::backdrop { background: rgba(6, 6, 6, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.sf-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--hair); }
.sf-head h2 { font-size: 22px; letter-spacing: -0.02em; margin: 0; }
.sf-close { appearance: none; border: 0; background: var(--ink-3); color: var(--white); width: 34px; height: 34px; border-radius: 50%; font: 500 18px/1 var(--sans); cursor: pointer; }
.sf-close:hover { background: var(--grey-3); }
.sf-body { padding: 8px 10px 14px; min-height: 440px; display: flex; flex-direction: column; }
.sf-body iframe { width: 100%; border: 0; }
.sf-fallback { padding: 18px 12px; color: var(--grey-1); font-size: 14px; }
.sf-fallback a { color: var(--acc); text-decoration: underline; }
.sf-body:has(iframe) .sf-fallback { order: 2; padding: 10px 12px 0; font-size: 12.5px; color: var(--grey-2); }
.skip { position: absolute; left: -9999px; top: 12px; z-index: 60; background: var(--white); color: var(--black); padding: 10px 14px; border-radius: 8px; }
.skip:focus { left: 12px; }
.links a[aria-current="page"] { color: var(--white); }
