/* ============ TOKENS ============ */
  :root {
    --bg: #0A0A0B;
    --bg-2: #131316;
    --surface: #18181C;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --text: #F4F2EC;
    --text-dim: #9A9A9F;
    --text-mute: #5A5A5F;
    --orange: #FF4D00;
    --orange-2: #FF6A1A;
    --acid: #000;
    /* Racing Sans One = headings (the "voice") */
    --font-race: "Racing Sans One", "Bebas Neue", "Impact", sans-serif;
    /* Bebas Neue = display elements (numbers, tags, buttons) */
    --font-display: "Bebas Neue", "Impact", sans-serif;
    /* Geist = body and small labels */
    --font-body: "Geist", system-ui, -apple-system, sans-serif;
  }
 
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--bg);
  }
  body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
  }
  body.menu-open { overflow: hidden; }
  body::before {
    content: "";
    position: fixed; inset: 0; pointer-events: none; z-index: 1000;
    opacity: 0.5;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  ::selection { background: var(--orange); color: var(--bg); }
 
  /* em stays the same font as its parent — just an accent colour */
  em { font-style: normal; }
 
  .wrap { width: 100%; padding: 0 20px; }
  @media (min-width: 600px) { .wrap { padding: 0 28px; } }
  @media (min-width: 900px) { .wrap { padding: 0 44px; } }
  @media (min-width: 1200px) { .wrap { padding: 0 64px; } }
 
  .label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
  }
 
  /* ============ TELEMETRY BAR ============ */
  .telemetry {
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    padding: 10px 0;
  }
  .telemetry .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    flex-wrap: wrap;
  }
  .tele-left, .tele-right { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
  .tele-left span, .tele-right span { color: var(--text-dim); display: inline-flex; align-items: center; }
  .tele-left b, .tele-right b { color: var(--text); font-weight: 600; margin-left: 6px; }
  .live-dot {
    width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
    display: inline-block; margin-right: 8px;
    box-shadow: 0 0 12px var(--orange);
    animation: blink 1.6s infinite;
    flex-shrink: 0;
  }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
  @media (max-width: 768px) {
    .tele-hide-md { display: none !important; }
  }
  @media (max-width: 480px) {
    .tele-hide-sm { display: none !important; }
    .telemetry .wrap { font-size: 10px; letter-spacing: 0.12em; }
  }
 
  /* ============ NAV ============ */
  nav.primary {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 11, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  nav.primary .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .brand-mark {
    width: 40px; height: 40px;
    background: var(--orange);
    color: var(--bg);
    display: grid; place-items: center;
    font-family: var(--font-race);
    font-size: 28px;
    border-radius: 3px;
    box-shadow: 0 0 24px rgba(255, 77, 0, 0.4);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .brand-mark::after {
    content: "";
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
  }
  .brand:hover .brand-mark::after { left: 100%; }
  .brand-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
  .brand-name {
    font-family: var(--font-race);
    font-size: 24px;
    letter-spacing: 0.005em;
    line-height: 1;
    color: var(--text);
  }
  .brand-tag {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-mute);
  }
  @media (max-width: 480px) {
    .brand-tag { display: none; }
    .brand-name { font-size: 22px; }
  }
 
  /* desktop nav links */
  .nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
  }
  .nav-links a::before {
    content: "";
    position: absolute; left: 0; bottom: -2px;
    width: 100%; height: 1px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::before { transform: scaleX(1); }
 
  .nav-right { display: flex; align-items: center; gap: 12px; }
 
  /* hamburger */
  .hamburger {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--text);
    position: absolute;
    transition: all 0.3s ease;
  }
  .hamburger span:nth-child(1) { top: 16px; }
  .hamburger span:nth-child(2) { top: 21px; }
  .hamburger span:nth-child(3) { top: 26px; }
  .menu-open .hamburger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .menu-open .hamburger span:nth-child(2) { opacity: 0; }
  .menu-open .hamburger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
 
  /* mobile menu overlay */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    padding: 100px 24px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
  }
  .menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-family: var(--font-race);
    font-size: 36px;
    letter-spacing: 0.005em;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    transition: color 0.2s ease;
  }
  .mobile-menu a::after {
    content: "→";
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--orange);
  }
  .mobile-menu a:hover, .mobile-menu a:active { color: var(--orange); }
  .mobile-menu .menu-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-menu .menu-cta a {
    border: none;
    background: var(--orange);
    color: var(--bg);
    text-align: center;
    justify-content: center;
    padding: 18px 24px;
    border-radius: 3px;
    font-family: var(--font-display);
    font-size: 22px;
  }
  .mobile-menu .menu-cta a::after { display: none; }
 
  .cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--bg);
    padding: 12px 20px;
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border: 1px solid var(--orange);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    line-height: 1;
    min-height: 44px;
    white-space: nowrap;
  }
  .cta::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--acid);
    transform: translateX(-101%);
    transition: transform 0.3s ease;
    z-index: 0;
  }
  .cta span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; }
  .cta:hover::before { transform: translateX(0); }
  .cta .arr { transition: transform 0.25s ease; }
  .cta:hover .arr { transform: translateX(4px); }
 
  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .hamburger { display: inline-flex; }
    .mobile-menu { display: block; }
    .nav-right .cta { display: none; }
  }
  @media (max-width: 360px) {
    .mobile-menu a { font-size: 30px; padding: 14px 0; }
    .mobile-menu .menu-cta a { font-size: 20px; }
  }
 
  /* ============ HERO ============ */
  .hero {
    padding: 48px 0 36px;
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  @media (min-width: 768px) { .hero { padding: 56px 0 40px; } }
 
  .hero-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
  }
  .hero-side {
    border-right: 1px solid var(--line);
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 150px;
  }
  .hero-side .stat { display: flex; flex-direction: column; gap: 6px; }
  .hero-side .stat .v {
    font-family: var(--font-race);
    font-size: 26px;
    color: var(--text);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.005em;
  }
  @media (min-width: 768px) { .hero-side .stat .v { font-size: 28px; } }
 
  .hero h1 {
    font-family: var(--font-race);
    font-size: clamp(56px, 8vw, 240px);
    line-height: 0.92;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--text);
  }
  .hero h1 .row { display: block; }
  .hero h1 .orange {
    color: var(--orange);
    text-shadow: 0 0 60px rgba(255, 77, 0, 0.4);
  }
  .hero h1 .out {
    -webkit-text-stroke: 2px var(--text);
    color: transparent;
  }
 
  .hero-foot {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: end;
  }
  @media (min-width: 1024px) { .hero-foot { margin-top: 48px; padding-top: 32px; gap: 40px; } }
 
  .hero-foot p {
    font-size: 16px;
    line-height: 1.55;
    max-width: 56ch;
    color: var(--text-dim);
  }
  .hero-foot p b { color: var(--text); font-weight: 500; }
  .hero-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
 
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--line-strong);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s ease;
    line-height: 1;
    min-height: 44px;
    white-space: nowrap;
  }
  .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
 
  @media (min-width: 600px) {
    .hero-foot p { font-size: 17px; }
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-side { flex-direction: row; flex-wrap: wrap; border-right: none; padding-right: 0; padding-bottom: 20px; border-bottom: 1px solid var(--line); gap: 20px 28px; }
    .hero-side .stat { min-width: 110px; }
    .hero-foot { grid-template-columns: 1fr; gap: 24px; }
    .hero-actions { justify-content: flex-start; }
  }
  @media (max-width: 480px) {
    .hero h1 { line-height: 0.95; }
    .hero-side .stat .v { font-size: 22px; }
    .hero-actions { width: 100%; }
    .hero-actions .cta, .hero-actions .btn-ghost { flex: 1; justify-content: center; min-width: 140px; }
  }
 
  /* ============ TICKER ============ */
  .ticker {
    background: var(--orange);
    color: var(--bg);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--orange);
    border-bottom: 1px solid var(--orange-2);
    position: relative;
  }
  .ticker-track {
    display: flex;
    gap: 36px;
    white-space: nowrap;
    animation: ticker 38s linear infinite;
    will-change: transform;
  }
  .ticker-track span {
    font-family: var(--font-race);
    font-size: clamp(36px, 7vw, 88px);
    line-height: 1;
    letter-spacing: 0.005em;
    text-transform: uppercase;
  }
  .ticker-track .dot {
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
 
  /* ============ BUILT FOR ============ */
  .built-for {
    background: var(--bg);
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .built-for .wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .built-for .lead {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .built-for .lead::after {
    content: "";
    width: 28px; height: 1px; background: var(--orange);
  }
  .built-for .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
  }
  .built-for .tags span {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 7px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    line-height: 1;
    transition: all 0.25s ease;
    cursor: default;
  }
  .built-for .tags span:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 77, 0, 0.05);
  }
  @media (min-width: 768px) {
    .built-for .tags span { font-size: 18px; padding: 8px 14px; }
  }
  @media (max-width: 480px) {
    .built-for .lead { width: 100%; }
    .built-for .lead::after { display: none; }
    .built-for .tags span { font-size: 15px; padding: 6px 10px; }
  }
 
  /* ============ SECTIONS ============ */
  section.block { padding: 72px 0; border-bottom: 1px solid var(--line); position: relative; }
  @media (min-width: 600px) { section.block { padding: 88px 0; } }
  @media (min-width: 1024px) { section.block { padding: 120px 0; } }
 
  .section-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px 24px;
    align-items: baseline;
    margin-bottom: 40px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .section-head .num {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
  }
  .section-head h2 {
    font-family: var(--font-race);
    font-size: clamp(42px, 7.5vw, 100px);
    line-height: 0.95;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--text);
  }
  .section-head h2 em {
    color: var(--orange);
  }
  .section-head .meta {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    text-align: right;
  }
  @media (min-width: 1024px) { .section-head { margin-bottom: 56px; } }
  @media (max-width: 768px) {
    .section-head {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .section-head .meta { text-align: left; }
  }
  @media (max-width: 480px) {
    .section-head .meta { display: none; }
  }
 
  /* ============ SERVICES ============ */
  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .service {
    padding: 32px 22px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.3s ease;
    position: relative;
  }
  .service:last-child { border-right: none; }
  .service:first-child { padding-left: 0; }
  .service:last-child { padding-right: 0; }
  .service:hover { background: var(--bg-2); }
  .service::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.4s ease;
  }
  .service:hover::before { width: 100%; }
  .service .s-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .service .num-big {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 0.85;
    color: var(--orange);
  }
  .service .badge {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    padding: 4px 8px;
    border: 1px solid var(--line);
    border-radius: 2px;
    flex-shrink: 0;
  }
  .service h3 {
    font-family: var(--font-race);
    font-size: 30px;
    letter-spacing: 0.005em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text);
  }
  .service p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
  }
  .service ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
  .service ul li {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding-left: 18px;
    position: relative;
    line-height: 1.9;
  }
  .service ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--orange);
  }
  @media (min-width: 1024px) {
    .service { padding: 40px 28px; gap: 18px; }
    .service .num-big { font-size: 76px; }
    .service h3 { font-size: 36px; }
  }
  @media (max-width: 900px) {
    .services { grid-template-columns: 1fr; }
    .service { border-right: none !important; border-bottom: 1px solid var(--line); padding: 28px 0 !important; }
    .service:last-child { border-bottom: none; }
  }
 
  /* ============ APPROACH ============ */
  .approach {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
  }
  .approach-intro p {
    font-family: var(--font-race);
    font-size: clamp(28px, 4.2vw, 40px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    color: var(--text);
  }
  .approach-intro p em { color: var(--orange); }
  .steps { display: flex; flex-direction: column; }
  .step {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    align-items: center;
    transition: padding-left 0.3s ease;
  }
  .step:last-child { border-bottom: 1px solid var(--line); }
  .step:hover { padding-left: 12px; background: linear-gradient(90deg, var(--bg-2), transparent); }
  .step .ph {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--orange);
    line-height: 0.9;
  }
  .step h4 {
    font-family: var(--font-race);
    font-size: 26px;
    letter-spacing: 0.005em;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text);
  }
  .step p { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; }
  .step .lap {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: right;
    white-space: nowrap;
  }
  @media (min-width: 1024px) {
    .approach { gap: 80px; }
    .step { grid-template-columns: 120px 1fr auto; gap: 32px; padding: 28px 0; }
    .step .ph { font-size: 50px; }
    .step h4 { font-size: 32px; }
    .step p { font-size: 15px; }
  }
  @media (max-width: 900px) {
    .approach { grid-template-columns: 1fr; gap: 36px; }
    .step { grid-template-columns: auto 1fr; gap: 14px 18px; padding: 22px 0; }
    .step .lap { grid-column: 1 / -1; text-align: left; margin-top: 2px; padding-left: 56px; }
    .step:hover { padding-left: 0; background: none; }
  }
  @media (max-width: 480px) {
    .step { grid-template-columns: 1fr; gap: 6px; }
    .step .ph { font-size: 36px; }
    .step .lap { padding-left: 0; }
  }
 
  /* ============ WORK ============ */
  .work {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .project {
    cursor: pointer;
    border: 1px solid var(--line);
    background: var(--bg-2);
    transition: all 0.4s ease;
    border-radius: 2px;
    overflow: hidden;
  }
  .project:hover { border-color: var(--orange); transform: translateY(-4px); }
 
  .project-frame {
    aspect-ratio: 5 / 4;
    position: relative;
    overflow: hidden;
    background: var(--bg);
  }
  .project-frame .swatch {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    transition: transform 0.6s ease;
    position: relative;
  }
  .project:hover .swatch { transform: scale(1.03); }
  .project-frame .swatch.s1 { background: radial-gradient(circle at 30% 30%, #2a1f15, #0a0a0b); }
  .project-frame .swatch.s2 { background: radial-gradient(circle at 70% 40%, #FF4D00, #6b2200); }
  .project-frame .swatch.s3 { background: radial-gradient(circle at 40% 60%, #1F2937, #0a0a0b); }
  .project-frame .swatch.s4 { background: radial-gradient(circle at 50% 50%, #E8FF3F, #5a6b00); }
 
  .project-frame .mock {
    color: var(--text);
    text-align: center;
    padding: 24px;
    font-family: var(--font-race);
    font-size: clamp(34px, 5.2vw, 58px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    z-index: 2;
    position: relative;
  }
  .project-frame .swatch.s4 .mock { color: var(--bg); }
  .project-frame .mock .second {
    display: block;
    color: var(--orange);
    margin-top: 4px;
  }
  .project-frame .swatch.s4 .mock .second { color: var(--bg); opacity: 0.65; }
  .project-frame .mock small {
    display: block;
    font-family: var(--font-race);
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-top: 14px;
    opacity: 0.6;
    color: var(--text);
  }
  .project-frame .swatch.s4 .mock small { color: var(--bg); opacity: 0.55; }
  .project-frame .tag {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    color: var(--text);
    padding: 5px 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 3;
  }
  .project-frame .num-corner {
    position: absolute;
    bottom: 12px; right: 12px;
    font-family: var(--font-display);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    z-index: 3;
  }
 
  .project-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 16px 18px;
    border-top: 1px solid var(--line);
    align-items: center;
  }
  .project-meta h3 {
    font-family: var(--font-race);
    font-size: 22px;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--text);
  }
  .project-meta .year {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--orange);
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .project-meta p {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-mute);
    margin-top: 6px;
  }
  @media (min-width: 1024px) {
    .work { gap: 32px; }
    .project:nth-child(even) { transform: translateY(60px); }
    .project:nth-child(even):hover { transform: translateY(56px); }
    .project-meta { padding: 20px 24px; }
    .project-meta h3 { font-size: 26px; }
    .project-meta .year { font-size: 20px; }
  }
  @media (max-width: 768px) {
    .work { grid-template-columns: 1fr; }
  }
 
  /* ============ STATS ============ */
  .stats {
    background: var(--text);
    color: var(--bg);
    padding: 32px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }
  .stats::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
  }
  .stat .num-big {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 132px);
    line-height: 0.82;
    color: var(--bg);
  }
  .stat .num-big em { color: var(--orange); }
  .stat .num-big sup { font-size: 0.32em; vertical-align: top; color: var(--orange); }
  .stat .desc {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--bg);
    opacity: 0.6;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(10, 10, 11, 0.2);
  }
  @media (min-width: 600px) {
    .stats { padding: 40px 28px; gap: 28px; }
  }
  @media (min-width: 768px) {
    .stats { grid-template-columns: repeat(4, 1fr); padding: 48px 32px; gap: 32px; }
    .stat .desc { font-size: 11px; }
  }
  @media (min-width: 1024px) {
    .stats { padding: 56px 40px; }
  }
 
  /* ============ QUOTE ============ */
  .quote {
    padding: 40px 0;
    max-width: 1100px;
    margin: 0 auto;
  }
  .quote blockquote {
    font-family: var(--font-race);
    font-size: clamp(32px, 5.8vw, 80px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    color: var(--text);
  }
  .quote blockquote em { color: var(--orange); }
  .quote .q-mark {
    color: var(--orange);
    font-size: 1.1em;
  }
  .quote cite {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-style: normal;
    flex-wrap: wrap;
  }
  .quote cite::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
  }
  .quote cite strong { color: var(--text); font-weight: 600; }
  @media (min-width: 768px) {
    .quote { padding: 60px 0; }
    .quote cite { font-size: 12px; margin-top: 36px; }
    .quote cite::before { width: 48px; }
  }
 
  /* ============ FAQ ============ */
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 48px;
    border-top: 1px solid var(--line);
  }
  @media (min-width: 900px) {
    .faq-grid { grid-template-columns: 1fr 1fr; }
  }
  .faq {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: padding-left 0.3s ease;
  }
  .faq:hover { padding-left: 8px; }
  .faq-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
  }
  .faq-head .q-num {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    white-space: nowrap;
  }
  .faq-head h4 {
    font-family: var(--font-race);
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--text);
  }
  .faq-head h4 em { color: var(--orange); }
  .faq-head .plus {
    width: 28px; height: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--text-dim);
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  .faq.open .plus { background: var(--orange); border-color: var(--orange); color: var(--bg); transform: rotate(45deg); }
  .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
    padding-left: 44px;
  }
  .faq.open .faq-body { max-height: 500px; margin-top: 14px; }
  .faq-body p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.6;
    padding-bottom: 6px;
  }
  .faq-body p b { color: var(--text); font-weight: 500; }
  @media (min-width: 768px) {
    .faq-head h4 { font-size: 22px; }
    .faq-body p { font-size: 15px; }
  }
  @media (min-width: 1024px) {
    .faq { padding: 28px 0; }
    .faq-head h4 { font-size: 26px; }
  }
  @media (max-width: 480px) {
    .faq-body { padding-left: 0; }
    .faq-head h4 { font-size: 18px; }
  }
 
  /* ============ FINAL CTA ============ */
  .final-cta {
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(255, 77, 0, 0.25), transparent 60%),
      var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .final-cta::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    background: repeating-linear-gradient(
      90deg,
      var(--orange) 0 32px,
      var(--bg) 32px 64px
    );
  }
  .final-cta::before {
    content: "JC";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-race);
    font-size: clamp(220px, 38vw, 520px);
    color: rgba(255, 77, 0, 0.06);
    line-height: 0.8;
    pointer-events: none;
    letter-spacing: -0.02em;
  }
  .final-cta .label { color: var(--orange); margin-bottom: 18px; display: block; }
  .final-cta h2 {
    font-family: var(--font-race);
    font-size: clamp(48px, 11vw, 200px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    color: var(--text);
    position: relative;
    z-index: 2;
  }
  .final-cta h2 em {
    color: var(--orange);
    text-shadow: 0 0 60px rgba(255, 77, 0, 0.6);
  }
  .final-cta .sub {
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-dim);
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    padding: 0 12px;
  }
  .final-cta .actions {
    margin-top: 28px;
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 100%;
  }
  @media (min-width: 768px) {
    .final-cta { padding: 120px 0; }
    .final-cta .sub { font-size: 17px; padding: 0; }
    .final-cta .actions { margin-top: 36px; gap: 14px; }
  }
  @media (min-width: 1024px) {
    .final-cta { padding: 140px 0; }
  }
  @media (max-width: 480px) {
    .final-cta { padding: 72px 0; }
    .final-cta .actions { flex-direction: column; width: 100%; padding: 0 8px; }
    .final-cta .actions .cta, .final-cta .actions .btn-ghost { width: 100%; justify-content: center; }
  }
 
  /* ============ FOOTER ============ */
  footer {
    background: var(--bg);
    color: var(--text);
    padding: 56px 0 24px;
    border-top: 1px solid var(--line);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }
  .footer-brand p {
    margin-top: 18px;
    max-width: 42ch;
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.6;
  }
  .footer-col h5 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    color: var(--text);
    font-family: var(--font-race);
    font-size: 20px;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--orange); }
  .footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom .acid-tag { color: var(--acid); }
  @media (min-width: 600px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
    .footer-bottom { font-size: 10.5px; }
  }
  @media (min-width: 900px) {
    footer { padding: 72px 0 28px; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
  }
 
  /* ============ REVEAL ============ */
  .reveal { opacity: 0; transform: translateY(24px); animation: rev 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
  .reveal.d1 { animation-delay: 0.05s; }
  .reveal.d2 { animation-delay: 0.2s; }
  .reveal.d3 { animation-delay: 0.4s; }
  @keyframes rev { to { opacity: 1; transform: translateY(0); } }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }