/* ============================================
   neopresence — Awwwards-Style Redesign
   ============================================ */

:root {
  --bg: oklch(0.14 0.008 260);
  --bg-2: oklch(0.18 0.01 260);
  --fg: oklch(0.97 0.008 85);
  --fg-dim: oklch(0.70 0.01 85);
  --fg-muted: oklch(0.50 0.012 85);
  --line: oklch(0.28 0.012 260);
  --line-soft: oklch(0.22 0.01 260);
  --accent: oklch(0.89 0.21 128);        /* electric acid lime */
  --accent-warm: oklch(0.82 0.15 55);    /* soft amber for mix */
  --accent-ink: oklch(0.15 0.02 130);
  --radius: 18px;
  --radius-lg: 28px;

  --f-display: "Instrument Serif", "Times New Roman", serif;
  --f-sans: "Geist", "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body {
  cursor: none;
}

@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
img, svg { display: block; max-width: 100%; }

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

/* Custom cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  transition: width .25s var(--ease), height .25s var(--ease), background .2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(-50%, -50%, 0);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s;
  opacity: .5;
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 44px; height: 44px; background: transparent; border: 1px solid var(--accent); }
.cursor-ring.is-hover { opacity: 0; }

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.035;
  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'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
}

/* Layout */
.container {
  width: min(1440px, 100% - 48px);
  margin-inline: auto;
}
.container-wide { width: min(1640px, 100% - 48px); margin-inline: auto; }

/* Typography */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.mono {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
}
.italic { font-style: italic; font-family: var(--f-display); font-weight: 400; }

/* Headings */
h1, h2, h3, h4 { font-family: var(--f-sans); font-weight: 500; letter-spacing: -0.02em; }

/* Reveal animations */
.reveal-mask { overflow: hidden; display: inline-block; }
.reveal-line {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.is-visible .reveal-line { transform: translateY(0); }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.is-visible.fade-up, .is-visible .fade-up { opacity: 1; transform: translateY(0); }

.clip-in {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.is-visible .clip-in, .is-visible.clip-in { clip-path: inset(0 0 0 0); }

/* =========== NAV =========== */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  padding: 12px 18px 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklch, var(--bg) 72%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.nav.is-hidden { transform: translate(-50%, -140%); }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 15px; letter-spacing: -0.01em; }
.nav-brand .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.nav-brand b { font-weight: 600; }
.nav-brand em { font-style: normal; color: var(--fg-dim); font-weight: 400; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--fg-dim);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--fg); background: var(--line-soft); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 18px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px var(--accent); }
.nav-cta svg { width: 14px; height: 14px; }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.hero-meta .mono { color: var(--fg-dim); }
.hero-meta-right { display: flex; gap: 24px; }
.hero-meta-right span::before { content: "● "; color: var(--accent); font-size: 8px; vertical-align: middle; }

.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 176px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
}
.hero-title .row { display: block; }
.hero-title .accent { color: var(--accent); font-style: italic; }
.hero-title .underline-wrap { position: relative; display: inline-block; }
.hero-title .underline-wrap svg {
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  width: 100%;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

.hero-sub {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-dim);
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--line);
  color: var(--fg);
}
.btn-ghost:hover { background: var(--line-soft); border-color: var(--fg-muted); }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translate(4px, -4px) rotate(0deg); }

/* Hero right column — live studio visual */
.hero-preview {
  position: relative;
  aspect-ratio: 3 / 5;
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 90% at 30% 20%, oklch(0.22 0.02 260), oklch(0.13 0.008 260) 70%);
  border: 1px solid var(--line);
  padding: 32px;
  overflow: hidden;
  box-shadow: 0 40px 90px -40px oklch(0 0 0 / 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-preview::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .18;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}
.hero-preview::after {
  content: "";
  position: absolute;
  top: -20%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(circle at 30% 30%, oklch(0.89 0.21 128 / .15), transparent 45%);
  pointer-events: none;
  animation: drift 18s var(--ease) infinite alternate;
}
@keyframes drift {
  0% { transform: translate(0,0); }
  100% { transform: translate(8%, 10%); }
}

