/* ============================================================
   Harf v2 — cool paper, electric ultramarine, awwwards motion.
   Light theme only.
   ============================================================ */

:root {
  --paper:      oklch(97.6% 0.007 100);
  --paper-soft: oklch(95.2% 0.012 100);
  --ink:        oklch(22% 0.022 170);
  --ink-soft:   oklch(46% 0.018 168);
  --ink-faint:  oklch(64% 0.014 165);
  --line:       oklch(88% 0.012 120);
  --green:       oklch(52% 0.15 160);
  --green-deep:  oklch(42% 0.13 162);
  --green-wash:  oklch(93.5% 0.04 155);

  --font-display: "Schibsted Grotesk", "Mukta", "Avenir Next", system-ui, sans-serif;
  --font-body: "Inter", "Noto Sans Devanagari", "Helvetica Neue", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.87, 0, 0.13, 1);

  --gutter: clamp(1.25rem, 4.5vw, 5rem);
}

/* ============================================================
   Dark theme — pure black. Most colors are token-driven, so we
   flip the tokens and patch the few surfaces that are hardcoded.
   ============================================================ */
:root[data-theme="dark"] {
  --paper:      oklch(0% 0 0);          /* pure black — page + section bg */
  --paper-soft: oklch(8% 0.006 210);    /* barely-raised bands */
  --ink:        oklch(95% 0.006 150);
  --ink-soft:   oklch(72% 0.012 160);
  --ink-faint:  oklch(52% 0.014 165);
  --line:       oklch(26% 0.01 205);
  --green:      oklch(64% 0.16 160);
  --green-deep: oklch(56% 0.15 161);
  --green-wash: oklch(22% 0.05 158);
}
:root[data-theme="dark"] {
  --card-raise: oklch(12.5% 0.006 210);
}
/* raised card surfaces so they read above the black page */
[data-theme="dark"] .how-window,
[data-theme="dark"] .app-card,
[data-theme="dark"] .transcript,
[data-theme="dark"] .vocab-card,
[data-theme="dark"] .wifi-body,
[data-theme="dark"] .maker {
  background: var(--card-raise);
  border: 1px solid var(--line);
}
/* hardcoded light surfaces */
[data-theme="dark"] .site-nav.is-scrolled { background: oklch(6% 0.006 210 / 0.72); box-shadow: 0 1px 0 var(--line); }
[data-theme="dark"] .wifi-body { border-radius: 14px; }
/* deepen the already-dark accent bands to sit near black */
[data-theme="dark"] .think,
[data-theme="dark"] .tongues { background: oklch(8% 0.006 210); }
[data-theme="dark"] .power {
  background-color: #000;
  background-image:
    linear-gradient(90deg, rgba(3,4,5,0.95) 0%, rgba(3,4,5,0.88) 42%, rgba(3,4,5,0.6) 78%, rgba(3,4,5,0.44) 100%),
    url(power-bg.jpg);
}
[data-theme="dark"] .cta .btn-solid:hover { background: oklch(86% 0.02 160); }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.anim-off *, html.anim-off *::before, html.anim-off *::after {
  transition: none !important;
  animation-duration: 0.001s !important;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--green); color: oklch(97.5% 0.008 120); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 0.98; letter-spacing: -0.02em; text-wrap: balance; }
em { font-style: normal; color: var(--green); }
p { max-width: 66ch; }
a { color: inherit; }
s { text-decoration-thickness: 3px; text-decoration-color: var(--green); }
code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.85em; background: var(--paper-soft); border: 1px solid var(--line); padding: 0.1em 0.5em; border-radius: 6px; }
kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.6em; height: 1.6em; padding: 0 0.35em;
  font: 600 0.75em/1 var(--font-body);
  border: 1.5px solid var(--ink); border-bottom-width: 3px;
  border-radius: 8px; vertical-align: -0.1em;
}

.sec-label {
  display: inline-block;
  font: 700 0.75rem/1 var(--font-body);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.6rem;
}

/* ---------- loader ---------- */

.loader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: oklch(13% 0.008 170);
}
.loader-word {
  font: 600 clamp(2.4rem, 7vw, 5rem)/1 var(--font-display);
  color: oklch(97.6% 0.007 100); /* loader is always dark, keep the word light in both themes */
}
html.anim-off .loader, .loader.done { display: none; }

