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

    :root {
      --carbon:   #0A0A0A;
      --slate:    #141414;
      --mint:     #FFFFFF;
      --mint-dim: #CFCFCF;
      --offwhite: #F5F5F5;
      --muted:    #888888;
      --border:   rgba(255,255,255,0.08);
    }

    html.lenis, html.lenis body { height: auto; }
    .lenis.lenis-smooth { scroll-behavior: auto !important; }
    .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
    .lenis.lenis-stopped { overflow: clip; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--carbon);
      color: var(--offwhite);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 72px;
      transition: background 0.4s, backdrop-filter 0.4s;
    }
    nav.scrolled {
      background: rgba(45,52,54,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      display: inline-flex; align-items: center;
      text-decoration: none;
      line-height: 0;
    }
    .nav-logo img { height: 28px; width: auto; display: block; }
    .nav-links {
      display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--mint); }
    .nav-cta {
      background: var(--mint);
      color: var(--carbon) !important;
      padding: 10px 22px;
      border-radius: 4px;
      font-weight: 600 !important;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover { background: var(--mint-dim) !important; transform: translateY(-1px); }

    /* ── HERO ── */
    .hero-content, .hero-bg-grid, .hero-video { will-change: transform, opacity; }
    .scroll-fade { will-change: transform, opacity; }
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 0 5vw;
      position: relative;
      overflow: hidden;
      background: var(--carbon);
    }
    .hero-video {
      position: absolute; inset: 0; z-index: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center center;
      opacity: 0.72;
      filter: brightness(0.9) contrast(1.12) saturate(0.9);
      pointer-events: none;
    }
    .hero-video-overlay {
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(90deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.48) 44%, rgba(10,10,10,0.18) 100%),
        linear-gradient(180deg, rgba(10,10,10,0.12) 0%, rgba(10,10,10,0.02) 48%, rgba(10,10,10,0.28) 100%);
      pointer-events: none;
    }
    .hero-bg-grid {
      position: absolute; inset: 0; z-index: 1;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
    }
    .hero-glow {
      position: absolute; z-index: 1;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
      top: -100px; right: -100px;
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; max-width: 900px; display: flex; flex-direction: column; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--mint);
      margin-bottom: 28px;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.7s 0.2s forwards;
    }
    .hero-tag::before {
      content: ''; display: block;
      width: 28px; height: 1.5px; background: var(--mint);
    }
    h1.hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 110px);
      line-height: 0.92;
      letter-spacing: 0.02em;
      color: var(--offwhite);
      opacity: 0; transform: translateY(30px);
      animation: fadeUp 0.8s 0.35s forwards;
    }
    h1.hero-title em {
      font-style: normal;
      font-weight: 400;
      color: var(--mint);
      display: block;
    }
    .hero-sub {
      margin-top: 32px;
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--muted);
      max-width: 480px;
      font-weight: 300;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.8s 0.55s forwards;
    }
    .hero-actions {
      margin-top: 48px;
      display: flex; gap: 16px; align-items: center;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.8s 0.7s forwards;
    }
    .btn-primary {
      background: var(--mint);
      color: var(--carbon);
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none; border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      background: var(--mint-dim);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(255,255,255,0.18);
    }
    .btn-ghost {
      color: var(--offwhite);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: color 0.2s, gap 0.2s;
    }
    .btn-ghost:hover { color: var(--mint); gap: 12px; }
    .btn-ghost::after { content: '→'; }

    .hero-scroll-hint {
      position: absolute; bottom: 40px; left: 5vw; z-index: 2;
      display: flex; align-items: center; gap: 12px;
      font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted);
      opacity: 0; animation: fadeUp 0.8s 1.2s forwards;
    }
    .scroll-line {
      width: 40px; height: 1px; background: var(--muted);
      position: relative; overflow: hidden;
    }
    .scroll-line::after {
      content: '';
      position: absolute; top: 0; left: -100%;
      width: 100%; height: 100%;
      background: var(--mint);
      animation: slideRight 1.8s 1.5s infinite;
    }

    /* ── MARQUEE ── */
    .marquee-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      padding: 16px 0;
      background: var(--slate);
    }
    .marquee-track {
      display: flex; gap: 0;
      animation: marquee 24s linear infinite;
      width: max-content;
    }
    .marquee-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.15em;
      color: var(--muted);
      padding: 0 40px;
      display: flex; align-items: center; gap: 40px;
      white-space: nowrap;
    }
    .marquee-item span { color: var(--mint); font-size: 0.6rem; }

    /* ── SECTION BASE ── */
    section { padding: 120px 5vw; }
    .section-tag {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--mint);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 20px;
    }
    .section-tag::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--mint); }
    h2.section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 7vw, 96px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--offwhite);
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.7;
      max-width: 500px;
    }

    /* ── SERVICES ── */
    #services .services-grid {
      margin-top: 72px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2px;
    }
    .service-card {
      background: var(--slate);
      padding: 48px 40px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--mint);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { border-color: rgba(255,255,255,0.18); }
    .service-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: rgba(255,255,255,0.06);
      line-height: 1;
      margin-bottom: 24px;
      transition: color 0.3s;
    }
    .service-card:hover .service-num { color: rgba(255,255,255,0.18); }
    .service-icon {
      width: 44px; height: 44px;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      font-size: 1.2rem;
    }
    .service-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.05em;
      color: var(--offwhite);
      margin-bottom: 12px;
    }
    .service-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.75;
      font-weight: 300;
    }
    .service-arrow {
      margin-top: 32px;
      color: var(--mint);
      font-size: 1.2rem;
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

    /* ── WORK / PROJECT SCROLLYTELLING ── */
    #work { background: var(--slate); padding: 120px 0 0; }
    #work > .work-header {
      padding: 0 5vw;
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 64px;
      flex-wrap: wrap; gap: 24px;
    }
    .project-scroll {
      position: relative;
      height: 260vh;
    }
    .project-pin {
      position: sticky; top: 0;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .project-bg {
      position: absolute; inset: 0;
      z-index: 0;
      will-change: transform, opacity;
    }
    .project-grid-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 70px 70px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
      opacity: 0.5;
    }
    .project-scroll[data-theme="violet"] .project-bg { background: radial-gradient(ellipse 60% 50% at 50% 50%, #2A2A2A 0%, #141414 70%, var(--slate) 100%); }
    .project-scroll[data-theme="green"]  .project-bg { background: radial-gradient(ellipse 60% 50% at 50% 50%, #1F1F1F 0%, #0C0C0C 70%, var(--slate) 100%); }

    .project-stage {
      position: absolute; inset: 0;
      z-index: 1;
    }
    .project-logo-wrap {
      position: absolute;
      left: 50%; top: 50%;
      width: clamp(220px, 32vw, 420px);
      max-height: 70vh;
      transform: translate(-50%, -50%) scale(var(--logo-scale, 2.6));
      opacity: var(--logo-op, 0);
      will-change: transform, opacity, left, top;
      transition: none;
    }
    .project-scroll[data-project="octron"] .project-logo-wrap {
      width: clamp(160px, 22vw, 300px);
    }
    .project-logo-wrap svg {
      width: 100%; height: auto;
      display: block;
    }
    .project-info {
      position: absolute;
      left: 50%; top: 50%;
      width: min(440px, 42vw);
      transform: translate(-50%, -50%);
      opacity: var(--info-op, 0);
      will-change: opacity, left, top;
    }
    .project-index {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--mint);
      font-weight: 600;
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 24px;
    }
    .project-index::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--mint); }
    .project-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(56px, 7vw, 96px);
      line-height: 0.95;
      letter-spacing: 0.03em;
      color: var(--offwhite);
      margin-bottom: 14px;
    }
    .project-kicker {
      font-size: 0.85rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 500;
      margin-bottom: 28px;
    }
    .project-desc {
      font-size: 1.02rem;
      line-height: 1.7;
      color: var(--offwhite);
      font-weight: 300;
      max-width: 520px;
      margin-bottom: 28px;
    }
    .project-features {
      list-style: none;
      display: flex; flex-direction: column; gap: 10px;
      max-width: 520px;
    }
    .project-features li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .project-features li::before {
      content: ''; flex-shrink: 0;
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--mint);
      margin-top: 8px;
    }
    .project-feature-row { display: contents; }
    .work-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }
    .work-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      background: var(--carbon);
      border: 1px solid var(--border);
      transition: border-color 0.3s, transform 0.3s;
    }
    .work-item:hover { border-color: rgba(255,255,255,0.28); transform: translateY(-4px); }
    .work-item:nth-child(1) { grid-column: span 7; }
    .work-item:nth-child(2) { grid-column: span 5; }
    .work-thumb {
      width: 100%;
      aspect-ratio: 16/10;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .work-item:nth-child(1) .work-thumb { background: linear-gradient(135deg, #141414 0%, #2A2A2A 100%); }
    .work-item:nth-child(2) .work-thumb { background: linear-gradient(135deg, #0C0C0C 0%, #1F1F1F 100%); }
    .work-logo { position: relative; z-index: 1; height: 38%; max-width: 60%; transition: transform 0.5s cubic-bezier(.2,.6,.2,1); }
    .work-item:hover .work-logo { transform: scale(1.06); }
    .work-logo svg { width: 100%; height: 100%; display: block; }
    .work-body { padding: 28px 28px 30px; }
    .work-tagline {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.65;
      margin-top: 14px;
      font-weight: 300;
    }
    .work-placeholder {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 10px; width: 100%; height: 100%;
      padding: 32px;
    }
    .work-placeholder-stripe {
      width: 100%; height: 100%;
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.015) 8px,
        rgba(255,255,255,0.015) 16px
      );
    }
    .work-placeholder-label {
      position: relative; z-index: 1;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      text-align: center;
      font-weight: 400;
    }
    .work-meta-row {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
    }
    .work-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.06em;
      color: var(--offwhite);
    }
    .work-tag {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mint);
      background: rgba(255,255,255,0.06);
      padding: 4px 10px;
      border-radius: 3px;
      border: 1px solid rgba(255,255,255,0.18);
      white-space: nowrap;
    }

    /* ── STATS ── */
    #stats {
      background: var(--carbon);
      padding: 80px 5vw;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      padding: 40px;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 6vw, 80px);
      color: var(--offwhite);
      line-height: 1;
      display: flex; align-items: baseline; justify-content: center; gap: 4px;
    }
    .stat-num sup { font-size: 0.45em; color: var(--mint); }
    .stat-label {
      font-size: 0.8rem;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 500;
      margin-top: 8px;
    }

    /* ── PROCESS (sticky stack) ── */
    #process .process-steps {
      margin-top: 80px;
      display: flex; flex-direction: column; gap: 0;
      position: relative;
    }
    .process-step {
      display: grid;
      grid-template-columns: 80px 1fr auto;
      align-items: start;
      padding: 40px 48px;
      gap: 32px;
      cursor: default;
      position: sticky;
      background: var(--carbon);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: 0 -1px 0 rgba(255,255,255,0.02), 0 30px 60px -30px rgba(0,0,0,0.6);
      margin-bottom: 24px;
      transform-origin: 50% 0%;
      transition: transform 0.4s cubic-bezier(.2,.6,.2,1), background 0.3s;
      will-change: transform;
    }
    .process-step:nth-child(1) { top: 110px; }
    .process-step:nth-child(2) { top: 130px; }
    .process-step:nth-child(3) { top: 150px; }
    .process-step:nth-child(4) { top: 170px; }
    .process-step:hover { background: rgba(255,255,255,0.04); }
    .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: rgba(255,255,255,0.18);
      line-height: 1;
      padding-top: 4px;
      transition: color 0.3s;
    }
    .process-step:hover .step-num { color: var(--mint); }
    .step-body { flex: 1; }
    .step-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 0.04em;
      color: var(--offwhite);
      margin-bottom: 10px;
    }
    .step-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.75;
      font-weight: 300;
      max-width: 540px;
    }
    .step-duration {
      font-size: 0.75rem;
      color: var(--mint);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 4px;
      white-space: nowrap;
    }

    /* ── CTA ── */
    #cta {
      background: var(--slate);
      text-align: center;
      padding: 160px 5vw;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: 'START';
      position: absolute;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(200px, 30vw, 420px);
      color: rgba(255,255,255,0.02);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }
    #cta .cta-tag { justify-content: center; }
    #cta h2.section-title { margin: 0 auto 24px; }
    #cta .section-sub { margin: 0 auto 48px; text-align: center; }
    .cta-form {
      display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .cta-input {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 16px 20px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--offwhite);
      outline: none;
      transition: border-color 0.2s;
    }
    .cta-input::placeholder { color: var(--muted); }
    .cta-input:focus { border-color: var(--mint); }

    /* ── FOOTER ── */
    footer {
      padding: 60px 5vw 40px;
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: start;
      gap: 40px;
    }
    .footer-logo {
      display: inline-block;
      margin-bottom: 16px;
      line-height: 0;
    }
    .footer-logo img { height: 36px; width: auto; display: block; }
    .footer-tagline {
      font-size: 0.85rem;
      color: var(--muted);
      max-width: 320px;
      line-height: 1.65;
      font-weight: 300;
    }
    .footer-links {
      display: flex; gap: 32px; list-style: none;
      flex-wrap: wrap; justify-content: flex-end;
    }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--mint); }
    .footer-bottom {
      padding: 20px 5vw;
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid var(--border);
      flex-wrap: wrap; gap: 12px;
    }
    .footer-copy {
      font-size: 0.75rem;
      color: var(--muted);
      font-weight: 300;
    }
    .footer-social {
      display: flex; gap: 16px;
    }
    .social-link {
      width: 34px; height: 34px;
      border: 1px solid var(--border);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      font-size: 0.8rem;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .social-link:hover { border-color: var(--mint); color: var(--mint); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @keyframes slideRight {
      from { left: -100%; }
      to { left: 100%; }
    }
    @keyframes countUp {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .project-info { width: min(86vw, 520px); }
      .project-logo-wrap { width: clamp(160px, 50vw, 260px); }
      .project-scroll { height: 240vh; }
      .project-name { font-size: clamp(44px, 10vw, 72px); }
    }
@media (max-width: 768px) {
  nav {
    position: absolute;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
  }
  nav.scrolled {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
  }
  .nav-links { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      footer { grid-template-columns: 1fr; }
      .footer-links { justify-content: flex-start; }
      .process-step { grid-template-columns: 48px 1fr; }
      .step-duration { display: none; }
      .cta-form { flex-direction: column; }
      body { cursor: auto; }
      #cursor-dot, #cursor-ring { display: none; }
    }
