/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  --bg:           #0a0a0b;
  --bg-soft:      #0f0f12;
  --surface:      #131318;
  --surface-2:    #1a1a21;
  --surface-3:    #22232b;
  --line:         #26262e;
  --line-soft:    #1d1d24;

  --text:         #f4f4ee;
  --text-soft:    #c2c2bf;
  --text-mute:    #7a7a82;
  --text-dim:     #4a4a52;

  --accent:       #c4ff3a;
  --accent-deep:  #a5e515;
  --accent-soft:  rgba(196,255,58,.12);
  --accent-glow:  rgba(196,255,58,.35);

  --hot:          #ff6b3d;

  --serif:        'Bricolage Grotesque', system-ui, sans-serif;
  --sans:         'Inter', system-ui, sans-serif;
  --mono:         'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1280px;

  --shadow-glow: 0 0 60px -10px var(--accent-glow);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: none; border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
em { font-style: italic; }

@media (pointer: coarse), (hover: none) {
  body, button, a { cursor: auto; }
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, border-color .2s ease, transform .15s ease;
}
.cursor.is-hover .cursor-dot {
  width: 0; height: 0;
}
.cursor.is-hover .cursor-ring {
  width: 60px; height: 60px;
  border-color: var(--accent);
}
@media (pointer: coarse), (hover: none) {
  .cursor { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn-lg  { padding: 16px 28px; font-size: 15px; }
.btn-xl  { padding: 20px 36px; font-size: 16px; }

.btn-primary {
  background: var(--accent);
  color: #0a0a0b;
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
}

.btn-line {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}
.btn-line:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--text-mute);
  transform: translateY(-2px);
}

/* ---------- Topbar ---------- */
.topbar {
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,11,.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.header.scrolled {
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.brand-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent-glow);
}
.brand-period {
  color: var(--accent);
  margin-left: 1px;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 4px;
}
.nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { transform: translateY(-2.75px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  z-index: -1;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: -2;
  transform: translate(-50%, -50%);
  left: 50%; top: 35%;
  transition: left .15s ease-out, top .15s ease-out;
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.tag-bracket { color: var(--text-mute); }

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--text);
  font-variation-settings: "opsz" 96;
  max-width: 1100px;
}
.hero-line { display: block; }
.hero-em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-variation-settings: "opsz" 96;
}

.hero-sub {
  margin-top: 36px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 580px;
  font-weight: 400;
}

.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.meta-stat { display: flex; flex-direction: column; gap: 4px; }
.meta-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.meta-lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 60px; height: 1px;
  background: var(--text-dim);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-soft);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--text);
}
.marquee-dot {
  font-size: clamp(20px, 3vw, 32px);
  color: var(--accent);
  align-self: center;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Generic section ---------- */
.section {
  padding: 130px 0;
  position: relative;
}

.section-head {
  margin-bottom: 80px;
  max-width: 760px;
}
.section-head-split {
  margin-bottom: 80px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  max-width: 100%;
}
.section-head-split > div { max-width: 700px; }
.section-head-aside {
  max-width: 360px;
  font-size: 16px;
  color: var(--text-soft);
}
.section-head-left { text-align: left; }
.section-head-sub {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 17px;
  max-width: 580px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow-accent { color: var(--accent); }

.display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
  font-variation-settings: "opsz" 96;
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.display-xl {
  font-size: clamp(56px, 7.5vw, 120px);
}

/* ---------- Manifest ---------- */
.section-manifest {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 120px 0;
}
.manifest-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
.manifest-eyebrow { padding-top: 14px; }
.manifest-text h2 { margin-bottom: 36px; max-width: 900px; }
.manifest-text p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 22px;
}
.manifest-text p:last-child { margin-bottom: 0; }

/* ---------- Killer line ---------- */
.section-killer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.section-killer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.killer-line {
  position: relative;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  font-variation-settings: "opsz" 96;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.killer-strike {
  color: var(--text-mute);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 0;
}
.killer-punch em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

/* ---------- Work disclaimer ---------- */
.work-disclaimer {
  margin-top: 30px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  font-style: italic;
}

/* ---------- Services ---------- */
.section-services {
  background: var(--bg);
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.service {
  background: var(--bg);
  padding: 44px 36px 40px;
  position: relative;
  transition: background .3s ease;
}
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .4s cubic-bezier(.2,.8,.2,1);
}
.service:hover {
  background: var(--surface);
}
.service:hover::before { width: 100%; }
.service-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.service h3 {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variation-settings: "opsz" 96;
}
.service p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 380px;
}

/* ---------- Process ---------- */
.section-process {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process-step {
  background: var(--bg-soft);
  padding: 36px 30px 36px;
  position: relative;
  transition: background .3s ease;
}
.process-step:hover { background: var(--surface); }
.process-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.process-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 96;
}
.process-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96;
}
.process-step p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---------- Work ---------- */
.section-work {
  background: var(--bg);
}
.work-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work-list .work-card:nth-child(3) {
  grid-column: 1 / -1;
}
.work-card {
  position: relative;
}
.work-link {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
  height: 100%;
}
.work-link:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.work-preview {
  position: relative;
  background: var(--bg-soft);
  padding: 20px 20px 0;
  border-right: 1px solid var(--line);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.preview-bar > span {
  width: 9px; height: 9px;
  background: var(--surface-3);
  border-radius: 50%;
}
.preview-url {
  margin-left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 4px;
  width: auto !important;
  height: auto !important;
}
.preview-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 6px 24px;
}