/* ---------- cursor ---------- */

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 150;
  pointer-events: none;
  border-radius: 50%;
  translate: -50% -50%;
  opacity: 0;
}
.cursor-dot { width: 8px; height: 8px; background: var(--green); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--green);
  transition: scale 0.35s var(--ease-out), opacity 0.3s ease;
}
.cursor-ring.is-hover { scale: 1.7; }
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- progress + nav ---------- */

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 90;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
}

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; gap: 2.5rem;
  padding: 1.2rem var(--gutter);
  transition: padding 0.5s var(--ease-out), background-color 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.is-scrolled {
  padding: 0.65rem var(--gutter);
  background: oklch(97.6% 0.007 100 / 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.brand-mark {
  width: 2.4rem; height: 2.4rem;
  background-color: var(--green);
  -webkit-mask: url(harf-mark.png) center / contain no-repeat;
  mask: url(harf-mark.png) center / contain no-repeat;
  flex: none;
}
.brand-mark-sm { width: 1.9rem; height: 1.9rem; }
.brand-name { font: 600 1.35rem/1 var(--font-display); letter-spacing: -0.01em; }

.nav-links { display: flex; gap: 2rem; margin-left: auto; }
.nav-links a {
  font: 500 0.95rem/1 var(--font-body);
  text-decoration: none; color: var(--ink-soft);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--green); }

.theme-toggle {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 999px;
  border: 1.5px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, scale 0.35s var(--ease-out);
}
.theme-toggle:hover { border-color: var(--green); color: var(--green); }
.theme-toggle:active { scale: 0.9; }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .ic-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .ic-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .ic-moon { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .site-nav { justify-content: flex-start; }
  .theme-toggle { margin-left: auto; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font: 700 1rem/1 var(--font-body);
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.45s var(--ease-out), scale 0.4s var(--ease-out);
}
.btn:active { scale: 0.96; }
.btn-solid {
  background: var(--green); color: oklch(97.5% 0.008 120);
  box-shadow: 0 10px 30px -12px oklch(52% 0.15 160 / 0.6);
}
.btn-solid:hover { background: var(--green-deep); box-shadow: 0 16px 40px -12px oklch(52% 0.15 160 / 0.65); }
.btn-big { font-size: 1.1rem; padding: 1.05rem 2.1rem; }
.btn-huge { font-size: clamp(1.1rem, 1.8vw, 1.4rem); padding: 1.3rem 2.8rem; }

/* ---------- masked line reveals ---------- */

.mask-line { display: block; overflow: hidden; }
.mask-line > span { display: inline-block; will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .mask-line > span { transform: translateY(115%); }
}

[data-reveal] {}
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) [data-reveal] { opacity: 0; transform: translateY(36px); }
  [data-reveal].in-view {
    opacity: 1 !important; transform: none !important;
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    transition-delay: var(--rd, 0s);
  }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid; align-items: center;
  overflow: clip;
}
/* hero content is static — no rise/fade movement (background drift / typing / wave untouched) */
.hero .mask-line > span { transform: none !important; }
.hero [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
#glyphCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 7rem var(--gutter) 5rem;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero-label {
  font: 700 0.8rem/1 var(--font-body);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.hero-title {
  font-size: clamp(3.4rem, 11vw, 9.5rem);
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  white-space: nowrap; /* rotating word never wraps → title height stays fixed, nothing below shifts */
}
.hero-title em { color: var(--green); text-transform: none; }
/* hero voice waveform — uneven bars, kept inside the text line so it can't change the title height */
.hero-wave {
  display: inline-flex; align-items: center; gap: 0.09em;
  height: 0.55em; margin-left: 0.28em;
  vertical-align: middle;
}
.hero-wave i {
  width: 0.08em; min-width: 3px; height: 18%;
  border-radius: 999px;
  background: var(--green);
}
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .hero-wave i { animation: heroWave var(--dur, 1s) ease-in-out infinite; }
  /* each bar: its own peak height + its own speed → irregular waveform */
  .hero-wave i:nth-child(1) { --peak: 70%; --dur: 0.90s; animation-delay: 0s; }
  .hero-wave i:nth-child(2) { --peak: 38%; --dur: 1.25s; animation-delay: 0.15s; }
  .hero-wave i:nth-child(3) { --peak: 96%; --dur: 0.78s; animation-delay: 0.05s; }
  .hero-wave i:nth-child(4) { --peak: 52%; --dur: 1.10s; animation-delay: 0.22s; }
  .hero-wave i:nth-child(5) { --peak: 82%; --dur: 0.95s; animation-delay: 0.10s; }
  .hero-wave i:nth-child(6) { --peak: 30%; --dur: 1.35s; animation-delay: 0.28s; }
  .hero-wave i:nth-child(7) { --peak: 64%; --dur: 0.85s; animation-delay: 0.18s; }
}
@keyframes heroWave { 0%, 100% { height: 18%; } 50% { height: var(--peak, 50%); } }
@keyframes caret { 50% { opacity: 0; } }

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 2.6rem;
}
.hero-sub strong { color: var(--ink); }
.hero-cta { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.hero-cta-meta { font-size: 0.9rem; color: var(--ink-faint); }

.hero-scrollcue {
  position: absolute; bottom: 2rem; left: 50%; translate: -50%;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font: 700 0.68rem/1 var(--font-body); letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint); z-index: 2;
}
.hero-scrollcue i { width: 1.5px; height: 44px; background: var(--ink-faint); transform-origin: top; }
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .hero-scrollcue i { animation: cue 1.8s var(--ease-inout) infinite; }
}
@keyframes cue { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- pace strip ---------- */

.pace {
  padding: clamp(2.5rem, 6vh, 4rem) var(--gutter);
  border-top: 1px solid var(--line);
}
.pace-inner {
  display: flex; align-items: baseline; justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.pace-item { display: flex; align-items: baseline; gap: 0.9rem; }
.pace-cap {
  font: 700 0.78rem/1 var(--font-body);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
}
.pace-num {
  font: 600 clamp(2.2rem, 5vw, 4rem)/1 var(--font-display);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pace-item-hi .pace-num, .pace-item-hi .pace-cap { color: var(--green-deep); }
.pace-vs {
  font: 500 1rem/1 var(--font-body);
  font-style: italic;
  color: var(--ink-faint);
}

/* ---------- think (pinned beats) ---------- */

.think { background: oklch(24% 0.006 170); color: oklch(96.5% 0.006 100); }
.think-pin {
  min-height: 100svh;
  display: grid; place-items: center;
  padding: 0 var(--gutter);
  position: relative;
}
.think-beat {
  position: absolute;
  max-width: 22ch;
  text-align: center;
  font: 600 clamp(2rem, 5.5vw, 4.6rem)/1.12 var(--font-display);
  letter-spacing: -0.02em;
  opacity: 0;
}
.think-beat s { text-decoration-color: oklch(68% 0.13 158); text-decoration-thickness: 0.09em; opacity: 0.42; }
.think-beat em { color: oklch(72% 0.13 158); }
.beat-tag {
  display: block;
  font: 700 clamp(0.72rem, 1vw, 0.85rem)/1 var(--font-body);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: oklch(70% 0.1 158);
  margin-bottom: 1.5rem;
}
.beat-note {
  display: block;
  font: 500 clamp(1rem, 1.5vw, 1.25rem)/1.5 var(--font-body);
  letter-spacing: 0;
  opacity: 0.85;
  margin-top: 1.5rem;
}
html.anim-off .think-beat:first-child, .think-beat.static-show { opacity: 1; position: static; }

/* mobile / no-pin fallback */
@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .think-pin { min-height: 0; padding: 5rem var(--gutter); display: block; }
  .think-beat { position: static; opacity: 1; margin: 2.5rem auto; }
}

/* ---------- morph (USP) ---------- */

.morph {
  background: var(--green-wash);
  transition: background-color 0.6s ease;
}
.morph-pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem var(--gutter);
  position: relative;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.morph-lede {
  margin-top: 0.4rem;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.morph-stage { margin: 2.5rem 0 3rem; }
.morph-text {
  font: 600 clamp(2.2rem, 6vw, 5.4rem)/1.15 var(--font-display);
  letter-spacing: -0.01em;
  min-height: 2.4em;
  max-width: 22ch;
}
.type-caret {
  display: inline-block;
  width: 0.06em; height: 0.85em;
  background: var(--morph-accent, var(--green));
  margin: 0 0.08em;
  vertical-align: -0.06em;
}
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .type-caret { animation: caret 0.9s steps(1) infinite; }
}
.morph-translation {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
}
.morph-translation::before { content: "= "; color: var(--morph-accent, var(--green)); font-weight: 700; }

.morph-capsule {
  display: inline-flex; align-items: center; gap: 0.6rem;
  align-self: flex-start;
  padding: 0.6rem 1rem;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  box-shadow: 0 14px 34px -14px oklch(22% 0.022 170 / 0.55);
}
.cap-mic { display: grid; place-items: center; color: var(--morph-accent, var(--green)); }
.cap-lang {
  font: 700 0.78rem/1 var(--font-body); letter-spacing: 0.04em;
  background: oklch(32% 0.02 170);
  padding: 0.4em 0.75em; border-radius: 999px;
}
.cap-wave { display: flex; align-items: center; gap: 3px; height: 18px; }
.cap-wave i { width: 3px; height: 5px; border-radius: 2px; background: oklch(80% 0.02 140); }
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .cap-wave i { animation: wave 0.9s ease-in-out infinite; }
  .cap-wave i:nth-child(2n) { animation-delay: 0.12s; }
  .cap-wave i:nth-child(3n) { animation-delay: 0.26s; }
}
@keyframes wave { 50% { height: 15px; } }

.morph-index {
  position: absolute; right: var(--gutter); top: 50%; translate: 0 -50%;
  list-style: none;
  display: grid; gap: 0.5rem;
  text-align: right;
  font: 500 1rem/1.4 var(--font-body);
  color: var(--ink-faint);
}
.morph-index li { transition: color 0.3s ease, font-weight 0.3s ease; }
.morph-index li.on { color: var(--ink); font-weight: 700; }
.morph-index li.on::after { content: " ●"; color: var(--morph-accent, var(--green)); }
@media (max-width: 900px) { .morph-index { display: none; } }

.morph-more { margin-top: 2.2rem; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- tongues marquee ---------- */

.tongues { padding: clamp(3rem, 8vh, 6rem) 0; overflow: clip; background: oklch(24% 0.006 170); }
.tongues-row { overflow: clip; padding: 0.6rem 0; }
.tongues-track {
  display: flex; gap: 3.5rem; width: max-content;
  font: 600 clamp(3rem, 8vw, 7rem)/1.1 var(--font-display);
  letter-spacing: -0.01em;
  color: oklch(96.5% 0.006 100);
  will-change: transform;
  padding-right: 3.5rem;
}
.tongues-track .hollow {
  color: transparent;
  -webkit-text-stroke: 1.5px oklch(70% 0.03 160);
}
.tongues-track span { transition: color 0.3s ease; }
.tongues-track span:hover { color: oklch(72% 0.13 158); -webkit-text-stroke-color: oklch(72% 0.13 158); }

/* ---------- how (horizontal) ---------- */

.how { background: var(--paper-soft); overflow: clip; }
.how-pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 5rem 0; }
.how-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0 var(--gutter); margin-bottom: 3rem;
}
.how-head .sec-label { margin: 0; }
.how-hint { font: 500 0.9rem/1 var(--font-body); color: var(--ink-faint); }
.how-track {
  display: flex; gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0 var(--gutter);
  width: max-content;
  will-change: transform;
}
.how-panel {
  width: min(76vw, 960px);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.how-num {
  display: block;
  font: 700 clamp(4.5rem, 11vh, 8rem)/0.9 var(--font-display);
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 2px var(--green);
  opacity: 0.6;
  margin-bottom: 1.4rem;
  user-select: none;
}
.how-panel h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1.1rem; }
.how-panel p { color: var(--ink-soft); max-width: 42ch; font-size: clamp(1rem, 1.3vw, 1.15rem); }

