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

    :root {
      --bg:       #07090e;
      --bg2:      #0d1018;
      --bg3:      #111520;
      --text:     #ddd8cd;
      --muted:    #6b6b6b;
      --accent:   #c6ff00;
      --error:    #ff5c5c;
      --success:  #c6ff00;
      --border:   rgba(255,255,255,0.07);
      --ff-display: 'DM Serif Display', serif;
      --ff-head:  'Cormorant Garamond', serif;
      --ff-ui:    'Syne', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--ff-ui);
      overflow-x: hidden;
      cursor: none;
      min-height: 100vh;
    }

    /* ─── CURSOR ─────────────────────────────────────────────── */
    #cursor {
      position: fixed; width: 10px; height: 10px;
      background: var(--accent); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .3s, height .3s;
      mix-blend-mode: difference;
    }
    #cursor-ring {
      position: fixed; width: 38px; height: 38px;
      border: 1px solid rgba(198,255,0,0.5); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%, -50%);
      transition: left .12s, top .12s, width .3s, height .3s;
    }

    /* ─── NAV ────────────────────────────────────────────────── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(7,9,14,0.95);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 6vw; height: 68px;
    }
    .nav-logo {
      font-family: var(--ff-ui); font-size: 18px; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase;
      color: #fff; text-decoration: none;
      display: flex; align-items: center; gap: 6px;
    }
    .nav-logo span { color: var(--accent); font-size: 22px; }
    .nav-back {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--muted); text-decoration: none;
      display: flex; align-items: center; gap: 8px;
      transition: color .2s;
    }
    .nav-back svg { transition: transform .25s; }
    .nav-back:hover { color: var(--text); }
    .nav-back:hover svg { transform: translateX(-4px); }

    /* ─── PAGE LAYOUT ────────────────────────────────────────── */
    #page {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
      padding-top: 68px;
    }

    /* ─── LEFT PANEL — PITCH ─────────────────────────────────── */
    #pitch {
      position: sticky;
      top: 68px;
      height: calc(100vh - 68px);
      overflow-y: auto;
      background: var(--bg2);
      border-right: 1px solid var(--border);
      padding: 72px 7vw 72px 6vw;
      display: flex;
      flex-direction: column;
    }
    /* scrollbar hidden */
    #pitch::-webkit-scrollbar { width: 0; }

    .pitch-label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .28em; text-transform: uppercase; color: var(--accent);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 32px;
      opacity: 0; animation: fadeUp .6s .1s forwards;
    }
    .pitch-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

    .pitch-title {
      font-family: var(--ff-display);
      font-size: clamp(2.2rem, 3.5vw, 3.8rem);
      font-weight: 400; line-height: 1.05; letter-spacing: -.02em;
      color: #fff; margin-bottom: 28px;
      opacity: 0; animation: fadeUp .7s .2s forwards;
    }
    .pitch-title em { font-style: italic; color: var(--accent); }

    .pitch-desc {
      font-family: var(--ff-head);
      font-size: clamp(1rem, 1.3vw, 1.2rem);
      line-height: 1.8; color: rgba(221,216,205,0.6);
      margin-bottom: 44px;
      opacity: 0; animation: fadeUp .6s .3s forwards;
    }

    /* Perks list */
    .perks-label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
      margin-bottom: 20px;
      opacity: 0; animation: fadeUp .6s .4s forwards;
    }
    .perks {
      display: flex; flex-direction: column; gap: 16px;
      margin-bottom: 48px;
      opacity: 0; animation: fadeUp .6s .45s forwards;
    }
    .perk {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 16px 18px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.015);
      transition: border-color .25s, background .25s;
    }
    .perk:hover { border-color: rgba(198,255,0,0.2); background: rgba(198,255,0,0.03); }
    .perk-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      background: rgba(198,255,0,0.08);
      border: 1px solid rgba(198,255,0,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 14px;
    }
    .perk-text { flex: 1; }
    .perk-title {
      font-family: var(--ff-ui); font-size: 12px; font-weight: 700;
      color: var(--text); margin-bottom: 4px;
    }
    .perk-desc {
      font-family: var(--ff-ui); font-size: 11px;
      color: var(--muted); line-height: 1.6;
    }

    /* Pricing plans */
    .plans-label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
      margin-bottom: 16px;
      opacity: 0; animation: fadeUp .6s .5s forwards;
    }

    /* Toggle monthly/yearly */
    .billing-toggle {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 20px;
      opacity: 0; animation: fadeUp .6s .55s forwards;
    }
    .toggle-label {
      font-family: var(--ff-ui); font-size: 11px; font-weight: 600;
      color: var(--muted); cursor: pointer; transition: color .2s;
    }
    .toggle-label.active { color: var(--text); }
    .toggle-switch {
      position: relative; width: 44px; height: 24px;
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 12px; cursor: pointer;
      transition: background .25s, border-color .25s;
    }
    .toggle-switch.on { background: rgba(198,255,0,0.15); border-color: rgba(198,255,0,0.4); }
    .toggle-switch::before {
      content: ''; position: absolute;
      width: 16px; height: 16px; border-radius: 50%;
      background: var(--muted); top: 3px; left: 3px;
      transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s;
    }
    .toggle-switch.on::before { transform: translateX(20px); background: var(--accent); }
    .toggle-badge {
      font-family: var(--ff-ui); font-size: 9px; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--bg); background: var(--accent); padding: 3px 8px;
    }

    .plans {
      display: flex; flex-direction: column; gap: 8px;
      opacity: 0; animation: fadeUp .6s .6s forwards;
    }
    .plan {
      border: 1px solid var(--border);
      padding: 20px 22px;
      display: flex; align-items: center; gap: 18px;
      cursor: pointer;
      transition: border-color .25s, background .25s;
      position: relative; overflow: hidden;
    }
    .plan::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 2px; background: var(--accent);
      transform: scaleY(0); transform-origin: bottom;
      transition: transform .3s cubic-bezier(.16,1,.3,1);
    }
    .plan:hover::before, .plan.selected::before { transform: scaleY(1); }
    .plan.selected { border-color: rgba(198,255,0,0.35); background: rgba(198,255,0,0.04); }
    .plan-radio {
      width: 18px; height: 18px; border-radius: 50%;
      border: 1.5px solid var(--border); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: border-color .2s;
    }
    .plan.selected .plan-radio { border-color: var(--accent); }
    .plan-radio::after {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      background: var(--accent); opacity: 0; transform: scale(0);
      transition: opacity .2s, transform .25s cubic-bezier(.16,1,.3,1);
    }
    .plan.selected .plan-radio::after { opacity: 1; transform: scale(1); }
    .plan-info { flex: 1; }
    .plan-name {
      font-family: var(--ff-ui); font-size: 12px; font-weight: 700;
      letter-spacing: .06em; color: var(--text); margin-bottom: 3px;
    }
    .plan-tagline {
      font-family: var(--ff-ui); font-size: 10px; color: var(--muted); line-height: 1.5;
    }
    .plan-price {
      font-family: var(--ff-display); font-size: 1.6rem; font-weight: 400;
      color: #fff; text-align: right; flex-shrink: 0;
    }
    .plan-price small {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 600;
      color: var(--muted); display: block; margin-top: 2px;
    }
    .plan.enterprise .plan-price {
      font-family: var(--ff-ui); font-size: 13px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
    }

    /* ─── RIGHT PANEL — FORM ─────────────────────────────────── */
    #form-panel {
      padding: 72px 6vw 72px 7vw;
      background: var(--bg);
    }

    .form-title {
      font-family: var(--ff-display);
      font-size: clamp(1.8rem, 2.5vw, 2.6rem);
      font-weight: 400; color: #fff; line-height: 1.1;
      margin-bottom: 8px;
      opacity: 0; animation: fadeUp .6s .2s forwards;
    }
    .form-title em { font-style: italic; color: var(--accent); }
    .form-subtitle {
      font-family: var(--ff-ui); font-size: 12px;
      color: var(--muted); margin-bottom: 44px;
      opacity: 0; animation: fadeUp .6s .3s forwards;
    }

    .form-section-label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--accent);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 24px; margin-top: 40px;
    }
    .form-section-label::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

    .form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-bottom: 0;
    }
    .form-row.full { grid-template-columns: 1fr; }

    /* Field */
    .field {
      display: flex; flex-direction: column;
      margin-bottom: 20px;
      position: relative;
    }
    .field label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 10px;
      transition: color .2s;
    }
    .field:focus-within label { color: var(--accent); }

    .field input,
    .field select {
      background: var(--bg2);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--ff-ui);
      font-size: 13px;
      padding: 14px 16px;
      outline: none;
      transition: border-color .25s, background .25s, box-shadow .25s;
      width: 100%;
      -webkit-appearance: none;
      appearance: none;
    }
    .field input::placeholder { color: rgba(107,107,107,0.6); }
    .field input:focus,
    .field select:focus {
      border-color: rgba(198,255,0,0.4);
      background: rgba(13,16,24,0.8);
      box-shadow: 0 0 0 3px rgba(198,255,0,0.05);
    }
    .field input.valid { border-color: rgba(198,255,0,0.3); }
    .field input.invalid,
    .field select.invalid { border-color: rgba(255,92,92,0.5); }

    /* Select arrow */
    .field.select-wrap::after {
      content: '↓';
      position: absolute; right: 14px; bottom: 14px;
      font-size: 12px; color: var(--muted);
      pointer-events: none;
    }

    /* Error message */
    .field-error {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 600;
      color: var(--error); margin-top: 6px;
      display: flex; align-items: center; gap: 5px;
      height: 0; overflow: hidden; opacity: 0;
      transition: height .25s, opacity .25s, margin-top .25s;
    }
    .field-error.show { height: 18px; opacity: 1; margin-top: 6px; }
    .field-error::before { content: '!'; flex-shrink: 0; }

    /* Password strength */
    .password-strength {
      display: flex; gap: 4px; margin-top: 8px; height: 3px;
    }
    .strength-bar {
      flex: 1; height: 3px; background: var(--border);
      transition: background .3s;
    }
    .strength-bar.weak   { background: var(--error); }
    .strength-bar.medium { background: #f5a623; }
    .strength-bar.strong { background: var(--accent); }

    /* Password match indicator */
    .match-indicator {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 600;
      margin-top: 6px; height: 0; overflow: hidden; opacity: 0;
      transition: height .25s, opacity .25s;
      display: flex; align-items: center; gap: 5px;
    }
    .match-indicator.show { height: 18px; opacity: 1; }
    .match-indicator.ok   { color: var(--accent); }
    .match-indicator.nok  { color: var(--error); }

    /* Checkbox */
    .field-check {
      display: flex; align-items: flex-start; gap: 12px;
      margin-bottom: 20px;
    }
    .field-check input[type="checkbox"] {
      width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
      background: var(--bg2); border: 1px solid var(--border);
      -webkit-appearance: none; appearance: none; cursor: pointer;
      transition: border-color .2s, background .2s;
      display: flex; align-items: center; justify-content: center;
    }
    .field-check input[type="checkbox"]:checked {
      background: var(--accent); border-color: var(--accent);
    }
    .field-check input[type="checkbox"]:checked::after {
      content: '✓'; font-size: 11px; color: var(--bg); font-weight: 700;
    }
    .field-check label {
      font-family: var(--ff-ui); font-size: 11px; font-weight: 400;
      letter-spacing: normal; text-transform: none;
      color: var(--muted); line-height: 1.6; cursor: pointer;
    }
    .field-check label a { color: var(--accent); text-decoration: none; }
    .field-check label a:hover { text-decoration: underline; }

    /* Submit button */
    .submit-btn {
      width: 100%; margin-top: 8px;
      display: flex; align-items: center; justify-content: center; gap: 12px;
      background: var(--accent); color: var(--bg);
      font-family: var(--ff-ui); font-size: 12px; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      padding: 18px 32px; border: none; cursor: pointer;
      position: relative; overflow: hidden;
      transition: gap .3s;
    }
    .submit-btn::before {
      content: ''; position: absolute; inset: 0; background: #fff;
      transform: translateX(-101%);
      transition: transform .4s cubic-bezier(.76,0,.24,1);
    }
    .submit-btn:hover::before { transform: translateX(0); }
    .submit-btn span, .submit-btn svg { position: relative; z-index: 1; }
    .submit-btn:hover { gap: 18px; }
    .submit-btn svg { transition: transform .3s; }
    .submit-btn:hover svg { transform: translateX(5px); }
    .submit-btn:disabled {
      opacity: 0.5; cursor: not-allowed;
    }
    .submit-btn:disabled::before { display: none; }

    .form-note {
      font-family: var(--ff-ui); font-size: 10px;
      color: var(--muted); text-align: center;
      margin-top: 16px; line-height: 1.7;
    }
    .form-note a { color: var(--accent); text-decoration: none; }

    /* ─── SUCCESS OVERLAY ────────────────────────────────────── */
    #success-overlay {
      position: fixed; inset: 0; z-index: 500;
      background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      pointer-events: none; opacity: 0;
      transition: opacity .5s ease;
    }
    #success-overlay.show { opacity: 1; pointer-events: all; }

    .success-inner {
      text-align: center; padding: 40px;
      max-width: 560px;
      transform: translateY(30px);
      transition: transform .7s cubic-bezier(.16,1,.3,1) .1s;
    }
    #success-overlay.show .success-inner { transform: translateY(0); }

    .success-symbol {
      font-family: var(--ff-ui); font-size: 64px;
      color: var(--accent); line-height: 1;
      margin-bottom: 32px;
      display: block;
      animation: none;
    }
    #success-overlay.show .success-symbol {
      animation: symbolPop .6s .3s cubic-bezier(.16,1,.3,1) both;
    }
    @keyframes symbolPop {
      from { transform: scale(0.4); opacity: 0; }
      to   { transform: scale(1);   opacity: 1; }
    }

    .success-title {
      font-family: var(--ff-display);
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 400; line-height: 1;
      color: #fff; margin-bottom: 20px;
      opacity: 0;
      transition: opacity .5s .5s;
    }
    #success-overlay.show .success-title { opacity: 1; }
    .success-title em { font-style: italic; color: var(--accent); }

    .success-sub {
      font-family: var(--ff-head);
      font-size: clamp(1.1rem, 1.5vw, 1.35rem);
      font-style: italic; font-weight: 300;
      color: rgba(221,216,205,0.65); line-height: 1.7;
      margin-bottom: 44px;
      opacity: 0;
      transition: opacity .5s .7s;
    }
    #success-overlay.show .success-sub { opacity: 1; }

    .success-divider {
      width: 80px; height: 1px;
      background: linear-gradient(to right, transparent, var(--accent), transparent);
      margin: 0 auto 44px;
      opacity: 0;
      transition: opacity .5s .65s;
    }
    #success-overlay.show .success-divider { opacity: 1; }

    .success-perks {
      display: flex; flex-direction: column; gap: 10px;
      margin-bottom: 44px; text-align: left;
      opacity: 0;
      transition: opacity .5s .8s;
    }
    #success-overlay.show .success-perks { opacity: 1; }
    .success-perk {
      font-family: var(--ff-ui); font-size: 12px; color: rgba(221,216,205,0.5);
      display: flex; align-items: center; gap: 12px;
    }
    .success-perk::before { content: '→'; color: var(--accent); font-size: 11px; flex-shrink: 0; }

    .success-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--accent); color: var(--bg);
      font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      text-decoration: none; padding: 14px 28px;
      position: relative; overflow: hidden;
      opacity: 0; transition: opacity .5s .9s, gap .3s;
    }
    #success-overlay.show .success-btn { opacity: 1; }
    .success-btn::before {
      content: ''; position: absolute; inset: 0; background: #fff;
      transform: translateX(-101%);
      transition: transform .4s cubic-bezier(.76,0,.24,1);
    }
    .success-btn:hover::before { transform: translateX(0); }
    .success-btn span, .success-btn svg { position: relative; z-index: 1; }
    .success-btn:hover { gap: 16px; }

    /* Animated confetti-like dots */
    .success-dots {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .dot {
      position: absolute; border-radius: 50%;
      animation: dotFall linear infinite;
      opacity: 0;
    }
    #success-overlay.show .dot { opacity: 1; }
    @keyframes dotFall {
      0%   { transform: translateY(-20px) rotate(0deg); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 0.5; }
      100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
    }

    /* ─── ANIMATIONS ─────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 960px) {
      #page { grid-template-columns: 1fr; }
      #pitch {
        position: static; height: auto;
        padding: 60px 5vw 40px;
        border-right: none; border-bottom: 1px solid var(--border);
      }
      #form-panel { padding: 60px 5vw 80px; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      body { cursor: auto; }
      #cursor, #cursor-ring { display: none; }
    }
    
        /* ── Footer ──────────────────────────────────────────────── */
    #site-footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 64px 6vw 36px;
      position: relative;
      overflow: hidden;
    }

    /* Giant faded background logo */
    #site-footer::before {
      content: '✦';
      position: absolute;
      right: -2vw;
      bottom: -40px;
      font-family: var(--ff-ui);
      font-size: clamp(180px, 22vw, 300px);
      color: rgba(255, 255, 255, 0.018);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    /* Accent top line */
    #site-footer::after {
      content: '';
      position: absolute;
      top: 0;
      left: 6vw;
      width: 80px;
      height: 2px;
      background: var(--accent);
    }

    /* ── Top row ── */
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 28px;
      position: relative;
    }

    /* Brand */
    .footer-brand {}

    .footer-logo {
      font-family: var(--ff-ui);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 14px;
    }

    .footer-logo span {
      color: var(--accent);
      font-size: 24px;
    }

    .footer-tagline {
      font-family: var(--ff-head);
      font-size: 1.05rem;
      font-style: italic;
      font-weight: 300;
      color: rgba(221, 216, 205, 0.45);
      line-height: 1.6;
      max-width: 260px;
    }

    /* Nav links — center */
    .footer-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .footer-nav-label {
      font-family: var(--ff-ui);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 4px;
    }

    .footer-nav a {
      font-family: var(--ff-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
      position: relative;
    }

    .footer-nav a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    }

    .footer-nav a:hover {
      color: var(--text);
    }

    .footer-nav a:hover::after {
      transform: scaleX(1);
    }

    /* Socials — right */
    .footer-social {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
    }

    .footer-social-label {
      font-family: var(--ff-ui);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-link {
      width: 38px;
      height: 38px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      text-decoration: none;
      transition: border-color .25s, color .25s, background .25s, transform .25s;
    }

    .social-link:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(198, 255, 0, 0.06);
      transform: translateY(-3px);
    }

    .social-link svg {
      width: 15px;
      height: 15px;
    }

    /* Newsletter micro */
    .footer-newsletter {
      margin-top: 6px;
      display: flex;
      align-items: center;
    }

    .footer-newsletter input {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-right: none;
      color: var(--text);
      font-family: var(--ff-ui);
      font-size: 11px;
      padding: 9px 14px;
      outline: none;
      width: 190px;
      transition: border-color .25s;
    }

    .footer-newsletter input::placeholder {
      color: rgba(107, 107, 107, 0.5);
    }

    .footer-newsletter input:focus {
      border-color: rgba(198, 255, 0, 0.3);
    }

    .footer-newsletter button {
      background: var(--accent);
      border: none;
      color: var(--bg);
      font-family: var(--ff-ui);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: 9px 14px;
      cursor: pointer;
      transition: background .25s;
      white-space: nowrap;
    }

    .footer-newsletter button:hover {
      background: #fff;
    }

    /* ── Bottom row ── */
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      position: relative;
    }

    .footer-copy {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      color: rgba(107, 107, 107, 0.6);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-copy .copy-sep {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(107, 107, 107, 0.4);
      flex-shrink: 0;
    }

    .footer-copy a {
      color: rgba(198, 255, 0, 0.5);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-copy a:hover {
      color: var(--accent);
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(107, 107, 107, 0.45);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-legal a:hover {
      color: var(--muted);
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-nav {
        align-items: flex-start;
      }

      .footer-social {
        align-items: flex-start;
      }
    }

    @media (max-width: 600px) {
      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-social {
        align-items: flex-start;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .footer-newsletter input {
        width: 160px;
      }

      #site-footer {
        padding: 48px 5vw 32px;
      }
    }