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

  :root {
    --bg: #08080a;
    --bg2: #0e0e12;
    --bg3: #13131a;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dim: rgba(201,168,76,0.15);
    --white: #f0ede8;
    --muted: #7a7772;
    --border: rgba(201,168,76,0.18);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* CURSOR */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9990;
    opacity: 0.5;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(8,8,10,0.95), transparent);
    backdrop-filter: blur(8px);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 10px 22px;
    border: none;
    cursor: none;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    font-weight: 500;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    background: none;
    border: none;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 1px;
    background: var(--white);
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 6vw 8vh;
    position: relative;
    overflow: hidden;
  }

  /* HERO GRID BACKGROUND */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  }

  /* HERO SVG ILLUSTRATION */
  .hero-illustration {
    position: absolute;
    right: -2vw;
    top: 50%;
    transform: translateY(-50%);
    width: min(55vw, 700px);
    opacity: 0.9;
    pointer-events: none;
  }

  .hero-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-badge::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    max-width: 700px;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    margin-top: 28px;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 440px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }

  .hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.65s forwards;
  }

  .btn-primary {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 16px 36px;
    border: none;
    cursor: none;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-ghost {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost svg { transition: transform 0.3s; }
  .btn-ghost:hover svg { transform: translateX(4px); }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 6vw;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
  }
  .hero-scroll::before {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: growLine 1.5s 1.5s ease-out forwards;
    transform-origin: top;
    transform: scaleY(0);
  }

  /* MARQUEE */
  .marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 18px 0;
    background: var(--bg2);
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 28s linear infinite;
    width: max-content;
  }
  .marquee-item {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
  }
  .marquee-dot {
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* SECTIONS */
  section { padding: 120px 6vw; }

  .section-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 600px;
  }
  .section-title em { font-style: italic; color: var(--gold); }

  /* SERVICES */
  #services { background: var(--bg); }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
  }
  .services-sub {
    max-width: 340px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    border: 1px solid var(--border);
    background: var(--border);
  }

  .service-card {
    background: var(--bg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: none;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.5s ease;
  }
  .service-card:hover { background: var(--bg2); }
  .service-card:hover::after { width: 100%; }

  .service-icon {
    width: 48px; height: 48px;
    margin-bottom: 32px;
    color: var(--gold);
    opacity: 0.85;
  }
  .service-num {
    position: absolute;
    top: 32px; right: 32px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--border);
    letter-spacing: 0.1em;
    transition: color 0.4s;
  }
  .service-card:hover .service-num { color: var(--gold); }

  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .service-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .service-tags {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: 4px 10px;
    background: var(--gold-dim);
  }

  /* PROCESS */
  #process { background: var(--bg2); }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
  }

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

  .process-step {
    display: flex;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    cursor: none;
    transition: all 0.3s;
  }
  .process-step:first-child { border-top: 1px solid var(--border); }
  .process-step:hover .step-num { color: var(--gold); }

  .step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.4s;
    width: 60px;
  }
  .step-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .step-content p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .process-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
  }

  /* STATS */
  .stats-bar {
    background: var(--gold);
    padding: 60px 6vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--bg);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(8,8,10,0.55);
    margin-top: 8px;
  }

  /* PORTFOLIO */
  #portfolio { background: var(--bg); }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 70px;
  }

  .proj {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: var(--bg3);
    border: 1px solid var(--border);
  }
  .proj:nth-child(1) { grid-column: 1 / 8; grid-row: 1; }
  .proj:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
  .proj:nth-child(3) { grid-column: 1 / 5; grid-row: 2; }
  .proj:nth-child(4) { grid-column: 5 / 13; grid-row: 2; }

  .proj-inner {
    padding: 48px 40px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
  }
  .proj:nth-child(1) .proj-inner { min-height: 360px; }

  .proj-bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    transition: opacity 0.5s, transform 0.5s;
  }
  .proj:hover .proj-bg { opacity: 0.22; transform: scale(1.04); }

  .proj-cat {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .proj h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .proj p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 380px;
  }
  .proj-link {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap 0.3s;
  }
  .proj:hover .proj-link { gap: 14px; }

  /* TECH STACK */
  .tech-section {
    background: var(--bg2);
    padding: 80px 6vw;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .tech-title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-bottom: 48px;
  }
  .tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }
  .tech-pill {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 10px 20px;
    transition: all 0.3s;
    cursor: none;
  }
  .tech-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
  }

  /* ABOUT */
  #about {
    background: var(--bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .about-text .section-title { margin-bottom: 28px; }
  .about-text p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .about-text p strong { color: var(--white); font-weight: 500; }

  .about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .value-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
  }
  .value-text h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .value-text p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
  }

  /* CONTACT */
  #contact {
    background: var(--bg2);
    text-align: center;
    padding: 140px 6vw;
    position: relative;
    overflow: hidden;
  }
  .contact-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  #contact .section-label { justify-content: center; }
  #contact .section-label::before { display: none; }

  #contact .section-title {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: clamp(2.5rem, 6vw, 5rem);
  }
  #contact p {
    color: var(--muted);
    max-width: 420px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  .contact-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }
  .form-field label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .form-field input, .form-field select, .form-field textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    cursor: none;
    -webkit-appearance: none;
  }
  .form-field input::placeholder, .form-field textarea::placeholder {
    color: rgba(122,119,114,0.5);
  }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.04);
  }
  .form-field select option { background: var(--bg2); }
  .form-field textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    border: none;
    padding: 18px 40px;
    cursor: none;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

  .contact-alts {
    margin-top: 40px;
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .contact-alt {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
  }
  .contact-alt:hover { color: var(--gold); }

  /* FOOTER */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 48px 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
  }
  .footer-logo span { color: var(--gold); }
  .footer-copy {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.08em;
  }
  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .footer-links a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes growLine {
    to { transform: scaleY(1); }
  }
  @keyframes rotate {
    to { transform: rotate(360deg); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
  }
  @keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 0.8; }
    70% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(0.9); opacity: 0; }
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .process-grid { grid-template-columns: 1fr; }
    .process-visual { display: none; }
    #about { grid-template-columns: 1fr; gap: 60px; padding: 80px 6vw; }
    .proj:nth-child(1) { grid-column: 1 / -1; }
    .proj:nth-child(2) { grid-column: 1 / -1; }
    .proj:nth-child(3) { grid-column: 1 / -1; }
    .proj:nth-child(4) { grid-column: 1 / -1; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    nav { padding: 20px 5vw; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 0 5vw 10vh; }
    .hero-illustration { opacity: 0.15; width: 90vw; right: -20vw; }
    .hero h1 { font-size: clamp(2.8rem, 12vw, 5rem); }
    section { padding: 80px 5vw; }
    .services-header { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 40px 5vw; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 2.6rem; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
  }