.preview-tag {
  position: absolute;
  top: 22px; right: 22px;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.preview-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent-ink);
  animation: blink 1.6s var(--ease) infinite;
}
@keyframes blink { 0%, 70%, 100% { opacity: 1; } 80%, 90% { opacity: 0.15; } }

/* Floating industry tags — orbit around the word */
.studio-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.s-tag {
  position: absolute;
  left: var(--x); top: var(--y);
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: oklch(0.16 0.01 260 / 0.8);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  animation: float-tag 7s var(--ease) infinite;
  animation-delay: var(--d);
  opacity: 0;
}
@keyframes float-tag {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateY(-12px) scale(1.02); opacity: 1; }
  85% { opacity: 1; }
}

/* Big rotating word */
.studio-word-wrap {
  position: relative;
  z-index: 4;
  margin-top: 6vh;
}
.studio-word-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg-dim);
  margin-bottom: 8px;
}
.studio-word-label::before { content: "\2192 "; color: var(--accent); margin-right: 4px; }
.studio-word {
  position: relative;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(42px, 6.2vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--fg);
  height: 1em;
  overflow: hidden;
}
.studio-word span {
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  animation: word-cycle 18s var(--ease) infinite;
}
.studio-word span:nth-child(1) { animation-delay: 0s; }
.studio-word span:nth-child(2) { animation-delay: 3s; }
.studio-word span:nth-child(3) { animation-delay: 6s; }
.studio-word span:nth-child(4) { animation-delay: 9s; }
.studio-word span:nth-child(5) { animation-delay: 12s; }
.studio-word span:nth-child(6) { animation-delay: 15s; }
@keyframes word-cycle {
  0%           { opacity: 0; transform: translateY(100%); }
  3%, 14%      { opacity: 1; transform: translateY(0); }
  17%          { opacity: 0; transform: translateY(-50%); }
  100%         { opacity: 0; transform: translateY(-100%); }
}

/* Abstract layout being assembled */
.studio-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 48px 48px 68px;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 24px;
}
.sl-block {
  border-radius: 8px;
  background: oklch(0.24 0.012 260);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  animation: block-in 6s var(--ease) infinite;
}
.sl-block.b1 { grid-column: 1 / 3; animation-delay: 0s; background: oklch(0.28 0.015 260); }
.sl-block.b2 { grid-column: 3; grid-row: 1 / 3; animation-delay: .4s; background: var(--accent); opacity: 0; }
.sl-block.b3 { grid-column: 1; grid-row: 2; animation-delay: .8s; }
.sl-block.b4 { grid-column: 2; grid-row: 2; animation-delay: 1.1s; }
.sl-block.b5 { grid-column: 1 / 3; grid-row: 3; animation-delay: 1.4s; }
.sl-block.b6 { grid-column: 3; grid-row: 3; animation-delay: 1.7s; background: oklch(0.35 0.02 260); }
@keyframes block-in {
  0% { opacity: 0; transform: translateY(14px) scaleX(.96); }
  25%, 80% { opacity: 1; transform: translateY(0) scaleX(1); }
  100% { opacity: 0; transform: translateY(-6px) scaleX(1); }
}
.sl-block.b2 { animation-name: block-in-accent; }
@keyframes block-in-accent {
  0% { opacity: 0; transform: translateY(14px); }
  25%, 80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-6px); }
}

.studio-caption {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--fg-dim);
}
.studio-caption .mono { letter-spacing: 0.1em; }
.studio-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: blink 1.6s var(--ease) infinite;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  left: 24px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}
.hero-scroll .line {
  width: 40px; height: 1px;
  background: var(--fg-muted);
  position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: 0; left: -40px;
  width: 40px; height: 100%;
  background: var(--accent);
  animation: scroll-line 2s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { left: -40px; } 100% { left: 40px; }
}

