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

    :root {
      --bg: #0A0A09;
      --bg-raised: #111110;
      --text: #EDEDE6;
      --muted: #98988E;
      --dim: #5C5C54;
      --accent: #FFD401;
      --accent-dim: rgba(255, 212, 1, 0.14);
      --blue: #0075CC;
      --blue-dim: rgba(0, 117, 204, 0.18);
      --hairline: rgba(237, 237, 230, 0.08);
      --hairline-strong: rgba(237, 237, 230, 0.16);
      --font-display: 'Syne', sans-serif;
      --font-body: 'Inter', -apple-system, sans-serif;
      --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

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

    a { color: inherit; text-decoration: none; }

    /* ===== GRAIN OVERLAY ===== */
    .grain {
      position: fixed;
      inset: -50%;
      width: 200%;
      height: 200%;
      pointer-events: none;
      z-index: 2000;
      opacity: 0.05;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      animation: grain-shift 0.9s steps(4) infinite;
    }

    @keyframes grain-shift {
      0% { transform: translate(0, 0); }
      25% { transform: translate(-2%, 1%); }
      50% { transform: translate(1%, -2%); }
      75% { transform: translate(-1%, 2%); }
      100% { transform: translate(2%, -1%); }
    }

    /* ===== SCROLL PROGRESS ===== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      width: 0%;
      background: var(--accent);
      z-index: 1000;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      width: 100%;
      position: relative;
    }

    /* ===== NAV ===== */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 40px;
      background: rgba(10, 10, 9, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--hairline);
    }

    .nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 60px;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-wordmark {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 15px;
      letter-spacing: 0.01em;
      color: var(--text);
    }

    .nav-wordmark span { color: var(--accent); }

    .nav-status {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      letter-spacing: 0.04em;
    }

    .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue);
      animation: pulse 2.4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--blue-dim); }
      50% { opacity: 0.6; box-shadow: 0 0 0 5px transparent; }
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-clock {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      letter-spacing: 0.04em;
    }

    .nav-clock b {
      color: var(--muted);
      font-weight: 500;
    }

    .nav-cta {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--bg);
      background: var(--accent);
      padding: 8px 18px;
      border-radius: 3px;
      transition: transform 150ms ease, background 150ms ease;
    }

    .nav-cta:hover {
      background: #ffe56a;
      transform: translateY(-1px);
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      padding: 140px 40px 100px;
      overflow: hidden;
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, var(--hairline-strong) 1px, transparent 1px);
      background-size: 36px 36px;
      mask-image: radial-gradient(ellipse 70% 60% at 30% 45%, black 30%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 45%, black 30%, transparent 70%);
    }

    .hero-glow {
      position: absolute;
      width: 720px;
      height: 720px;
      left: -180px;
      top: 20%;
      background: radial-gradient(circle, rgba(255, 212, 1, 0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.12;
      z-index: 0;
    }

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

    .hero-meta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.06em;
      color: var(--dim);
    }

    .hero-meta-row .divider {
      width: 32px;
      height: 1px;
      background: var(--hairline-strong);
    }

    .hero-terminal {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 28px;
      min-height: 20px;
    }

    .hero-terminal .prompt { color: var(--accent); }

    .cursor {
      display: inline-block;
      color: var(--accent);
      animation: blink 1s step-end infinite;
      margin-left: 2px;
    }

    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

    .hero-headline {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(44px, 7vw, 86px);
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 36px;
      max-width: 900px;
    }

    .hero-headline .word {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
    }

    .hero-headline .word > span {
      display: inline-block;
      transform: translateY(110%);
    }

    .hero-headline em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-subcopy {
      font-size: 19px;
      color: var(--muted);
      max-width: 540px;
      line-height: 1.65;
      margin-bottom: 44px;
      opacity: 0;
    }

    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      opacity: 0;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--accent);
      color: var(--bg);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      padding: 17px 34px;
      border-radius: 3px;
      border: none;
      cursor: pointer;
      transition: transform 150ms ease, box-shadow 150ms ease;
    }

    .cta .arrow { transition: transform 200ms ease; }

    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255, 212, 1, 0.25);
    }

    .cta:hover .arrow { transform: translateX(4px); }

    .cta-ghost {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--muted);
      border-bottom: 1px solid var(--hairline-strong);
      padding-bottom: 3px;
      transition: color 150ms ease, border-color 150ms ease;
    }

    .cta-ghost:hover { color: var(--text); border-color: var(--text); }

    .hero-bottom {
      position: absolute;
      bottom: 0;
      left: 40px;
      right: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      border-top: 1px solid var(--hairline);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.05em;
      color: var(--dim);
      z-index: 1;
    }

    /* ===== TICKER ===== */
    .ticker {
      border-top: 1px solid var(--hairline);
      border-bottom: 1px solid var(--hairline);
      overflow: hidden;
      padding: 18px 0;
      background: var(--bg-raised);
      white-space: nowrap;
    }

    .ticker-track {
      display: inline-flex;
      gap: 64px;
      animation: ticker-scroll 40s linear infinite;
      padding-right: 64px;
    }

    .ticker:hover .ticker-track { animation-play-state: paused; }

    @keyframes ticker-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .ticker-item {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.08em;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .ticker-item b {
      color: var(--accent);
      font-weight: 500;
    }

    .ticker-item::before {
      content: '◈';
      color: var(--dim);
      font-size: 9px;
    }

    /* ===== SECTION CHROME ===== */
    section { position: relative; }

    .section {
      padding: 130px 40px;
    }

    .section-head {
      display: flex;
      align-items: baseline;
      gap: 20px;
      margin-bottom: 72px;
      border-bottom: 1px solid var(--hairline);
      padding-bottom: 20px;
    }

    .section-num {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--accent);
      letter-spacing: 0.05em;
    }

    .section-title {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .section-head .spacer { flex: 1; }

    .section-side-note {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      letter-spacing: 0.05em;
    }

    /* ===== METRICS ===== */
    .live-metrics {
      border-bottom: 1px solid var(--hairline);
      padding: 0 40px;
    }

    .live-metrics .container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .metric {
      padding: 36px 32px;
      border-left: 1px solid var(--hairline);
      position: relative;
    }

    .metric:nth-child(4n) { border-right: 1px solid var(--hairline); }
    .metric:nth-child(n + 5) { border-top: 1px solid var(--hairline); }

    .metric-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--dim);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .metric-value {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.01em;
      font-variant-numeric: tabular-nums;
    }

    .metric-value.live { color: var(--accent); }

    .metric-sub {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--dim);
      margin-top: 6px;
      letter-spacing: 0.04em;
    }

    /* ===== MANIFESTO ===== */
    .manifesto { padding: 170px 40px; }

    .manifesto-statement {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(32px, 4.6vw, 58px);
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--dim);
      max-width: 1000px;
    }

    .manifesto-statement { position: relative; }
    .manifesto-statement .reveal-word {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
      padding-bottom: 0.06em;
    }
    .manifesto-statement .reveal-inner {
      display: inline-block;
      transform: translateY(115%);
      color: var(--dim);
      will-change: transform, color;
      transition:
        transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
        color 360ms ease;
    }
    .manifesto-statement .reveal-word.lit .reveal-inner {
      transform: translateY(0);
      color: var(--text);
    }
    .manifesto-statement .reveal-word.accent.lit .reveal-inner { color: var(--accent); }
    .manifesto-head {
      position: absolute;
      height: 2px;
      background: var(--accent);
      pointer-events: none;
      left: 0;
      width: 0;
      top: 0;
      box-shadow: 0 0 12px rgba(255, 212, 1, 0.55);
      transition: left 160ms cubic-bezier(0.22, 1, 0.36, 1), top 160ms cubic-bezier(0.22, 1, 0.36, 1), width 160ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
      opacity: 0;
    }
    .manifesto-head.is-on { opacity: 1; }

    .manifesto-sub {
      font-size: 18px;
      color: var(--muted);
      max-width: 600px;
      line-height: 1.7;
      margin-top: 48px;
      padding-left: 24px;
      border-left: 2px solid var(--accent);
      transform: translateY(18px);
      opacity: 0;
      transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    }
    .manifesto-sub.is-in {
      opacity: 1;
      transform: none;
    }
    @media (prefers-reduced-motion: reduce) {
      .manifesto-statement .reveal-inner { transform: none !important; }
      .manifesto-sub { opacity: 1; transform: none; }
      .manifesto-head { display: none; }
    }

    /* ===== PROOF FLOW ===== */
    .proof-flow {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--hairline);
      border: 1px solid var(--hairline);
    }

    .proof-step {
      background: var(--bg);
      padding: 44px 38px;
      position: relative;
      transition: background 250ms ease;
    }

    .proof-step:hover { background: var(--bg-raised); }

    .proof-step-number {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--accent);
      margin-bottom: 20px;
      letter-spacing: 0.08em;
    }

    .proof-step-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 25px;
      color: var(--text);
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }

    .proof-step-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.65;
    }

    .proof-step-time {
      margin-top: 24px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      letter-spacing: 0.06em;
    }

    /* ===== PRODUCTS ===== */
    .product-block {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 72px;
      padding: 88px 0;
      border-bottom: 1px solid var(--hairline);
      align-items: center;
    }

    .product-block:first-of-type { border-top: 1px solid var(--hairline); }
    .product-block.reverse { direction: rtl; }
    .product-block.reverse > * { direction: ltr; }

    .product-visual {
      position: relative;
      border: 1px solid var(--hairline);
      border-radius: 6px;
      overflow: hidden;
      background: var(--bg-raised);
    }

    .product-visual::before {
      content: attr(data-window);
      display: block;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--dim);
      letter-spacing: 0.08em;
      padding: 10px 16px;
      border-bottom: 1px solid var(--hairline);
      background: var(--bg);
    }

    .product-visual img {
      width: 100%;
      height: auto;
      display: block;
    }

    .product-index {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      letter-spacing: 0.08em;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .product-index::after {
      content: '';
      flex: 0 0 40px;
      height: 1px;
      background: var(--hairline-strong);
    }

    .product-name {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 42px;
      line-height: 1.05;
      color: var(--text);
      margin-bottom: 14px;
      letter-spacing: -0.02em;
    }

    .product-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 26px;
      padding: 6px 12px;
      border: 1px solid var(--hairline-strong);
      border-radius: 100px;
    }

    .product-status.live { color: var(--accent); border-color: rgba(255, 212, 1, 0.3); }
    .product-status.live::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 2.4s ease-in-out infinite;
    }
    .product-status.development { color: var(--muted); }

    .product-description {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 26px;
    }

    .product-spec {
      font-family: var(--font-mono);
      font-size: 12px;
      line-height: 2.1;
      color: var(--dim);
      letter-spacing: 0.03em;
      margin-bottom: 26px;
      padding: 18px 22px;
      background: var(--bg-raised);
      border: 1px solid var(--hairline);
      border-radius: 4px;
    }

    .product-spec b {
      color: var(--muted);
      font-weight: 500;
    }

    .product-spec .spec-accent { color: var(--accent); }

    .product-link {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--text);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--hairline-strong);
      padding-bottom: 3px;
      transition: border-color 150ms ease, gap 200ms ease;
    }

    .product-link:hover { border-color: var(--accent); gap: 14px; }

    /* ===== PRODUCT GRID (secondary products) ===== */
    .product-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--hairline);
      border: 1px solid var(--hairline);
      margin-top: 88px;
    }

    .pcard {
      background: var(--bg);
      padding: 44px 40px;
      transition: background 250ms ease;
      position: relative;
    }

    .pcard:hover { background: var(--bg-raised); }

    .pcard-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 22px;
    }

    .pcard-index {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      letter-spacing: 0.08em;
    }

    .pcard-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 28px;
      color: var(--text);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .pcard-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .pcard-spec {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      letter-spacing: 0.05em;
      line-height: 1.9;
    }

    .pcard-spec b { color: var(--accent); font-weight: 500; }

    /* ===== CASE FILE STRUCTURE ===== */
    .case-part {
      margin-bottom: 40px;
    }

    .case-part-label {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .case-part-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--hairline);
    }

    .case-bullet {
      position: relative;
      padding: 10px 0 10px 28px;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
    }

    .case-bullet::before {
      content: '·';
      position: absolute;
      left: 4px;
      top: 10px;
      font-family: var(--font-mono);
      color: var(--dim);
    }

    .case-bullet.built::before { content: '+'; color: var(--accent); left: 0; }
    .case-bullet b { color: var(--text); font-weight: 500; }

    .stat-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .chip {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.04em;
      color: var(--text);
      padding: 10px 16px;
      border: 1px solid rgba(255, 212, 1, 0.25);
      background: var(--accent-dim);
      border-radius: 100px;
      white-space: nowrap;
    }

    .chip b { color: var(--accent); font-weight: 500; }

    /* ===== CASE STUDIES ===== */
    .case-block {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      padding: 100px 0;
      border-bottom: 1px solid var(--hairline);
      align-items: start;
    }

    .case-block:first-of-type { border-top: 1px solid var(--hairline); }

    .case-stat { position: sticky; top: 120px; }

    .case-number {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(90px, 11vw, 150px);
      line-height: 0.95;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 20px;
      font-variant-numeric: tabular-nums;
    }

    .case-label {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 36px;
    }

    .case-meta {
      font-family: var(--font-mono);
      font-size: 11px;
      line-height: 2.2;
      color: var(--dim);
      letter-spacing: 0.05em;
      border-top: 1px solid var(--hairline);
      padding-top: 20px;
      max-width: 320px;
    }

    .case-meta b { color: var(--muted); font-weight: 500; }

    .case-description p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .case-description p:first-of-type {
      font-size: 19px;
      color: var(--text);
    }

    .case-timeline { margin-top: 44px; }

    .timeline-item {
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 24px;
      padding: 15px 0;
      border-bottom: 1px solid var(--hairline);
      font-size: 14px;
      align-items: baseline;
    }

    .timeline-day {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--accent);
      letter-spacing: 0.08em;
    }

    .timeline-event { color: var(--text); }

    /* ===== TESTIMONIALS ===== */
    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
    }

    .testimonial { position: relative; padding-top: 48px; }

    .testimonial::before {
      content: '“';
      position: absolute;
      top: -10px;
      left: -6px;
      font-family: var(--font-display);
      font-size: 110px;
      line-height: 1;
      color: var(--accent);
      opacity: 0.35;
    }

    .testimonial-quote {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 23px;
      line-height: 1.42;
      color: var(--text);
      margin-bottom: 32px;
      letter-spacing: -0.01em;
    }

    .testimonial-quote .highlight { color: var(--accent); }

    .testimonial-attribution {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--hairline-strong);
      background: var(--bg-raised);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      flex-shrink: 0;
    }

    .testimonial-author { font-size: 14px; font-weight: 600; color: var(--text); }
    .testimonial-role { font-family: var(--font-mono); font-size: 11px; color: var(--dim); letter-spacing: 0.03em; margin-top: 2px; }

    /* ===== SERVICES ===== */
    .client-intro {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(24px, 2.8vw, 32px);
      color: var(--text);
      max-width: 760px;
      line-height: 1.32;
      margin-bottom: 72px;
      letter-spacing: -0.01em;
    }

    .service-row {
      padding: 36px 0;
      border-bottom: 1px solid var(--hairline);
      display: grid;
      grid-template-columns: 60px 1fr 1fr;
      gap: 32px;
      align-items: baseline;
      transition: padding-left 250ms ease;
    }

    .service-row:first-of-type { border-top: 1px solid var(--hairline); }
    .service-row:hover { padding-left: 12px; }

    .service-index {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      letter-spacing: 0.06em;
    }

    .service-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.01em;
    }

    .service-desc { font-size: 15px; color: var(--muted); }

    /* ===== ENGAGEMENT ===== */
    .engagement-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--hairline);
      border: 1px solid var(--hairline);
    }

    .engagement-step {
      background: var(--bg);
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: background 250ms ease;
    }

    .engagement-step:hover { background: var(--bg-raised); }

    .engagement-phase {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 18px;
    }

    .engagement-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 27px;
      color: var(--text);
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }

    .engagement-duration {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      margin-bottom: 22px;
      letter-spacing: 0.06em;
    }

    .engagement-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 26px;
      flex: 1;
    }

    .engagement-deliverable {
      font-size: 14px;
      color: var(--text);
      padding: 14px 18px;
      background: var(--accent-dim);
      border-left: 2px solid var(--accent);
      line-height: 1.6;
      border-radius: 0 4px 4px 0;
    }

    .scarcity-note {
      margin-top: 56px;
      padding: 36px 40px;
      border: 1px solid rgba(255, 212, 1, 0.25);
      background: var(--accent-dim);
      border-radius: 6px;
      font-size: 16px;
      color: var(--text);
      line-height: 1.65;
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .scarcity-note .status-dot { margin-top: 8px; flex-shrink: 0; }
    .scarcity-note strong { color: var(--accent); font-weight: 600; }

    /* ===== HOW WE WORK ===== */
    .how-statement {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(36px, 5.2vw, 66px);
      line-height: 1.06;
      letter-spacing: -0.02em;
      color: var(--text);
      max-width: 940px;
      margin-bottom: 44px;
    }

    .how-statement em {
      font-style: normal;
      color: var(--accent);
    }

    .how-sub {
      font-size: 18px;
      color: var(--muted);
      max-width: 620px;
      line-height: 1.7;
    }

    .how-sub + .qualify-grid { margin-top: 56px; }

    /* ===== PRIVACY BAND (industry pages) ===== */
    .privacy-band {
      border: 1px solid var(--hairline);
      background: var(--bg-raised);
      border-radius: 6px;
      padding: 48px 44px;
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 40px;
      align-items: start;
    }

    .privacy-band-kicker {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--accent);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding-top: 6px;
    }

    .privacy-band-line {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(26px, 3.2vw, 36px);
      line-height: 1.15;
      letter-spacing: -0.015em;
      color: var(--text);
      margin-bottom: 16px;
      max-width: 720px;
    }

    .privacy-band-line em {
      font-style: normal;
      color: var(--accent);
    }

    .privacy-band-sub {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 640px;
    }

    /* ===== FIT CHECK ===== */
    .qualify-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--hairline);
      border: 1px solid var(--hairline);
    }

    .qualify-col { background: var(--bg); padding: 48px 44px; }

    .qualify-col-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 24px;
      color: var(--accent);
      margin-bottom: 36px;
      letter-spacing: -0.01em;
    }

    .qualify-col-title.not-for { color: var(--dim); }

    .qualify-item {
      font-size: 15px;
      color: var(--text);
      line-height: 1.6;
      padding: 16px 0 16px 30px;
      border-bottom: 1px solid var(--hairline);
      position: relative;
    }

    .qualify-item::before {
      content: '→';
      position: absolute;
      left: 0;
      font-family: var(--font-mono);
      color: var(--accent);
      font-size: 13px;
    }

    .qualify-item.negative { color: var(--muted); }
    .qualify-item.negative::before { content: '✕'; color: var(--dim); }

    /* ===== FAQ ===== */
    .faq-wrap { max-width: 860px; }

    .faq-item { border-bottom: 1px solid var(--hairline); }
    .faq-item:first-of-type { border-top: 1px solid var(--hairline); }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 30px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 500;
      color: var(--text);
      text-align: left;
      gap: 24px;
      transition: color 150ms ease;
    }

    .faq-question:hover { color: var(--accent); }

    .faq-index {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      margin-right: 20px;
      flex-shrink: 0;
    }

    .faq-q-text { flex: 1; }

    .faq-toggle {
      font-family: var(--font-mono);
      font-size: 22px;
      font-weight: 300;
      color: var(--accent);
      flex-shrink: 0;
      transition: transform 300ms ease;
    }

    .faq-item.open .faq-toggle { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 400ms ease;
    }

    .faq-answer-inner {
      padding: 0 60px 30px 43px;
      font-size: 16px;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ===== CONTACT ===== */
    .contact {
      padding: 170px 40px;
      position: relative;
      overflow: hidden;
    }

    .contact-glow {
      position: absolute;
      width: 900px;
      height: 500px;
      left: 50%;
      bottom: -250px;
      transform: translateX(-50%);
      background: radial-gradient(ellipse, rgba(255, 212, 1, 0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    .contact-headline {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(44px, 6.4vw, 80px);
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 36px;
    }

    .contact-headline em { font-style: normal; color: var(--accent); }

    .contact-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 44px;
    }

    .contact-note {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--dim);
      margin-top: 28px;
      letter-spacing: 0.03em;
    }

    /* ===== FOOTER ===== */
    .footer {
      border-top: 1px solid var(--hairline);
      padding: 56px 40px 40px;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .footer-wordmark {
      display: inline-block;
    }
    .footer-wordmark img {
      display: block;
      height: 36px;
      width: auto;
    }

    .footer-col {
      font-family: var(--font-mono);
      font-size: 11px;
      line-height: 2.2;
      color: var(--dim);
      letter-spacing: 0.05em;
    }

    .footer-col b {
      display: block;
      color: var(--muted);
      font-weight: 500;
      margin-bottom: 4px;
    }

    .footer-bottom {
      border-top: 1px solid var(--hairline);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--dim);
      letter-spacing: 0.04em;
    }

    /* ===== REVEAL UTILITY ===== */
    .reveal { opacity: 0; transform: translateY(36px); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; }
    }

    /* ===== PRELOADER ===== */
    .preloader {
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 5000;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: clip-path 900ms cubic-bezier(0.77, 0, 0.18, 1);
      clip-path: inset(0 0 0 0);
    }

    .preloader.done { clip-path: inset(0 0 100% 0); }

    .preloader-inner {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.06em;
      width: 320px;
    }

    .preloader-lines {
      min-height: 96px;
      margin-bottom: 24px;
    }

    .preloader-lines div { opacity: 0.85; line-height: 1.9; }
    .preloader-lines .ok { color: var(--accent); }

    .preloader-bar {
      height: 2px;
      background: var(--hairline-strong);
      position: relative;
      overflow: hidden;
    }

    .preloader-bar span {
      position: absolute;
      inset: 0;
      background: var(--accent);
      transform-origin: left;
      transform: scaleX(0);
    }

    .preloader-pct {
      margin-top: 12px;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--dim);
    }

    .preloader-pct .pct-num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 40px;
      color: var(--text);
      line-height: 1;
    }

    /* ===== CUSTOM CURSOR ===== */
    @media (hover: hover) and (pointer: fine) {
      .cursor-dot, .cursor-ring {
        position: fixed;
        top: 0; left: 0;
        pointer-events: none;
        z-index: 4000;
        border-radius: 50%;
        transform: translate(-50%, -50%);
      }
      .cursor-dot {
        width: 6px; height: 6px;
        background: var(--accent);
      }
      .cursor-ring {
        width: 34px; height: 34px;
        border: 1px solid rgba(255, 212, 1, 0.4);
        transition: width 250ms ease, height 250ms ease, border-color 250ms ease, background 250ms ease;
      }
      body.cursor-hover .cursor-ring {
        width: 60px; height: 60px;
        border-color: var(--accent);
        background: rgba(255, 212, 1, 0.08);
      }
    }

    /* ===== GHOST NUMERALS ===== */
    .section, .manifesto, .contact { position: relative; }

    .ghost-num {
      position: absolute;
      top: 40px;
      right: -20px;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(180px, 24vw, 380px);
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px var(--hairline);
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }

    .section > .container, .manifesto > .container, .contact > .container { z-index: 1; }

    /* ===== OUTLINE MARQUEE ===== */
    .marquee-band {
      overflow: hidden;
      padding: 70px 0;
      border-top: 1px solid var(--hairline);
      white-space: nowrap;
      position: relative;
    }

    .marquee-inner {
      display: inline-flex;
      animation: ticker-scroll 26s linear infinite;
    }

    .marquee-word {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(64px, 9vw, 130px);
      line-height: 1;
      letter-spacing: -0.02em;
      padding-right: 48px;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--dim);
    }

    .marquee-word.solid {
      color: var(--accent);
      -webkit-text-stroke: 0;
    }

    /* ===== CRT FLICKER on terminal ===== */
    .hero-terminal {
      animation: crt-flicker 6s infinite;
    }

    @keyframes crt-flicker {
      0%, 100% { opacity: 1; }
      92% { opacity: 1; }
      93% { opacity: 0.72; }
      94% { opacity: 1; }
      97% { opacity: 0.88; }
      98% { opacity: 1; }
    }

    /* ===== VIGNETTES ===== */
    .hero::after, .contact::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.5) 100%);
      z-index: 1;
    }

    .hero .container, .hero-bottom { z-index: 2; }
    .contact .container { z-index: 2; position: relative; }

    /* ===== PRODUCT VISUAL HOVER ===== */
    .product-visual {
      transition: border-color 300ms ease, box-shadow 300ms ease;
    }

    .product-visual img {
      transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
      filter: saturate(0.85);
    }

    .product-visual:hover {
      border-color: rgba(255, 212, 1, 0.35);
      box-shadow: 0 0 60px rgba(255, 212, 1, 0.08);
    }

    .product-visual:hover img {
      transform: scale(1.03);
      filter: saturate(1.1);
    }

    /* ===== SECTION HEAD DRAW-IN ===== */
    .section-head {
      position: relative;
      border-bottom: none;
    }

    .section-head::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 1px;
      background: var(--hairline-strong);
      transform-origin: left;
      transform: scaleX(0);
    }

    .section-head.drawn::after {
      transform: scaleX(1);
      transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1);
    }

    /* ===== FOOTER WATERMARK ===== */
    .footer-watermark {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(70px, 12.5vw, 180px);
      line-height: 0.95;
      letter-spacing: -0.02em;
      text-align: center;
      color: transparent;
      -webkit-text-stroke: 1px var(--hairline-strong);
      user-select: none;
      margin-bottom: 56px;
      transition: color 600ms ease;
    }

    .footer-watermark:hover {
      color: var(--accent-dim);
    }

    .footer-watermark span { -webkit-text-stroke: 0; color: var(--accent); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .nav-status, .nav-clock { display: none; }
      .live-metrics .container { grid-template-columns: 1fr 1fr; }
      .live-metrics .metric:nth-child(4n) { border-right: none; }
      .live-metrics .metric:nth-child(even) { border-right: 1px solid var(--hairline); }
      .live-metrics .metric:nth-child(n + 3) { border-top: 1px solid var(--hairline); }
      .proof-flow, .engagement-grid { grid-template-columns: 1fr; }
      .product-block, .product-block.reverse {
        grid-template-columns: 1fr;
        gap: 36px;
        direction: ltr;
        padding: 64px 0;
      }
      .case-block { grid-template-columns: 1fr; gap: 40px; padding: 72px 0; }
      .product-grid { grid-template-columns: 1fr; }
      .pcard { padding: 32px 24px; }
      .case-stat { position: static; }
      .testimonial-grid { grid-template-columns: 1fr; gap: 64px; }
      .qualify-grid { grid-template-columns: 1fr; }
      .service-row { grid-template-columns: 40px 1fr; }
      .service-desc { grid-column: 2; }
      .section { padding: 90px 24px; }
      .hero { padding: 120px 24px 120px; }
      .hero-bottom { left: 24px; right: 24px; font-size: 9px; }
      .manifesto { padding: 110px 24px; }
      .contact { padding: 120px 24px; }
      .nav { padding: 0 24px; }
      .footer { padding: 48px 24px 32px; }
      .faq-answer-inner { padding-left: 0; padding-right: 0; }
    }

