  :root {
    --bg: #0a0a08;
    --surface: #111110;
    --card: #1a1a17;
    --border: #2a2a24;
    --accent: #d4f060;
    --accent2: #f0a040;
    --accent3: #60d4f0;
    --text: #e8e8e0;
    --muted: #666660;
  }

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

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    min-height: 100vh;
    overflow-x: hidden;
  }

  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: 0;
    opacity: 0.6;
  }

  /* ── LANG TOGGLE ── */
  .lang-toggle {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .lang-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
    user-select: none;
    cursor: pointer;
  }

  .lang-label.active { color: var(--accent); }

  .toggle-track {
    width: 48px;
    height: 26px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
  }

  .toggle-track:hover { border-color: var(--accent); }

  .toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .toggle-thumb.de { transform: translateX(22px); }

  /* ── LAYOUT ── */
  .wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  /* ── INTRO ── */
  #intro {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 14vw, 140px);
    line-height: 0.9;
    color: var(--text);
    margin-bottom: 8px;
  }

  h1 span { color: var(--accent); display: block; }

  .subtitle {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--muted);
    margin: 28px 0 48px;
    line-height: 1.5;
    max-width: 520px;
  }

  .meta-row { display: flex; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; }

  .meta-item { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

  .meta-item strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--text);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--bg);
    padding: 18px 36px;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }

  .btn:hover { background: var(--text); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--accent); }
  .btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; box-shadow: none; }

  .btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    clip-path: none;
  }

  .btn-ghost:hover { background: var(--card); box-shadow: none; transform: none; }

  /* ── SURVEY ── */
  #survey { display: none; padding: 60px 0; }

  .progress-bar-wrap {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
  }

  .progress-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }

  .progress-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

  .progress-count { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--accent); }

  .progress-track { height: 3px; background: var(--border); overflow: hidden; }

  .progress-fill { height: 100%; background: var(--accent); transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); width: 0%; }

  .q-card { display: none; animation: slideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
  .q-card.active { display: block; }

  @keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .q-number { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: var(--border); line-height: 1; margin-bottom: -8px; }

  .q-text {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(22px, 4vw, 32px);
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 40px;
  }

  .q-text em { color: var(--accent2); font-style: normal; }

  .options { display: grid; gap: 12px; }

  .option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
    overflow: hidden;
  }

  .option::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.2s;
  }

  .option:hover { border-color: var(--accent); background: #1e1e1a; }
  .option:hover::before { transform: scaleY(1); }
  .option.selected { border-color: var(--accent); background: #1e2010; }
  .option.selected::before { transform: scaleY(1); }

  .opt-key { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--muted); min-width: 24px; transition: color 0.15s; }
  .option:hover .opt-key, .option.selected .opt-key { color: var(--accent); }

  .opt-text { font-size: 14px; line-height: 1.5; color: var(--text); }
  .opt-sub { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.05em; }

  .q-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }

  /* ── RESULTS ── */
  #results { display: none; padding: 60px 0 100px; }

  .winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--bg);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .winner-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 10vw, 96px); line-height: 0.9; color: var(--text); margin-bottom: 16px; }
  .winner-title span { color: var(--accent); }

  .winner-desc { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.6; margin-bottom: 32px; }

  .winner-assets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }

  .asset-tag { padding: 6px 14px; border: 1px solid var(--border); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
  .asset-tag.highlight { border-color: var(--accent2); color: var(--accent2); }

  .rankings-title { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }

  .rank-list { display: grid; gap: 8px; }

  .rank-item { display: grid; grid-template-columns: 28px 1fr 60px; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .rank-item:last-child { border-bottom: none; }

  .rank-pos { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--muted); }
  .rank-pos.top { color: var(--accent); }

  .rank-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; }

  .rank-bar-track { height: 4px; background: var(--border); overflow: hidden; }
  .rank-bar-fill { height: 100%; background: var(--accent); transition: width 0.8s cubic-bezier(0.4,0,0.2,1); width: 0%; }
  .rank-bar-fill.second { background: var(--accent2); }
  .rank-bar-fill.third { background: var(--accent3); }
  .rank-bar-fill.rest { background: var(--border); }

  .rank-pct { font-family: 'Bebas Neue', sans-serif; font-size: 22px; text-align: right; color: var(--muted); }
  .rank-pct.top { color: var(--accent); }
  .rank-pct.second { color: var(--accent2); }
  .rank-pct.third { color: var(--accent3); }

  .examples-section { margin-top: 60px; padding: 40px; background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--accent); }

  .examples-title { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--accent); margin-bottom: 20px; }

  .examples-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }

  .example-chip { padding: 8px 14px; background: var(--surface); border: 1px solid var(--border); font-size: 12px; color: var(--text); }

  .divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
  .retake-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 48px; }

  @media (max-width: 600px) {
    .meta-row { gap: 20px; }
    .option { padding: 16px; }
    .examples-section { padding: 24px; }
    .lang-toggle { top: 14px; right: 16px; }
  }