/* =========== MARQUEE =========== */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 84px);
  font-style: italic;
  letter-spacing: -0.02em;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-track span::after {
  content: "✦";
  color: var(--accent);
  font-family: var(--f-sans);
  font-size: 0.5em;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========== SECTIONS =========== */
section { position: relative; }
.section {
  padding: 140px 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: start;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.section-head h2 em { color: var(--accent); font-style: italic; }
.section-head .lead {
  margin-top: 24px;
  max-width: 52ch;
  color: var(--fg-dim);
  font-size: 17px;
  line-height: 1.55;
}

/* =========== PROBLEM STATS =========== */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 820px) { .stats { grid-template-columns: 1fr; } }
.stat {
  padding: 56px 40px;
  background: var(--bg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  transition: background .4s var(--ease);
}
.stat:hover { background: var(--bg-2); }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(90px, 11vw, 180px);
  line-height: 0.82;
  color: var(--fg);
  letter-spacing: -0.04em;
}
.stat-num .pct { color: var(--accent); font-style: italic; }
.stat-body h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  max-width: 28ch;
}
.stat-body p { color: var(--fg-dim); line-height: 1.55; max-width: 42ch; font-size: 15px; }

/* =========== PROCESS (horizontal pin scroll) =========== */
.process {
  padding-top: 140px;
}
.process-track {
  position: relative;
  height: 320vh;
}
.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.process-strip {
  display: flex;
  gap: 32px;
  padding: 0 48px;
  will-change: transform;
}
.process-card {
  flex: 0 0 min(640px, 78vw);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}
.process-card .num {
  font-family: var(--f-display);
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.82;
  color: transparent;
  -webkit-text-stroke: 1px var(--fg-muted);
  letter-spacing: -0.04em;
  margin-bottom: auto;
}
.process-card.is-focus .num {
  color: var(--accent);
  -webkit-text-stroke: 0;
}
.process-card h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.process-card p { color: var(--fg-dim); max-width: 46ch; font-size: 16px; line-height: 1.6; }
.process-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.process-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
}
.process-card li::before {
  content: "+";
  color: var(--accent);
  font-family: var(--f-sans);
  font-size: 18px;
}

@media (max-width: 820px) {
  .process-track { height: 300vh; }
  .process-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .process-strip {
    flex-direction: row;
    padding: 0 24px;
    gap: 16px;
  }
  .process-card {
    flex: 0 0 calc(100vw - 48px);
    min-height: 70dvh;
  }
  .process-card .num {
    font-size: 80px;
  }
}

/* =========== LEISTUNGEN (BENTO) =========== */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}
.bento-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.bento-card:hover { border-color: var(--fg-muted); transform: translateY(-2px); }
.bento-card h4 { font-size: 20px; letter-spacing: -0.015em; font-weight: 500; }
.bento-card p { color: var(--fg-dim); font-size: 14.5px; line-height: 1.55; }
.bento-card .idx { font-family: var(--f-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.12em; }

.bento-a { grid-column: span 6; grid-row: span 2; }
.bento-b { grid-column: span 3; }
.bento-c { grid-column: span 3; }
.bento-d { grid-column: span 4; }
.bento-e { grid-column: span 4; }
.bento-f { grid-column: span 4; }
.bento-g { grid-column: span 4; }
.bento-h { grid-column: span 12; grid-row: span 2; min-height: 420px; }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento-a { grid-column: span 6; }
  .bento-b, .bento-c { grid-column: span 3; }
  .bento-d, .bento-e, .bento-f, .bento-g { grid-column: span 3; }
  .bento-h { grid-column: span 6; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento > * { grid-column: span 1 !important; }
}

/* Bento decorations — richer, more meaningful animations */

/* === A: Individual Design — morphing layouts === */
.bento-hero-visual {
  position: relative;
  flex: 1;
  margin: -28px;
  margin-top: 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  background: radial-gradient(80% 100% at 30% 30%, oklch(0.22 0.015 260), oklch(0.13 0.008 260) 70%);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 30px;
}
.bento-hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .2;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
}
.morph-stage {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1.3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
}
.morph-stage .m {
  background: oklch(0.24 0.012 260);
  border-radius: 6px;
  border: 1px solid var(--line);
  animation: morph 10s var(--ease) infinite;
}
.morph-stage .m.accent { background: var(--accent); border-color: var(--accent); }
.morph-stage .m1 { grid-area: 1 / 1 / 2 / 7; }
.morph-stage .m2 { grid-area: 2 / 1 / 5 / 4; animation-delay: .15s; }
.morph-stage .m3 { grid-area: 2 / 4 / 3 / 7; animation-delay: .3s; }
.morph-stage .m4 { grid-area: 3 / 4 / 5 / 5; animation-delay: .45s; }
.morph-stage .m5 { grid-area: 3 / 5 / 4 / 7; animation-delay: .6s; }
.morph-stage .m6 { grid-area: 4 / 5 / 5 / 7; animation-delay: .75s; }
@keyframes morph {
  0%, 100% { opacity: 0; transform: scale(.92); }
  10%, 45% { opacity: 1; transform: scale(1); }
  55% { opacity: 0; transform: scale(.92); }
}
.bento-card:hover .morph-stage .m { animation-play-state: paused; }