/* ===== NAV INDUSTRY LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 150ms ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }

/* ===== INDUSTRY CARDS (index) ===== */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.icard {
  background: var(--bg);
  padding: 52px 44px 44px;
  display: block;
  position: relative;
  transition: background 250ms ease;
}

.icard:hover { background: var(--bg-raised); }

.icard-span {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 44px;
}
.icard-span .icard-index { margin-bottom: 0; }
.icard-span .icard-sub { min-height: 0; margin-bottom: 0; max-width: 640px; }
.icard-span .icard-title { margin-bottom: 10px; }
.icard-span .icard-count { position: static; }

.icard-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.icard-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.icard-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  min-height: 72px;
}

.icard-arrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 200ms ease;
}

.icard:hover .icard-arrow { gap: 16px; }

.icard-count {
  position: absolute;
  top: 48px;
  right: 44px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.06em;
}

/* ===== INDUSTRY PAGE HERO ===== */
.page-hero {
  padding: 190px 40px 90px;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-grid-bg { mask-image: radial-gradient(ellipse 70% 70% at 40% 30%, black 25%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 70% 70% at 40% 30%, black 25%, transparent 70%); }

.page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-hero-eyebrow::after { content: ''; width: 48px; height: 1px; background: var(--hairline-strong); }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 920px;
  margin-bottom: 32px;
}