/* the recurring Notes window: same object, three moments */
.how-window {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--green);
  overflow: hidden;
}
.hw-bar {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.hw-dots { display: flex; gap: 0.4rem; }
.hw-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.hw-title { font: 600 0.82rem/1 var(--font-body); color: var(--ink-faint); }
.app-ico { display: grid; place-items: center; width: 1.25rem; height: 1.25rem; margin-right: -0.25rem; }
.app-ico svg { width: 100%; height: 100%; display: block; }
.hw-body {
  padding: 1.5rem 1.4rem;
  min-height: 7.5rem;
  font: 500 clamp(1.05rem, 1.5vw, 1.3rem)/1.6 var(--font-body);
}
.hw-text { color: var(--ink); }
.hw-foot {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 0 1.4rem 1.3rem;
}
.hw-key {
  display: grid; place-items: center;
  width: 3.3rem; height: 3.3rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 0 5px 0 var(--ink);
}
.hw-key svg { width: 1.5rem; height: 1.5rem; }
.hw-key.is-pressed {
  transform: translateY(4px);
  box-shadow: 0 1px 0 var(--ink), 0 0 0 6px var(--green-wash);
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.hw-hint { font: 600 0.85rem/1.3 var(--font-body); color: var(--ink-faint); }

.art-caret { display: inline-block; width: 2.5px; height: 1.25em; background: var(--green); vertical-align: -0.2em; }
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .art-caret { animation: caret 1.1s steps(1) infinite; }
}
.art-wave { display: flex; align-items: center; gap: 3.5px; height: 26px; }
.art-wave i { width: 3.5px; height: 7px; border-radius: 3px; background: var(--green); }
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .art-wave i { animation: wave 0.85s ease-in-out infinite; }
  .art-wave i:nth-child(2n) { animation-delay: 0.11s; }
  .art-wave i:nth-child(3n) { animation-delay: 0.23s; }
  .art-wave i:nth-child(4n) { animation-delay: 0.34s; }
}
.art-check {
  display: inline-grid; place-items: center;
  width: 1.5em; height: 1.5em;
  font: 700 0.8em/1 var(--font-body);
  color: oklch(97.5% 0.008 120);
  background: var(--green);
  border-radius: 50%;
  vertical-align: -0.25em;
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .how-panel { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .how-pin { min-height: 0; }
  .how-track { width: auto; flex-direction: column; gap: 4.5rem; }
  .how-panel { width: auto; padding-top: 5.5rem; }
  .how-num { font-size: 7rem; }
  .how-hint { display: none; }
}

/* ---------- apps deck ---------- */

.apps { background: var(--paper); }
.apps-pin {
  min-height: 100svh;
  display: grid; align-items: center;
  padding: clamp(4rem, 8vh, 6rem) var(--gutter);
}
.apps-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.apps-title { font: 600 clamp(2.4rem, 5vw, 4.4rem)/0.98 var(--font-display); text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.apps-lede { color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 42ch; margin-bottom: 2.2rem; }

.apps-capsule { margin-bottom: 2.2rem; }
/* bars driven by scroll, not by the CSS keyframe loop */
.cap-wave.wave-scroll i { animation: none !important; transition: height 0.16s ease; }

.apps-index {
  list-style: none;
  display: flex; align-items: center; gap: 1.1rem;
}
.apps-index li {
  width: 2.3rem; height: 2.3rem;
  opacity: 0.3;
  filter: grayscale(1);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.45s var(--ease-out);
}
.apps-index li svg { width: 100%; height: 100%; display: block; }
.apps-index li.on {
  opacity: 1;
  filter: none;
  transform: translateY(-4px) scale(1.18);
}

.apps-deck { position: relative; height: clamp(260px, 40vh, 360px); }
.app-card {
  position: absolute; inset: 0;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--green);
  overflow: hidden;
  will-change: transform, opacity;
}
.app-body {
  padding: 1.4rem;
  font: 500 clamp(1.05rem, 1.5vw, 1.3rem)/1.6 var(--font-body);
}
.app-meta {
  font: 600 0.8rem/1 var(--font-body);
  color: var(--ink-faint);
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  max-width: none;
}
.app-body-wa { display: flex; justify-content: flex-end; padding-top: 2rem; }
.wa-bubble {
  background: var(--green-wash);
  border-radius: 16px 16px 4px 16px;
  padding: 0.8rem 1.1rem;
  max-width: 85%;
  min-height: 2.6em; min-width: 8ch;
}
.app-body-code {
  background: oklch(24% 0.006 170);
  color: oklch(88% 0.03 140);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 1rem;
  min-height: 100%;
}
.app-body-code .art-caret { background: oklch(72% 0.13 158); }
.type-line { max-width: none; min-height: 2.6em; }

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .apps-pin { min-height: 0; }
  .apps-grid { grid-template-columns: 1fr; }
  .apps-index { display: none; }
}
.apps-deck.deck-static { height: auto; display: grid; gap: 1.2rem; }
.apps-deck.deck-static .app-card { position: static; }

