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

:root {
  --bg: #080C10;
  --surface: #0F1620;
  --surface2: #161E2C;
  --border: rgba(255,255,255,0.07);
  --accent: #2563EB;
  --accent-light: #60A5FA;
  --accent-glow: rgba(37,99,235,0.2);
  --text: #F0F4F8;
  --muted: #5A6A7D;
  --green: #4ADE80;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 18px 60px; background: rgba(8,12,16,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--accent-light); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.btn-download { background: var(--accent); color: #fff; padding: 10px 22px; border-radius: 8px; font-family: var(--font-display); font-weight: 700; font-size: 14px; text-decoration: none; transition: background 0.2s, transform 0.2s; box-shadow: 0 0 24px var(--accent-glow); }
.btn-download:hover { background: #1d4ed8; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); padding: 12px 28px; border-radius: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14px; text-decoration: none; border: 1px solid var(--border); transition: border-color 0.2s, background 0.2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: var(--surface); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 40px 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(37,99,235,0.15) 0%, transparent 60%), radial-gradient(ellipse 40% 30% at 80% 90%, rgba(96,165,250,0.05) 0%, transparent 50%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black, transparent 70%); }
.hero-content { position: relative; max-width: 860px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.25); color: var(--accent-light); padding: 6px 16px; border-radius: 99px; font-size: 13px; font-weight: 500; margin-bottom: 28px; }
.hero-title { font-family: var(--font-display); font-size: clamp(44px, 7vw, 88px); font-weight: 800; line-height: 1.0; letter-spacing: -0.04em; margin-bottom: 24px; }
.hero-title .word { display: inline-block; opacity: 0; transform: translateY(40px); animation: wordIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; color: var(--accent-light); }
.hero-title .word:nth-child(3) { animation-delay: 0.3s; }
.hero-title .word:nth-child(4) { animation-delay: 0.4s; }
.hero-title .word:nth-child(5) { animation-delay: 0.5s; color: var(--accent-light); }
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 540px; margin: 0 auto 40px; font-weight: 300; line-height: 1.7; opacity: 0; animation: fadeUp 0.8s 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; opacity: 0; animation: fadeUp 0.8s 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* FEATURE SECTIONS - shared */
.feat-section { min-height: 160vh; position: relative; }
.feat-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.feat-inner { max-width: 1200px; width: 100%; padding: 0 60px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
#feat-b1 .feat-inner { grid-template-columns: 1fr 1.6fr; gap: 48px; max-width: 1280px; }

/* Gerade Sections: Visual links, Text rechts */
#feat-b2 .feat-inner,
#feat-e1 .feat-inner,
#feat-e3 .feat-inner,
#feat-v2 .feat-inner { grid-template-columns: 1.1fr 1fr; }

#feat-b2 .feat-visual,
#feat-e1 .feat-visual,
#feat-e3 .feat-visual,
#feat-v2 .feat-visual { order: -1; }

.feat-area-badge { display: inline-flex; align-items: center; gap: 6px; border: 1px solid; padding: 4px 12px; border-radius: 99px; font-size: 12px; font-weight: 600; margin-bottom: 10px; }
.feat-num-label { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 8px; }
.feat-heading { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; }
.feat-desc { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.feat-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feat-bullets li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.feat-bullets li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-light); flex-shrink: 0; }
.feat-visual { display: flex; align-items: center; justify-content: center; }

/* B1: Mitglieder-Tabelle */
.mock-table { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; width: 100%; }
/* ── B1: Members Window ── */
.mock-members-window { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; width: 100%; min-width: 520px; }
.mock-members-topbar { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px 12px; border-bottom: 1px solid var(--border); }
.mock-members-title { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--text); }
.mock-members-subtitle { font-size: 11px; color: var(--muted); margin-top: 2px; }
.mock-members-addbtn { background: var(--accent); color: #fff; font-size: 11px; font-weight: 600; padding: 7px 13px; border-radius: 8px; white-space: nowrap; }
.mock-members-search { padding: 9px 18px; font-size: 11px; color: var(--muted); background: var(--surface2); border-bottom: 1px solid var(--border); }
.mock-table { background: var(--surface); border-radius: 0; overflow: hidden; width: 100%; }
.mock-table-head { display: grid; grid-template-columns: 2fr 1.5fr 1.3fr 1fr 1.6fr; padding: 10px 16px; background: var(--surface2); font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; gap: 8px; }
.mock-table-row { display: grid; grid-template-columns: 2fr 1.5fr 1.3fr 1fr 1.6fr; padding: 11px 16px; border-top: 1px solid var(--border); font-size: 12px; align-items: center; gap: 8px; }
.mock-name { font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-cat { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text); white-space: nowrap; }
.mock-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mock-nr { font-size: 10px; color: var(--muted); font-family: monospace; letter-spacing: 0.03em; white-space: nowrap; }
.mock-status-active { background: rgba(74,222,128,0.12); color: #4ADE80; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 99px; display: inline-block; white-space: nowrap; }
.mock-status-pending { background: rgba(245,158,11,0.12); color: #F59E0B; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 99px; display: inline-block; white-space: nowrap; }
.mock-actions { display: flex; flex-direction: column; gap: 4px; }
.mock-act-btn { background: rgba(37,99,235,0.12); color: #60A5FA; font-size: 10px; font-weight: 600; padding: 3px 7px; border-radius: 5px; white-space: nowrap; display: inline-block; }
.mock-act-nfc { background: rgba(167,139,250,0.12); color: #A78BFA; font-size: 10px; font-weight: 600; padding: 3px 7px; border-radius: 5px; white-space: nowrap; display: inline-block; }
/* Legacy badges (unused in B1 now, kept for safety) */
.badge-full { background: rgba(74,222,128,0.1); color: #4ADE80; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 6px; display: inline-block; white-space: nowrap; }
.badge-part { background: rgba(252,211,77,0.1); color: #FCD34D; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 6px; display: inline-block; white-space: nowrap; }
.badge-none { background: rgba(100,116,139,0.1); color: #64748B; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 6px; display: inline-block; white-space: nowrap; }

/* B2: Event Card */
.mock-event-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; }
.mock-event-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mock-event-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.mock-status-badge { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 99px; background: rgba(100,116,139,0.1); color: var(--muted); transition: background 0.5s, color 0.5s; }
.mock-status-badge.running { background: rgba(74,222,128,0.1); color: #4ADE80; }
.mock-event-meta { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.mock-event-codes { display: flex; flex-direction: column; gap: 8px; }
.mock-code-row { background: var(--surface2); border-radius: 8px; padding: 10px 14px; display: flex; justify-content: space-between; align-items: center; }
.mock-code-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); }
.mock-code-val { font-family: monospace; font-size: 14px; letter-spacing: 3px; color: var(--text); }

/* B3: Ranking */
.mock-ranking { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; width: 100%; }
.mock-ranking-title { font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.mock-rank-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.mock-medal { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.mock-medal-num { background: var(--surface2); color: var(--muted); font-size: 10px; font-weight: 700; font-family: var(--font-body); }
.mock-rank-info { flex: 0 0 120px; }
.mock-rank-name { font-size: 12px; font-weight: 600; white-space: nowrap; }
.mock-rank-sub { font-size: 10px; color: var(--muted); }
.mock-rank-bar-outer { flex: 1; height: 6px; background: var(--surface2); border-radius: 99px; overflow: hidden; }
.mock-rank-bar-inner { height: 100%; border-radius: 99px; width: 0%; transition: width 0.05s linear; }
.mock-rank-n { font-size: 11px; font-weight: 700; min-width: 18px; text-align: right; font-variant-numeric: tabular-nums; }

/* E1: NFC */
/* ── E1: NFC Scene ── */
.nfc-scene { position: relative; display: flex; align-items: center; justify-content: center; width: 380px; height: 440px; }

/* Radialer Glow – expandiert vom Reader-Zentrum */
.nfc-glow { position: absolute; border-radius: 50%; border: 3px solid rgba(74,222,128,0); pointer-events: none; transform: translate(-50%, -50%); top: 50%; left: 50%; opacity: 0; }

/* ACR122U Reader – von oben gesehen */
.nfc-reader { width: 160px; height: 210px; background: linear-gradient(160deg, #F0F2F5 0%, #D8DCE2 100%); border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.8); position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 2; }
/* Kabel oben */
.nfc-reader-cable { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 8px; height: 20px; background: #94A3B8; border-radius: 4px 4px 0 0; }
/* LED-Streifen oben */
.nfc-reader::before { content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 4px; background: #B0BAC8; border-radius: 0 0 3px 3px; }
/* Status-LED */
.nfc-reader-indicator { position: absolute; top: 10px; right: 14px; width: 8px; height: 8px; border-radius: 50%; background: #94A3B8; transition: background 0.4s, box-shadow 0.4s; }
.nfc-reader-indicator.green { background: #4ADE80; box-shadow: 0 0 10px #4ADE80, 0 0 20px rgba(74,222,128,0.4); }
/* NFC Logo */
.nfc-reader-logo { position: relative; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.nfc-reader-circle { position: absolute; border-radius: 50%; }
.nfc-reader-circle-outer { width: 68px; height: 68px; border: 2.5px solid #4A5568; }
.nfc-reader-circle-mid  { width: 48px; height: 48px; border: 2px solid #718096; }
.nfc-reader-circle-inner{ width: 28px; height: 28px; border: 2px solid #718096; }
.nfc-reader-nfc-text { font-size: 11px; font-weight: 900; color: #2563EB; letter-spacing: 0.5px; z-index: 1; }
.nfc-reader-brand { font-size: 10px; font-weight: 700; color: #718096; letter-spacing: 2px; text-transform: lowercase; }

/* Weiße Blanko-Karte liegt auf dem Reader */
.nfc-card { position: absolute; width: 182px; height: 115px; background: linear-gradient(135deg, #FFFFFF 0%, #F0F2F5 100%); border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.9); z-index: 10; top: 50%; left: 50%; opacity: 0; }
.nfc-card::after { content: ''; position: absolute; inset: 0; border-radius: 8px; background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, transparent 50%); }

.nfc-success { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); color: var(--green); padding: 8px 20px; border-radius: 99px; font-size: 13px; font-weight: 600; white-space: nowrap; opacity: 0; z-index: 4; }

/* E2: Form */
.mock-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; }
.mock-form-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.mock-form-row { margin-bottom: 12px; }
.mock-form-label { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.mock-form-input { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 13px; min-height: 34px; display: flex; align-items: center; }
.mock-form-select { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 13px; color: var(--muted); }
.mock-cursor { color: var(--accent-light); }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
.mock-form-actions { display: flex; gap: 8px; margin-top: 16px; }
.mock-form-btn-nfc { background: rgba(124,58,237,0.15); color: #A78BFA; border-radius: 8px; padding: 8px 12px; font-size: 12px; font-weight: 600; cursor: default; }
.mock-form-btn-create { background: rgba(37,99,235,0.15); color: var(--accent-light); border-radius: 8px; padding: 8px 12px; font-size: 12px; font-weight: 600; cursor: default; }
.mock-form-success { margin-top: 10px; font-size: 12px; color: #4ADE80; font-weight: 600; }

/* E3: Check-In Columns */
.mock-checkin-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; width: 100%; }
.mock-col { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px; min-height: 220px; }
.mock-col-head { font-size: 10px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.04em; }
.mock-col-item { font-size: 11px; padding: 6px 8px; background: var(--surface2); border-radius: 6px; margin-bottom: 4px; }
.mock-col-item.present { background: rgba(74,222,128,0.15); color: #4ADE80; }
.mock-col-item.checked-out { background: rgba(239,68,68,0.12); color: #F87171; }

/* V1: Big Quorum */
.mock-quorum-big { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 36px; width: 100%; text-align: center; transition: border-color 0.5s, background 0.5s; }
.mock-quorum-big.reached { border-color: rgba(74,222,128,0.4); background: rgba(74,222,128,0.05); }
.mock-quorum-nums { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 6px; }
.mock-quorum-present { font-family: var(--font-display); font-size: 64px; font-weight: 800; color: #4ADE80; font-variant-numeric: tabular-nums; }
.mock-quorum-slash { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--border); }
.mock-quorum-req { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--text); }
.mock-quorum-label { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.mock-quorum-track { height: 12px; background: var(--surface2); border-radius: 99px; overflow: hidden; margin-bottom: 14px; }
.mock-quorum-fill { height: 100%; border-radius: 99px; background: var(--accent); width: 0%; transition: width 0.05s linear, background 0.5s; }
.mock-quorum-fill.reached { background: #4ADE80; }
.mock-quorum-status { font-size: 14px; font-weight: 600; color: var(--muted); transition: color 0.5s; }
.mock-quorum-status.reached { color: #4ADE80; }

/* V2: Voting Circles */
.mock-voting-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; width: 100%; }
.mock-voting-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 16px; text-align: center; }
.mock-voting-circle { width: 56px; height: 56px; border-radius: 50%; border: 3px solid; margin: 0 auto 12px; transition: box-shadow 0.5s; background: transparent; }
.mock-voting-circle.glow-green { box-shadow: 0 0 20px rgba(74,222,128,0.4); }
.mock-voting-circle.glow-yellow { box-shadow: 0 0 20px rgba(252,211,77,0.4); }
.mock-voting-circle.glow-gray { box-shadow: 0 0 20px rgba(100,116,139,0.3); }
.mock-voting-val { font-family: var(--font-display); font-size: 32px; font-weight: 800; font-variant-numeric: tabular-nums; margin-bottom: 6px; }
.mock-voting-label { font-size: 11px; color: var(--muted); font-weight: 500; }

/* V3: Login */
.mock-login-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; width: 100%; max-width: 300px; }
.mock-login-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 4px; }
.mock-login-sub { font-size: 11px; color: var(--muted); text-align: center; margin-bottom: 20px; }
.mock-login-field { margin-bottom: 14px; }
.mock-login-label { font-size: 10px; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.mock-login-input { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 4px; text-align: center; min-height: 42px; color: var(--text); transition: border-color 0.3s; }
.mock-login-input.active { border-color: rgba(37,99,235,0.5); }
.mock-login-pin { font-family: monospace; font-size: 22px; letter-spacing: 6px; }
.mock-login-btn { background: var(--accent); color: #fff; border-radius: 10px; padding: 12px; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-top: 16px; }
.mock-login-opening { margin-top: 12px; text-align: center; }
.mock-login-success { font-size: 13px; color: #4ADE80; font-weight: 600; }

/* FEATURES GRID */
.features-section { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--accent-light); text-transform: uppercase; margin-bottom: 12px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; margin-top: 60px; }
.feature-cell { background: var(--bg); padding: 36px 32px; transition: background 0.3s; position: relative; overflow: hidden; }
.feature-cell:hover { background: var(--surface); }
.feature-cell::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.08), transparent 70%); opacity: 0; transition: opacity 0.3s; }
.feature-cell:hover::after { opacity: 1; }
.feature-num { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 20px; }
.feature-cell h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-cell p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* TARGETS */
.targets-section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
/* Marquee */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.targets-marquee-wrap { overflow: hidden; position: relative; }
.targets-marquee-wrap::before,
.targets-marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.targets-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.targets-marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.targets-marquee { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.targets-marquee:hover { animation-play-state: paused; }
.targets-track { display: flex; gap: 16px; padding: 8px 8px; }
.target-pill { background: var(--surface); border: 1px solid var(--border); border-radius: 99px; padding: 14px 28px; white-space: nowrap; font-size: 15px; font-weight: 500; cursor: default; transition: border-color 0.2s, background 0.2s; flex-shrink: 0; }
.target-pill:hover { border-color: rgba(96,165,250,0.3); background: rgba(37,99,235,0.05); }

/* DOWNLOAD */
.download-section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.download-hero { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 64px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; overflow: hidden; }
.download-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.download-hero h2 { font-family: var(--font-display); font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.download-hero p { color: var(--muted); font-size: 16px; font-weight: 300; margin-bottom: 28px; }
.download-specs { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.spec-tag { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.spec-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }
.download-version { background: var(--surface2); border: 1px solid var(--border); border-radius: 16px; padding: 28px 36px; text-align: center; min-width: 180px; }
.version-num { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--accent-light); display: block; }
.version-lbl { font-size: 12px; color: var(--muted); display: block; margin-top: 4px; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 36px 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .feat-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .download-hero { grid-template-columns: 1fr; }
  .features-section, .targets-section, .download-section { padding: 80px 24px; }
  footer { padding: 28px 24px; flex-direction: column; text-align: center; }
}