.page-hero h1 em { font-style: normal; color: var(--accent); }

.page-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== SOLUTION ROWS (industry pages) ===== */
.solution-row {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
  transition: padding-left 250ms ease;
}

.solution-row:hover { padding-left: 12px; }

.solution-role {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 8px;
  line-height: 1.8;
}

.solution-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.solution-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 14px;
}

.solution-spec {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.05em;
}

.solution-status { padding-top: 8px; }

/* ===== CASE STRIP (condensed case on industry pages) ===== */
.case-strip {
  border: 1px solid var(--hairline);
  background: var(--bg-raised);
  border-radius: 6px;
  padding: 48px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.case-strip-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
}

.case-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 12px;
}

.case-strip-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 640px;
}

.case-strip-body p b { color: var(--text); font-weight: 500; }

.solution-row:first-of-type { border-top: none; }
.section-head + .solution-row { border-top: 1px solid var(--hairline); }
.solution-status .product-status { margin-bottom: 0; }

.page-hero-replaces {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.8;
  max-width: 640px;
}
.page-hero-replaces b {
  color: var(--muted);
  font-weight: 500;
}

.page-visual { margin-top: 80px; }

.page-next {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 0 36px;
  padding: 20px 0 0;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-next a { color: var(--muted); transition: color 150ms ease; }
.page-next a:hover { color: var(--accent); }
.page-next span { color: var(--dim); }

@media (max-width: 900px) {
  .industry-cards { grid-template-columns: 1fr; }
  .icard-sub { min-height: 0; }
  .icard-span { grid-template-columns: 1fr; gap: 16px; padding: 36px 28px; }
  .page-hero { padding: 150px 24px 70px; }
  .solution-row { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .solution-role { padding-top: 0; }
  .solution-status { padding-top: 0; }
  .case-strip { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .privacy-band { grid-template-columns: 1fr; gap: 16px; padding: 32px 24px; }
}

@media (max-width: 720px) {
  .nav-wordmark {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
    min-height: 0;
  }
  .nav-wordmark img { height: 30px; }
  .nav .container {
    display: grid;
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 56px;
    padding: 12px 0 10px;
    row-gap: 10px;
    align-items: center;
  }
  .nav-left { display: contents; }
  .nav-wordmark { grid-column: 1; grid-row: 1; }
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    gap: 18px;
  }
  .nav-right { grid-column: 2; grid-row: 1; }
}

/* ============================================================
   CRAFT PASS — press-sheet chrome
   ============================================================ */

@media (hover: hover) and (pointer: fine) {
  html, body { cursor: none; }
  a, button { cursor: none; }
}

.sheet { pointer-events: none; }
.sheet-mark {
  position: fixed;
  width: 18px;
  height: 18px;
  z-index: 90;
  opacity: 0.7;
}
.sheet-mark::before, .sheet-mark::after {
  content: '';
  position: absolute;
  background: var(--hairline-strong);
}
.sheet-mark::before { width: 18px; height: 1px; }
.sheet-mark::after { width: 1px; height: 18px; }
.sheet-mark.tl { top: 10px; left: 10px; }
.sheet-mark.tl::before { top: 0; left: 0; background: var(--accent); width: 8px; }
.sheet-mark.tl::after { top: 0; left: 0; }
.sheet-mark.tr { top: 10px; right: 10px; }
.sheet-mark.tr::before { top: 0; right: 0; left: auto; background: var(--accent); width: 8px; }
.sheet-mark.tr::after { top: 0; right: 0; left: auto; }
.sheet-mark.bl { bottom: 10px; left: 10px; }
.sheet-mark.bl::before { bottom: 0; top: auto; left: 0; background: var(--accent); width: 8px; }
.sheet-mark.bl::after { bottom: 0; top: auto; left: 0; }
.sheet-mark.br { bottom: 10px; right: 10px; }
.sheet-mark.br::before { bottom: 0; top: auto; right: 0; left: auto; background: var(--accent); width: 8px; }
.sheet-mark.br::after { bottom: 0; top: auto; right: 0; left: auto; }

.folio-v {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--dim);
  z-index: 90;
  white-space: nowrap;
  pointer-events: none;
}

.scroll-progress {
  height: 1px;
  box-shadow: 0 0 12px rgba(255, 212, 1, 0.55);
}

.nav {
  transition: border-color 300ms ease, background 300ms ease;
}
.nav.scrolled {
  background: rgba(10, 10, 9, 0.94);
  border-bottom-color: var(--hairline-strong);
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -18px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav-links a::after { bottom: -19px; }

.cta {
  border-radius: 2px;
  box-shadow: 4px 4px 0 rgba(255, 212, 1, 0.28);
}
.cta:hover {
  box-shadow: 6px 6px 0 rgba(255, 212, 1, 0.4);
}
.nav-cta {
  box-shadow: 3px 3px 0 rgba(255, 212, 1, 0.22);
}

.section-num {
  border: 1px solid rgba(255, 212, 1, 0.28);
  padding: 3px 7px;
  border-radius: 2px;
}
.section-head.drawn::after {
  box-shadow: 0 3px 0 var(--hairline);
}

.metric {
  transition: background 250ms ease;
}
.metric:hover { background: var(--bg-raised); }
.metric-value.live {
  position: relative;
}
.metric-value.live::after {
  content: '';
  position: absolute;
  left: 0; right: 20%;
  height: 1px;
  bottom: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.45;
  animation: scan 2.8s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { transform: scaleX(0.4); transform-origin: left; opacity: 0.2; }
  50% { transform: scaleX(1); opacity: 0.6; }
}

.product-visual::before {
  padding-left: 56px;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, #3d3d34 2.5px, transparent 2.7px),
    radial-gradient(circle, #3d3d34 2.5px, transparent 2.7px),
    radial-gradient(circle, rgba(255, 212, 1, 0.7) 2.5px, transparent 2.7px);
  background-size: 8px 8px;
  background-position: 16px 50%, 28px 50%, 40px 50%;
  background-repeat: no-repeat;
}

.pcard::after,
.proof-step::after,
.engagement-step::after {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 10px; height: 10px;
  border-top: 1px solid var(--dim);
  border-right: 1px solid var(--dim);
  opacity: 0.45;
  transition: border-color 250ms ease, opacity 250ms ease;
}
.pcard:hover::after,
.proof-step:hover::after,
.engagement-step:hover::after {
  border-color: var(--accent);
  opacity: 1;
}

.engagement-grid { counter-reset: phase; }
.engagement-step { counter-increment: phase; overflow: hidden; }
.engagement-step::before {
  content: counter(phase, decimal-leading-zero);
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--hairline);
  pointer-events: none;
}

.proof-flow { counter-reset: step; }
.proof-step { overflow: hidden; }

.icard::before,
.icard::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  transition: border-color 250ms ease;
}
.icard::before {
  top: 18px; left: 18px;
  border-top: 1px solid var(--dim);
  border-left: 1px solid var(--dim);
}
.icard::after {
  bottom: 18px; right: 18px;
  border-bottom: 1px solid var(--dim);
  border-right: 1px solid var(--dim);
}
.icard:hover::before,
.icard:hover::after { border-color: var(--accent); }
.icard-count { top: 22px; }

.solution-row {
  position: relative;
  counter-increment: sol;
}
#stack { counter-reset: sol; }
.solution-row::before {
  content: '';
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 1px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.solution-row:hover::before { transform: scaleY(1); }
.solution-row:hover { padding-left: 20px; }
.solution-role::before {
  content: counter(sol, decimal-leading-zero) ' · ';
  color: var(--dim);
  letter-spacing: 0.08em;
}
.solution-spec {
  padding-top: 10px;
  border-top: 1px dashed var(--hairline);
  display: inline-block;
}

.case-strip {
  position: relative;
}
.case-strip::before {
  content: 'CASE FILE';
  position: absolute;
  top: -10px;
  left: 36px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: var(--bg);
  padding: 0 10px;
}
.case-strip-number {
  background: linear-gradient(180deg, var(--text) 40%, var(--dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.privacy-band {
  position: relative;
  overflow: hidden;
}
.privacy-band::after {
  content: 'NO COPY HELD';
  position: absolute;
  bottom: 22px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  border: 1px solid rgba(255, 212, 1, 0.35);
  padding: 5px 9px;
  transform: rotate(2deg);
}

.faq-index {
  border: 1px solid var(--hairline-strong);
  padding: 3px 7px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}
.faq-item {
  transition: padding-left 250ms ease, border-left-color 250ms ease;
}
.faq-item.open {
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.faq-item.open .faq-index {
  color: var(--accent);
  border-color: rgba(255, 212, 1, 0.4);
}

.page-hero .container {
  position: relative;
}
.page-hero-eyebrow {
  position: relative;
}
.page-hero-replaces {
  padding-top: 16px;
  border-top: 1px dashed var(--hairline);
  display: inline-block;
}

.qualify-col {
  position: relative;
}
.qualify-item {
  transition: padding-left 200ms ease, color 200ms ease;
}
.qualify-item:hover { padding-left: 36px; }

.chip {
  border-radius: 2px;
  position: relative;
}
.footer-col a {
  position: relative;
  transition: color 150ms ease;
}
.footer-col a:hover { color: var(--accent); }

.contact {
  position: relative;
}
.contact .container::before,
.contact .container::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.contact .container::before {
  top: -20px; left: 0;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  opacity: 0.5;
}
.contact .container::after {
  bottom: -10px; right: 0;
  border-bottom: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  opacity: 0.5;
}

.hero-meta-row span:first-child::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: 1px;
  box-shadow: 0 0 0 3px var(--accent-dim);
}

@media (max-width: 1100px) {
  .folio-v, .sheet-mark { display: none; }
}

/* ============================================================
   HOMEPAGE — TITLE SEQUENCE
   ============================================================ */

.home .letterbox {
  position: fixed;
  left: 0; right: 0;
  height: 48px;
  background: #050504;
  z-index: 4800;
  pointer-events: none;
  transition: transform 1.05s cubic-bezier(0.77, 0, 0.18, 1);
}
.home .letterbox.top { top: 0; box-shadow: 0 1px 0 var(--hairline); }
.home .letterbox.bot { bottom: 0; box-shadow: 0 -1px 0 var(--hairline); }
.home.ready .letterbox.top { transform: translateY(-100%); }
.home.ready .letterbox.bot { transform: translateY(100%); }

.home .hero {
  height: 100svh;
  min-height: 100svh;
  padding: 118px 40px 86px;
}
.home .hero-glow {
  left: 0;
  top: 0;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(255, 212, 1, 0.11) 0%, transparent 65%);
  transform: translate(calc(var(--gx, 28vw) - 50%), calc(var(--gy, 42vh) - 50%));
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  z-index: 1;
}
.home .hero-iris {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse 75% 65% at 32% 42%, transparent 28%, rgba(0, 0, 0, 0.55) 100%);
}
.home .hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.09;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 2px,
    rgba(0, 0, 0, 0.35) 2px 3px
  );
}
.home .hero-ghost-word {
  position: absolute;
  right: 0;
  top: 14%;
  width: 36%;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(140px, 18vw, 260px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 237, 230, 0.13);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  text-align: right;
  transform: translateY(20px);
}
.home .hero .container { z-index: 3; }
.home .hero-bottom { z-index: 3; }
.home .hero-take {
  position: absolute;
  right: 40px;
  top: 52%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--dim);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}

