/* ═══════════════════════════════════════════════════════════════
   avws.at — Vereinte Landing + App
   ═══════════════════════════════════════════════════════════════ */

:root {
    --bg: #0a0908;
    --surface: #161412;
    --surface-high: #1f1c1a;
    --border: #2a2622;
    --text: #f5f1ea;
    --text-muted: #8a8278;
    --primary: #d97706;
    --primary-soft: #f59e0b;
    --teal: #0d9488;
    --success: #15803d;
    --danger: #b91c1c;
    --warn: #ca8a04;
    
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Geist', system-ui, sans-serif;
    --font-mono: 'Geist Mono', monospace;
    
    --safe-top: env(safe-area-inset-top, 0);
    --safe-bottom: env(safe-area-inset-bottom, 0);
}

[data-theme="child"] {
    --bg: #fdf8f1;
    --surface: #ffffff;
    --surface-high: #fef3e0;
    --border: #f0d9b5;
    --text: #2d2419;
    --text-muted: #857560;
    --primary: #0891b2;
    --primary-soft: #06b6d4;
    --success: #16a34a;
    --danger: #dc2626;
    --font-body: 'Nunito', system-ui, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
    margin: 0; padding: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

body {
    background-image: 
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(217, 119, 6, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 110%, rgba(13, 148, 136, 0.06) 0%, transparent 55%);
    background-attachment: fixed;
    min-height: 100vh;
    min-height: 100dvh;
}

[data-theme="child"] body {
    background-image:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(8, 145, 178, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 110%, rgba(234, 88, 12, 0.06) 0%, transparent 55%);
}

/* ─────── LOADER ─────── */
.loader {
    position: fixed; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px; background: var(--bg);
    z-index: 1000;
}
.loader-logo { animation: pulse 2s ease-in-out infinite; }
.loader-brand { font-family: var(--font-display); font-size: 26px; font-style: italic; font-weight: 500; }
.loader-text { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.6; transform: scale(0.95);} }

/* ─────── APP / VIEW CONTAINER ─────── */
.app-view {
    min-height: 100vh;
    min-height: 100dvh;
    animation: view-in 0.4s ease;
    padding-top: var(--safe-top);
    padding-bottom: var(--safe-bottom);
}
@keyframes view-in { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.screen {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 20px;
    padding-top: max(24px, calc(var(--safe-top) + 16px));
    padding-bottom: max(48px, calc(var(--safe-bottom) + 24px));
}

/* ═══════════ LANDING ═══════════ */

.nav {
    position: sticky; top: 0; z-index: 50;
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px;
    padding-top: max(16px, calc(var(--safe-top) + 8px));
    max-width: 760px; margin: 0 auto;
    backdrop-filter: blur(12px);
    background: rgba(10, 9, 8, 0.6);
}

.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-style: italic;
    font-size: 21px; font-weight: 500;
    text-decoration: none; color: var(--text);
    cursor: pointer; background: none; border: none;
}
.logo-mark {
    width: 28px; height: 28px; border-radius: 6px;
    background: linear-gradient(135deg, var(--primary), #92400e);
    position: relative; flex-shrink: 0;
}
.logo-mark::after { content: ''; position: absolute; inset: 5px; background: var(--bg); border-radius: 3px; }

.nav-cta {
    padding: 9px 18px; background: var(--primary); color: #fff;
    border: none; border-radius: 8px; cursor: pointer;
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
}

.hero {
    padding: 48px 20px 40px;
    max-width: 760px; margin: 0 auto;
}
.hero .eyebrow {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--primary-soft); letter-spacing: 0.2em;
    text-transform: uppercase; margin-bottom: 16px;
}
.hero h1 {
    font-family: var(--font-display); font-weight: 400; font-style: italic;
    font-size: clamp(38px, 10vw, 64px); line-height: 1.02;
    margin: 0 0 22px; letter-spacing: -0.02em;
}
.hero h1 .hl { color: var(--primary-soft); }
.hero .sub {
    font-size: 17px; color: var(--text-muted); line-height: 1.6;
    max-width: 520px; margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-lg {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 24px; border-radius: 11px;
    font-family: var(--font-body); font-size: 15px; font-weight: 600;
    cursor: pointer; border: none; text-decoration: none;
    transition: transform 0.15s;
}
.btn-lg:active { transform: scale(0.97); }
.btn-lg.primary { background: var(--primary); color: #fff; box-shadow: 0 4px 24px rgba(217,119,6,0.3); }
.btn-lg.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }

/* Mini spatial demo in hero */
.hero-visual {
    margin: 40px auto 0;
    max-width: 300px; aspect-ratio: 1/1;
    position: relative; border-radius: 24px;
    background: radial-gradient(circle at 50% 50%, var(--surface-high) 0%, transparent 70%);
    border: 1px solid var(--border);
}
.hv-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px dashed var(--border); border-radius: 50%; opacity: 0.5; }
.hv-dot {
    position: absolute; transform: translate(-50%,-50%);
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 600; font-size: 13px; color: #fff;
}
.hv-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--surface); border: 2px solid var(--primary-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-soft); font-size: 18px;
}
.hv-pulse { animation: hvpulse 2.4s ease-in-out infinite; }
@keyframes hvpulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.12); } }