/* Loodgieter preview */
.work-preview-loodgieter {
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(20,99,255,.3), transparent 60%),
    radial-gradient(40% 50% at 10% 90%, rgba(255,91,26,.2), transparent 60%),
    #0a1f3d;
}
.preview-body-loodgieter {
  color: #fff;
  gap: 12px;
}
.preview-body-loodgieter .preview-badge {
  display: inline-block;
  width: fit-content;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  background: rgba(46,224,106,.18);
  color: #2ee06a;
  padding: 4px 10px;
  border-radius: 999px;
}
.preview-body-loodgieter .preview-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 6px;
  color: #fff;
}
.preview-body-loodgieter .preview-cta {
  margin-top: 10px;
  display: inline-block;
  width: fit-content;
  background: #ff5b1a;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* LaSalle preview */
.work-preview-lasalle {
  background:
    radial-gradient(50% 60% at 78% 18%, rgba(176,141,87,.32), transparent 62%),
    radial-gradient(45% 60% at 8% 88%, rgba(110,37,48,.16), transparent 65%),
    #f5efe4;
}
.preview-body-lasalle {
  color: #1c1814;
  gap: 10px;
}
.preview-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #8c6d3f;
  text-transform: uppercase;
}
.preview-title-serif {
  font-family: 'Fraunces', 'Bricolage Grotesque', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1c1814;
  margin-top: 4px;
}
.preview-title-serif em {
  font-style: italic;
  color: #8c6d3f;
}
.preview-meta {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: #6f6555;
}

/* Soon preview */
.work-preview-soon {
  background:
    repeating-linear-gradient(45deg, var(--surface) 0 12px, var(--surface-2) 12px 24px);
}
.preview-body-soon {
  align-items: center;
  text-align: center;
  gap: 10px;
}
.preview-soon-num {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.preview-soon-text {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.work-meta {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.work-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.work-meta h3 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variation-settings: "opsz" 96;
}
.work-meta p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}
.work-arrow {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.work-link:hover .work-arrow {
  background: var(--accent);
  color: #0a0a0b;
  border-color: var(--accent);
  transform: rotate(-45deg);
}
.work-arrow svg { transition: transform .3s ease; }
.work-link:hover .work-arrow svg { transform: rotate(45deg); }

.work-link-static {
  cursor: default;
}
.work-link-static:hover {
  transform: none;
  border-color: var(--line);
}
.work-soon {
  margin-top: 22px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 6px 12px;
  border: 1px dashed var(--line);
  border-radius: 999px;
}
.work-soon::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.work-arrow-cta {
  margin-top: 20px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--accent);
  color: #0a0a0b;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}
.work-arrow-cta:hover {
  background: var(--text);
  transform: translateY(-2px);
}

/* ---------- Launch offer ---------- */
.section-launch {
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.launch-glow {
  position: absolute;
  width: 80%; height: 100%;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(50% 70% at 50% 30%, var(--accent-soft), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.launch-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}
.launch-inner .display { margin: 18px auto 28px; }
.launch-sub {
  margin: 0 auto 50px;
  max-width: 580px;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}
.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 50px;
}
.launch-stat {
  background: var(--bg);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.launch-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  font-variation-settings: "opsz" 96;
}
.launch-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .launch-grid { grid-template-columns: 1fr; }
  .launch-num { font-size: 52px; }
}

/* ---------- Pricing ---------- */
.section-pricing {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.section-pricing .section-head { text-align: center; margin-left: auto; margin-right: auto; }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--text-mute);
}
.price-card-featured {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 60px -20px var(--accent-glow);
}
.price-card-featured:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 0 80px -20px var(--accent-glow);
}
.price-badge {
  position: absolute;
  top: -1px; right: 24px;
  transform: translateY(-50%);
  background: var(--accent);
  color: #0a0a0b;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-head h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  font-variation-settings: "opsz" 96;
}
.price-tag {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-mute);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-from {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
  font-variation-settings: "opsz" 96;
}
.price-card-featured .price-num { color: var(--accent); }
.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.price-card .btn { justify-content: center; }