.home .hero-slate {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--dim);
  margin-bottom: 28px;
  opacity: 0;
  text-transform: uppercase;
}
.home .hero-slate .hero-tc { color: var(--accent); margin-left: auto; font-variant-numeric: tabular-nums; }
.home .rec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  letter-spacing: 0.18em;
}
.home .rec i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
  animation: pulse 1.2s ease-in-out infinite;
}

.home .hero-meta-row,
.home .hero-terminal { opacity: 0; }
.home .hero-meta-row { margin-bottom: 22px; }
.home .hero-terminal { margin-bottom: 18px; }
.home .hero-headline {
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 72px);
  max-width: none;
  line-height: 1.04;
}
.home .hero-rule {
  width: 0;
  height: 1px;
  background: var(--accent);
  margin: 0 0 32px;
  max-width: 88px;
  box-shadow: 0 0 12px rgba(255, 212, 1, 0.45);
}
.home .hero-subcopy { transform: translateY(16px); }
.home #lead-count { color: var(--accent); font-weight: 500; }

.home .scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.home .scroll-cue i {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--accent);
  animation: cue-drop 1.7s ease-in-out infinite;
}
@keyframes cue-drop {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

.home .hero-bottom { opacity: 0; }

.home .ticker {
  position: relative;
  padding: 22px 0;
}
.home .ticker::before,
.home .ticker::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 10px,
    var(--hairline-strong) 10px 12px
  );
  opacity: 0.55;
}
.home .ticker::before { top: 0; }
.home .ticker::after { bottom: 0; }

