/* ===================================================================
   DPA MICROPHONES — concept site design system
   Concept by Boring Stories. DPA DNA: black + white + one lime calibration mark.
   ink #0B0C0E · paper #F4F1EA · lime #C4D600 · graphite #5A6066
   Type: Clash Display + General Sans (Fontshare). Off the ban list.
   =================================================================== */

:root {
  /* --- ink (cinematic near-black — the darkened theater) --- */
  --ink:        #0B0C0E;
  --ink-1:      #0F1113;
  --ink-2:      #14171A;
  --ink-card:   #131619;

  /* --- brand --- */
  --lime:       #C4D600;   /* DPA signature — calibration mark, never a glow */
  --lime-soft:  rgba(196,214,0,.14);
  --graphite:   #5A6066;   /* cool steel — structural, captions, aluminium echo */
  --graphite-2: #7C828A;

  /* --- paper (light editorial — lights up) --- */
  --paper:      #F4F1EA;
  --paper-2:    #ECE8DF;
  --paper-3:    #E3DED3;

  /* --- type colors --- */
  --on-ink:        #EDEBE4;
  --on-ink-soft:   rgba(237,235,228,.62);
  --on-ink-faint:  rgba(237,235,228,.50);
  --on-paper:      #1A1B1D;
  --on-paper-soft: #54585C;

  /* --- lines (never flat 1px gray) --- */
  --hair-ink:   rgba(244,241,234,.10);
  --hair-ink-2: rgba(244,241,234,.055);
  --hair-paper: rgba(26,27,29,.12);
  --hair-paper-2: rgba(26,27,29,.07);

  /* --- type --- */
  --display: "Clash Display", "General Sans", system-ui, sans-serif;
  --body:    "General Sans", system-ui, -apple-system, sans-serif;

  /* --- motion — one custom ease, no linear/ease-in-out --- */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0.1, 0.1, 1);

  /* --- rhythm --- */
  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1240px;
  --pad-y: clamp(6rem, 12vh, 10rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); color: var(--ink); }