/* === B: Mobile responsive — rotating device === */
.bento-mobile {
  flex: 1;
  margin: 0 -28px -28px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background: oklch(0.17 0.01 260);
  display: grid;
  place-items: center;
}
.bento-mobile .device {
  position: relative;
  width: 52px;
  height: 88px;
  border: 1.5px solid var(--fg-dim);
  border-radius: 8px;
  background: var(--bg);
  transform: rotate(0deg);
  transition: transform 1s var(--ease), width 1s var(--ease), height 1s var(--ease);
  animation: flip-device 4s var(--ease) infinite;
}
.bento-mobile .device::before {
  content: "";
  position: absolute; inset: 4px;
  background:
    linear-gradient(var(--accent) 2px, transparent 2px) 0 0 / 100% 8px,
    linear-gradient(var(--fg-muted) 1px, transparent 1px) 0 4px / 100% 4px;
  background-repeat: no-repeat, repeat-y;
  border-radius: 3px;
  opacity: .8;
}
@keyframes flip-device {
  0%, 40%   { transform: rotate(0deg); width: 52px; height: 88px; }
  50%, 90%  { transform: rotate(90deg); width: 52px; height: 88px; }
  100%      { transform: rotate(0deg); width: 52px; height: 88px; }
}

/* === C: SEO chart — live rising bars === */
.bento-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 72px;
  margin-top: auto;
  position: relative;
}
.bento-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px dashed var(--line);
  top: 30%;
  opacity: .5;
}
.bento-chart span {
  flex: 1;
  background: var(--line);
  border-radius: 2px;
  animation: bar-rise 3s var(--ease) infinite;
  transform-origin: bottom;
  height: 100%;
}
.bento-chart span:nth-child(1) { animation-delay: 0s;   --h: 22%; }
.bento-chart span:nth-child(2) { animation-delay: .1s;  --h: 32%; }
.bento-chart span:nth-child(3) { animation-delay: .2s;  --h: 28%; }
.bento-chart span:nth-child(4) { animation-delay: .3s;  --h: 48%; }
.bento-chart span:nth-child(5) { animation-delay: .4s;  --h: 42%; }
.bento-chart span:nth-child(6) { animation-delay: .5s;  --h: 62%; }
.bento-chart span:nth-child(7) { animation-delay: .6s;  --h: 78%; }
.bento-chart span:nth-child(8) { animation-delay: .7s;  --h: 94%; background: var(--accent); }
@keyframes bar-rise {
  0%   { transform: scaleY(0.05); background: var(--line); }
  60%  { transform: scaleY(var(--h, 50%)); }
  90%  { transform: scaleY(var(--h, 50%)); }
  100% { transform: scaleY(0.05); }
}
.bento-chart span:nth-child(8) { animation-name: bar-rise-accent; }
@keyframes bar-rise-accent {
  0%   { transform: scaleY(0.05); }
  60%, 90% { transform: scaleY(.94); }
  100% { transform: scaleY(0.05); }
}

/* === D: Core Web Vitals — gauge === */
.bento-grade-wrap {
  position: relative;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.bento-grade {
  font-family: var(--f-display);
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.82;
  color: var(--accent);
  letter-spacing: -0.04em;
  font-style: italic;
}
.bento-gauge {
  position: relative;
  width: 64px; height: 64px;
  margin-bottom: 8px;
}
.bento-gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.bento-gauge .track { stroke: var(--line); stroke-width: 3; fill: none; }
.bento-gauge .prog {
  stroke: var(--accent);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  animation: gauge-fill 3.2s var(--ease) infinite;
}
@keyframes gauge-fill {
  0%   { stroke-dashoffset: 176; }
  50%, 90% { stroke-dashoffset: 18; }
  100% { stroke-dashoffset: 176; }
}

/* === E: Speed — counter === */
.bento-speed {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--f-display);
  font-size: clamp(60px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-top: auto;
  font-style: italic;
}
.bento-speed .big { color: var(--fg); }
.bento-speed .frac { color: var(--accent); }
.bento-speed .unit {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: normal;
  margin-left: 4px;
}
.bento-speed-line {
  position: relative;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}
.bento-speed-line::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 100%; width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent));
  transform: translateX(-100%);
  animation: speed-sweep 2.4s var(--ease) infinite;
}
@keyframes speed-sweep {
  0%   { transform: translateX(-100%); }
  80%  { transform: translateX(0); }
  100% { transform: translateX(20%); opacity: 0; }
}