.home .live-metrics { padding-top: 0; }
.home .metrics-slate {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 32px 4px;
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--dim);
  text-transform: uppercase;
}
.home .metrics-slate span:last-child { margin-left: auto; }

.metrics-desk {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 32px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.metrics-choose {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.metrics-choose button {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  background: transparent;
  border: 1px solid var(--hairline);
  padding: 8px 14px;
}
.metrics-choose button.on,
.metrics-choose button[aria-selected="true"] {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}
.metrics-dial {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--hairline);
  padding: 4px 10px 4px 4px;
}
.metrics-dial[hidden] { display: none; }
.metrics-dial button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  padding: 0;
}
.metrics-dial button:hover { border-color: var(--accent); color: var(--accent); }
.metrics-dial-read {
  min-width: 72px;
  text-align: center;
}
.metrics-dial-read b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metrics-dial-read span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.metric.is-profit {
  background: rgba(255, 212, 1, 0.04);
}
.metric.is-profit .metric-value {
  color: var(--accent);
  font-size: clamp(28px, 3vw, 40px);
}
.metrics-note {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 32px 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.metrics-note em { color: var(--muted); font-style: normal; }

@media (max-width: 900px) {
  .metrics-desk { padding: 8px 8px 4px; }
  .metrics-note { padding: 8px 8px 18px; }
}

.home .icard {
  transition: background 250ms ease, transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.home .icard:hover { transform: translateY(-4px); }

.home .manifesto {
  padding: 200px 40px;
}
.home .manifesto-statement {
  font-size: clamp(36px, 5.2vw, 68px);
}

.home .contact-headline {
  font-size: clamp(52px, 7.2vw, 96px);
}
.home .end-slate {
  max-width: 1240px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--dim);
  text-transform: uppercase;
}
.home .end-slate span:last-child { margin-left: auto; color: var(--accent); }
.home .proof-step {
  position: relative;
}
.home .proof-step-time { color: var(--accent); }
.home .metric { overflow: hidden; }
.home .metric::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.home .metric:hover::after { transform: scaleX(1); }

@media (max-height: 820px) {
  .home .hero { padding: 100px 40px 72px; }
  .home .hero-headline { font-size: clamp(34px, 6.2vh, 56px); }
  .home .hero-subcopy { margin-bottom: 28px; font-size: 17px; }
}
@media (max-width: 900px) {
  .home .letterbox { height: 28px; }
  .home .hero { height: auto; min-height: 100svh; padding: 108px 24px 88px; }
  .home .hero-ghost-word,
  .home .hero-take { display: none; }
  .home .hero-slate { flex-wrap: wrap; gap: 10px 16px; }
  .home .hero-slate .hero-tc { margin-left: 0; }
  .home .metrics-slate { padding: 18px 24px 0; flex-wrap: wrap; }
  .home .metrics-slate span:last-child { margin-left: 0; }
  .home .end-slate { flex-wrap: wrap; }
  .home .end-slate span:last-child { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .home .letterbox { display: none; }
  .home .hero-scan { display: none; }
  .home .scroll-cue i { animation: none; }
}
@media (max-width: 900px) {
  .privacy-band::after { position: static; display: inline-block; transform: none; margin-bottom: 16px; }
  .engagement-step::before { font-size: 56px; }
  .nav-links a::after { bottom: -8px; }
}

/* ============================================================
   NAV SLATE
   ============================================================ */

.nav {
  padding: 0 40px;
  background: rgba(10, 10, 9, 0.88);
}
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 5px;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 9px,
    var(--hairline-strong) 9px 11px
  );
  opacity: 0.55;
}
.nav-rail {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 22px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--dim);
  text-transform: uppercase;
}
.nav-rail i {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.nav-rail-ch { color: var(--muted); }
.nav-tc { color: var(--accent); font-variant-numeric: tabular-nums; }

.nav .container { height: 64px; }

.nav-wordmark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 28px 0 0;
  margin-right: 8px;
  border-right: 1px solid var(--hairline);
  min-height: 48px;
}
.nav-wordmark img {
  display: block;
  height: 44px;
  width: auto;
  opacity: 1;
  filter: none;
}
.nav-wordmark small,
.nav-wordmark span { display: none; }

