/* ═══════════════════════════════════════════
   KASH — Landing Page Styles
   Palette: Graphite black + Cream + Gold / Red / Teal
   ═══════════════════════════════════════════ */

:root {
  /* Brand palette */
  --bg:        #0F0F0E;
  --bg-2:      #141414;
  --bg-3:      #1C1B18;
  --ink:       #E3E1AC;
  --ink-soft:  #CAC898;
  --ink-dim:   #8F8C6E;
  --ink-mute:  #5C5A44;
  --gold:      #D19745;
  --red:       #B83A3A;
  --teal:      #126E90;

  --line:        rgba(227, 225, 172, 0.12);
  --line-strong: rgba(227, 225, 172, 0.22);
  --line-soft:   rgba(227, 225, 172, 0.06);

  /* Type */
  --ff-display:  'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --ff-serif:    'Instrument Serif', Georgia, serif;
  --ff-mono:     'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --container: 1220px;
  --pad-x: clamp(20px, 4vw, 40px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'ss02', 'cv01';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol, dl, dt, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p { margin: 0; }
em { font-style: normal; }

::selection {
  background: var(--ink);
  color: var(--bg);
}

/* ═══ ATMOSPHERE ═══ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(209, 151, 69, 0.06), transparent 60%),
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(18, 110, 144, 0.05), transparent 60%);
}

/* ═══ CONTAINER ═══ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ═══ TYPOGRAPHY ═══ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 6px 10px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(227, 225, 172, 0.02);
}
.eyebrow--center { margin-inline: auto; }
.eyebrow__tick {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(209, 151, 69, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(209, 151, 69, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(209, 151, 69, 0.05); }
}

.display {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(42px, 6.8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: 'opsz' 96;
}
.display em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.display--md {
  font-size: clamp(38px, 5.5vw, 72px);
}

.headline {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 80;
}
.headline em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.015em;
}

.lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  font-weight: 400;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background-color 0.2s, color 0.2s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 10px 30px -14px rgba(227, 225, 172, 0.5);
}
.btn--primary:hover {
  background: #F2F0C4;
  transform: translateY(-1px);
}
.btn--primary:hover .btn__arrow {
  transform: translateX(4px);
}
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--lg {
  padding: 18px 26px;
  font-size: 17px;
  font-family: var(--ff-mono);
  letter-spacing: 0.01em;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(227, 225, 172, 0.06); border-color: var(--ink); }

/* ═══ NAV ═══ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(15, 15, 14, 0.72);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 14px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand__mark { color: var(--ink); }
.brand__word {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 24;
}
.nav__links {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.nav__links a {
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--ink);
  transition: right 0.4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__right { display: flex; align-items: center; gap: 14px; }
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.status-chip__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}
.hero__rule {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, #000 30%, transparent 80%);
  opacity: 0.45;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy > * + * { margin-top: 24px; }
.hero__copy .display { margin-top: 24px; }
.hero__copy .lead { margin-top: 26px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 28px;
}
.meta-dot {
  width: 4px; height: 4px;
  background: var(--ink-mute);
  border-radius: 50%;
  display: inline-block;
}

/* Hero actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* HERO VISUAL */
.hero__visual {
  position: relative;
  height: clamp(380px, 44vw, 560px);
}

/* Backdrop stripes — the signature motif */
.backdrop-stripes {
  position: absolute;
  right: -40px; top: -20px; bottom: -20px;
  width: clamp(120px, 18vw, 200px);
  display: flex;
  gap: clamp(4px, 0.6vw, 8px);
  transform: rotate(-6deg) translateX(20px);
  opacity: 0.85;
  pointer-events: none;
}
.backdrop-stripes .bs {
  flex: 1;
  border-radius: 2px;
  opacity: 0.85;
}
.bs--1 { background: var(--ink); }
.bs--2 { background: var(--gold); }
.bs--3 { background: var(--red); }
.bs--4 { background: var(--teal); }

/* The Card */
.kard {
  position: absolute;
  top: 50%; left: 46%;
  transform: translate(-50%, -50%) rotate(-10deg);
  width: clamp(300px, 34vw, 400px);
  aspect-ratio: 1.586 / 1;
  background:
    linear-gradient(135deg, #1C1B18 0%, #0F0F0E 60%, #1A1916 100%);
  border: 1px solid rgba(227, 225, 172, 0.1);
  border-radius: 20px;
  padding: 22px 24px;
  color: var(--ink);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 20px 40px -10px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(227, 225, 172, 0.08) inset;
  overflow: hidden;
  z-index: 2;
  animation: kard-float 8s ease-in-out infinite;
}
@keyframes kard-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-10deg) translateY(0); }
  50%      { transform: translate(-50%, -50%) rotate(-10deg) translateY(-8px); }
}

