  :root {
    --bg: #191127;
    --bg2: #180f26;
    --surface: #23133a;
    --border: #3a1c63;
    --gold: #883CF0;
    --gold2: #7c3aed;
    --gold-glow: #873cf01f;
    --text: #e2e8f0;
    --muted: #d6d6d6;
    --teal: #2ecbcb;
    --red: #e04040;
    --green: #3ecb7a;
    --mono: 'DM Mono', monospace;
    --serif: 'Cormorant Garamond', serif;
    --display: 'Unbounded', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--serif);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.5;
  }

  /* 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.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s, background 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    border-color: var(--border);
    background: #180f26;
    backdrop-filter: blur(20px);
  }
  .nav-logo {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .nav-logo span { color: var(--text); font-weight: 200; }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: none;
    transition: background 0.2s, color 0.2s;
  }
  .nav-cta:hover { background: var(--gold); color: var(--bg); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 65%),
      radial-gradient(ellipse 50% 80% at 20% 80%, rgba(46,203,203,0.04) 0%, transparent 60%);
  }

  /* Animated grid lines */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(180,140,60,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(180,140,60,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
  }
  @keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-title {
    font-family: var(--display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 200;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.15em;
    font-weight: 300;
  }
  .hero-sub {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }
  .btn-primary {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--bg);
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  .btn-primary:hover::after { transform: translateX(100%); }
  .btn-secondary {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
    cursor: none;
  }
  .btn-secondary:hover { color: var(--bg); }
  .btn-secondary::before {
    content: '▶';
    font-size: 10px;
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: border-color 0.2s;
  }
  .btn-secondary:hover::before { border-color: var(--gold); color: var(--gold); }

  /* HERO VISUAL (right side) */
  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.2s 0.6s forwards;
  }

  .dashboard-orb {
    width: 460px;
    height: 460px;
    position: relative;
  }

  /* Rotating rings */
  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
  }
  .ring-1 {
    inset: 0;
    border-color: rgba(153, 76, 201, 0.2);
    animation: spin 30s linear infinite;
  }
  .ring-1::after {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--gold);
  }
  .ring-2 {
    inset: 40px;
    border-color: rgba(143, 46, 203, 0.15);
    animation: spinR 20s linear infinite;
  }
  .ring-2::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 50%;
    width: 6px; height: 6px;
    background: var(--teal);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--teal);
  }
  .ring-3 {
    inset: 80px;
    border-color: rgba(170, 76, 201, 0.1);
    animation: spin 45s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  @keyframes spinR { to { transform: rotate(-360deg); } }

  .orb-center {
    position: absolute;
    inset: 120px;
    background: radial-gradient(circle, rgba(147, 76, 201, 0.15) 0%, rgba(159, 76, 201, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .orb-val {
    font-family: var(--display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(153, 76, 201, 0.5);
  }
  .orb-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
  }

  /* Floating stat chips */
  .stat-chip {
    position: absolute;
    background: rgba(15,15,26,0.9);
    border: 1px solid var(--border);
    padding: 10px 16px;
    backdrop-filter: blur(10px);
  }
  .stat-chip.c1 { top: 60px; left: -30px; animation: float1 4s ease-in-out infinite; }
  .stat-chip.c2 { bottom: 80px; right: -40px; animation: float2 5s ease-in-out infinite; }
  .stat-chip.c3 { top: 200px; right: -50px; animation: float1 3.5s ease-in-out infinite 1s; }
  .stat-chip .val { font-family: var(--display); font-size: 1.1rem; font-weight: 700; color: var(--gold2); }
  .stat-chip .lbl { font-family: var(--mono); font-size: 9px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
  .stat-chip .trend { font-family: var(--mono); font-size: 9px; color: var(--green); margin-top: 2px; }

  @keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }
  @keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
  }

  /* SECTION COMMON */
  section { padding: 100px 48px; }

  .section-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
  }
  .section-title {
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.1em;
  }
  .divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.2;
    margin: 0 48px;
    width: calc(100% - 96px);
  }

  /* FEATURES SECTION */
  .features-section {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
  }
  .features-section::before {
    content: 'PAM';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--display);
    font-size: 30vw;
    font-weight: 700;
    color: rgba(172, 76, 201, 0.02);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
  }
  .features-header {
    max-width: 600px;
    margin-bottom: 70px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
  }
  .feature-card {
    background: var(--surface);
    padding: 40px 36px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: none;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
  }
  .feature-card:hover { border-color: var(--border); transform: translateY(-4px); }
  .feature-card:hover::before { transform: scaleX(1); }

  .feature-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 20px;
    position: relative;
  }
  .feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .feature-card:hover .feature-icon::after { border-color: #5e309d; }

  .feature-num {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    opacity: 0.6;
  }
  .feature-name {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .feature-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
  }

  /* LIVE DASHBOARD SECTION */
  .dashboard-section {
    position: relative;
    background: var(--bg);
  }
  .dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    margin-top: 60px;
    align-items: start;
  }
  .dash-left { display: flex; flex-direction: column; gap: 16px; }
  .dash-metric {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.2s, border-color 0.2s;
    cursor: none;
  }
  .dash-metric:hover { background: #1f1232; border-color: #5e309d; }
  .dash-metric-icon { font-size: 24px; width: 44px; text-align: center; }
  .dash-metric-info { flex: 1; }
  .dash-metric-label { font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
  .dash-metric-value { font-family: var(--display); font-size: 1.5rem; font-weight: 400; color: var(--gold2); }
  .dash-metric-sub { font-family: var(--mono); font-size: 9px; color: var(--green); margin-top: 2px; }

  .dash-right {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 32px;
  }
  .dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }
  .dash-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }
  .live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--green);
    letter-spacing: 0.1em;
  }
  .live-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

  /* Chart bars */
  .chart-area { height: 180px; display: flex; align-items: flex-end; gap: 6px; margin-bottom: 20px; }
  .bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .bar {
    width: 100%;
    background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.2));
    border-radius: 2px 2px 0 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: none;
  }
  .bar:hover { background: linear-gradient(180deg, var(--gold2), rgba(201,168,76,0.4)); }
  .bar-lbl { font-family: var(--mono); font-size: 8px; color: var(--muted); }

  /* PLAYER JOURNEY SECTION */
  .journey-section {
    background: var(--bg2);
    position: relative;
  }
  .journey-track {
    position: relative;
    margin-top: 70px;
    padding: 0 20px;
  }
  .journey-line {
    position: absolute;
    top: 32px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
    opacity: 0.3;
  }
  .journey-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
  }
  .journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: none;
  }
  .journey-node {
    width: 64px; height: 64px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: var(--bg);
    margin-bottom: 20px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
  }
  .journey-node::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .journey-step:hover .journey-node {
    border-color: var(--gold);
    box-shadow: 0 0 24px var(--gold-glow);
    transform: translateY(-6px);
  }
  .journey-step:hover .journey-node::after { border-color: #5e309d; }
  .journey-step-name { font-family: var(--display); font-size: 0.8rem; font-weight: 400; margin-bottom: 8px; }
  .journey-step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

  /* INTERACTIVE TAB SECTION */
  .solutions-section { background: var(--bg); }
  .tab-bar {
    display: flex;
    gap: 0;
    margin-top: 50px;
    margin-bottom: 2px;
    border-bottom: 1px solid var(--border);
  }
  .tab-btn {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 28px;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: none;
    position: relative;
    transition: color 0.2s;
  }
  .tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .tab-btn.active { color: var(--gold); }
  .tab-btn.active::after { transform: scaleX(1); }

  .tab-panel {
    display: none;
    padding: 48px 0;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    animation: fadeIn 0.4s forwards;
  }
  .tab-panel.active { display: grid; }
  .panel-content h3 {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 200;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .panel-content p { font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 24px; }
  .feature-list { list-style: none; }
  .feature-list li {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--muted);
    padding: 10px 0;
    border-bottom: 1px solid #3a1c63ac;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .feature-list li::before { content: '◆'; color: var(--gold); font-size: 7px; }

  .panel-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 32px;
    position: relative;
    overflow: hidden;
  }
  .panel-visual::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151, 76, 201, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Mini table */
  .mini-table { width: 100%; }
  .mini-table .row {
    display: grid;
    grid-template-columns: 1fr 80px 60px;
    padding: 10px 0;
    border-bottom: 1px solid #3a1c63;
    align-items: center;
  }
  .mini-table .row.header { margin-bottom: 4px; }
  .mini-table .row.header span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }
  .mini-table .player-name { font-size: 0.9rem; }
  .mini-table .player-id { font-family: var(--mono); font-size: 9px; color: var(--muted); }
  .mini-table .amount { font-family: var(--mono); font-size: 0.9rem; color: var(--gold2); }
  .status-badge {
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
  }
  .status-badge.active { background: rgba(62,203,122,0.15); color: var(--green); }
  .status-badge.review { background: #894cc926; color: var(--gold); }
  .status-badge.flagged { background: rgba(224,64,64,0.15); color: var(--red); }

  /* STATS TICKER */
  .ticker-section {
    background: var(--gold);
    overflow: hidden;
    padding: 16px 0;
  }
  .ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
  }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--bg);
    text-transform: uppercase;
  }
  .ticker-dot { width: 4px; height: 4px; background: var(--bg); border-radius: 50%; opacity: 0.4; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* CTA SECTION */
  .cta-section {
    background: var(--bg2);
    text-align: center;
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(153, 76, 201, 0.06) 0%, transparent 70%);
  }
  .cta-section .section-eyebrow { justify-content: center; }
  .cta-section .section-eyebrow::before { display: none; }
  .cta-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
  }
  .cta-sub { font-size: 1.1rem; color: var(--muted); max-width: 480px; margin: 0 auto 48px; line-height: 1.7; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* FOOTER */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 48px 40px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
  .footer-brand { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
  .footer-brand span { color: var(--text); font-weight: 200; }
  .footer-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
  .footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 20px; }
  .footer-col a { display: block; font-size: 0.9rem; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 28px; }
  .footer-copy { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-family: var(--mono); font-size: 10px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* REVEAL ON SCROLL */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* Input field */
  .input-row { display: flex; gap: 0; margin-top: 0; }
  .email-input {
    flex: 1;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text);
    font-family: var(--mono);
    font-size: 12px;
    outline: none;
    transition: border-color 0.2s;
    z-index: 2;
  }
  .email-input:focus { border-color: var(--gold); }
  .email-input::placeholder { color: var(--muted); }