section.block {
    padding: 56px 20px;
    max-width: 760px; margin: 0 auto;
}
section.block .eyebrow {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--primary-soft); letter-spacing: 0.2em;
    text-transform: uppercase; margin-bottom: 12px;
}
section.block h2 {
    font-family: var(--font-display); font-weight: 500; font-size: 30px;
    line-height: 1.12; margin: 0 0 14px;
}
section.block h2 .it { font-style: italic; }
section.block .lead-p {
    font-size: 15px; color: var(--text-muted); line-height: 1.65;
    max-width: 540px; margin: 0;
}

.features {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px; margin-top: 32px;
}
.feature {
    padding: 20px; background: var(--surface);
    border: 1px solid var(--border); border-radius: 16px;
}
.feature-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: var(--surface-high); display: flex;
    align-items: center; justify-content: center;
    color: var(--primary-soft); font-size: 18px; margin-bottom: 14px;
}
.feature h3 { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin: 0 0 8px; }
.feature p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }

.audience-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px;
}
.aud-card { padding: 24px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; cursor: pointer; transition: all 0.15s; text-align: left; color: var(--text); font-family: inherit; }
.aud-card:active { transform: scale(0.98); }
.aud-card:hover { border-color: var(--primary); }
.aud-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--primary-soft); text-transform: uppercase; margin-bottom: 8px; }
.aud-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin: 0 0 8px; }
.aud-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

.cta-band {
    margin: 40px 20px; max-width: 720px;
    margin-left: auto; margin-right: auto;
    padding: 36px 28px; border-radius: 22px; text-align: center;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-high) 100%);
    border: 1px solid var(--border);
}
.cta-band h2 { font-family: var(--font-display); font-style: italic; font-size: 28px; font-weight: 400; margin: 0 0 12px; }
.cta-band p { color: var(--text-muted); font-size: 14px; margin: 0 0 24px; }

.footer { padding: 36px 20px; max-width: 760px; margin: 0 auto; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:active { color: var(--text); }

/* ═══════════ APP SCREENS ═══════════ */

.app-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
}
.brand-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 100px;
    background: var(--surface); border: 1px solid var(--border);
}
.brand-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.brand-text { font-family: var(--font-mono); font-size: 10px; color: var(--primary-soft); letter-spacing: 0.2em; text-transform: uppercase; }

.back-btn {
    background: transparent; border: 1px solid var(--border);
    color: var(--text-muted); width: 36px; height: 36px;
    border-radius: 50%; display: inline-flex; align-items: center;
    justify-content: center; cursor: pointer; font-size: 16px;
}

h1.title { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 34px; line-height: 1.05; margin: 0 0 8px; }
h2.subtitle { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin: 24px 0 12px; }
p.lead { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin: 0 0 24px; }
.label { font-family: var(--font-mono); font-size: 10px; color: var(--primary-soft); letter-spacing: 0.2em; text-transform: uppercase; }

.profile-options { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.profile-card {
    width: 100%; background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 20px 18px; display: flex; align-items: center;
    gap: 14px; color: var(--text); cursor: pointer; text-align: left;
    font-family: inherit; transition: all 0.15s;
}
.profile-card:active { transform: scale(0.98); background: var(--surface-high); }
.profile-card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-high); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary-soft); font-size: 20px; }
.profile-card-body { flex: 1; min-width: 0; }
.profile-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin-bottom: 2px; }
.profile-card-sub { font-size: 12px; color: var(--text-muted); }
.profile-card-arrow { color: var(--text-muted); flex-shrink: 0; font-size: 18px; }

.home-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 20px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.stat-label { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px; }
.stat-value { font-family: var(--font-display); font-size: 24px; font-weight: 500; font-style: italic; }

.level-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
.level-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px; cursor: pointer; transition: all 0.15s; position: relative; overflow: hidden; text-align: left; color: var(--text); font-family: inherit; }
.level-card:active { transform: scale(0.97); }
.level-card.locked { opacity: 0.4; pointer-events: none; }
.level-card.completed::after { content: '✓'; position: absolute; top: 10px; right: 12px; color: var(--success); font-size: 14px; font-weight: 600; }
.level-num { font-family: var(--font-display); font-size: 28px; font-weight: 500; font-style: italic; color: var(--primary-soft); }
.level-name { font-size: 11px; color: var(--text-muted); margin-top: 4px; line-height: 1.3; }

.spatial { width: 100%; max-width: 320px; aspect-ratio: 1/1; margin: 16px auto; position: relative; border-radius: 20px; overflow: hidden; background: radial-gradient(circle at 50% 50%, var(--surface-high) 0%, var(--bg) 70%); border: 1px solid var(--border); }
.spatial-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px dashed var(--border); border-radius: 50%; opacity: 0.5; }
.listener { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.listener-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 2px solid var(--primary-soft); display: flex; align-items: center; justify-content: center; color: var(--primary-soft); font-size: 18px; }
.listener-label { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); letter-spacing: 0.15em; }
.speaker { position: absolute; transform: translate(-50%,-50%); transition: opacity 0.3s; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.speaker-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--text); transition: all 0.2s; position: relative; }
.speaker.active .speaker-circle { background: var(--speaker-color); border-color: var(--speaker-color); color: #fff; transform: scale(1.05); }
.speaker.active .speaker-circle::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; background: var(--speaker-color); opacity: 0.3; animation: ping 1.2s cubic-bezier(0,0,0.2,1) infinite; }
@keyframes ping { 75%,100% { transform: scale(1.8); opacity: 0; } }
.speaker-name { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); letter-spacing: 0.05em; }

.btn { width: 100%; padding: 16px 20px; border-radius: 12px; border: none; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.15s; }
.btn.primary { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(217,119,6,0.3); }
.btn.primary:active { transform: scale(0.98); }
.btn.secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn.ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-fixed-bottom { position: sticky; bottom: 16px; margin-top: 24px; }

.training-meta { background: var(--surface); border-left: 3px solid var(--primary); border-radius: 0 8px 8px 0; padding: 12px 14px; margin-top: 16px; }
.training-meta-label { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px; }
.training-meta-value { font-family: var(--font-display); font-size: 15px; font-style: italic; }

.progress-bar { height: 3px; background: var(--surface); border-radius: 2px; overflow: hidden; margin: 16px 0; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-soft)); width: 0; transition: width 0.3s ease; box-shadow: 0 0 12px var(--primary); }