/* ---------- film grain (fixed, perf-safe) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: var(--pad-y); position: relative; }
.section-paper { background: var(--paper); color: var(--on-paper); }
.section-paper-2 { background: var(--paper-2); color: var(--on-paper); }
.section-ink-2 { background: var(--ink-1); }
.tight { --pad-y: clamp(3.5rem, 7vh, 6rem); }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.02; letter-spacing: -.01em; margin: 0; }
.display {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.4rem, 6.4vw, 5.4rem);
  line-height: .98; letter-spacing: -.02em;
}
.display.caps { text-transform: uppercase; font-weight: 700; letter-spacing: .005em; }
.h2 { font-size: clamp(1.9rem, 4.4vw, 3.3rem); font-weight: 600; line-height: 1.04; letter-spacing: -.015em; }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 600; letter-spacing: -.01em; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.56; color: var(--on-ink-soft); max-width: 56ch; }
.section-paper .lead, .section-paper-2 .lead { color: var(--on-paper-soft); }
p { margin: 0 0 1.1em; }
.body-text p { color: var(--on-ink-soft); }
.section-paper .body-text p, .section-paper-2 .body-text p { color: var(--on-paper-soft); }

/* eyebrow — quiet mono-style label in General Sans, never a pill, never a dot */
.eyebrow {
  display: inline-block;
  font-family: var(--body); font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .24em;
  color: var(--graphite-2);
  font-variant-numeric: tabular-nums;
}
.section-paper .eyebrow, .section-paper-2 .eyebrow { color: var(--on-paper-soft); }
.eyebrow.lime { color: var(--lime); }
.section-paper .eyebrow.lime, .section-paper-2 .eyebrow.lime { color: #7c8400; }

/* calibration mark — a thin lime tick that precedes a label */
.calib { display: inline-flex; align-items: center; gap: 12px; }
.calib::before { content: ""; width: 18px; height: 2px; background: var(--lime); flex: none; }

.mono-label { font-family: var(--body); font-size: 12px; letter-spacing: .14em; color: var(--on-ink-faint); text-transform: uppercase; font-variant-numeric: tabular-nums; }

/* ---------- buttons (island + button-in-button) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .8em;
  font-family: var(--body); font-weight: 500; font-size: 15px;
  padding: 13px 16px 13px 24px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .6s var(--ease), background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(.975); }
.btn .ico {
  width: 30px; height: 30px; border-radius: 999px;
  display: grid; place-items: center; flex: none;
  transition: transform .6s var(--ease), background .45s var(--ease);
}
.btn .ico svg { width: 14px; height: 14px; }
.btn:hover .ico { transform: translate(3px,-1px); }

.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary .ico { background: rgba(11,12,14,.14); }
.btn-primary:hover { background: #d2e313; }
.btn-solid { background: var(--on-ink); color: var(--ink); }
.btn-solid .ico { background: rgba(0,0,0,.10); }
.btn-solid:hover { background: #fff; }
.btn-ghost { background: rgba(244,241,234,.025); color: var(--on-ink); border-color: var(--hair-ink); }
.btn-ghost .ico { background: rgba(244,241,234,.06); }
.btn-ghost:hover { background: rgba(244,241,234,.06); border-color: rgba(244,241,234,.18); }
.section-paper .btn-ghost, .section-paper-2 .btn-ghost { color: var(--on-paper); border-color: var(--hair-paper); background: rgba(26,27,29,.02); }
.section-paper .btn-ghost:hover, .section-paper-2 .btn-ghost:hover { background: rgba(26,27,29,.05); }
.section-paper .btn-primary, .section-paper-2 .btn-primary { background: var(--ink); color: var(--on-ink); }
.section-paper .btn-primary .ico, .section-paper-2 .btn-primary .ico { background: rgba(244,241,234,.14); }
.section-paper .btn-primary:hover, .section-paper-2 .btn-primary:hover { background: #000; }

.textlink { display:inline-flex; align-items:center; gap:.5em; font-weight:500; color: var(--on-ink); transition: gap .45s var(--ease); }
.textlink svg { transition: transform .45s var(--ease); }
.textlink:hover { gap: .85em; }
.section-paper .textlink, .section-paper-2 .textlink { color: var(--on-paper); }
.textlink .u { color: var(--lime); }

/* play triangle (hero) */
.play {
  width: clamp(56px, 7vw, 84px); height: clamp(56px, 7vw, 84px);
  border-radius: 999px; display: grid; place-items: center; flex: none;
  border: 1px solid var(--hair-ink); background: rgba(11,12,14,.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  position: relative; cursor: pointer;
  transition: transform .6s var(--ease), border-color .5s var(--ease);
}
.play::after {
  content: ""; position: absolute; inset: -1px; border-radius: 999px;
  border: 1px solid var(--lime); opacity: .55;
  animation: breathe 3.6s var(--ease-soft) infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.18); opacity: 0; } }
.play svg { width: 30%; height: 30%; fill: var(--lime); margin-left: 12%; }
.play:hover { transform: scale(1.05); border-color: rgba(244,241,234,.22); }

/* ---------- double-bezel card ---------- */
.shell {
  background: rgba(244,241,234,.03);
  border: 1px solid var(--hair-ink);
  border-radius: 24px; padding: 7px;
  box-shadow: 0 1px 0 rgba(244,241,234,.05) inset, 0 40px 80px -48px rgba(0,0,0,.6);
}
.shell > .core {
  background: var(--ink-card);
  border-radius: 18px;
  box-shadow: inset 0 1px 1px rgba(244,241,234,.05);
  overflow: hidden; height: 100%;
}
.section-paper .shell, .section-paper-2 .shell { background: rgba(26,27,29,.03); border-color: var(--hair-paper); box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 36px 70px -50px rgba(26,27,29,.35); }
.section-paper .shell > .core, .section-paper-2 .shell > .core { background: var(--paper); box-shadow: inset 0 1px 1px rgba(255,255,255,.6); }