/* ---------- privacy ---------- */

.privacy {
  position: relative;
  padding: clamp(6rem, 16vh, 11rem) var(--gutter);
  overflow: clip;
}
.privacy-watermark {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  font: 700 clamp(8rem, 24vw, 22rem)/1 var(--font-display);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  pointer-events: none; user-select: none;
  white-space: nowrap;
  max-width: none;
}
.privacy-inner {
  position: relative; max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(250px, 25vw, 360px);
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: center;
}
.privacy-main { min-width: 0; }
.privacy-title { font-size: clamp(2.4rem, 5.1vw, 4.7rem); text-transform: uppercase; margin-bottom: 2rem; }
.privacy-copy { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-soft); max-width: 44ch; margin-bottom: 3.5rem; }

/* right-side floating photo */
.privacy-media { position: relative; align-self: center; }
.privacy-photo {
  display: block; width: 100%; height: auto;
  border-radius: 22px;
  box-shadow: 0 36px 72px -30px rgba(0,0,0,0.5), 0 0 0 1px oklch(50% 0 0 / 0.06);
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .privacy-photo { animation: floatY 6.5s ease-in-out infinite; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-0.7deg); }
  50%      { transform: translateY(-16px) rotate(0.7deg); }
}
@media (max-width: 900px) {
  .privacy-inner { grid-template-columns: 1fr; }
  .privacy-media { max-width: 320px; margin: 1rem auto 0; }
}
/* interactive wi-fi demo */
.wifi-demo {
  max-width: 620px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--green);
  padding: 1.2rem 1.4rem 1.1rem;
  margin-bottom: 3.5rem;
}
.wifi-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.wifi-toggle {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font: 700 0.95rem/1 var(--font-body);
  color: var(--ink);
  background: none; border: none; cursor: pointer;
  padding: 0.2rem;
}
.wt-track {
  display: inline-flex; align-items: center;
  width: 3.1rem; height: 1.75rem;
  border-radius: 999px;
  background: var(--green);
  padding: 3px;
  transition: background-color 0.3s ease;
}
.wt-knob {
  width: 1.35rem; height: 1.35rem;
  border-radius: 50%;
  background: oklch(99% 0.003 100);
  box-shadow: 0 1px 3px oklch(22% 0.022 170 / 0.35);
  transform: translateX(1.35rem);
  transition: transform 0.35s var(--ease-out);
}
.wifi-toggle[aria-pressed="false"] .wt-track { background: var(--ink-faint); }
.wifi-toggle[aria-pressed="false"] .wt-knob { transform: translateX(0); }
.wifi-chip {
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: 0.55em 0.9em; border-radius: 999px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.wifi-demo.is-off .wifi-chip { background: var(--green-wash); color: var(--green-deep); border-color: transparent; }
.wifi-body {
  min-height: 4.6em;
  padding: 1.2rem 0.15rem 0.4rem;
  font: 500 clamp(1.05rem, 1.5vw, 1.3rem)/1.6 var(--font-body);
}
.wifi-note { font-size: 0.9rem; color: var(--ink-faint); padding-top: 0.5rem; max-width: none; }

.privacy-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; max-width: 980px;
}
.stat { border-top: 2px solid var(--ink); padding-top: 1.2rem; }
.stat-cap {
  display: block;
  font: 700 0.75rem/1 var(--font-body);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}
