:root {
    --bg:      #07090c;
    --bg2:     #0b0f14;
    --bg3:     #0f1520;
    --surface: #111924;
    --border:  #1e2d3d;
    --border2: #243850;
    --accent:  #00c8f0;
    --accent2: #0090b8;
    --glow:    rgba(0,200,240,0.12);
    --amber:   #f0a030;
    --green:   #20b860;
    --red:     #ef4444;
    --text:    #dce8f0;
    --text2:   #9aaabb;
    --text3:   #7a9aaa;
    --mono:    'JetBrains Mono', monospace;
    --sans:    'Syne', sans-serif;
    --body:    'Inter', sans-serif;
  }

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

  /* Global link reset — no browser blue */
  a { color: inherit; text-decoration: none; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── LANGUAGE ── */
  .de { display: none !important; }
  body.lang-de .en { display: none !important; }
  body.lang-de .de { display: inline !important; }
  /* block-level elements keep their block display */
  body.lang-de h1 .de,
  body.lang-de h2 .de,
  body.lang-de p.de,
  body.lang-de div.de { display: block !important; }
  .inline-de { display: none; }
  .inline-en { display: inline; }
  body.lang-de .inline-de { display: inline; }
  body.lang-de .inline-en { display: none; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 58px;
    background: rgba(7,9,12,0.94);
    backdrop-filter: blur(16px);
    }

  .nav-logo {
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
  }

  

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

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

  .nav-links a {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--text); }
  /* ── HAMBURGER ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text2);
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: rgba(7,9,12,0.98);
    backdrop-filter: blur(16px);
    z-index: 99;
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--text2);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 0;
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--accent); }


  .lang-toggle {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
  }

  .lang-btn {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.65rem;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text2);
    transition: all 0.2s;
  }

  .lang-btn.active {
    background: var(--accent);
    color: var(--bg);
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 9rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-radial {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,200,240,0.06) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-rule {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3rem;
  }

  .hero-rule-line {
    width: 40px; height: 1px;
    background: var(--border2);
  }

  .hero-rule-dot {
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
  }

  h1 {
    font-family: var(--sans);
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    max-width: 800px;
  }

  h1 .hl { color: var(--accent); }

  .hero-sub {
    font-family: var(--body);
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 560px;
    margin: 0 auto 0.5rem;
    font-weight: 300;
    line-height: 1.75;
  }

  .trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0 3rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    letter-spacing: 0.08em;
  }

  .trust-row span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .trust-row span::before {
    content: '—';
    color: var(--border2);
  }

  .trust-row span:first-child::before { display: none; }

  .cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #07090c;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-primary:hover {
    background: #fff;
    transform: translateY(-1px);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text2);
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    border: 1px solid var(--border2);
    transition: all 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--text2);
    color: var(--text);
  }

  /* ── HERO TERMINAL ── */
  .terminal-wrap {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
  }

  .terminal {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
  }

  .terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
  }

  .t-dot { width: 10px; height: 10px; border-radius: 50%; }
  .t-red { background: #e05050; }
  .t-yellow { background: #d0a020; }
  .t-green { background: #20a850; }

  .terminal-title {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text3);
    margin-left: auto;
    letter-spacing: 0.05em;
  }

  .terminal-body {
    padding: 1.5rem;
    font-family: var(--mono);
    font-size: 0.77rem;
    line-height: 2;
  }

  .t-comment { color: var(--text2); }
  .t-cmd { color: var(--accent); }
  .t-path { color: var(--amber); }
  .t-ok { color: var(--green); }
  .t-val { color: #c080f0; }
  .t-num { color: var(--accent); }
  .t-dim { color: var(--text2); }

  /* ── METRICS STRIP ── */
  .metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .metric-cell {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .metric-num {
    font-family: var(--mono);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }

  .metric-label {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* ── SECTION BASE ── */
  section { position: relative; z-index: 1; }

  .section-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 7rem 2rem;
  }

  .section-eyebrow {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
  }

  h2 {
    font-family: var(--sans);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }

  h2 .hl { color: var(--accent); }

  .section-lead {
    font-size: 1rem;
    color: var(--text2);
    max-width: 520px;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 4rem;
  }

  .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
  }

  /* ── PROBLEM ── */
  #problem {
    background: var(--bg);
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .problem-left h2 { margin-bottom: 1rem; }

  .problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
  }

  .problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
  }

  .problem-item:last-child { border-bottom: none; }

  .problem-mark {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: #f87171;
    background: #2a1014;
    border: 1px solid rgba(232,64,64,0.25);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    letter-spacing: 0.05em;
  }

  .problem-text {
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.5;
  }

  .problem-text strong {
    color: var(--text);
    font-weight: 500;
  }

  .problem-panel {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 4px;
    overflow: hidden;
  }

  .panel-header {
    padding: 1rem 1.25rem;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .chaos-rows {
    padding: 1rem 0;
  }

  .chaos-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.65rem 1.25rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(26,36,51,0.6);
    transition: background 0.15s;
  }

  .chaos-row:last-child { border-bottom: none; }
  .chaos-row:hover { background: rgba(255,255,255,0.02); }

  .chaos-name { color: var(--text2); }
  .chaos-status { padding: 0.15rem 0.5rem; border-radius: 2px; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
  .s-running { background: #0f2a1a; color: #4ade80; border: 1px solid rgba(32,184,96,0.25); }
  .s-unknown { background: #1a2230; color: #b0c4d8; border: 1px solid var(--border2); }
  .s-lost { background: #2a1014; color: #f87171; border: 1px solid rgba(232,64,64,0.25); }
  .s-warning { background: #2a1e0a; color: #fbbf24; border: 1px solid rgba(240,160,48,0.25); }
  .chaos-cost { color: var(--text3); font-size: 0.8rem; }
  .chaos-cost.expensive { color: var(--amber); }

  .chaos-note {
    padding: 0.9rem 1.25rem;
    border-top: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    letter-spacing: 0.04em;
  }

  /* ── SOLUTION ── */
  #solution {
    background: var(--bg2);
  }

  .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .solution-panel {
    background: var(--bg);
    border: 1px solid var(--border2);
    border-radius: 4px;
    overflow: hidden;
  }

  .spanel-header {
    padding: 0.9rem 1.25rem;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .spanel-title {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .spanel-live {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--green);
  }

  .live-dot {
    width: 5px; height: 5px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }

  .solution-rows { padding: 0.5rem 0; }

  .sol-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem 1.25rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(26,36,51,0.5);
  }

  .sol-row:last-child { border-bottom: none; }
  .sol-name { color: var(--text2); }
  .sol-tokens { color: var(--text3); font-size: 0.8rem; }
  .sol-cost { color: var(--accent); font-size: 0.8rem; font-weight: 500; }

  .spanel-footer {
    padding: 0.9rem 1.25rem;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .spanel-stat { text-align: center; }
  .spanel-stat-val {
    font-family: var(--mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .spanel-stat-label {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .solution-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .sol-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .sol-num {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: #67e8f9;
    background: #0a1e24;
    border: 1px solid rgba(0,200,240,0.25);
    width: 26px; height: 26px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 0.1rem;
  }

  .sol-point-title {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text);
  }

  .sol-point-desc {
    font-size: 0.85rem;
    color: var(--text2);
    line-height: 1.55;
  }

  /* ── FEATURES ── */
  #features { background: var(--bg); }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .feature-card {
    background: var(--bg2);
    padding: 2.25rem 2rem;
    transition: background 0.2s;
    position: relative;
  }

  .feature-card:hover { background: var(--bg3); }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.2s;
  }

  .feature-card:hover::before {
    background: linear-gradient(to right, var(--accent), transparent);
  }

  .feature-tag {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    opacity: 0.7;
  }

  .feature-title {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    line-height: 1.2;
  }

  .feature-benefit {
    font-size: 0.82rem;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* ── SCREENSHOTS ── */
  #screenshots { background: var(--bg2); }

  .screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .screenshot-item {
    background: var(--bg);
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
  }

  .screenshot-item:hover { background: var(--bg3); }

  .screenshot-num {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
  }

  .screenshot-title {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text);
  }

  .screenshot-desc {
    font-size: 0.78rem;
    color: var(--text2);
    line-height: 1.5;
  }

  .screenshot-img-wrap {
    margin-bottom: 1rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .screenshot-img-wrap img {
    width: 100%;
    display: block;
  }

  .screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(26,36,51,0.3) 20px,
      rgba(26,36,51,0.3) 21px
    );
    min-height: 140px;
  }

  /* ── INSTALL ── */
  #install { background: var(--bg); }

  .install-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 760px;
  }

  .step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .step-num {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: #67e8f9;
    background: #0a1e24;
    border: 1px solid rgba(0,200,240,0.25);
    width: 28px; height: 28px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.05rem;
  }

  .step-content {}

  .step-title {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
  }

  .step-code {
    font-family: var(--mono);
    font-size: 0.8rem;
    background: var(--bg2);
    border: 1px solid var(--border2);
    padding: 0.8rem 1.1rem;
    border-radius: 2px;
    color: var(--accent);
    display: block;
  }

  /* ── OWNERSHIP ── */
  #ownership { background: var(--bg2); }

  .ownership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .price-block {
    background: var(--bg);
    border: 1px solid var(--border2);
    border-radius: 4px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
  }

  .price-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
  }

  .price-label {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
  }

  .price-amount {
    font-family: var(--sans);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
  }

  .price-forever {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
  }

  .price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text2);
  }

  .check {
    color: var(--green);
    font-family: var(--mono);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }

  .ownership-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
  }

  .own-point { }

  .own-title {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
  }

  .own-desc {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.6;
  }

  /* ── STACK ── */
  #stack { background: var(--bg); }

  .stack-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    max-width: 680px;
  }

  .stack-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 0.78rem;
    transition: background 0.15s;
  }

  .stack-item:hover { background: var(--bg2); }
  .stack-item:last-child { border-bottom: none; }

  .stack-name { color: var(--text2); }
  .stack-role { color: var(--text3); font-size: 0.8rem; }

  .stack-req {
    padding: 0.2rem 0.55rem;
    font-size: 0.8rem;
    border-radius: 2px;
    letter-spacing: 0.06em;
  }

  .req-yes { background: #0f2a1a; color: #4ade80; border: 1px solid rgba(32,184,96,0.25); }
  .req-opt { background: #2a1e0a; color: #fbbf24; border: 1px solid rgba(240,160,48,0.25); }

  /* ── FINAL CTA ── */
  #final-cta {
    background: var(--bg);
    text-align: center;
  }

  #final-cta .section-inner {
    padding: 8rem 2rem;
    max-width: 700px;
  }

  #final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  #final-cta .section-lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .cta-note {
    margin-top: 1.5rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    letter-spacing: 0.08em;
  }

  /* ── FOOTER ── */
  footer.footer-new {
    border-top: 1px solid var(--border);
    margin-top: 0;
  }

  .footer-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 5rem 2.5rem 4rem;
    display: grid;
    grid-template-columns: 280px repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
  }

  .footer-brand-col {}
  .footer-logo { display: inline-block; margin-bottom: 1.5rem; }

  .footer-tagline {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.75;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .footer-col-title {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.4rem;
  }

  .footer-col a {
    font-size: 0.875rem;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .footer-bottom {
    max-width: 1060px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text2);
    letter-spacing: 0.04em;
  }

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

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

  .footer-icons {
    display: flex;
    gap: 0.85rem;
    align-items: center;
  }

  .footer-icons a {
    color: var(--text3);
    display: flex;
    align-items: center;
    transition: color 0.2s;
  }

  .footer-icons a:hover { color: var(--text2); }

  /* ── FAQ ── */
  .faq-list {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg2);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    transition: background 0.2s;
  }

  .faq-q:hover { background: var(--bg3); }
  .faq-q.open { background: var(--bg3); }

  .faq-icon {
    font-family: var(--mono);
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
  }

  .faq-q.open .faq-icon { transform: rotate(45deg); }

  .faq-a {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.7;
    background: var(--bg3);
  }

  .faq-a.open { display: block; }

  .faq-a code {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    background: var(--bg2);
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
  }


  /* ── RESPONSIVE ── */

  @media (max-width: 900px) {
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      padding: 3.5rem 1.5rem 3rem;
    }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-bottom { padding: 1rem 1.5rem; }
  }

  @media (max-width: 820px) {
    /* Nav */
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Typography */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }

    /* Sections */
    .section-inner { padding: 5rem 1.5rem; }

    /* Grids */
    .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .solution-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .screenshots-grid { grid-template-columns: 1fr; }
    .ownership-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .metrics-strip { grid-template-columns: repeat(2, 1fr); }
    .stack-list { max-width: 100%; }

    /* Who section */
    #who .section-inner > div[style*="grid-template-columns"] { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    nav { padding: 0 1.25rem; }
    .section-inner { padding: 4rem 1.25rem; }

    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.4rem; }
    .hero-sub { font-size: 0.95rem; }

    .trust-row { flex-direction: column; align-items: center; gap: 0.5rem; }
    .trust-row span::before { display: none; }

    .cta-group { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { justify-content: center; text-align: center; }

    .terminal-wrap { overflow-x: auto; }
    .terminal-body { font-size: 0.8rem; line-height: 1.8; white-space: nowrap; }

    .metrics-strip { grid-template-columns: repeat(2, 1fr); }
    .metric-num { font-size: 1.8rem; }

    .feature-grid { grid-template-columns: 1fr; }
    .problem-panel { display: none; }

    .sol-row { grid-template-columns: 1fr auto; }
    .sol-tokens { display: none; }

    .install-steps { gap: 1.25rem; }
    .step { gap: 1rem; }
    .step-code { font-size: 0.8rem; word-break: break-all; white-space: normal; }

    .price-block { padding: 1.5rem; }
    .price-amount { font-size: 3.5rem; }

    .stack-item { padding: 0.8rem 1rem; font-size: 0.8rem; }
    .stack-role { display: none; }

    .faq-q { font-size: 0.88rem; padding: 1rem 1.25rem; }
    .faq-a { padding: 0 1.25rem 1rem; }

    .footer-inner { grid-template-columns: 1fr 1fr; padding: 3rem 1.25rem 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 1rem 1.25rem; }

    #final-cta .section-inner { padding: 5rem 1.25rem; }
  }

  @media (max-width: 380px) {
    h1 { font-size: 1.65rem; }
    .metric-num { font-size: 1.5rem; }
  }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
  }

  .lightbox.open { display: flex; }

  .lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border: 1px solid var(--border2);
    border-radius: 3px;
  }

  /* ── ACCESSIBILITY ── */
  .skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.5rem 1rem;
    font-family: var(--mono);
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 9999;
    border-radius: 2px;
    transition: top 0.2s;
  }

  .skip-link:focus { top: 1rem; }