/* === F: Contact form — typing cursor === */
.bento-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.bento-form-field {
  height: 28px;
  background: oklch(0.2 0.01 260);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}
.bento-form-field .typed {
  height: 8px;
  border-radius: 2px;
  background: var(--fg-dim);
  animation: type 6s var(--ease) infinite;
  transform-origin: left;
  transform: scaleX(0);
}
.bento-form-field:nth-child(1) .typed { animation-delay: 0s; }
.bento-form-field:nth-child(2) .typed { animation-delay: 1.5s; }
.bento-form-field:nth-child(3) .typed { animation-delay: 3s; }
@keyframes type {
  0%, 5%   { transform: scaleX(0); }
  20%      { transform: scaleX(.7); }
  90%      { transform: scaleX(.7); }
  100%     { transform: scaleX(.7); opacity: 0; }
}
.bento-form-field .caret {
  width: 1px;
  height: 12px;
  background: var(--accent);
  animation: blink-caret 1s steps(2) infinite;
}
@keyframes blink-caret { 50% { opacity: 0; } }
.bento-form-submit {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  animation: submit-pulse 6s var(--ease) infinite;
  opacity: 0;
}
@keyframes submit-pulse {
  0%, 80%  { opacity: 0; transform: translateY(6px); }
  85%, 95% { opacity: 1; transform: translateY(0); }
  100%     { opacity: 0; transform: translateY(-4px); }
}

/* === G: DSGVO shield === */
.bento-shield {
  position: relative;
  width: 68px; height: 68px;
  margin-top: auto;
  display: grid;
  place-items: center;
}
.bento-shield svg { width: 48px; height: 48px; color: var(--fg-dim); position: relative; z-index: 2; }
.bento-shield .check {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  transform: scale(0);
  animation: check-pop 4s var(--ease) infinite;
  z-index: 3;
}
.bento-shield::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  transform: scale(.7);
  opacity: 0;
  animation: check-ring 4s var(--ease) infinite;
}
@keyframes check-pop {
  0%, 30% { transform: scale(0); }
  50%, 90% { transform: scale(1); }
  100%    { transform: scale(0); }
}
@keyframes check-ring {
  0%, 30%  { transform: scale(.7); opacity: 0; }
  50%      { transform: scale(1.1); opacity: 1; }
  80%      { transform: scale(1.4); opacity: 0; }
}

.bento-card.bento-h {
  display: grid;
  grid-template-columns: minmax(260px, 34%) 1fr;
  gap: 32px;
  padding: 0;
  overflow: hidden;
}
.bento-h-text { padding: 32px; display: flex; flex-direction: column; gap: 8px; }
.bento-h-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: .1em;
}
.bento-h-meta span:first-child::before { content: none; }
.bento-h-meta span:first-child { color: var(--accent); }