.stat-num { font: 600 clamp(2rem, 3.6vw, 3.2rem)/1 var(--font-display); color: var(--green); display: block; }

/* ---------- power features (bento) ---------- */

.power {
  position: relative;
  padding: clamp(5.5rem, 15vh, 9.5rem) var(--gutter);
  background-color: oklch(18% 0.008 200);
  background-image:
    linear-gradient(90deg, rgba(12,14,15,0.93) 0%, rgba(12,14,15,0.82) 42%, rgba(12,14,15,0.55) 78%, rgba(12,14,15,0.4) 100%),
    url(power-bg.jpg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: clip;
}
.power > * { position: relative; z-index: 1; }
.power::before { /* slow-drifting ambient light */
  content: ""; position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(44% 40% at 16% 10%, oklch(72% 0.02 210 / 0.10), transparent 72%),
    radial-gradient(38% 36% at 92% 28%, oklch(58% 0.12 160 / 0.08), transparent 72%);
}
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .power::before { animation: powerGlow 15s ease-in-out infinite alternate; }
}
@keyframes powerGlow {
  from { transform: translate3d(-2%, -1%, 0) scale(1.04); opacity: 0.85; }
  to   { transform: translate3d(3%, 2.5%, 0) scale(1.16); opacity: 1; }
}
.power-head { max-width: 1400px; margin: 0 auto 3.2rem; }
.power-title { font-size: clamp(3rem, 8.5vw, 7rem); text-transform: uppercase; margin-bottom: 1.6rem; color: oklch(96% 0.008 160); }
.power-title em { color: oklch(70% 0.16 158); }
.power-lede { color: oklch(74% 0.012 190); font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 58ch; }