/* ---------- nav (fluid island) ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  display: flex; justify-content: center;
  padding: 18px var(--gutter); pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 11px 11px 11px 22px; border-radius: 999px;
  background: rgba(11,12,14,.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--hair-ink);
  transition: background .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(9,10,12,.84); box-shadow: 0 18px 50px -30px rgba(0,0,0,.9); }
.brand { display:flex; align-items:center; gap: 11px; flex: none; }
.brand .wordmark {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink); line-height: 1;
}
.brand .tick { width: 10px; height: 10px; border-radius: 2px; background: var(--lime); flex: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; color: var(--on-ink-soft); font-weight: 500;
  padding: 9px 14px; border-radius: 999px;
  transition: color .4s var(--ease), background .4s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--on-ink); background: rgba(244,241,234,.06); }
.nav-cta { display:flex; align-items:center; gap: 8px; flex: none; }
.nav-cta .btn { padding: 10px 12px 10px 18px; font-size: 14px; }

.burger { display:none; width: 44px; height: 44px; border:1px solid var(--hair-ink); border-radius:999px; background:rgba(244,241,234,.03); cursor:pointer; position:relative; flex:none; }
.burger span { position:absolute; left:13px; right:13px; height:1.5px; background: var(--on-ink); transition: transform .6s var(--ease), opacity .35s var(--ease); }
.burger span:nth-child(1){ top:17px; } .burger span:nth-child(2){ top:25px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(4px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ transform: translateY(-3px) rotate(-45deg); }

/* mobile overlay */
.menu {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(9,10,12,.94);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .6s var(--ease), visibility .6s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu a {
  font-family: var(--display); font-size: clamp(2rem,9vw,3rem); font-weight: 600;
  letter-spacing:-.02em; padding: 10px 0; color: var(--on-ink);
  border-bottom: 1px solid var(--hair-ink-2);
  transform: translateY(28px); opacity: 0;
  transition: transform .7s var(--ease), opacity .7s var(--ease), color .35s;
}
.menu a:hover { color: var(--lime); }
body.menu-open .menu a { transform: translateY(0); opacity: 1; }
body.menu-open .menu a:nth-child(1){ transition-delay:.08s; }
body.menu-open .menu a:nth-child(2){ transition-delay:.13s; }
body.menu-open .menu a:nth-child(3){ transition-delay:.18s; }
body.menu-open .menu a:nth-child(4){ transition-delay:.23s; }
body.menu-open .menu a:nth-child(5){ transition-delay:.28s; }
body.menu-open .menu a:nth-child(6){ transition-delay:.33s; }
body.menu-open .menu a:nth-child(7){ transition-delay:.38s; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- hero ---------- */
.hero { min-height: 100dvh; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding-bottom: clamp(48px, 7vw, 100px); }
.hero-media { position: absolute; inset: 0; z-index: 0; background: linear-gradient(150deg, #0b0c0e 0%, #14171a 45%, #0b0c0e 100%); }
.hero-media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; object-position: center 46%; }
.hero-media::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(11,12,14,.97) 4%, rgba(11,12,14,.5) 42%, rgba(11,12,14,.32) 66%, rgba(11,12,14,.6) 100%),
    radial-gradient(120% 80% at 15% 110%, rgba(196,214,0,.08), transparent 55%);
}
/* letterbox bars sell the film register on dark heroes */
.hero::before, .hero::after { content:""; position:absolute; left:0; right:0; height: 42px; z-index: 2; background: var(--ink); pointer-events:none; }
.hero::before { top:0; box-shadow: 0 1px 0 var(--hair-ink-2); }
.hero::after { bottom:0; box-shadow: 0 -1px 0 var(--hair-ink-2); }
.hero-content { position: relative; z-index: 3; width: 100%; }
.hero h1 { max-width: 15ch; margin-top: 26px; }
.hero .lead { margin-top: 24px; color: rgba(237,235,228,.78); max-width: 52ch; }
.hero-cta { display:flex; flex-wrap:wrap; align-items:center; gap: 18px; margin-top: 36px; }
.hero-foot { display:flex; flex-wrap:wrap; gap: 34px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--hair-ink); }
.hero-foot .item { display:flex; flex-direction:column; gap:5px; }
.hero-foot .n { font-family: var(--display); font-size: 1.6rem; font-weight: 600; letter-spacing:-.02em; font-variant-numeric: tabular-nums; }
.hero-foot .l { font-size: 10.5px; text-transform: uppercase; letter-spacing:.16em; color: var(--on-ink-faint); }