.kard__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(227, 225, 172, 0.055) 1px, transparent 1.5px);
  background-size: 14px 14px;
  mask-image: linear-gradient(135deg, #000 20%, transparent 80%);
  -webkit-mask-image: linear-gradient(135deg, #000 20%, transparent 80%);
  pointer-events: none;
}
.kard__head {
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  z-index: 2;
}
.kard__wordmark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.kard__contactless {
  position: absolute;
  top: 24px; right: 80px;
  display: flex;
  gap: 2px;
  align-items: center;
}
.kard__contactless span {
  width: 3px; height: 16px;
  background: var(--ink-dim);
  border-radius: 2px;
  opacity: 0.6;
}
.kard__contactless span:nth-child(2) { height: 11px; opacity: 0.45; }
.kard__contactless span:nth-child(3) { height: 7px; opacity: 0.3; }

.kard__chip {
  position: absolute;
  top: 50%; left: 24px;
  transform: translateY(-10%);
  width: 40px; height: 32px;
  background: linear-gradient(135deg, #D19745 0%, #a36d2a 50%, #D19745 100%);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  padding: 3px;
}
.kard__chip span {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 1px;
}
.kard__number {
  position: absolute;
  bottom: 68px; left: 24px;
  display: flex;
  gap: 16px;
  font-family: var(--ff-mono);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  z-index: 2;
}
.kard__footer {
  position: absolute;
  bottom: 22px; left: 24px; right: 80px;
  display: flex;
  gap: 32px;
  z-index: 2;
}
.kard__footer label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 3px;
}
.kard__footer strong {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 500;
}
.kard__stripes {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 64px;
  display: flex;
  gap: 4px;
  padding: 0 8px;
}
.kard__stripes span { flex: 1; border-radius: 1px; }
.kard__stripes span:nth-child(1) { background: var(--ink); }
.kard__stripes span:nth-child(2) { background: var(--gold); }
.kard__stripes span:nth-child(3) { background: var(--red); }
.kard__stripes span:nth-child(4) { background: var(--teal); }

/* Account panel */
.panel {
  position: absolute;
  right: -12px; bottom: -20px;
  width: clamp(240px, 22vw, 280px);
  background: var(--ink);
  color: var(--bg-2);
  border-radius: 14px;
  padding: 16px 18px 14px;
  transform: rotate(4deg);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  z-index: 3;
  animation: panel-float 8s ease-in-out infinite 0.4s;
}
@keyframes panel-float {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50%      { transform: rotate(4deg) translateY(-6px); }
}
.panel__row--head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(20, 20, 20, 0.25);
  margin-bottom: 10px;
}
.panel__flag { display: inline-flex; border-radius: 2px; overflow: hidden; }
.panel__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.panel__pill {
  margin-left: auto;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  background: rgba(20, 20, 20, 0.08);
  border-radius: 999px;
}
.panel__list > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  font-size: 12px;
}
.panel__list dt {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.6);
}
.panel__list dd {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--bg-2);
  margin: 0;
}
.panel__foot {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(20, 20, 20, 0.18);
  font-size: 11.5px;
  line-height: 1.35;
  color: rgba(20, 20, 20, 0.7);
  font-style: italic;
  font-family: var(--ff-serif);
}