/* dark palette local to the cards */
.power-grid {
  --card-1:    oklch(31% 0.009 196);
  --card-2:    oklch(25% 0.009 202);
  --card-well: oklch(17.5% 0.009 204);
  --card-line: oklch(100% 0 0 / 0.10);
  --card-ink:  oklch(95% 0.008 160);
  --card-mute: oklch(72% 0.012 190);
  --card-acc:  oklch(83% 0.15 158);
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
  align-items: stretch;
}
.pcard {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column;
  background: linear-gradient(158deg, var(--card-1), var(--card-2));
  color: var(--card-ink);
  border: 1px solid var(--card-line);
  border-radius: 24px;
  padding: clamp(1.6rem, 2.4vw, 2.5rem);
  overflow: clip;
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.07), 0 26px 52px -34px oklch(0% 0 0 / 0.72);
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out), border-color 0.55s var(--ease-out);
}
.pcard::after { /* soft top-corner sheen */
  content: ""; position: absolute; top: -34%; right: -16%; z-index: 0;
  width: 56%; height: 72%;
  background: radial-gradient(closest-side, oklch(78% 0.03 195 / 0.10), transparent);
  pointer-events: none; opacity: 0.8;
  transition: opacity 0.55s var(--ease-out);
}
@media (hover: hover) {
  .pcard:hover {
    transform: translateY(-6px);
    border-color: oklch(70% 0.13 160 / 0.42);
    box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.10), 0 44px 74px -34px oklch(0% 0 0 / 0.8);
  }
  .pcard:hover::after { opacity: 1; }
  .pcard:hover .pcard-icon { transform: scale(1.08) rotate(-5deg); border-color: oklch(72% 0.14 160 / 0.6); }
}

@media (max-width: 980px) {
  .power-grid { grid-template-columns: 1fr; }
}

.pcard-head, .cmd-stage, .cmd-chips, .snip-body, .tone-body { position: relative; z-index: 1; }
.pcard-icon {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  color: var(--card-acc);
  background: oklch(100% 0 0 / 0.05);
  border: 1px solid oklch(100% 0 0 / 0.13);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.07);
  margin-bottom: 1.15rem;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.pcard-icon svg { width: 23px; height: 23px; }
.pcard-tag {
  display: inline-block;
  font: 700 0.68rem/1 var(--font-body);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: oklch(66% 0.02 190);
  margin-bottom: 0.85rem;
}
.pcard-head h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  color: var(--card-ink); line-height: 1.08;
  margin-bottom: 0.7rem;
}
.pcard-head h3 em { color: var(--card-ink); }
.pcard-head p { color: var(--card-mute); font-size: 1rem; line-height: 1.55; max-width: 42ch; }