.nav-status {
  border: 1px solid var(--blue-dim);
  padding: 5px 10px 5px 8px;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: var(--muted);
  background: var(--blue-dim);
  margin-left: 8px;
}
.nav-status b {
  color: var(--blue);
  font-weight: 500;
  margin-right: 6px;
}

.nav-left { gap: 28px; }

.nav-links {
  gap: 6px;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 8px 10px 7px;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  overflow: hidden;
  z-index: 0;
  transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease;
}
.nav-links a .nav-wipe {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  pointer-events: none;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a::before {
  content: attr(data-ix);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--dim);
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 320ms ease;
}
.nav-links a::after {
  left: 10px;
  right: 10px;
  bottom: 0;
  z-index: 1;
}
.nav-links a:hover,
.nav-links a.active.is-lit {
  color: var(--bg);
  border-color: var(--accent);
  background: transparent;
}
.nav-links a:hover .nav-wipe,
.nav-links a.active.is-lit .nav-wipe { transform: scaleX(1); }
.nav-links a:hover::before,
.nav-links a.active.is-lit::before { color: rgba(10, 10, 9, 0.5); }
.nav-links a:hover::after,
.nav-links a.active.is-lit::after { background: var(--bg); }
.nav-links a.active:not(.is-lit) {
  color: var(--text);
  border-color: var(--hairline);
}
.nav.scrolled .nav-links a::after { bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .nav-links a .nav-wipe { transition: none; }
  .nav-links a.active .nav-wipe { transform: scaleX(1); }
}