/* === H: Map with pin + scanning radar === */
.bento-map {
  position: relative;
  height: 100%;
  background: radial-gradient(ellipse at 40% 50%, oklch(0.2 0.01 260), var(--bg));
  overflow: hidden;
  border-left: 1px solid var(--line);
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .45;
  mask-image: radial-gradient(ellipse at 40% 50%, black 40%, transparent 95%);
}
.map-roads { position: absolute; inset: 0; }
.road {
  position: absolute;
  background: oklch(0.3 0.01 260);
  border-radius: 2px;
}
.road.r1 { left: 0; right: 0; top: 38%; height: 3px; }
.road.r2 { left: 0; right: 0; top: 64%; height: 2px; background: oklch(0.26 0.01 260); }
.road.r3 { top: 0; bottom: 0; left: 40%; width: 3px; }
.road.r4 { top: 0; bottom: 0; left: 72%; width: 2px; background: oklch(0.26 0.01 260); }
.bento-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg at 40% 50%,
    transparent 0deg,
    oklch(0.89 0.21 128 / .25) 40deg,
    transparent 80deg);
  animation: radar 4s linear infinite;
  mix-blend-mode: screen;
  z-index: 2;
}
@keyframes radar { to { transform: rotate(360deg); } }
.bento-map .pin {
  position: absolute;
  left: 40%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.bento-map .pin-core {
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 7px oklch(0.89 0.21 128 / .22),
              0 0 30px var(--accent);
  position: relative;
  animation: pin-bob 2.2s var(--ease) infinite;
}
@keyframes pin-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.bento-map .pin-core::before,
.bento-map .pin-core::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  animation: ping 2.4s var(--ease) infinite;
}
.bento-map .pin-core::after { animation-delay: 1.2s; }
.bento-map .pin-label {
  position: absolute;
  left: 18px; top: -4px;
  padding: 5px 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 10px;
  letter-spacing: 0.1em;
  border-radius: 999px;
  white-space: nowrap;
  animation: label-in 4s var(--ease) infinite;
}
@keyframes label-in {
  0%, 20% { opacity: 0; transform: translateX(-8px); }
  30%, 85% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(4px); }
}
@keyframes ping {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}
.bento-map .dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--fg-muted);
  opacity: .6;
  z-index: 3;
  animation: dot-pulse 3s var(--ease) infinite;
}
.bento-map .dot.d1 { left: 62%; top: 22%; animation-delay: 0s; }
.bento-map .dot.d2 { left: 78%; top: 58%; animation-delay: .4s; }
.bento-map .dot.d3 { left: 52%; top: 74%; animation-delay: .8s; }
.bento-map .dot.d4 { left: 22%; top: 72%; animation-delay: 1.2s; }
.bento-map .dot.d5 { left: 18%; top: 28%; animation-delay: 1.6s; }
.bento-map .dot.d6 { left: 86%; top: 32%; animation-delay: 2s; }
@keyframes dot-pulse {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50%      { opacity: .9; transform: scale(1.1); }
}
.map-compass {
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: .15em;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: oklch(0.16 0.01 260 / .6);
  backdrop-filter: blur(6px);
  z-index: 5;
}

@media (max-width: 820px) {
  .bento-card.bento-h { grid-template-columns: 1fr; }
  .bento-map { min-height: 300px; border-left: none; border-top: 1px solid var(--line); }
}

/* =========== DIFFERENTIATORS =========== */
.diff-list {
  border-top: 1px solid var(--line);
}
.diff-row {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.4fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  position: relative;
  transition: padding .4s var(--ease);
}
.diff-row:hover { padding: 48px 0; }
.diff-row::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.diff-row:hover::before { transform: scaleX(1); }
.diff-row .num { font-family: var(--f-mono); font-size: 12px; color: var(--fg-muted); letter-spacing: 0.1em; }
.diff-row h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.diff-row h3 em { color: var(--accent); font-style: italic; }
.diff-row p { color: var(--fg-dim); line-height: 1.6; font-size: 15.5px; max-width: 50ch; }

@media (max-width: 820px) {
  .diff-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .diff-row:hover { padding: 32px 0; }
}