/* shared pill look (chips, snippet triggers, tone tabs) */
.cmd-chip, .snip-pill, .tone-tab {
  font: 600 0.85rem/1 var(--font-body);
  color: var(--card-ink);
  background: oklch(100% 0 0 / 0.05);
  border: 1.5px solid oklch(100% 0 0 / 0.14);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.3s ease;
}
.cmd-chip:hover, .snip-pill:hover, .tone-tab:hover {
  background: oklch(52% 0.15 160 / 0.2);
  border-color: oklch(66% 0.13 160 / 0.6);
  transform: translateY(-1px);
}
.snip-pill.is-on, .tone-tab.is-on, .cmd-chip.is-live {
  background: var(--green); border-color: var(--green);
  color: oklch(97% 0.01 120);
  box-shadow: 0 6px 16px -10px oklch(52% 0.15 160 / 0.5);
}

/* --- featured: voice commands --- */
.cmd-stage { margin-top: auto; padding-top: 1.6rem; }
.cmd-doc {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--card-well);
  border: 1px solid var(--card-line);
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
  min-height: clamp(7.5rem, 11vh, 9.5rem);
}
.cmd-lines { display: flex; flex-direction: column; gap: 0.5rem; }
.cmd-lines .cl {
  font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.5; color: var(--card-ink);
  max-width: none;
}
.cmd-lines .cl-ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.cmd-lines .cl-ul li { position: relative; padding-left: 1.3rem; font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.45; }
.cmd-lines .cl-ul li::before {
  content: ""; position: absolute; left: 0.15rem; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--card-acc);
}
.cmd-lines .cl-sent {
  background: oklch(52% 0.15 160 / 0.16); border: 1px solid oklch(60% 0.12 160 / 0.4);
  border-radius: 14px; padding: 0.85rem 1rem;
}
.cmd-lines .cl-sent p { color: var(--card-ink); font-size: 1.05rem; line-height: 1.45; margin-bottom: 0.5rem; }
.cmd-lines .cl-check { font: 700 0.72rem/1 var(--font-body); letter-spacing: 0.06em; text-transform: uppercase; color: var(--card-acc); }
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .cmd-lines > *, html:not(.anim-off) .cmd-lines .cl-ul li {
    animation: clRise 0.5s var(--ease-out) both;
  }
}
@keyframes clRise { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }

.cmd-heard {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem; color: var(--card-mute);
}
.cmd-heard-lbl { font: 700 0.66rem/1 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase; color: oklch(60% 0.012 160); }
.cmd-heard b { color: var(--card-acc); font-weight: 600; }
.cmd-heard-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 oklch(60% 0.15 160 / 0.6);
}
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .cmd-heard-dot { animation: heardPulse 1.8s ease-out infinite; }
}
@keyframes heardPulse {
  0% { box-shadow: 0 0 0 0 oklch(60% 0.15 160 / 0.55); }
  70%, 100% { box-shadow: 0 0 0 9px oklch(60% 0.15 160 / 0); }
}
.cmd-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.3rem; }