/* ---------- grids ---------- */
.grid { display: grid; gap: clamp(16px, 1.8vw, 24px); }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }
.split { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,72px); align-items:center; }
.split.wide-left { grid-template-columns: 1.3fr .7fr; }
.split.wide-right { grid-template-columns: .7fr 1.3fr; }
.split.top { align-items: start; }
.section-head { max-width: 60ch; margin-bottom: clamp(34px,4vw,56px); }
.section-head .h2 { margin-top: 18px; }
.section-head .lead { margin-top: 18px; }
.section-head.center { margin-inline:auto; text-align:center; }

/* offset editorial column — text hung off-center with a margin caption */
.editorial { display:grid; grid-template-columns: 200px 1fr; gap: clamp(28px,4vw,64px); align-items: start; }
.editorial .margin { font-size: 13px; color: var(--graphite-2); line-height: 1.6; }
.editorial .margin .calib { margin-bottom: 14px; }
.section-paper .editorial .margin, .section-paper-2 .editorial .margin { color: var(--on-paper-soft); }
.editorial .col { max-width: 60ch; }

/* ---------- full-bleed cinematic film frame ---------- */
section.cine { padding: 0; }
.cine { position: relative; min-height: clamp(460px, 70vh, 760px); display: flex; align-items: flex-end; overflow: hidden; background: linear-gradient(160deg,#0b0c0e,#14171a); }
.cine > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cine::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(11,12,14,.95) 2%, rgba(11,12,14,.28) 52%, rgba(11,12,14,.55) 100%); }
/* letterbox bars */
.cine::before { content:""; position:absolute; left:0; right:0; top:0; bottom:0; z-index:2; pointer-events:none;
  border-top: 40px solid var(--ink); border-bottom: 40px solid var(--ink); }
.cine .cine-in { position: relative; z-index: 3; width: 100%; padding-block: clamp(56px,8vw,104px); }
.cine .cine-in .h2 { max-width: 20ch; }
.cine .cine-in .lead { margin-top: 18px; color: rgba(237,235,228,.82); }

