    :root {
      --black: #07070a;
      --void: #030305;
      --red: #ff3b30;
      --red-glow: rgba(255, 59, 48, 0.4);
      --amber: #ff8a4c;
      --cream: #f6f3ec;
      --cream-dim: #9d9a95;
      --glass: rgba(255, 255, 255, 0.03);
      --glass-border: rgba(255, 255, 255, 0.08);
      --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: auto; }

    body {
      background-color: var(--black);
      color: var(--cream);
      font-family: 'Archivo', sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Page intro curtain ── */
    #intro-curtain {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--void);
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
      animation: curtain-exit 3.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
    }
    @keyframes curtain-exit {
      0%,  56% { transform: translateY(0); }
      58%      { background: rgba(255,59,48,0.07); }
      60%      { background: var(--void); }
      100%     { transform: translateY(-100%); }
    }

    /* Red laser scan line sweeping top → bottom */
    #intro-curtain::before {
      content: '';
      position: absolute; left: 0; right: 0;
      height: 2px; top: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,59,48,0.7) 25%, #fff 50%, rgba(255,59,48,0.7) 75%, transparent 100%);
      box-shadow: 0 0 18px 7px rgba(255,59,48,0.6), 0 0 50px 18px rgba(255,59,48,0.22);
      animation: scan-down 0.7s 0.1s ease-in-out forwards;
      opacity: 0;
    }
    @keyframes scan-down {
      0%   { top: 0;   opacity: 0; }
      6%   { opacity: 1; }
      90%  { opacity: 1; }
      100% { top: 100vh; opacity: 0; }
    }

    /* Logo: glitch burst in → settle → pulse out */
    #intro-curtain .curtain-logo {
      width: min(220px, 55vw);
      animation:
        logo-glitch-in  1.1s 0.32s cubic-bezier(0.16,1,0.3,1) both,
        logo-pulse-out  0.55s 1.7s ease-in-out forwards;
    }
    @keyframes logo-glitch-in {
      0%   { opacity: 0; transform: scale(0.82) translateY(18px); filter: blur(22px); }
      24%  { opacity: 0; transform: scale(0.82) translateY(18px); filter: blur(22px); }
      /* Scan line hits center → WHITE BURST */
      33%  { opacity: 1; transform: scale(1.16) translateX(-9px); filter: blur(0) brightness(8) saturate(0); }
      /* First glitch snap */
      43%  { opacity: 1; transform: scale(0.94) translateX(6px);  filter: blur(0) brightness(0.6) hue-rotate(20deg); }
      /* Second glitch snap */
      53%  { opacity: 1; transform: scale(1.04) translateX(-3px); filter: blur(0) brightness(1.6); }
      /* Settle */
      65%  { opacity: 1; transform: scale(1)    translateX(0);    filter: blur(0) brightness(1); }
      /* Red glow settle */
      82%  { filter: drop-shadow(0 0 28px rgba(255,59,48,0.55)); }
      100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 22px rgba(255,59,48,0.3)); }
    }
    /* Pre-exit: logo flares bright then curtain lifts */
    @keyframes logo-pulse-out {
      0%   { filter: drop-shadow(0 0 22px rgba(255,59,48,0.3)); transform: scale(1); }
      40%  { filter: drop-shadow(0 0 70px rgba(255,59,48,1)) brightness(2.2); transform: scale(1.07); }
      75%  { filter: drop-shadow(0 0 16px rgba(255,59,48,0.2)); transform: scale(0.97); }
      100% { filter: drop-shadow(0 0 22px rgba(255,59,48,0.3)); transform: scale(1); }
    }

    /* ── Scroll progress ── */
    #scroll-progress {
      position: fixed; top: 0; left: 0; height: 2px; width: 0%;
      background: linear-gradient(90deg, var(--red), var(--amber));
      z-index: 9000;
      box-shadow: 0 0 10px var(--red-glow);
      transition: width 0.05s linear;
    }

    /* ── Background ── */
    .bg-canvas {
      position: fixed; inset: 0; z-index: -1;
      background: var(--black);
    }

    /* Animated film grain */
    .noise {
      position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
      z-index: 0; pointer-events: none; opacity: 0.07;
      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.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      animation: film-grain 0.8s steps(10) infinite;
      will-change: transform;
    }
    @keyframes film-grain {
      0%  { transform: translate3d(0,0,0); }
      10% { transform: translate3d(-4%,-9%,0); }
      20% { transform: translate3d(-14%,6%,0); }
      30% { transform: translate3d(8%,-22%,0); }
      40% { transform: translate3d(-4%,22%,0); }
      50% { transform: translate3d(-12%,9%,0); }
      60% { transform: translate3d(14%,1%,0); }
      70% { transform: translate3d(1%,11%,0); }
      80% { transform: translate3d(4%,32%,0); }
      90% { transform: translate3d(-9%,8%,0); }
      100%{ transform: translate3d(6%,-14%,0); }
    }

    /* Aurora layer — a slow moving radial gradient */
    .aurora {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 80vw 60vh at 20% 30%, rgba(255,59,48,0.13) 0%, transparent 70%),
        radial-gradient(ellipse 70vw 50vh at 80% 70%, rgba(255,138,76,0.08) 0%, transparent 70%);
      animation: aurora-move 14s ease-in-out infinite alternate;
      will-change: transform;
    }
    @keyframes aurora-move {
      0%   { transform: translate(0, 0)       scale(1);    }
      25%  { transform: translate(5vw, -4vh)  scale(1.05); }
      50%  { transform: translate(-4vw, 6vh)  scale(0.97); }
      75%  { transform: translate(8vw, 2vh)   scale(1.03); }
      100% { transform: translate(-3vw, -5vh) scale(1.06); }
    }

    /* Blobs use radial-gradient instead of filter:blur — same look, zero GPU cost */
    .fluid-shape {
      position: absolute; border-radius: 50%;
      will-change: transform; pointer-events: none;
      transform: translateZ(0);
    }
    .shape-1 {
      width: 80vw; height: 80vw;
      background: radial-gradient(circle, rgba(255,59,48,0.28) 0%, transparent 70%);
      top: -25%; left: -15%;
      animation: float1 12s ease-in-out infinite;
    }
    .shape-2 {
      width: 70vw; height: 70vw;
      background: radial-gradient(circle, rgba(255,138,76,0.18) 0%, transparent 70%);
      bottom: -10%; right: -12%;
      animation: float2 16s ease-in-out infinite;
    }
    .shape-3 {
      width: 50vw; height: 50vw;
      background: radial-gradient(circle, rgba(255,59,48,0.10) 0%, transparent 70%);
      top: 45%; left: 50%;
      animation: float3 20s ease-in-out infinite;
    }

    @keyframes float1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25%  { transform: translate(80px, 60px) scale(1.1); }
      50%  { transform: translate(40px, 120px) scale(0.95); }
      75%  { transform: translate(-60px, 50px) scale(1.05); }
    }
    @keyframes float2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33%  { transform: translate(-100px, -80px) scale(1.12); }
      66%  { transform: translate(-50px, -120px) scale(0.92); }
    }
    @keyframes float3 {
      0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
      50%  { transform: translate(-120px, 80px) scale(1.3) rotate(90deg); }
    }

    /* ── Typography ── */
    h1, h2, h3 { font-family: 'Archivo Expanded', sans-serif; text-transform: uppercase; line-height: 0.85; letter-spacing: -0.04em; }
    .mono { font-family: 'Space Mono', monospace; text-transform: uppercase; font-size: 11px; letter-spacing: 0.2em; color: var(--red); }
    p { font-weight: 300; }
    .wrap { max-width: 1400px; margin: 0 auto; padding: 0 5vw; position: relative; }

    .accent-text {
      color: transparent;
      -webkit-text-stroke: 1px var(--cream);
      opacity: 0.8;
      background: linear-gradient(90deg, var(--cream), var(--amber), var(--cream));
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      animation: shimmer-text 6s linear infinite;
    }
    @keyframes shimmer-text {
      to { background-position: 200% center; }
    }

    /* ── Navigation ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      padding: 30px 5vw; display: flex; justify-content: space-between; align-items: center;
      transition: all 0.6s var(--ease-out-expo);
    }
    nav.scrolled {
      background: rgba(7, 7, 10, 0.6);
      backdrop-filter: blur(30px) saturate(180%) brightness(0.9);
      -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(0.9);
      padding: 16px 5vw;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 4px 60px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255,255,255,0.05) inset;
    }
    .logo {
      font-weight: 900; font-size: 16px; display: flex; align-items: center; gap: 10px;
      text-decoration: none; color: inherit; letter-spacing: 0.05em;
      transition: opacity 0.3s;
    }
    .logo:hover { opacity: 0.8; }
    .logo .dot {
      width: 8px; height: 8px; background: var(--red); border-radius: 50%;
      box-shadow: 0 0 15px var(--red);
      animation: pulse-dot 2.5s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { box-shadow: 0 0 15px var(--red); transform: scale(1); }
      50%       { box-shadow: 0 0 30px var(--red), 0 0 60px var(--red-glow); transform: scale(1.3); }
    }
    .nav-links { display: flex; gap: 35px; }
    .nav-links a {
      text-decoration: none; color: var(--cream-dim); font-size: 11px; font-weight: 600;
      text-transform: uppercase; transition: color 0.3s; position: relative; padding-bottom: 4px;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
      background: var(--red); transition: width 0.4s var(--ease-out-expo);
    }
    .nav-links a:hover { color: var(--cream); }
    .nav-links a:hover::after { width: 100%; }

    /* ── Sections — uniform 100px padding ── */
    section { padding: 100px 0 !important; position: relative; z-index: 1; }

    .section-tag {
      display: flex; align-items: center; gap: 15px; margin-bottom: 30px;
    }
    .section-tag .line { width: 40px; height: 1px; background: var(--glass-border); }
    .section-title { font-size: clamp(38px, 6vw, 85px); margin-bottom: 50px; }

    /* ── Hero ── */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
      padding-top: 100px; position: relative; overflow: hidden;
      /* Full-bleed: no max-width constraint here */
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero-bg { position: absolute; inset: 0; z-index: 0; }
    .hero-slide {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 30%;
      filter: grayscale(0.3) brightness(0.45);
      animation: ken-burns 32s ease-in-out infinite alternate;
      will-change: transform, opacity;
      transition: opacity 1.8s ease-in-out;
    }
    #heroSlide1 { animation-delay: -16s; }
    @keyframes ken-burns {
      0%   { transform: scale(1.05) translate(0, 0); }
      50%  { transform: scale(1.22) translate(-2.5%, -1.5%); }
      100% { transform: scale(1.14) translate(2%, 1%); }
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background:
        linear-gradient(to right, rgba(7,7,10,0.72) 25%, rgba(7,7,10,0.2) 65%, transparent 100%),
        linear-gradient(to bottom, rgba(7,7,10,0.4) 0%, transparent 20%, transparent 55%, rgba(7,7,10,0.92) 82%, rgba(7,7,10,1) 97%);
    }
    .hero > *:not(.hero-bg) { position: relative; z-index: 1; }

    .hero-h1 {
      font-size: clamp(65px, 16vw, 210px);
      display: flex; flex-wrap: wrap; gap: 0 0.2em;
      line-height: 0.85;
    }
    /* ── Hero word onload animation ── */
    .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(70px) rotateX(40deg);
      transform-origin: 50% 100%;
      animation: word-rise 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    /* nth-child accounts for <br> siblings inside .hero-h1 */
    .hero-h1 .word:nth-child(1) { animation-delay: 1.9s; }
    .hero-h1 .word:nth-child(3) { animation-delay: 2.05s; }
    .hero-h1 .word:nth-child(4) { animation-delay: 2.18s; }
    .hero-h1 .word:nth-child(6) { animation-delay: 2.30s; }
    @keyframes word-rise {
      to { opacity: 1; transform: translateY(0) rotateX(0deg); }
    }
    /* Hero supporting elements */
    .hero-tag, .hero-sub, .hero-ctas, .hero-location {
      opacity: 0;
      animation: fade-up-blur 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hero-tag      { animation-delay: 1.85s; }
    .hero-sub      { animation-delay: 2.45s; }
    .hero-ctas     { animation-delay: 2.55s; }
    .hero-location { animation-delay: 2.62s; }
    @keyframes fade-up-blur {
      from { opacity: 0; transform: translateY(16px); filter: blur(6px); }
      to   { opacity: 1; transform: translateY(0);    filter: blur(0px); }
    }
    .word-accent {
      background: linear-gradient(100deg, var(--red) 10%, var(--amber) 50%, var(--red) 90%);
      background-size: 200% 100%;
      -webkit-background-clip: text; background-clip: text; color: transparent;
      /* word-rise must be listed first — shimmer-word runs after reveal */
      animation: word-rise 0.9s cubic-bezier(0.16,1,0.3,1) forwards, shimmer-word 6s linear infinite;
    }
    @keyframes shimmer-word { to { background-position: -200% 0; } }
    .hero-tag {
      display: inline-flex; background: var(--glass); border: 1px solid var(--glass-border);
      padding: 8px 18px; border-radius: 100px; margin-bottom: 30px;
      backdrop-filter: blur(10px);
    }
    .hero h1 { font-size: clamp(65px, 16vw, 210px); }
    .hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 50px; gap: 40px; }
    .hero-sub { max-width: 580px; font-size: 19px; color: var(--cream-dim); }
    .hero-ctas { display: flex; gap: 20px; }
    .hero-location { margin-top: 40px; }

    /* ── Buttons ── */
    .btn {
      position: relative; padding: 22px 44px; border-radius: 100px; text-decoration: none;
      display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: 12px;
      text-transform: uppercase; overflow: hidden;
      transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
    }
    .btn-primary {
      background: var(--red); color: white;
      box-shadow: 0 15px 35px var(--red-glow), 0 0 0 0 rgba(255,59,48,0.3);
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
      background-size: 200% 100%; background-position: -100% 0;
      transition: background-position 0.6s;
    }
    .btn-primary:hover::before { background-position: 200% 0; }
    .btn-primary:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 25px 55px rgba(255, 59, 48, 0.6), 0 0 0 6px rgba(255,59,48,0.12);
    }
    .btn-secondary {
      background: var(--glass); color: var(--cream);
      border: 1px solid var(--glass-border); backdrop-filter: blur(10px);
    }
    .btn-secondary:hover {
      transform: translateY(-6px) scale(1.03);
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    /* ── Opener / Bento ── */
    .opener-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; }
    .opener-text p { font-size: 18px; color: var(--cream-dim); margin-bottom: 25px; }
    .opener-text p strong { color: var(--cream); font-weight: 600; }

    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-card {
      background: var(--glass); border: 1px solid var(--glass-border); padding: 35px 25px;
      border-radius: 24px; position: relative; overflow: hidden;
      transition: transform 0.5s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
    }
    .stat-card::before {
      content: ''; position: absolute; inset: 0; opacity: 0;
      background: radial-gradient(circle at 50% 50%, rgba(255,59,48,0.15), transparent 70%);
      transition: opacity 0.4s;
    }
    .stat-card:hover { transform: translateY(-14px) scale(1.06); border-color: var(--red); box-shadow: 0 24px 48px -10px rgba(255, 59, 48, 0.3); }
    .stat-card:hover::before { opacity: 1; }
    .stat-num { font-family: 'Archivo Expanded'; font-size: 42px; display: block; margin-bottom: 5px; }
    .stat-lbl { font-size: 10px; text-transform: uppercase; color: var(--cream-dim); letter-spacing: 0.1em; }

    /* ── Services ── */
    #services {
      background: var(--void);
      text-align: center;
    }
    #services .wrap { padding: 0 5vw; }
    #services .section-tag { justify-content: center; }
    #services .section-title { text-align: center; }

    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .svc-card {
      background: var(--glass); border: 1px solid var(--glass-border); padding: 50px 40px;
      border-radius: 32px; height: 100%; display: flex; flex-direction: column; justify-content: center; text-align: center;
      position: relative; overflow: hidden;
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .svc-card::after {
      content: ''; position: absolute; inset: 0; opacity: 0;
      background: radial-gradient(circle at 50% 0%, rgba(255,59,48,0.1), transparent 70%);
      transition: opacity 0.5s;
    }
    .svc-card:hover {
      background: rgba(255, 59, 48, 0.06);
      border-color: rgba(255, 59, 48, 0.5);
      transform: translateY(-18px) scale(1.02);
      box-shadow: 0 30px 70px -15px rgba(255, 59, 48, 0.35), 0 0 0 1px rgba(255,59,48,0.2);
    }
    .svc-card:hover::after { opacity: 1; }
    .svc-card .num { font-family: 'Space Mono'; color: var(--red); font-size: 12px; margin-bottom: 30px; display: block; transition: letter-spacing 0.4s; }
    .svc-card:hover .num { letter-spacing: 0.4em; }
    .svc-card h3 { font-size: 26px; margin-bottom: 20px; line-height: 1.1; }
    .svc-card p { font-size: 15px; color: var(--cream-dim); line-height: 1.7; }

    /* ── Work ── */
    .work-list { margin-top: 60px; border-top: 1px solid var(--glass-border); }
    .work-item {
      padding: 45px 0; border-bottom: 1px solid var(--glass-border);
      display: flex; justify-content: space-between; align-items: center;
      cursor: pointer; position: relative; overflow: hidden;
    }
    .work-item::before {
      content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
      background: var(--red); transition: width 0.6s var(--ease-out-expo);
    }
    .work-item:hover::before { width: 100%; }
    .work-item .title {
      font-family: 'Archivo Expanded'; font-size: clamp(28px, 4vw, 56px);
      transition: transform 0.5s var(--ease-out-expo), color 0.3s, text-shadow 0.3s;
    }
    .work-item:hover .title {
      transform: translateX(30px); color: var(--red);
      text-shadow: 0 0 40px rgba(255,59,48,0.4);
    }
    .work-item .mono { transition: opacity 0.3s, transform 0.3s; }
    .work-item:hover .mono { opacity: 0.5; transform: translateX(-10px); }

    .work-img-reveal {
      position: fixed; width: 450px; height: 300px; pointer-events: none; z-index: 10;
      opacity: 0; border-radius: 24px; overflow: hidden; transform: translate(-50%, -50%) scale(0.8) rotate(-2deg);
      transition: opacity 0.4s, transform 0.5s var(--ease-out-expo);
      box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    }
    .work-img-reveal.active { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    .work-img-reveal img { width: 100%; height: 100%; object-fit: cover; }

    /* ── Marquee ── */
    .marquee-container {
      padding: 80px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
      overflow: hidden; white-space: nowrap; position: relative;
    }
    .marquee-container::before,
    .marquee-container::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 15vw; z-index: 2; pointer-events: none;
    }
    .marquee-container::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
    .marquee-container::after  { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }
    .marquee-track { display: flex; gap: 80px; align-items: center; }
    .marquee-track span {
      font-family: 'Archivo Expanded'; font-size: 20px; color: var(--cream-dim);
      opacity: 0.4; text-transform: uppercase;
      transition: opacity 0.3s, color 0.3s, text-shadow 0.3s;
    }
    .marquee-track span:hover { opacity: 1; color: var(--red); text-shadow: 0 0 30px rgba(255,59,48,0.5); }

    /* ── Purpose ── */
    .purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 80px; }
    .purpose-visual {
      border-radius: 40px; overflow: hidden; height: 600px; position: relative;
      border: 1px solid var(--glass-border);
      transition: box-shadow 0.6s, transform 0.6s;
    }
    .purpose-visual:hover {
      box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,59,48,0.2);
      transform: scale(1.01);
    }
    .purpose-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter 0.8s; }
    .purpose-visual:hover img { filter: grayscale(0.3); }
    .purpose-badge {
      position: absolute; bottom: 30px; left: 30px; background: var(--red); padding: 15px 25px;
      border-radius: 100px; font-family: 'Space Mono'; font-size: 10px; color: white;
      box-shadow: 0 10px 30px rgba(255,59,48,0.5);
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .purpose-visual:hover .purpose-badge {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(255,59,48,0.7);
    }

    /* ── Digital Bento ── */
    #digital { overflow: hidden; }
    .digital-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 40px; flex-wrap: wrap; }
    .digital-header .section-title { margin-bottom: 0; }

    .digital-bento {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .d-card {
      background: rgba(255,255,255,0.028);
      border: 1px solid var(--glass-border);
      border-radius: 28px;
      padding: 52px 48px;
      position: relative; overflow: hidden;
      transition: border-color 0.5s, transform 0.6s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s;
    }
    .d-card::before {
      content: ''; position: absolute; inset: 0; opacity: 0;
      background: radial-gradient(ellipse 70% 55% at 20% 0%, rgba(255,59,48,0.13), transparent 70%);
      transition: opacity 0.5s;
    }
    .d-card:hover { border-color: rgba(255,59,48,0.4); transform: translateY(-10px); box-shadow: 0 30px 80px rgba(255,59,48,0.15), 0 0 0 1px rgba(255,59,48,0.08); }
    .d-card:hover::before { opacity: 1; }

    /* Ghost number */
    .d-ghost-num {
      position: absolute; bottom: -24px; right: 24px;
      font-family: 'Archivo Expanded'; font-size: 150px; font-weight: 900;
      color: rgba(255,255,255,0.03); line-height: 1;
      pointer-events: none; user-select: none;
      transition: color 0.5s;
    }
    .d-card:hover .d-ghost-num { color: rgba(255,59,48,0.06); }

    /* Icon box */
    .d-icon {
      width: 54px; height: 54px; border-radius: 16px;
      border: 1px solid var(--glass-border);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 32px; background: var(--glass);
      transition: border-color 0.4s, background 0.4s;
    }
    .d-card:hover .d-icon { border-color: rgba(255,59,48,0.55); background: rgba(255,59,48,0.1); }
    .d-icon svg { width: 24px; height: 24px; stroke: var(--cream-dim); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.4s; }
    .d-card:hover .d-icon svg { stroke: var(--red); }

    .d-num-tag { font-family: 'Space Mono'; font-size: 11px; color: var(--red); margin-bottom: 16px; letter-spacing: 0.15em; }
    .d-card h3 { font-size: clamp(20px, 1.8vw, 28px); margin-bottom: 20px; line-height: 1.05; }
    .d-card p { font-size: 15px; color: var(--cream-dim); line-height: 1.75; }

    /* Scan-line animation inside cards */
    .d-scanline {
      position: absolute; left: 0; right: 0; height: 1px; top: 0;
      background: linear-gradient(90deg, transparent, rgba(255,59,48,0.4), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .d-card:hover .d-scanline { opacity: 1; animation: d-scan 1.8s ease-in-out; }
    @keyframes d-scan { 0% { top: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

    @media (max-width: 768px) { .digital-bento { grid-template-columns: 1fr; } }

    /* ── Contact Section ── */
    #contact { }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; margin-top: 60px; align-items: start; }
    .contact-info { display: flex; flex-direction: column; gap: 44px; }
    .contact-info-item { display: flex; flex-direction: column; gap: 8px; }
    .contact-info-item .ci-label { font-family: 'Space Mono'; font-size: 10px; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; margin-bottom: 4px; }
    .contact-info-item a, .contact-info-item .ci-value { font-size: 17px; color: var(--cream); text-decoration: none; line-height: 1.5; transition: color 0.3s; }
    .contact-info-item a:hover { color: var(--red); }
    .contact-form { display: flex; flex-direction: column; gap: 20px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-field { display: flex; flex-direction: column; gap: 8px; }
    .form-field label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--cream-dim); font-weight: 600; font-family: 'Space Mono'; }
    .form-field input, .form-field select, .form-field textarea {
      background: var(--glass); border: 1px solid var(--glass-border);
      color: var(--cream); padding: 18px 22px; border-radius: 14px;
      font-family: 'Archivo', sans-serif; font-size: 15px;
      transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
      outline: none; -webkit-appearance: none; width: 100%;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      border-color: rgba(255,59,48,0.55); background: rgba(255,255,255,0.04);
      box-shadow: 0 0 0 3px rgba(255,59,48,0.08);
    }
    .form-field select { cursor: pointer; background-image: none; }
    .form-field select option { background: #1a1a1e; }
    .form-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
    .form-success { display: none; text-align: center; padding: 40px; border: 1px solid rgba(255,59,48,0.3); border-radius: 20px; }
    .form-success.visible { display: block; }
    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }
    @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

    /* ── Footer ── */
    footer { padding: 100px 0 50px; background: #030305; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 70px; }
    .footer-brand p { color: var(--cream-dim); font-size: 13px; line-height: 1.7; margin-top: 16px; max-width: 260px; }
    .footer-social { display: flex; gap: 10px; margin-top: 28px; }
    .footer-social a {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid var(--glass-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--cream-dim); text-decoration: none;
      transition: color 0.25s, border-color 0.25s, background 0.25s;
    }
    .footer-social a:hover { color: var(--cream); border-color: var(--red); background: rgba(255,59,48,0.08); }
    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }
    .footer-col h4 { font-family: 'Space Mono'; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 20px; }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { color: rgba(246,243,236,0.55); text-decoration: none; font-size: 14px; transition: color 0.25s, transform 0.25s; display: inline-block; }
    .footer-links a:hover { color: var(--cream); transform: translateX(4px); }
    .footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 36px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom-left { font-family: 'Space Mono'; font-size: 10px; color: var(--cream-dim); letter-spacing: 0.08em; }
    .footer-bottom-right { font-family: 'Space Mono'; font-size: 10px; color: rgba(246,243,236,0.3); }
    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }


    /* ── Section headers reveal ── */
    .section-tag, .section-title {
      opacity: 0;
      transform: translateY(18px) scale(0.97);
      transform-origin: left center;
      transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
                  transform 0.6s cubic-bezier(0.16,1,0.3,1);
    }
    .section-tag.in, .section-title.in { opacity: 1; transform: translateY(0) scale(1); }
    .section-title { transition-duration: 0.75s; transition-delay: 0.07s; }

    /* ── Generic scroll reveal — Figma-style ── */
    .reveal {
      opacity: 0;
      transform: perspective(900px) translateY(34px) scale(0.93) rotateX(7deg);
      transform-origin: center bottom;
    }
    .reveal.in {
      animation: reveal-in 0.75s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    @keyframes reveal-in {
      from {
        opacity: 0;
        transform: perspective(900px) translateY(34px) scale(0.93) rotateX(7deg);
      }
      to {
        opacity: 1;
        transform: perspective(900px) translateY(0) scale(1) rotateX(0deg);
      }
    }
    /* Work items: slide in from left + scale */
    .work-item.reveal {
      transform: perspective(900px) translateX(-30px) scale(0.96);
      transform-origin: left center;
    }
    .work-item.reveal.in {
      animation: reveal-left 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    @keyframes reveal-left {
      from { opacity: 0; transform: perspective(900px) translateX(-30px) scale(0.96); }
      to   { opacity: 1; transform: perspective(900px) translateX(0) scale(1); }
    }
    /* Marquee animation */
    .marquee-track { animation: marquee-scroll 30s linear infinite; }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── Nav social icons ── */
    .nav-socials { display: flex; align-items: center; gap: 6px; }
    .nav-social-link {
      width: 34px; height: 34px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--cream-dim); text-decoration: none;
      transition: color 0.25s, background 0.25s;
    }
    .nav-social-link:hover { color: var(--cream); background: var(--glass); }
    .nav-social-link svg { width: 16px; height: 16px; fill: currentColor; }

    /* ── Mobile social sticky bar ── */
    .mobile-social-bar {
      display: none;
      position: fixed; top: 0; left: 0; right: 0; z-index: 99;
      justify-content: center; align-items: center; gap: 8px;
      padding: 8px 16px;
      background: rgba(7,7,10,0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--glass-border);
    }
    .mobile-social-bar a {
      color: var(--cream-dim); text-decoration: none;
      display: flex; align-items: center; justify-content: center;
      width: 36px; height: 36px;
      transition: color 0.25s;
    }
    .mobile-social-bar a:hover { color: var(--red); }
    .mobile-social-bar svg { width: 18px; height: 18px; fill: currentColor; }
    body.light .mobile-social-bar { background: rgba(242,237,228,0.9); border-bottom-color: rgba(0,0,0,0.1); }

    @media (max-width: 1024px) {
      .mobile-social-bar { display: flex; }
      .nav-socials { display: none; }
      nav { top: 44px; } /* push nav below the social bar */
    }

    /* ── Nav CTA pulse ── */
    .btn-nav-pulse {
      animation: nav-pulse 2.8s ease-in-out infinite;
    }
    @keyframes nav-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); border-color: rgba(255,255,255,0.08); }
      50%       { box-shadow: 0 0 0 6px rgba(255,59,48,0.18), 0 0 20px rgba(255,59,48,0.25); border-color: rgba(255,59,48,0.55); }
    }

    /* ── Bottom scroll vignette — gradient only, no backdrop-filter ── */
    .scroll-blur-bottom {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      height: 240px;
      pointer-events: none;
      z-index: 60;
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(7,7,10,0.3) 25%,
        rgba(7,7,10,0.7) 55%,
        var(--black) 85%
      );
    }

    /* ── Available badge ── */
    .available-badge {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.22);
      padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
      font-family: 'Space Mono'; font-size: 10px; text-transform: uppercase;
      letter-spacing: 0.14em; color: rgba(246,243,236,0.65);
      opacity: 0; animation: fade-up-blur 0.65s 1.85s cubic-bezier(0.16,1,0.3,1) forwards,
                             badge-glow 2.4s 2.5s ease-in-out infinite;
    }
    .avail-dot {
      width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
    }
    @keyframes badge-glow {
      0%,100% { background: rgba(34,197,94,0.06); border-color: rgba(34,197,94,0.18); box-shadow: none; }
      50%     { background: rgba(34,197,94,0.20); border-color: rgba(34,197,94,0.60); box-shadow: 0 0 22px rgba(34,197,94,0.30), 0 0 6px rgba(34,197,94,0.15); }
    }

    /* ── Reel button ── */
    .reel-btn {
      position: relative; width: 128px; height: 128px; cursor: pointer; flex-shrink: 0;
      transition: transform 0.4s var(--ease-out-expo);
    }
    .reel-btn:hover { transform: scale(1.08); }
    .reel-ring {
      position: absolute; inset: 0;
      animation: reel-rotate 14s linear infinite;
      transform-origin: center;
    }
    .reel-btn:hover .reel-ring { animation-duration: 7s; }
    @keyframes reel-rotate { to { transform: rotate(360deg); } }
    .reel-ring text {
      font-family: 'Space Mono', monospace; font-size: 10.5px;
      fill: rgba(246,243,236,0.5); letter-spacing: 0.18em; text-transform: uppercase;
    }
    .reel-inner {
      position: absolute; inset: 22px; border-radius: 50%;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
      transition: background 0.4s, border-color 0.4s;
      backdrop-filter: blur(8px);
    }
    .reel-btn:hover .reel-inner { background: rgba(255,59,48,0.14); border-color: rgba(255,59,48,0.4); }
    .reel-inner svg { width: 20px; height: 20px; fill: var(--cream); margin-left: 3px; }
    .reel-inner .reel-label { font-family: 'Space Mono'; font-size: 7px; letter-spacing: 0.2em; color: var(--cream-dim); text-transform: uppercase; }

    /* ── Section tag line sweep ── */
    .section-tag .line {
      width: 40px; height: 1px;
      background: var(--glass-border);
      box-shadow: none;
      transition: none;
      flex-shrink: 0;
    }
    .section-tag.in .line {
      animation: line-flash 1.6s 0.5s ease-out forwards;
    }
    @keyframes line-flash {
      0%   { width: 40px; height: 1px; background: var(--glass-border); box-shadow: none; }
      12%  { width: 56px; height: 2px; background: var(--red); box-shadow: 0 0 22px var(--red), 0 0 44px rgba(255,59,48,0.45); }
      55%  { width: 50px; height: 2px; background: var(--red); box-shadow: 0 0 10px rgba(255,59,48,0.4); }
      100% { width: 40px; height: 1px; background: var(--glass-border); box-shadow: none; }
    }

    img#nav-logo {
      width: 115px;
      height: auto !important;
    }
    .hero-ctas {
      display: flex;
      gap: 5px;
    }

    @media (max-width: 1024px) {
      .noise { display: none; }
      .opener-grid, .purpose-grid { grid-template-columns: 1fr; gap: 40px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .hero { padding-top: 140px; }
      .btn { padding: 10px 18px !important; font-size: 12px !important; }
      .btn-primary { padding: 15px 15px !important; }
      body { padding: 0 10px; }
      .scroll-blur-bottom { height: 100px; }
      footer { padding-bottom: 80px; }
    }
    @media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr; }
      .hero-bottom { flex-direction: column; align-items: flex-start; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    /* ── Theme toggle button ── */
    .theme-toggle {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--glass); border: 1px solid var(--glass-border);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--cream-dim);
      transition: color 0.3s, background 0.3s, border-color 0.3s;
    }
    .theme-toggle:hover { color: var(--cream); border-color: rgba(255,255,255,0.2); }
    .theme-toggle svg { width: 16px; height: 16px; transition: opacity 0.2s, transform 0.3s; }
    .theme-toggle .icon-sun  { display: block; }
    .theme-toggle .icon-moon { display: none; }
    body.light .theme-toggle .icon-sun  { display: none; }
    body.light .theme-toggle .icon-moon { display: block; }

    /* ── Light mode overrides ── */
    body.light {
      --black: #f2ede4;
      --void: #e8e2d8;
      --cream: #1c1a17;
      --cream-dim: #6b6762;
      --glass: rgba(0,0,0,0.04);
      --glass-border: rgba(0,0,0,0.10);
      background-color: var(--black);
      color: var(--cream);
    }
    body.light .bg-canvas { background: var(--black); }
    body.light .noise { opacity: 0.03; }
    body.light nav.scrolled {
      background: rgba(242,237,228,0.75);
      border-bottom: 1px solid rgba(0,0,0,0.10);
      box-shadow: 0 4px 40px rgba(0,0,0,0.08);
    }
    body.light .theme-toggle {
      color: var(--cream-dim);
      border-color: rgba(0,0,0,0.15);
    }
    body.light .theme-toggle:hover { color: var(--cream); }
    body.light .btn-secondary {
      border-color: rgba(0,0,0,0.18);
      color: var(--cream);
    }
    body.light .btn-secondary:hover { background: rgba(0,0,0,0.05); }
    body.light .hero-bg::after {
      background:
        linear-gradient(to right, rgba(242,237,228,0.65) 20%, rgba(242,237,228,0.15) 60%, transparent 100%),
        linear-gradient(to bottom, rgba(242,237,228,0.3) 0%, transparent 20%, transparent 50%, rgba(242,237,228,0.9) 80%, rgba(242,237,228,1) 97%);
    }
    body.light .hero-slide { filter: grayscale(0.15) brightness(0.75); }
    body.light .scroll-blur-bottom {
      background: linear-gradient(to bottom, transparent 0%, rgba(242,237,228,0.35) 30%, rgba(242,237,228,0.8) 65%, var(--black) 90%);
    }
    body.light .stat-card, body.light .svc-card, body.light .d-card {
      background: rgba(255,255,255,0.6);
      border-color: rgba(0,0,0,0.08);
    }
    body.light .svc-card:hover { background: rgba(255,255,255,0.85); }
    body.light .marquee-container { background: rgba(0,0,0,0.05); }
    body.light .marquee-item { color: rgba(28,26,23,0.35); }
    body.light .purpose-card { background: rgba(255,255,255,0.55); border-color: rgba(0,0,0,0.08); }
    body.light .purpose-badge { background: var(--red); }
    body.light .digital-bento .d-card { background: rgba(255,255,255,0.55); border-color: rgba(0,0,0,0.08); }
    body.light .d-ghost-num { color: rgba(0,0,0,0.04); }
    body.light .d-card:hover .d-ghost-num { color: rgba(255,59,48,0.06); }
    body.light footer { background: #1c1a17; color: #f6f3ec; }
    body.light .footer-brand p { color: rgba(246,243,236,0.55); }
    body.light .footer-col h4 { color: rgba(246,243,236,0.4); }
    body.light .footer-links a { color: rgba(246,243,236,0.55); }
    body.light .footer-links a:hover { color: #f6f3ec; }
    body.light .footer-bottom-left, body.light .footer-bottom-right { color: rgba(246,243,236,0.35); }
    body.light .footer-bottom { border-top-color: rgba(255,255,255,0.1); }
    body.light .reel-inner { background: rgba(28,26,23,0.08); border-color: rgba(28,26,23,0.15); }
    body.light .reel-btn:hover .reel-inner { background: rgba(255,59,48,0.10); }
    body.light .available-badge { background: rgba(34,197,94,0.10); border-color: rgba(34,197,94,0.3); }
    body.light #scroll-progress { background: linear-gradient(90deg, var(--red), var(--amber)); }
    body.light .aurora-layer {
      background:
        radial-gradient(ellipse 80vw 60vh at 20% 30%, rgba(255,59,48,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 70vw 50vh at 80% 70%, rgba(255,138,76,0.05) 0%, transparent 70%);
    }