/* =========== PRICING =========== */
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto auto auto 1fr auto;
  gap: 14px;
}
.price-card {
  grid-row: span 7;
  display: grid;
  grid-template-rows: subgrid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  gap: 16px;
  background: var(--bg);
  position: relative;
  transition: transform .4s var(--ease), background .4s, border-color .4s;
}
@supports not (grid-template-rows: subgrid) {
  .price-card { grid-template-rows: auto auto auto auto auto 1fr auto; }
}
.price-card:hover { transform: translateY(-6px); background: var(--bg-2); border-color: var(--fg-muted); }
.price-card.featured {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.price-card.featured .price-eyebrow,
.price-card.featured .price-sub,
.price-card.featured ul li,
.price-card.featured .price-net { color: oklch(0.25 0.02 130); }
.price-card.featured .price-amount { color: var(--accent-ink); }
.price-card.featured .price-btn { background: var(--accent-ink); color: var(--fg); }

.price-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.price-badge {
  position: absolute;
  top: -10px; right: 20px;
  padding: 5px 12px;
  background: var(--bg);
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.price-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.price-sub { font-size: 14px; color: var(--fg-dim); line-height: 1.5; min-height: 3.2em; }

.price-amount {
  font-family: var(--f-display);
  font-size: clamp(54px, 7vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.price-amount sup { font-size: 0.4em; vertical-align: super; opacity: .6; }
.price-net { font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-top: -10px; }

.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; align-self: start; }
.price-card li { font-size: 14px; color: var(--fg-dim); padding-left: 20px; position: relative; line-height: 1.45; }
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
  opacity: .9;
}
.price-card.featured li::before { color: var(--accent-ink); }

.price-btn {
  padding: 14px 18px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transition: transform .3s var(--ease), background .3s;
}
.price-btn:hover { transform: translateX(2px); }
.price-btn .arrow { transition: transform .3s; }
.price-btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 980px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing { grid-template-columns: 1fr; } }

/* =========== PROMISES =========== */
.promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.promise {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  transition: background .4s var(--ease);
}
.promise:last-child { border-right: none; }
.promise:hover { background: var(--bg-2); }
.promise .check {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
}
.promise h3 { font-size: 22px; letter-spacing: -0.015em; font-weight: 500; }
.promise p { color: var(--fg-dim); line-height: 1.6; font-size: 15px; }

@media (max-width: 820px) {
  .promises { grid-template-columns: 1fr; }
  .promise { border-right: none; border-bottom: 1px solid var(--line); min-height: auto; }
  .promise:last-child { border-bottom: none; }
}

/* =========== FAQ =========== */
.faq-wrap { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: none;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.faq-q .plus {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .4s var(--ease), background .4s, border-color .4s, color .4s;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .4s var(--ease);
}
.faq-q .plus::before { width: 12px; height: 1px; }
.faq-q .plus::after { width: 1px; height: 12px; }
.faq-item.open .faq-q .plus { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), margin-top .5s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 18px; }
.faq-a p {
  color: var(--fg-dim);
  line-height: 1.65;
  max-width: 68ch;
  font-size: 15.5px;
}

/* =========== CTA =========== */
.cta {
  padding: 140px 0 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 140vmax; height: 140vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, oklch(0.89 0.21 128 / .10), transparent 40%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(64px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  max-width: 18ch;
  margin: 0 auto 32px;
  position: relative;
}
.cta-title em { color: var(--accent); font-style: italic; }
.cta-sub { max-width: 50ch; margin: 0 auto 44px; color: var(--fg-dim); font-size: 17px; line-height: 1.55; }
.cta-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.cta-badges span::before { content: "▸ "; color: var(--accent); }

/* =========== FOOTER =========== */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-big {
  font-family: var(--f-display);
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 24px 0 40px;
  white-space: nowrap;
  overflow: hidden;
}
.footer-big em { color: var(--accent); font-style: italic; }
.footer-links {
  display: flex;
  gap: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-family: var(--f-mono); font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; gap: 16px; flex-wrap: wrap; }
  .footer-big { font-size: clamp(48px, 14vw, 120px); text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}
/* Theme variants */
/* Theme variants */
body.theme-light {
  --bg: oklch(0.97 0.008 85);
  --bg-2: oklch(0.93 0.008 85);
  --fg: oklch(0.16 0.01 260);
  --fg-dim: oklch(0.38 0.012 260);
  --fg-muted: oklch(0.58 0.012 260);
  --line: oklch(0.85 0.008 85);
  --line-soft: oklch(0.91 0.008 85);
}
body.accent-citrus { --accent: oklch(0.88 0.2 85); --accent-ink: oklch(0.22 0.04 85); }
body.accent-magenta { --accent: oklch(0.72 0.28 350); --accent-ink: oklch(0.98 0 0); }
body.accent-ice    { --accent: oklch(0.82 0.18 220); --accent-ink: oklch(0.18 0.03 220); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .001ms !important; }
  .reveal-line { transform: none !important; }
  .clip-in { clip-path: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}
