  :root {
    --bg: #0C0C0C;
    --bg2: #141414;
    --bg3: #1A1A1A;
    --orange: #2DA88E;
    --orange-glow: rgba(45,168,142,0.15);
    --white: #F5F2EE;
    --cream: #E8E0D5;
    --muted: #6B6B6B;
    --border: rgba(255,255,255,0.07);
    --green: #4ADE80;
  }

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

  body {
    background: var(--bg);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: default;
  }

  /* Custom cursor */
  .cursor {
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
    mix-blend-mode: normal;
  }

  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,107,43,0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s, height 0.3s;
  }

  h1,h2,h3,h4 {
    font-family: 'Cabinet Grotesk', sans-serif;
    line-height: 1.1;
  }

  em.serif {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--orange);
  }

  /* ======= NAVBAR ======= */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(24px);
    background: rgba(12,12,12,0.8);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-mark {
    width: 32px; height: 32px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--bg);
    letter-spacing: -0.05em;
  }

  .logo-text {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
  }

  .logo-text span {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.85rem;
    margin-left: 4px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--orange);
    color: var(--bg) !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem !important;
    font-family: 'Cabinet Grotesk', sans-serif;
    transition: opacity 0.2s, transform 0.15s !important;
  }

  .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); color: var(--bg) !important; }

  /* ======= HERO ======= */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 80%);
    pointer-events: none;
  }

  .hero-orb {
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45,168,142,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 18px 6px 8px;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }

  .hero-tag-dot {
    display: inline-block;
    width: 20px; height: 20px;
    background: rgba(74,222,128,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
  }

  .hero-tag-dot::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    display: block;
    animation: blink 2s infinite;
  }

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

  .hero h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.98;
    max-width: 820px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
  }

  .hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 48px;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  .hero-sub strong { color: var(--cream); font-weight: 500; }

  .hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 72px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--bg);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Cabinet Grotesk', sans-serif;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
  }

  .btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }

  /* Stats ticker */
  .hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .stat-item { text-align: center; }

  .stat-num {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    letter-spacing: -0.03em;
  }

  .stat-num span { color: var(--orange); }

  .stat-label { font-size: 0.78rem; color: var(--muted); }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: float 2s ease-in-out infinite;
  }

  @keyframes float {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  .scroll-hint svg { width: 16px; height: 16px; }

  /* ======= MARQUEE ======= */
  .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    padding: 14px 0;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    width: max-content;
  }

  .marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    white-space: nowrap;
  }

  .marquee-item .dot {
    width: 5px; height: 5px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
  }

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

  /* ======= SERVICES ======= */
  .services-section {
    padding: 120px 5%;
    position: relative;
  }

  .section-header {
    max-width: 600px;
    margin-bottom: 72px;
  }

  .section-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    font-weight: 700;
    font-family: 'Cabinet Grotesk', sans-serif;
    margin-bottom: 16px;
    display: block;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }

  .section-desc {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
  }

  /* Service cards - bento grid */
  .services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1100px;
  }

  .s-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
    cursor: default;
  }

  .s-card:hover {
    border-color: rgba(45,168,142,0.3);
    transform: translateY(-3px);
  }

  .s-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #0D1A18, var(--bg2));
    border-color: rgba(45,168,142,0.2);
  }

  .s-card.tall {
    grid-row: span 2;
  }

  .s-card-glow {
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .s-card:hover .s-card-glow { opacity: 1; }

  .s-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    background: rgba(45,168,142,0.1);
    border: 1px solid rgba(45,168,142,0.15);
  }

  .s-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
  }

  .s-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .s-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    font-family: 'Cabinet Grotesk', sans-serif;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: var(--muted);
  }

  .tag.hot {
    border-color: rgba(45,168,142,0.3);
    color: var(--orange);
    background: rgba(45,168,142,0.06);
  }

  .s-card-arrow {
    position: absolute;
    bottom: 28px; right: 28px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.2s;
  }

  .s-card:hover .s-card-arrow {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--bg);
  }

  /* ======= PROCESS ======= */
  .process-section {
    padding: 120px 5%;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .process-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }

  .process-step:last-child { border-bottom: none; }

  .p-num {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--orange);
    width: 32px;
    flex-shrink: 0;
    padding-top: 3px;
    letter-spacing: 0.05em;
  }

  .p-content h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .p-content p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
  }

  .process-visual {
    position: relative;
  }

  .metrics-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
  }

  .metrics-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
  }

  .metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .metric-row:last-child { border-bottom: none; }

  .metric-name {
    font-size: 0.85rem;
    color: var(--muted);
  }

  .metric-val {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1rem;
  }

  .metric-val.up { color: var(--green); }
  .metric-val.orange { color: var(--orange); }

  .metric-bar-wrap {
    flex: 1;
    margin: 0 20px;
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
  }

  .metric-bar { height: 100%; border-radius: 2px; }

  .mini-chart {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg2);
    border-radius: 12px;
    border: 1px solid var(--border);
  }

  .chart-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 14px;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
  }

  .bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
  }

  .bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    transition: height 1s ease;
  }

  /* ======= INDUSTRIES ======= */
  .industries-section {
    padding: 120px 5%;
  }

  .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
  }

  .ind-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    background: var(--bg2);
    transition: all 0.3s;
    cursor: default;
  }

  .ind-card:hover {
    border-color: rgba(45,168,142,0.25);
    transform: translateY(-4px);
  }

  .ind-emoji {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
  }

  .ind-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .ind-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .ind-link {
    font-size: 0.82rem;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Cabinet Grotesk', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }

  .ind-link:hover { gap: 10px; }

  .ind-card.highlight {
    background: linear-gradient(135deg, rgba(45,168,142,0.08), var(--bg2));
    border-color: rgba(45,168,142,0.2);
  }

  /* ======= TECH STACK ======= */
  .tech-section {
    padding: 80px 5%;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }

  .tech-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .tech-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: all 0.2s;
    cursor: default;
  }

  .tech-pill:hover {
    border-color: rgba(45,168,142,0.3);
    color: var(--white);
    background: rgba(45,168,142,0.05);
  }

  .tech-pill .tech-icon { font-size: 1rem; }

  /* ======= FOUNDER ======= */
  .founder-section {
    padding: 100px 5%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
  }

  .founder-avatar {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), rgba(45,168,142,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bg);
    border: 2px solid rgba(45,168,142,0.3);
    box-shadow: 0 0 40px rgba(45,168,142,0.15);
  }

  .founder-content .section-kicker { margin-bottom: 10px; }

  .founder-name {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin: 8px 0 6px;
    line-height: 1.2;
  }

  .founder-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 18px;
  }

  .founder-bio {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 580px;
  }

  .founder-legal {
    margin-top: 20px;
    padding: 14px 20px;
    background: rgba(45,168,142,0.06);
    border: 1px solid rgba(45,168,142,0.2);
    border-radius: 10px;
    font-size: 0.82rem;
    color: var(--muted);
  }

  .founder-legal strong { color: var(--white); }

  @media (max-width: 700px) {
    .founder-section {
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
      padding: 70px 5%;
    }
    .founder-avatar { width: 110px; height: 110px; font-size: 1.8rem; }
  }

  /* ======= CTA BAND ======= */
  .cta-band {
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 50%, rgba(45,168,142,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-band-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
  }

  .cta-band h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.05;
  }

  .cta-band p {
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 48px;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .cta-band-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ======= FOOTER ======= */
  footer {
    border-top: 1px solid var(--border);
    padding: 60px 5% 40px;
    position: relative;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1100px;
  }

  .footer-brand p {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 16px 0 24px;
    font-weight: 300;
    max-width: 280px;
    line-height: 1.7;
  }

  .footer-social {
    display: flex;
    gap: 12px;
  }

  .social-link {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
  }

  .social-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(45,168,142,0.05);
  }

  .footer-col h5 {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col a {
    color: #8A8A8A;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--muted);
    max-width: 1100px;
  }

  .footer-bottom a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover { color: var(--white); }

  .made-in {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--muted);
  }

  /* ======= ANIMATIONS ======= */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ======= RESPONSIVE ======= */
  @media (max-width: 1024px) {
    .services-bento { grid-template-columns: 1fr 1fr; }
    .s-card.featured { grid-column: span 2; }
    .s-card.tall { grid-row: span 1; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { flex-wrap: wrap; gap: 28px; }
    .services-bento { grid-template-columns: 1fr; }
    .s-card.featured { grid-column: span 1; }
    .process-grid { grid-template-columns: 1fr; gap: 48px; }
    .industries-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cursor, .cursor-ring { display: none; }
  }