.question-num { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.question-num .divider { flex: 1; height: 1px; background: var(--border); }
.question-text { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.3; margin: 0 0 24px; }
.option { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 18px; margin-bottom: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-family: inherit; font-size: 15px; cursor: pointer; text-align: left; transition: all 0.15s; }
.option:active { transform: scale(0.98); }
.option.correct { background: rgba(21,128,61,0.13); border-color: var(--success); }
.option.wrong { background: rgba(185,28,28,0.13); border-color: var(--danger); }
.option-icon { color: var(--success); font-weight: 600; }
.option.wrong .option-icon { color: var(--danger); }

.result-score { text-align: center; margin: 20px 0; }
.result-score-num { font-family: var(--font-display); font-size: 80px; font-weight: 300; font-style: italic; line-height: 1; }
.result-score-num .total { color: var(--text-muted); font-size: 36px; }
.stars { display: flex; justify-content: center; gap: 6px; margin: 16px 0; }
.star { width: 36px; height: 36px; color: var(--border); }
.star.filled { color: var(--primary); fill: var(--primary); }
.result-message { text-align: center; color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 320px; margin: 0 auto 24px; }
.answer-summary { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 18px; }
.answer-row { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.answer-row:last-child { border-bottom: none; }
.answer-row.correct .icon { color: var(--success); }
.answer-row.wrong .icon { color: var(--danger); }
.killer-badge { display: inline-block; margin-left: 6px; padding: 1px 6px; border-radius: 4px; background: var(--surface-high); color: var(--primary-soft); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; }

.info-banner { padding: 12px 14px; background: rgba(217,119,6,0.1); border: 1px solid rgba(217,119,6,0.3); border-radius: 8px; color: var(--primary-soft); font-size: 12px; line-height: 1.5; margin: 16px 0; }
.info-banner strong { color: var(--text); }
.demo-banner { padding: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; text-align: center; margin-bottom: 16px; }
.demo-banner-title { font-family: var(--font-mono); font-size: 10px; color: var(--primary-soft); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 4px; }
.demo-banner-text { font-size: 13px; color: var(--text-muted); }

@media (max-width: 600px) {
    .audience-cards { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
}

/* ─────── AUTH ─────── */
.auth-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
}
.auth-input:focus { outline: none; border-color: var(--primary); }
.account-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; background: var(--surface);
    border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px;
}
.account-badge {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
    padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}
.account-badge.premium { background: rgba(217,119,6,.15); color: var(--primary-soft); }
.account-badge.free { background: var(--surface-high); color: var(--text-muted); }
.level-card.premium-locked::after {
    content: '🔒'; position: absolute; top: 10px; right: 12px; font-size: 13px;
}

/* ─────── DISCLAIMER ─────── */
.disclaimer-check {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 14px; background: var(--surface);
    border: 1px solid var(--border); border-radius: 10px;
    font-size: 12px; line-height: 1.5; color: var(--text-muted);
    cursor: pointer; margin-top: 4px;
}
.disclaimer-check input[type="checkbox"] {
    flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
    accent-color: var(--primary); cursor: pointer;
}
.disclaimer-check strong { color: var(--text); }
.disclaimer-footer {
    margin-top: 28px; padding: 14px 16px;
    border-top: 1px solid var(--border);
    font-size: 11px; line-height: 1.6; color: var(--text-faint, #6b6b6b);
    text-align: center;
}

/* ─────── DISCLAIMER-EINTRITT (Gate) ─────── */
#entryGate { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.gate-backdrop { position: absolute; inset: 0; background: rgba(5,5,8,0.88); backdrop-filter: blur(6px); }
.gate-box { position: relative; max-width: 460px; width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; text-align: center; max-height: 90vh; overflow-y: auto; }
.gate-icon { width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 50%; background: var(--surface-high); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary-soft); }
.gate-box h2 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin: 0 0 16px; }
.gate-box p { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0 0 12px; }
.gate-box p strong { color: var(--text); }
.gate-small { font-size: 12px !important; opacity: 0.8; }

/* ─────── COOKIE-BANNER ─────── */
#cookieBanner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998; background: var(--surface-high); border-top: 1px solid var(--border); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-text { font-size: 12px; line-height: 1.5; color: var(--text-muted); flex: 1; min-width: 240px; }
.cookie-text a { color: var(--primary-soft); margin-left: 6px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 8px 18px; font-size: 13px; }
@media (max-width: 540px) { #cookieBanner { flex-direction: column; align-items: stretch; } .cookie-actions { justify-content: stretch; } .cookie-actions .btn { flex: 1; } }

/* ─────── CODE EINLÖSEN (Paywall) ─────── */
.code-redeem { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.code-redeem-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.code-redeem-row { display: flex; gap: 8px; }
.code-redeem-row input { flex: 1; background: var(--surface); border: 1px solid var(--border); color: var(--text); border-radius: 10px; padding: 10px 12px; font-family: var(--font-mono, monospace); letter-spacing: 0.05em; text-transform: uppercase; }
.code-redeem-msg { margin-top: 8px; font-size: 12px; min-height: 16px; }
.code-redeem-msg.ok { color: #4ade80; }
.code-redeem-msg.err { color: #f87171; }