/* a smaller framed still inside a section */
.frame { position: relative; overflow: hidden; border-radius: 18px; background: linear-gradient(150deg,#0f1113,#14171a); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame .cap { position:absolute; left:18px; bottom:16px; z-index:2; font-size:11px; letter-spacing:.16em; text-transform:uppercase; color: rgba(237,235,228,.66); }
.frame .cap::before { content:""; display:inline-block; width:14px; height:2px; background:var(--lime); margin-right:9px; vertical-align:middle; }

/* ---------- feature / pillar card on dark ---------- */
.feature { padding: 30px; display:flex; flex-direction:column; gap: 13px; height:100%; }
.feature .num { font-family: var(--body); font-size: 12px; color: var(--lime); letter-spacing:.14em; font-variant-numeric: tabular-nums; }
.section-paper .feature .num, .section-paper-2 .feature .num { color: #5e6400; }
.feature h3 { font-size: 1.5rem; }
.feature p { color: var(--on-ink-soft); font-size: 15px; margin:0; }
.section-paper .feature p, .section-paper-2 .feature p { color: var(--on-paper-soft); }

/* ---------- editorial story / film card ---------- */
.story { display:flex; flex-direction:column; height:100%; }
.story .pic { aspect-ratio: 3/2; overflow:hidden; background: linear-gradient(150deg,#0f1113,#181b1e); }
.story .pic img { width:100%; height:100%; object-fit:cover; transition: transform 1.1s var(--ease); }
.story:hover .pic img { transform: scale(1.045); }
.story .body { padding: 24px 24px 28px; display:flex; flex-direction:column; gap:10px; flex:1; }
.story .kicker { font-family: var(--body); font-size: 10.5px; letter-spacing:.18em; text-transform:uppercase; color: var(--lime); }
.story h3 { font-size: 1.4rem; line-height: 1.08; letter-spacing:-.01em; }
.story p { color: var(--on-ink-soft); font-size: 15px; margin:0; }

/* ---------- stat band ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,32px); }
.stat .n { font-family: var(--display); font-size: clamp(2.4rem,4.8vw,3.8rem); font-weight: 600; letter-spacing:-.02em; line-height:1; font-variant-numeric: tabular-nums; }
.stat .n .u { color: var(--lime); margin-left: .12em; }
.stat .l { font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: var(--on-ink-faint); margin-top:14px; }
.section-paper .stat .l, .section-paper-2 .stat .l { color: var(--on-paper-soft); }
.section-paper .stat .n .u, .section-paper-2 .stat .n .u { color: #7c8400; }

/* ---------- big quote ---------- */
.pullquote { font-family: var(--display); font-weight: 500; font-size: clamp(1.5rem,3.6vw,2.8rem); line-height: 1.16; letter-spacing:-.015em; max-width: 22ch; }
.pullquote .by { display:block; font-family: var(--body); font-size: 12px; letter-spacing:.14em; text-transform:uppercase; color: var(--on-ink-faint); margin-top: 24px; font-weight:500; }
.section-paper .pullquote .by, .section-paper-2 .pullquote .by { color: var(--on-paper-soft); }

/* ---------- comparison split (the gap page) ---------- */
.compare { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.4vw,32px); align-items:stretch; }
.compare .panel { display:flex; flex-direction:column; }
.compare .panel .lbl { font-size: 11px; letter-spacing:.18em; text-transform:uppercase; color: var(--on-ink-faint); margin-bottom: 16px; }
.compare .panel.now .lbl { color: var(--graphite-2); }
.compare .panel.film .lbl { color: var(--lime); }
.compare .frame { aspect-ratio: 4/3; }
.compare .panel.now .frame { filter: saturate(.6) brightness(.9); }
.compare .panel .note { margin-top: 18px; color: var(--on-ink-soft); font-size: 15px; }
.compare .vs { display:none; }

/* ---------- offer ladder ---------- */
.ladder { display:flex; flex-direction:column; gap: clamp(16px,1.8vw,22px); }
.rung { padding: clamp(26px,3vw,40px); display:grid; grid-template-columns: auto 1fr auto; gap: clamp(20px,3vw,44px); align-items:start; }
.rung .step { font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--lime); font-variant-numeric: tabular-nums; }
.rung h3 { font-size: clamp(1.4rem,2.4vw,2rem); margin-bottom: 12px; }
.rung .desc { color: var(--on-ink-soft); font-size: 15.5px; max-width: 52ch; }
.section-paper .rung .desc, .section-paper-2 .rung .desc { color: var(--on-paper-soft); }
.rung .price { text-align:right; }
.rung .price .amt { font-family: var(--display); font-size: clamp(1.4rem,2.4vw,2rem); font-weight: 600; letter-spacing:-.01em; white-space:nowrap; }
.rung .price .unit { font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: var(--on-ink-faint); margin-top: 8px; }
.section-paper .rung .price .unit, .section-paper-2 .rung .price .unit { color: var(--on-paper-soft); }
.rung-shell { padding: 7px; }
.rung-shell > .core { border-radius: 18px; }
.rung.featured { box-shadow: inset 0 0 0 1px var(--lime-soft); }
.section-paper .rung.featured, .section-paper-2 .rung.featured { box-shadow: inset 0 0 0 1px rgba(124,132,0,.28); }

/* deliverables / spec list */
.deliver { list-style:none; margin: 0; padding: 0; display:grid; gap: 14px; }
.deliver li { position:relative; padding-left: 30px; color: var(--on-ink-soft); font-size: 15.5px; line-height: 1.5; }
.deliver li::before { content:""; position:absolute; left:0; top:9px; width:16px; height:2px; background: var(--lime); }
.section-paper .deliver li, .section-paper-2 .deliver li { color: var(--on-paper-soft); }

/* ---------- CTA band ---------- */
.cta-band { text-align:center; }
.cta-band .h2 { max-width: 20ch; margin-inline:auto; }
.cta-band .row { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top: 34px; }

/* ---------- contact ---------- */
.signature { display:flex; flex-direction:column; gap: 6px; margin-top: 40px; }
.signature .who { font-family: var(--display); font-size: 1.2rem; font-weight: 600; }
.signature .role { font-size: 14px; color: var(--on-ink-soft); }
.section-paper .signature .role, .section-paper-2 .signature .role { color: var(--on-paper-soft); }
.contact-email { font-family: var(--display); font-size: clamp(1.6rem,4vw,2.8rem); font-weight: 500; letter-spacing:-.01em; display:inline-flex; align-items:center; gap:.5em; transition: gap .45s var(--ease); }
.contact-email:hover { gap:.7em; }
.contact-email .u { color: var(--lime); }

/* ---------- footer ---------- */
.footer { background: #07080A; border-top: 1px solid var(--hair-ink); padding-block: clamp(56px,7vw,92px) 40px; }
.footer-top { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.footer .brand { margin-bottom: 18px; }
.footer .blurb { color: var(--on-ink-soft); font-size: 14.5px; max-width: 36ch; }
.footer h5 { font-family: var(--body); font-size: 11px; letter-spacing:.18em; text-transform:uppercase; color: var(--on-ink-faint); margin: 0 0 16px; font-weight:500; }
.footer ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: 11px; }
.footer ul a { font-size: 14.5px; color: var(--on-ink-soft); transition: color .35s; }
.footer ul a:hover { color: var(--on-ink); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap: 16px; flex-wrap:wrap; margin-top: clamp(40px,5vw,64px); padding-top: 26px; border-top: 1px solid var(--hair-ink-2); }
.footer-bottom .small { font-size: 11.5px; letter-spacing:.04em; color: var(--on-ink-faint); }
.concept-mark { font-size: 11.5px; letter-spacing:.06em; color: var(--on-ink-faint); }
.concept-mark b { color: var(--on-ink-soft); font-weight: 500; }
.concept-mark a { color: inherit; }
.concept-mark a:hover { color: var(--on-ink); }

/* ---------- page hero (interior) ---------- */
.page-hero { padding-top: clamp(126px, 14vw, 180px); padding-bottom: clamp(40px,5vw,64px); }
.page-hero .display { font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 18ch; }
.page-hero .lead { margin-top: 24px; }
.breadcrumb { font-size: 11px; letter-spacing:.18em; text-transform:uppercase; color: var(--on-ink-faint); margin-bottom: 24px; }
.breadcrumb a { color: var(--on-ink-soft); } .breadcrumb a:hover { color: var(--on-ink); }
.section-paper .breadcrumb, .section-paper-2 .breadcrumb { color: var(--on-paper-soft); }

/* ---------- misc ---------- */
.divider { height:1px; background: var(--hair-ink); border:0; margin:0; }
.skip { position:absolute; left:-999px; top:0; z-index:200; background:var(--lime); color:var(--ink); padding:12px 18px; border-radius:0 0 10px 0; }
.skip:focus { left:0; }
.muted { color: var(--on-ink-soft); }
.center { text-align:center; }
.mt-s{margin-top:14px} .mt-m{margin-top:26px} .mt-l{margin-top:44px}
.maxw-prose { max-width: 60ch; }
.note-tag { display:inline-block; font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: var(--lime); border:1px solid var(--lime-soft); border-radius: 999px; padding: 6px 14px; }
.section-paper .note-tag, .section-paper-2 .note-tag { color: #5e6400; border-color: rgba(94,100,0,.30); }

/* ---------- responsive ---------- */
@media (max-width: 1000px){
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .g-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px){
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
}
@media (max-width: 768px){
  :root { --pad-y: clamp(4rem, 9vh, 6rem); }
  .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); row-gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; gap: 20px; }
  .compare { grid-template-columns: 1fr; }
  .rung { grid-template-columns: 1fr; gap: 18px; }
  .rung .price { text-align: left; }
  .pullquote { max-width: none; }
  .hero::before, .hero::after { height: 26px; }
  .cine::before { border-top-width: 24px; border-bottom-width: 24px; }
}
@media (max-width: 460px){
  .footer-top { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-foot { gap: 24px; }
}