.pricing-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--text-mute);
}
.pricing-note strong { color: var(--text); }

/* ---------- FAQ ---------- */
.section-faq {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faqs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  transition: padding .3s ease;
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  cursor: none;
  font-variation-settings: "opsz" 96;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-mute);
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.faq[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #0a0a0b;
  border-color: var(--accent);
}
.faq p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 640px;
}

/* ---------- CTA section ---------- */
.section-cta {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-glow {
  position: absolute;
  width: 80%; height: 100%;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(50% 70% at 50% 20%, var(--accent-glow), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.section-cta .display { margin: 18px auto 0; max-width: 920px; }
.cta-sub {
  margin-top: 28px;
  font-size: 19px;
  color: var(--text-soft);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-channels {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-channels a {
  background: var(--bg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .25s ease;
}
.cta-channels a:hover { background: var(--surface); }
.channel-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.channel-value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 80px 28px 60px;
}
.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-mute);
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--text-soft); }
.footer-col a:hover { color: var(--accent); }

.footer-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 30px 0;
  background: var(--bg-soft);
}
.footer-marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.footer-marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(60px, 10vw, 130px);
  letter-spacing: -0.04em;
  color: var(--text-dim);
  font-variation-settings: "opsz" 96;
}
.footer-marquee-track span:nth-child(odd):hover { color: var(--accent); }

.footer-bottom {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 28px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .services       { grid-template-columns: repeat(2, 1fr); }
  .process        { grid-template-columns: repeat(2, 1fr); }
  .work-list      { grid-template-columns: 1fr; }
  .work-list .work-card:nth-child(3) { grid-column: 1; }
  .pricing        { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .faq-grid       { grid-template-columns: 1fr; gap: 50px; }
  .manifest-grid  { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-head-split { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 720px) {
  .container       { padding: 0 22px; }
  .topbar-meta     { display: none; }
  .topbar-status   { font-size: 10px; }
  .header-inner    { height: 60px; }
  .brand           { font-size: 18px; }
  .nav {
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    gap: 0;
    padding: 24px 22px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
    z-index: 99;
  }
  .nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 18px 4px;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
  }
  .nav a:hover { background: transparent; color: var(--accent); }
  .header-inner > .btn { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 50px; }

  .hero { padding: 60px 0 80px; }
  .hero-tag { font-size: 11px; margin-bottom: 22px; }
  .hero-title { font-size: clamp(48px, 13.5vw, 80px); }
  .hero-sub { font-size: 17px; margin-top: 28px; }
  .hero-cta { margin-top: 32px; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-meta { margin-top: 60px; grid-template-columns: 1fr; gap: 18px; padding-top: 24px; }
  .meta-num { font-size: 22px; }
  .hero-scroll-cue { display: none; }

  .marquee { padding: 16px 0; }

  .services        { grid-template-columns: 1fr; }
  .process         { grid-template-columns: 1fr; }
  .work-link       { grid-template-columns: 1fr; }
  .work-preview    { border-right: 0; border-bottom: 1px solid var(--line); min-height: 240px; }
  .work-meta       { padding: 26px 24px 26px; }
  .work-meta h3    { font-size: 24px; }
  .pricing         { grid-template-columns: 1fr; }
  .price-card      { padding: 32px 26px 30px; }

  .cta-channels    { grid-template-columns: 1fr; max-width: 400px; }
  .cta-actions     { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .footer-inner    { grid-template-columns: 1fr; gap: 36px; padding: 60px 22px 40px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