.nav-clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding-left: 14px;
  border-left: 1px solid var(--hairline);
  line-height: 1.15;
}
.nav-right { gap: 0; }
.nav-right .nav-clock + .nav-clock { margin-left: 14px; }
.nav-right .nav-cta { margin-left: 18px; }
.nav-clock b {
  font-size: 8px;
  letter-spacing: 0.16em;
}
.nav-right .nav-clock:nth-child(1) b::after { content: ' IST'; color: var(--dim); font-weight: 400; }
.nav-right .nav-clock:nth-child(2) b::after { content: ' CST'; color: var(--dim); font-weight: 400; }

.nav-cta {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}

.home .hero { padding-top: 132px; }
.page-hero { padding-top: 200px; }

@media (max-width: 1100px) {
  .nav-rail, .nav-wordmark small, .nav-links a::before { display: none; }
  .nav .container { height: 60px; }
  .nav-links a { padding: 4px 0; }
  .home .hero { padding-top: 118px; }
}
@media (max-width: 900px) {
  .nav::after, .nav-status, .nav-clock { display: none; }
  .nav-links { display: none !important; }
  .nav .container { row-gap: 0; }
}

/* Desktop: the call sheet never appears */
.nav-slate-btn,
.call-sheet { display: none; }

@media (max-width: 900px) {
  .nav-slate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 12px 0 10px;
    margin-right: 10px;
    border: 1px solid var(--hairline);
    background: transparent;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .nav-slate-btn[aria-expanded="true"] {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
  }
  .nav-slate-dots {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav-slate-dots b {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
  }
  .nav-slate-dots b:first-child { background: #0075CC; }
  .nav-slate-dots b:last-child { background: #FFD401; }
  .nav-slate-btn[aria-expanded="true"] .nav-slate-dots b { background: #0A0A09; }

  body.call-sheet-open { overflow: hidden; }
  body.call-sheet-open .nav {
    background: #0A0A09;
    border-bottom-color: transparent;
  }

  .call-sheet {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding-top: 56px;
    background: #0A0A09;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 320ms ease, visibility 320ms ease;
  }
  .call-sheet.is-on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .call-sheet-letterbox {
    height: 10px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .call-sheet.is-on .call-sheet-letterbox { transform: scaleX(1); }
  .call-sheet-letterbox.top { transform-origin: left; }
  .call-sheet-letterbox.bot { transform-origin: right; margin-top: auto; }

  .call-sheet-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 24px 20px;
    overflow: auto;
  }
  .call-sheet-head {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dim);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hairline);
  }
  .call-sheet-rows {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .call-sheet-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
    text-decoration: none;
    color: inherit;
    transform: translateY(18px);
    opacity: 0;
    transition: transform 440ms cubic-bezier(0.22, 1, 0.36, 1), opacity 440ms ease;
  }
  .call-sheet.is-on .call-sheet-row {
    transform: none;
    opacity: 1;
  }
  .call-sheet-row:nth-child(1) { transition-delay: 70ms; }
  .call-sheet-row:nth-child(2) { transition-delay: 110ms; }
  .call-sheet-row:nth-child(3) { transition-delay: 150ms; }
  .call-sheet-row:nth-child(4) { transition-delay: 190ms; }
  .call-sheet-row:nth-child(5) { transition-delay: 230ms; }
  .call-sheet-row:nth-child(6) { transition-delay: 270ms; }
  .call-sheet-row:nth-child(7) { transition-delay: 310ms; }
  .call-sheet-row em {
    font-family: var(--font-mono);
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0.14em;
    color: var(--accent);
    width: 28px;
    flex-shrink: 0;
  }
  .call-sheet-row b {
    font-family: var(--font-display);
    font-size: clamp(28px, 9vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .call-sheet-row.is-now b { color: var(--accent); }
  .call-sheet-row:active b { color: var(--accent); }
  .call-sheet-foot {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dim);
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-sheet,
  .call-sheet-letterbox,
  .call-sheet-row { transition: none; }
  .call-sheet-row { transform: none; opacity: 1; }
}

/* ============================================================
   THE REEL — 90-OPERATOR INDEX
   ============================================================ */

.reel-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.65;
  margin: -8px 0 40px;
}

.roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--hairline);
  background: var(--hairline);
  gap: 1px;
}

.roster-col {
  background: var(--bg);
  padding: 22px 20px 28px;
}

.roster-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}

