  :root {
    --canvas: #0d0d0d;
    --bg: #0d0d0d;
    --bg-alt: #1a1a1a;
    --surface-2: #252525;
    --cyan: #00e5ff;
    --cyan-dark: #00b8cc;
    --orange: #ff6b35;
    --fg: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent: #00e5ff;
    --line: #1f1f1f;
    --line-bright: #313131;
    --font-display: 'Anton', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--canvas);
    color: var(--fg);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
  }

  ::-webkit-scrollbar { width: 3px; background: var(--canvas); }
  ::-webkit-scrollbar-thumb { background: var(--surface-2); }

  a { color: inherit; }

  /* ===== ACCESSIBILITY / SEO ===== */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ===== FILM GRAIN ===== */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ===== KEYFRAMES ===== */
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
  @keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes logoBlink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

  /* ===== CUSTOM CURSOR ===== */
  .cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.7);
    top: 0; left: 0;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.35);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    top: 0; left: 0;
  }
  @media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
  }

  /* ===== NAV ===== */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
    height: 60px;
    background: rgba(13,13,13,0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s;
  }
  .nav.scrolled { background: rgba(13,13,13,0.98); }
  .nav-logo {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg);
    text-decoration: none;
  }
  .nav-logo span { color: var(--cyan); }
  .nav-links {
    display: flex;
    list-style: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .nav-links li { border-right: 1px solid var(--line); }
  .nav-links a {
    display: block;
    padding: 0 24px;
    height: 60px;
    line-height: 60px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
  }
  .nav-links a:hover { color: var(--cyan); background: rgba(0,229,255,0.04); }
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
  }
  .nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }
  .nav-status .dot {
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74,222,128,0.7);
    animation: pulse 2.5s infinite;
    display: inline-block;
  }
  .nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--cyan);
    color: var(--canvas);
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.15s;
  }
  .nav-cta-btn:hover { background: var(--cyan-dark); }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
  }
  .hero-meta > div { padding: 20px 40px; border-right: 1px solid var(--line); }
  .hero-meta > div:last-child { border-right: none; }
  .hero-meta-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .hero-meta-value {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
  }

  .hero-stage {
    position: relative;
    width: 100%;
    height: 62vh;
    min-height: 360px;
    background: var(--canvas);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .stage-scanlines {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 90;
    background: repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,0.06) 2px,rgba(0,0,0,0.06) 3px);
  }
  .stage-grain {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 100;
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .stage-rec {
    position: absolute; top: 4%; right: 4%;
    font-family: 'Space Mono', monospace;
    font-size: clamp(8px, 0.9vw, 13px);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #2a2a2a;
    z-index: 50;
    pointer-events: none;
  }
  .stage-atl {
    position: absolute; bottom: 5%; left: 5%;
    font-family: 'Space Mono', monospace;
    font-size: clamp(8px, 0.85vw, 12px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2a2a2a;
    z-index: 50;
  }
  .stage-flash {
    position: absolute; inset: 0;
    background: var(--canvas);
    z-index: 80;
    pointer-events: none;
    opacity: 0;
  }
  .stage-beat {
    position: absolute; inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6% 8%;
    z-index: 10;
  }
  .stage-kicker {
    font-family: 'Space Mono', monospace;
    font-size: clamp(9px, 1.1vw, 16px);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 1.5vw;
    opacity: 0;
  }
  .stage-text {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 9.5vw, 148px);
    line-height: 0.88;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #f0ede5;
  }
  .stage-accent {
    height: 3px;
    background: var(--cyan);
    width: 0;
    margin-top: 0.8vw;
    transition: width 0.4s cubic-bezier(0.2,0.8,0.2,1);
    display: none;
  }
  .stage-logo {
    position: absolute; inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
  }
  .stage-logo-text {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 7.5vw, 120px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f0ede5;
    line-height: 1;
    white-space: nowrap;
  }
  .stage-logo-caret {
    display: inline-block;
    width: 0.06em;
    height: 0.85em;
    background: var(--cyan);
    vertical-align: middle;
    margin-left: 4px;
    animation: logoBlink 0.6s steps(1) infinite;
  }
  .stage-logo-rule {
    width: 0; height: 1px;
    background: var(--cyan);
    margin: 1.5vw auto 0;
    transition: width 0.6s cubic-bezier(0.2,0.8,0.2,1);
  }
  .stage-logo-tag {
    font-family: 'Space Mono', monospace;
    font-size: clamp(9px, 1.1vw, 16px);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #555;
    margin-top: 2vw;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .hero-foot {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 48px;
    align-items: end;
    padding: 32px 40px;
    border-top: 1px solid var(--line);
  }
  .hero-foot p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 460px;
  }
  .hero-stats { display: flex; gap: 48px; }
  .hero-stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: var(--fg);
  }
  .hero-stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
  }
  .btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--cyan);
    color: var(--canvas);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    transition: background 0.15s;
    white-space: nowrap;
  }
  .btn-pill:hover { background: var(--cyan-dark); }

  /* ===== MARQUEE ===== */
  .marquee {
    background: var(--cyan);
    color: var(--canvas);
    padding: 14px 0;
    overflow: hidden;
    flex-shrink: 0;
  }
  .marquee-track {
    display: flex;
    animation: marquee-scroll 40s linear infinite;
    white-space: nowrap;
  }
  .marquee-track span {
    display: inline-flex;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0 32px;
    flex-shrink: 0;
  }
  .marquee-track span i { color: rgba(0,0,0,0.35); margin-left: 32px; font-style: normal; }

  /* ===== SECTION HEADER (shared) ===== */
  .sec { padding: 100px 40px; border-bottom: 1px solid var(--line); }
  .sec-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 48px;
  }
  .sec-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 8px;
  }
  .sec-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--fg);
  }
  .sec-title .muted { color: var(--text-secondary); }
  .sec-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 560px;
    padding-top: 8px;
  }

  /* ===== SERVICES ===== */
  .service-rows { display: flex; flex-direction: column; }
  .service-row {
    display: grid;
    grid-template-columns: 72px 240px 1fr auto 24px;
    gap: 40px;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: padding-left 0.25s ease;
    text-decoration: none;
    color: inherit;
  }
  .service-row:hover { padding-left: 16px; }
  .service-idx-text {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.15s;
  }
  .service-row:hover .service-idx-text { color: var(--cyan); }
  .service-name {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--fg);
  }
  .service-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 480px;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
  }
  .service-tags span {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--line-bright);
    color: var(--text-muted);
    border-radius: 2px;
  }
  .service-arrow-icon {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.15s;
  }
  .service-row:hover .service-arrow-icon { transform: translateX(6px); color: var(--cyan); }

  /* ===== WORK ===== */
  .work-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
  }
  .work-head-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 8px;
  }
  .work-head-copy {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .work-filters { display: flex; gap: 8px; flex-wrap: wrap; }
  .work-filter {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--line-bright);
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
    border-radius: 2px;
    transition: color 0.15s, border-color 0.15s;
  }
  .work-filter:hover { color: var(--fg); border-color: var(--fg); }
  .work-filter.active { color: var(--cyan); border-color: var(--cyan); }
  .work-filter.active:hover { color: var(--cyan); border-color: var(--cyan); }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .work-cell {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-alt);
  }
  .work-cell-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .work-cell:hover .work-cell-img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.04);
  }
  .work-cell-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .work-cell:hover .work-cell-overlay { opacity: 1; }
  .work-play {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 20px;
    padding-left: 4px;
  }
  .work-badge {
    position: absolute;
    top: 12px; left: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--canvas);
    background: var(--cyan);
    padding: 4px 8px;
    font-weight: 700;
    z-index: 2;
    border-radius: 2px;
  }
  .work-cell-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 16px 14px;
    background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 100%);
    transform: translateY(4px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 2;
  }
  .work-cell:hover .work-cell-info { opacity: 1; transform: translateY(0); }
  .work-cell-info div {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--fg);
    line-height: 1;
  }

  /* ===== WORK MODAL ===== */
  .work-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  .work-modal[hidden] { display: none; }
  .work-modal-inner { width: 100%; max-width: 1000px; position: relative; }
  .work-modal-close {
    position: absolute;
    top: -44px; right: 0;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
  }
  .work-modal-close:hover { color: var(--fg); }
  .work-modal-frame { position: relative; padding-bottom: 56.25%; height: 0; }
  .work-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* ===== PROCESS ===== */
  .process { background: var(--bg-alt); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }
  .process-cell {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.2s;
  }
  .process-cell:hover { background: rgba(0,229,255,0.03); }
  .process-num {
    font-family: 'Anton', sans-serif;
    font-size: 72px;
    line-height: 0.85;
    color: var(--cyan);
    opacity: 0.4;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
  }
  .process-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 4px 10px;
    border: 1px solid var(--line-bright);
    border-radius: 2px;
    display: inline-block;
  }
  .process-cell h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
    margin: 32px 0 12px;
    color: var(--fg);
  }
  .process-cell p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.55;
  }

  /* ===== PACKAGES ===== */
  .pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .package-card {
    background: var(--bg-alt);
    border: 1px solid var(--line-bright);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: border-color 0.2s;
  }
  .package-card:hover { border-color: var(--cyan); }
  .package-card.featured { background: var(--canvas); border: 1px solid var(--cyan); }
  .package-tag {
    position: absolute;
    top: -1px; right: 32px;
    background: var(--cyan);
    color: var(--canvas);
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
  }
  .package-tier {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
  }
  .package-name {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--fg);
  }
  .package-price { display: flex; align-items: baseline; gap: 4px; }
  .package-price b {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    letter-spacing: 0.02em;
    color: var(--fg);
    line-height: 1;
    font-weight: 400;
  }
  .package-price span {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
  }
  .package-div { height: 1px; background: var(--line); }
  .package-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .package-feats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.45;
  }
  .package-feats li b {
    color: var(--cyan);
    flex-shrink: 0;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
  }
  .package-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    border: 1px solid var(--line-bright);
    color: var(--text-secondary);
    background: transparent;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
  }
  .package-cta:hover { color: var(--canvas); background: var(--cyan); border-color: var(--cyan); }
  .package-card.featured .package-cta {
    border: 1px solid var(--cyan);
    color: var(--canvas);
    background: var(--cyan);
  }

  /* ===== CTA ===== */
  .cta-sec {
    padding: 140px 40px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    position: relative;
  }
  .cta-ghost {
    position: absolute;
    bottom: -40px; right: -20px;
    font-family: 'Anton', sans-serif;
    font-size: 280px;
    line-height: 0.8;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--bg-alt);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
  }
  .cta-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 32px;
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    gap: 16px;
  }
  .cta-label i { width: 40px; height: 1px; background: var(--cyan); display: inline-block; }
  .cta-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(56px, 10vw, 160px);
    line-height: 0.88;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: var(--fg);
    position: relative;
    z-index: 1;
  }
  .cta-title .w { display: inline-block; overflow: hidden; margin-right: 0.22em; }
  .cta-title .w:last-child { margin-right: 0; }
  .cta-title .word-inner { display: inline-block; }
  .cta-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
  }
  .cta-row p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    max-width: 540px;
    color: var(--text-secondary);
    line-height: 1.55;
    font-weight: 300;
  }
  .cta-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .cta-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .cta-meta-item .lbl {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .cta-meta-item .val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
  }
  .cta-meta-item .val a {
    color: var(--cyan);
    text-decoration: none;
  }

  /* ===== CONTACT FORM ===== */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .contact-field { position: relative; display: flex; flex-direction: column; }
  .contact-field label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .contact-field label .req { color: var(--cyan); margin-left: 4px; }
  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-bright);
    padding: 8px 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    color: var(--fg);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
  }
  .contact-field textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.55;
    font-family: 'Space Grotesk', sans-serif;
  }
  .contact-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23888' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 18px;
    padding-right: 26px;
    cursor: pointer;
  }
  .contact-field select option { background: var(--canvas); color: var(--fg); }
  .contact-field input::placeholder,
  .contact-field textarea::placeholder { color: var(--text-muted); }
  .contact-field input:focus,
  .contact-field select:focus,
  .contact-field textarea:focus { border-bottom-color: var(--cyan); }
  .contact-field input:-webkit-autofill,
  .contact-field textarea:-webkit-autofill {
    -webkit-text-fill-color: var(--fg);
    -webkit-box-shadow: 0 0 0 1000px var(--canvas) inset;
    transition: background-color 9999s ease-in-out 0s;
  }
  .contact-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  .contact-submit-row .meta {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .contact-error {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: none;
  }
  .contact-error.show { display: block; }
  .contact-success {
    display: none;
    padding: 48px 32px;
    border: 1px solid var(--cyan);
    text-align: center;
    background: rgba(0,229,255,0.03);
  }
  .contact-success.show { display: block; }
  .contact-success .ok-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
  }
  .contact-success .ok-title {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--fg);
    margin-bottom: 14px;
    line-height: 1;
  }
  .contact-success .ok-copy {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.55;
    max-width: 420px;
    margin: 0 auto;
  }

  /* ===== FOOTER ===== */
  footer { padding: 60px 40px 32px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
  }
  .footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--fg);
  }
  .footer-logo span { color: var(--cyan); }
  .footer-blurb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 340px;
    line-height: 1.6;
  }
  .footer-col h4 {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--fg); }
  .footer-bar {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ===== PRELOADER ===== */
  .preloader {
    position: fixed;
    inset: 0;
    background: var(--canvas);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
  }
  .preloader-logo {
    font-family: 'Anton', sans-serif;
    font-size: clamp(32px, 6vw, 80px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg);
    line-height: 1;
  }
  .preloader-logo span { color: var(--cyan); }
  .preloader-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
  }
  .preloader-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .preloader-count {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 8vw, 120px);
    line-height: 1;
    color: var(--fg);
    letter-spacing: 0.02em;
  }
  .preloader-track { height: 1px; background: var(--line); position: relative; overflow: hidden; }
  .preloader-fill { height: 100%; width: 0%; background: var(--cyan); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .nav { padding: 0 20px; grid-template-columns: 1fr auto; }
    .nav-links { display: none; }
    .nav-status { display: none; }
    .hero-meta { grid-template-columns: repeat(2, 1fr); }
    .hero-meta > div:nth-child(2) { border-right: none; }
    .hero-foot { grid-template-columns: 1fr; gap: 28px; }
    .sec, .process, .cta-sec { padding: 64px 20px; }
    .sec-head, .work-head { grid-template-columns: 1fr; gap: 24px; }
    .service-row { grid-template-columns: 48px 1fr; gap: 16px; }
    .service-desc, .service-tags, .service-arrow-icon { display: none; }
    .work-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .pkg-grid { grid-template-columns: 1fr; }
    .cta-row { grid-template-columns: 1fr; gap: 28px; }
    .contact-form-row { grid-template-columns: 1fr; gap: 18px; }
    .contact-submit-row { justify-content: flex-start; }
    .contact-success { padding: 32px 20px; }
    .contact-success .ok-title { font-size: 28px; }
    .cta-ghost { font-size: 120px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .page-hero { padding: 100px 20px 56px; }
    .offerings-grid { grid-template-columns: 1fr !important; }
    .restaurants-head { grid-template-columns: 1fr !important; gap: 24px !important; }
  }

  /* ===== PAGE HERO (service landing pages) ===== */
  .page-hero {
    padding: 160px 40px 80px;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .page-hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .page-hero-eyebrow i {
    width: 40px;
    height: 1px;
    background: var(--cyan);
    display: inline-block;
  }
  .page-hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(56px, 9vw, 144px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--fg);
    max-width: 1200px;
    margin-bottom: 40px;
  }
  .page-hero-title .muted { color: var(--text-secondary); }
  .page-hero-lede {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 760px;
  }

  /* ===== OFFERINGS GRID (restaurants page) ===== */
  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }
  .offering-card {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
  }
  .offering-card:hover { background: rgba(0,229,255,0.03); }
  .offering-num {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    line-height: 0.85;
    color: var(--cyan);
    opacity: 0.4;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }
  .offering-name {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--fg);
  }
  .offering-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.55;
  }

  /* ===== RESTAURANTS HEAD (shared section head variant) ===== */
  .restaurants-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
    margin-bottom: 48px;
  }

  /* ===== CASE STUDY ===== */
  .case-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .case-meta > div {
    padding: 20px 40px;
    border-right: 1px solid var(--line);
  }
  .case-meta > div:last-child { border-right: none; }
  .case-meta-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .case-meta-value {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
  }

  .case-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }
  .case-stat {
    padding: 48px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    transition: background 0.2s;
  }
  .case-stat:hover { background: rgba(0,229,255,0.03); }
  .case-stat-num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(52px, 6.5vw, 96px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--cyan);
    margin-bottom: 24px;
  }
  .case-stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  .case-section {
    padding: 100px 40px;
    border-bottom: 1px solid var(--line);
  }
  .case-section-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 24px;
  }
  .case-section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--fg);
    max-width: 900px;
    margin-bottom: 32px;
  }
  .case-section-title .muted { color: var(--text-secondary); }
  .case-section p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 760px;
    margin-bottom: 20px;
  }
  .case-section p strong {
    color: var(--fg);
    font-weight: 500;
  }
  .case-section p:last-child { margin-bottom: 0; }

  .case-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 48px;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }
  .case-pillar {
    padding: 32px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.2s;
  }
  .case-pillar:hover { background: rgba(0,229,255,0.03); }
  .case-pillar-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
  }
  .case-pillar h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--fg);
  }
  .case-pillar p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: none;
    margin-bottom: 0;
  }

  .case-produce-list {
    list-style: none;
    max-width: 820px;
    margin-top: 32px;
    padding: 0;
  }
  .case-produce-list li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .case-produce-list li::before {
    content: '—';
    color: var(--cyan);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    flex-shrink: 0;
  }
  .case-produce-list li strong {
    color: var(--fg);
    font-weight: 500;
    margin-right: 4px;
  }

  .case-results {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
    border-top: 1px solid var(--line);
  }
  .case-result {
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
  }
  .case-result-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    padding-top: 4px;
  }
  .case-result p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: none;
    margin-bottom: 0;
  }
  .case-result p strong { color: var(--fg); font-weight: 500; }

  .pull-quote {
    padding: 120px 40px;
    text-align: center;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
  }
  .pull-quote blockquote {
    font-family: 'Anton', sans-serif;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: var(--fg);
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 400;
    quotes: '\201C' '\201D';
  }
  .pull-quote blockquote::before { content: open-quote; color: var(--cyan); margin-right: 4px; }
  .pull-quote blockquote::after { content: close-quote; color: var(--cyan); margin-left: 4px; }
  .pull-quote cite {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    font-style: normal;
    margin-top: 40px;
    display: block;
  }

  .case-stats.case-stats-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ===== REEL TIMELINE (Rotimi case study) ===== */
  .reel-timeline {
    margin-top: 40px;
    border-top: 1px solid var(--line);
  }
  .reel {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 48px;
    padding: 40px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: padding-left 0.25s ease;
  }
  .reel:hover { padding-left: 16px; }
  .reel-num-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .reel-num-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .reel-num {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    line-height: 0.9;
    color: var(--cyan);
    letter-spacing: 0.02em;
  }
  .reel-body { padding-top: 8px; }
  .reel-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.05;
    color: var(--fg);
    margin-bottom: 10px;
  }
  .reel-kicker {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
  }
  .reel p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 0;
  }
  .reel p strong { color: var(--fg); font-weight: 500; }

  /* Scope column variant — reuses case-pillars but adds bullet list */
  .scope-pillar ul {
    list-style: none;
    margin-top: 12px;
    padding: 0;
  }
  .scope-pillar li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.55;
    padding: 6px 0;
    display: flex;
    gap: 10px;
  }
  .scope-pillar li::before {
    content: '—';
    color: var(--cyan);
    font-family: 'Space Mono', monospace;
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .case-meta { grid-template-columns: 1fr 1fr; }
    .case-meta > div:nth-child(2) { border-right: none; }
    .case-stats,
    .case-stats.case-stats-3 { grid-template-columns: 1fr 1fr; }
    .case-pillars { grid-template-columns: 1fr; }
    .case-result { grid-template-columns: 1fr; gap: 12px; }
    .case-section { padding: 64px 20px; }
    .pull-quote { padding: 64px 20px; }
    .reel { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
    .reel:hover { padding-left: 0; }
    .reel-num { font-size: 42px; }
  }