/* Whisper quote */
.whisper {
  position: absolute;
  top: 4%; left: -6%;
  max-width: 210px;
  transform: rotate(-5deg);
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--ink-soft);
  z-index: 4;
  opacity: 0.9;
}
.whisper span {
  font-size: 16px;
  line-height: 1.3;
  display: block;
  color: var(--ink);
}
.whisper small {
  display: block;
  margin-top: 8px;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ═══ MARQUEE ═══ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-2);
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-2), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-2), transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee-scroll 55s linear infinite;
  will-change: transform;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__item {
  font-family: var(--ff-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  font-variation-settings: 'opsz' 28;
}
.marquee__item:nth-child(4n+3) {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.marquee__sep {
  color: var(--gold);
  font-size: 12px;
  align-self: center;
  opacity: 0.5;
}

/* ═══ SECTION HEADS ═══ */
section { position: relative; }
.features, .how, .who, .manifesto, .stats, .cta {
  padding: clamp(70px, 10vw, 140px) 0;
}
.section-head { margin-bottom: clamp(44px, 5vw, 70px); }
.section-head__label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-left: 32px;
  position: relative;
}
.section-head__label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

/* ═══ FEATURES ═══ */
.features {
  border-top: 1px solid var(--line);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.feat {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 48px);
  position: relative;
  transition: background 0.4s var(--ease);
}
.feat:hover { background: var(--bg-3); }
.feat:hover .feat__stripes i { transform: scaleY(1.5); }

.feat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.feat__num {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.feat__stripes {
  display: inline-flex;
  gap: 3px;
  height: 22px;
}
.feat__stripes i {
  width: 5px;
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.5s var(--ease);
}
.feat__stripes i:nth-child(1) { background: var(--ink); }
.feat__stripes i:nth-child(2) { background: var(--gold); }
.feat__stripes i:nth-child(3) { background: var(--red); }
.feat__stripes i:nth-child(4) { background: var(--teal); }

.feat h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
  font-variation-settings: 'opsz' 36;
}
.feat p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 44ch;
}
.feat__bullets {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat__bullets li {
  position: relative;
  padding-left: 22px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.feat__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 10px;
  height: 2px;
  background: var(--gold);
}

/* ═══ STATS ═══ */
.stats {
  padding: clamp(50px, 5vw, 80px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: baseline;
}
.stat {
  padding: 6px 0;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.stat:first-child { border-left-color: var(--gold); }
.stat__num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
  font-variation-settings: 'opsz' 60;
}
.stat__num em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.stat__label {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.4;
  display: block;
  max-width: 22ch;
}

/* ═══ HOW IT WORKS ═══ */
.how { }
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 22px);
  counter-reset: step;
}
.step {
  padding: clamp(28px, 2.6vw, 40px);
  background:
    linear-gradient(180deg, rgba(227, 225, 172, 0.025), transparent 70%),
    var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.step:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.step__stripes {
  display: inline-flex;
  gap: 3px;
  height: 20px;
}
.step__stripes i {
  width: 4px;
  border-radius: 1px;
}
.step__stripes i:nth-child(1) { background: var(--ink); }
.step__stripes i:nth-child(2) { background: var(--gold); }
.step__stripes i:nth-child(3) { background: var(--red); }
.step__stripes i:nth-child(4) { background: var(--teal); }

.step h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
}
.step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ═══ WHO ═══ */
.who { border-top: 1px solid var(--line); }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 960px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 450;
  color: var(--ink-soft);
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  background: rgba(227, 225, 172, 0.02);
  cursor: default;
}
.chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.chip:hover {
  color: var(--ink);
  background: rgba(227, 225, 172, 0.06);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ═══ MANIFESTO ═══ */
.manifesto {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(209, 151, 69, 0.04), transparent 70%),
    var(--bg);
}
.manifesto__inner {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.manifesto__text {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 30px;
  font-weight: 400;
}
.manifesto__text em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold);
}
.manifesto__text--after { color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; }
.manifesto__sig {
  margin-top: 44px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ═══ CTA ═══ */
.cta {
  border-top: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.cta__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta__stripes {
  position: absolute;
  top: -40px; left: 50%;
  width: 120px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%) rotate(180deg);
  z-index: 1;
}
.cta__stripes span {
  width: 3px;
  height: 90px;
  border-radius: 2px;
  opacity: 0.5;
}
.cta__stripes span:nth-child(1) { background: var(--ink); height: 50px; }
.cta__stripes span:nth-child(2) { background: var(--gold); height: 70px; }
.cta__stripes span:nth-child(3) { background: var(--red); height: 90px; }
.cta__stripes span:nth-child(4) { background: var(--teal); height: 60px; }

.cta .display { margin: 26px 0 24px; }
.cta__lead {
  max-width: 52ch;
  margin: 0 auto 38px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.cta__actions {
  display: flex;
  justify-content: center;
}
.cta__sig {
  margin-top: 48px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(50px, 6vw, 80px);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(32px, 4vw, 60px);
}
.footer__brand { }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand .brand__word { font-size: 28px; }
.footer__tag {
  font-family: var(--ff-display);
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 18ch;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__col h4 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: var(--ink-soft);
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--ink); }
.footer__soon {
  color: var(--ink-mute);
  font-size: 14.5px;
  font-family: var(--ff-serif);
  font-style: italic;
}

.footer__rule {
  height: 1px;
  background: var(--line);
  margin: clamp(36px, 4vw, 60px) var(--pad-x) 24px;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 20px;
}
.footer__dot {
  width: 3px; height: 3px;
  background: var(--ink-mute);
  border-radius: 50%;
}
.footer__stripes {
  display: flex;
  gap: 0;
  height: 10px;
}
.footer__stripes span { flex: 1; }
.footer__stripes span:nth-child(1) { background: var(--ink); }
.footer__stripes span:nth-child(2) { background: var(--gold); }
.footer__stripes span:nth-child(3) { background: var(--red); }
.footer__stripes span:nth-child(4) { background: var(--teal); }

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal--stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; height: 380px; margin-bottom: 10px; }
  .whisper { display: none; }
  .backdrop-stripes { right: -20px; }

  .feat-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; padding-right: 0; }
  .step:first-child { padding-left: 0; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nav__right .status-chip { display: none; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .btn--lg { width: 100%; justify-content: center; font-size: 15px; padding: 16px 20px; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat__label { max-width: none; }

  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom .footer__dot { display: none; }

  .hero__visual { height: 340px; }
  .kard { width: 280px; }
  .panel { width: 220px; right: 0; bottom: -10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