.roster-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--dim);
  margin-bottom: 6px;
}

.roster-head b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.roster-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.roster-row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 5px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--dim);
  text-decoration: none;
}

.roster-row { color: var(--muted); }
.roster-row.public { color: var(--text); }
.roster-row.public:hover { color: var(--accent); }
.roster-num { color: var(--dim); }
.roster-name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.roster-meta {
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.roster-row.public .roster-meta { color: var(--accent); }

.redact {
  display: inline-block;
  height: 7px;
  background: rgba(237, 237, 230, 0.1);
  vertical-align: middle;
  max-width: 100%;
}

.roster-offer { margin-top: 1px; }
.reel-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.reel-more:hover { gap: 16px; }

.roster-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.roster-filters button {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  background: transparent;
  border: 1px solid var(--hairline);
  padding: 10px 16px;
  cursor: pointer;
}
.roster-filters button.on,
.roster-filters button:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.roster.solo { grid-template-columns: 1fr; }
.roster.solo .roster-col { max-width: 720px; }

.practice-band {
  margin-top: 48px;
  max-width: 720px;
}

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

/* ============================================================
   CTA
   ============================================================ */

.cta {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 34px;
  border-radius: 2px;
  background: var(--accent);
  color: var(--bg);
  box-shadow: 4px 4px 0 rgba(0, 117, 204, 0.55);
  overflow: hidden;
  transition: color 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.cta:hover {
  transform: none;
  background: var(--accent);
  box-shadow: 6px 6px 0 rgba(0, 117, 204, 0.7);
}
.cta.is-hot,
.cta.is-hot:hover {
  background: #0A0A09;
  color: #FFD401;
  box-shadow: 6px 6px 0 rgba(0, 117, 204, 0.75);
}
.cta.is-hot .cta-text,
.cta.is-hot .cta-go { color: #FFD401; }
.cta.is-down { box-shadow: 2px 2px 0 rgba(0, 117, 204, 0.7); }

.cta-ink {
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1;
  pointer-events: none;
}
.cta-sheen {
  position: absolute;
  top: -20%;
  left: 0;
  width: 38%;
  height: 140%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-140%) skewX(-18deg);
  animation: cta-sheen-idle 5.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 1;
}
.cta.is-hot .cta-sheen { animation: none; opacity: 0; }
@keyframes cta-sheen-idle {
  0%, 18% { transform: translateX(-140%) skewX(-18deg); }
  48% { transform: translateX(340%) skewX(-18deg); }
  100% { transform: translateX(340%) skewX(-18deg); }
}
.cta-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.cta-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.cta-ch { display: inline-block; }
.cta-ch.space { width: 0.28em; }

.cta-go {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: 22px;
  height: 14px;
}
.cta-go-head {
  display: block;
  font-size: 16px;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .cta[data-cta="1"]:hover .arrow { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-sheen { animation: none; }
}

/* ============================================================
   VERTICAL MINI-SITES  (/salon /dealership /agency /white-label)
   Peel one folder + /assets to convert into a standalone site.
   ============================================================ */

.vertical .nav-rail,
.vertical .nav-status,
.vertical .nav-clock { display: none; }
.vertical .nav { padding: 0 32px; }
.vertical .nav .container { height: 72px; }
.vertical .sheet .folio-v { display: none; }

.v-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.v-brand img { height: 36px; width: auto; }
.v-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding-left: 14px;
  border-left: 1px solid var(--hairline);
  line-height: 1.2;
}
.v-name b {
  display: block;
  color: var(--dim);
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.18em;
  margin-bottom: 3px;
}
.v-credit {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-right: 18px;
}
.v-credit:hover { color: var(--text); }

.v-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 40px 56px;
  position: relative;
  overflow: hidden;
}
.v-hero .container { position: relative; z-index: 1; }
.v-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.v-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 24px;
}
.v-hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.v-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.v-hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.v-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 56px;
}
.v-board div {
  background: var(--bg);
  padding: 22px 24px;
}
.v-board b {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.v-board span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.v-pains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.v-pain {
  background: var(--bg);
  padding: 36px 40px;
}
.v-pain i {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  font-style: normal;
  display: block;
  margin-bottom: 14px;
}
.v-pain h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.v-pain p { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 42ch; }

.v-day {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.v-day article {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--hairline);
}
.v-day article:last-child { border-right: 0; }
.v-day em {
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  color: var(--accent);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 12px;
}
.v-day h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.v-day p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.v-footer-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}
.vertical .page-next { display: none; }

@media (max-width: 900px) {
  .v-hero { padding: 110px 24px 40px; }
  .v-board, .v-pains, .v-day { grid-template-columns: 1fr; }
  .v-day article { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .v-name { display: none; }
  .v-credit { display: none; }
}

/* ============================================================
   CATALOG
   ============================================================ */

.cat-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.65;
  margin: 8px 0 36px;
}
.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.cat-filters button {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  background: transparent;
  border: 1px solid var(--hairline);
  padding: 8px 14px;
  cursor: pointer;
}
.cat-filters button.on,
.cat-filters button:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}
.cat-group {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 28px 0 12px;
  border-bottom: 1px solid var(--hairline);
  margin-top: 12px;
}
.cat-row {
  display: grid;
  grid-template-columns: 72px 1fr 140px 160px 28px;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  color: inherit;
}
.cat-row:hover .cat-name { color: var(--accent); }
.cat-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--dim);
}
.cat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: color 180ms ease;
}
.cat-row p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
}
.cat-meta, .cat-price {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 1.5;
}
.cat-price b { color: var(--accent); font-weight: 500; }
.cat-go { color: var(--accent); font-size: 16px; }
.cat-row[hidden], .cat-group[hidden] { display: none; }

@media (max-width: 900px) {
  .cat-row { grid-template-columns: 56px 1fr; }
  .cat-meta, .cat-price, .cat-go { display: none; }
}