/* --- snippets --- */
.snip-body { margin-top: auto; padding-top: 1.5rem; }
.snip-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.snip-out {
  position: relative;
  background: var(--card-well);
  border: 1px solid var(--card-line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  min-height: 6.5rem;
}
.snip-out-tag { display: block; font: 700 0.64rem/1 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase; color: oklch(60% 0.012 160); margin-bottom: 0.6rem; }
.snip-out p { color: var(--card-ink); font-size: 1.02rem; line-height: 1.5; max-width: none; transition: opacity 0.28s ease, transform 0.28s ease; }
.snip-out.is-swap p { opacity: 0; transform: translateY(6px); }

/* --- tone --- */
.tone-body { margin-top: auto; padding-top: 1.5rem; }
.tone-tabs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.tone-out {
  background: var(--card-well);
  border: 1px solid var(--card-line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  min-height: 6.5rem;
  font-size: 1rem; line-height: 1.6; color: var(--card-ink);
  white-space: pre-wrap;
}
.tone-out .w { opacity: 0; }
.tone-out .w.on { opacity: 1; transition: opacity 0.2s ease; }

/* keep the shared 'you said / heard' label used by the vocab card below */
.polish-said-label, .vocab-heard {
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}

/* ---------- craft rows ---------- */

.craft { padding: clamp(5rem, 13vh, 8rem) var(--gutter); max-width: 1400px; margin: 0 auto; }
.craft-row {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(2.5rem, 6vh, 4.5rem) 0;
}
.craft-row + .craft-row { border-top: 1px solid var(--line); }
.craft-row-flip .craft-copy { order: 2; }
@media (max-width: 900px) {
  .craft-row { grid-template-columns: 1fr; }
  .craft-row-flip .craft-copy { order: 0; }
}
.craft-copy h3 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-bottom: 1.1rem; }
.craft-copy p { color: var(--ink-soft); }

.vocab-card {
  text-align: center;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  padding: 3rem 2rem;
  box-shadow: 6px 6px 0 var(--green);
}
.vocab-heard s { font-size: 1.05rem; letter-spacing: 0; text-transform: none; font-weight: 500; }
.vocab-typed {
  font: 600 clamp(2rem, 4vw, 3.2rem)/1.2 var(--font-display);
  max-width: none;
}
/* Clash Display lacks Vietnamese diacritics (ễ); render those via system fonts */
.vocab-typed[lang="vi"] { font-family: -apple-system, "Helvetica Neue", system-ui, sans-serif; }
.vocab-card.swapping .vocab-heard, .vocab-card.swapping .vocab-typed { opacity: 0; transform: translateY(8px); }
.vocab-heard, .vocab-typed { transition: opacity 0.32s ease, transform 0.45s var(--ease-out); }

.transcript {
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  padding: 1.8rem;
  display: grid; gap: 1rem;
  box-shadow: 6px 6px 0 var(--green);
}
.t-line { display: grid; grid-template-columns: 5.6rem 1fr; gap: 1rem; align-items: start; }
.t-line p { font-size: 0.95rem; color: var(--ink-soft); max-width: none; }
.t-line b {
  font: 700 0.66rem/1 var(--font-body);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5em 0.6em; border-radius: 999px;
  text-align: center; margin-top: 0.1rem;
  transition: background-color 0.4s ease;
}
.t-p1 { background: var(--green-wash); color: var(--green-deep); }
.t-p2 { background: oklch(93% 0.055 78); color: oklch(45% 0.1 72); }
.t-you { background: var(--paper-soft); color: var(--ink-soft); border: 1px solid var(--line); }
.t-save { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.4rem; max-width: none; }
@media (prefers-reduced-motion: no-preference) {
  html:not(.anim-off) .transcript .t-line { opacity: 0; transform: translateY(16px); }
  .transcript.playing .t-line {
    opacity: 1 !important; transform: none !important;
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: calc(var(--i) * 0.5s);
  }
}

/* ---------- creators / makers ---------- */

.makers {
  padding: clamp(5rem, 13vh, 8rem) var(--gutter);
  max-width: 1400px; margin: 0 auto;
}
.makers-head { margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.makers-title { font-size: clamp(2.6rem, 7vw, 6rem); text-transform: uppercase; margin-bottom: 1.5rem; }
.makers-lede { color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 62ch; }

.makers-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
}
@media (max-width: 760px) { .makers-grid { grid-template-columns: 1fr; } }

.maker {
  display: flex; gap: clamp(1rem, 1.6vw, 1.4rem); align-items: flex-start;
  padding: clamp(1.5rem, 2.4vw, 2.2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}
@media (hover: hover) {
  .maker:hover {
    transform: translateY(-4px);
    border-color: oklch(70% 0.12 160 / 0.55);
    box-shadow: 0 26px 52px -32px oklch(52% 0.15 160 / 0.4);
  }
}
.maker-avatar {
  flex: none; width: 3.6rem; height: 3.6rem; border-radius: 50%;
  object-fit: cover; display: block;
  background: var(--paper-soft);
  box-shadow: 0 0 0 1px var(--line);
}
.maker-body { min-width: 0; }
.maker-body h3 { font-size: 1.4rem; margin-bottom: 0.2rem; }
.maker-role {
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.9rem;
}
.maker-bio { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; margin-bottom: 1.2rem; }
.maker-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font: 700 0.9rem/1 var(--font-body); color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--green);
  padding-bottom: 3px;
  transition: color 0.25s ease, gap 0.25s ease;
}
.maker-link:hover { color: var(--green); gap: 0.7rem; }
.maker-link svg { width: 18px; height: 18px; flex: none; }

/* ---------- cta ---------- */

.cta {
  padding: clamp(7rem, 20vh, 13rem) var(--gutter);
  text-align: center;
  background: var(--green);
  color: oklch(97.5% 0.008 120);
}
.cta-title {
  font-size: clamp(3.2rem, 10vw, 9rem);
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.cta-title em { color: var(--ink); text-transform: none; }
.cta .btn-solid {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 18px 44px -16px oklch(21% 0.02 265 / 0.7);
}
.cta .btn-solid:hover { background: oklch(15% 0.015 265); }
.cta-fast { margin: 0 auto 1.5rem; font: 600 1.02rem/1.4 var(--font-body); color: oklch(93% 0.04 155); }
.cta-meta { margin: 1.6rem auto 0; font-size: 0.92rem; color: oklch(90% 0.05 155); }

/* ---------- footer ---------- */

.site-footer {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  padding: 2.4rem var(--gutter);
}
.site-footer p { font-size: 0.9rem; color: var(--ink-soft); }
.footer-copy { margin-left: auto; color: var(--ink-faint); }
