/* partner/ + partner/terms — page-specific rules. Nav + basic :root aus _nav.css. */
:root {
    --accent2:#ff6b35;
    --green:#3fb950;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { line-height: 1.7; }
.container { max-width: 800px; margin: 0 auto; padding: 0 2rem 2rem; }
h1 { color: #fff; font-size: 2.4rem; letter-spacing: -0.02em; margin: 0 0 1.2rem; }
h2 { color: #fff; font-size: 1.4rem; margin: 3rem 0 1rem; }
h3 { color: var(--accent2); font-size: 1rem; margin: 1.5rem 0 0.4rem; }
p { margin-bottom: 1rem; }
a { color: var(--accent); text-decoration: none; }
code { background: #0d1117; border: 1px solid var(--border); border-radius: 4px; padding: 0.1rem 0.4rem; font-size: 0.82em; }
.hero-lead { font-size: 1.0rem; opacity: 0.85; }
.note { background: rgba(0,200,255,0.06); border-left: 3px solid var(--accent); padding: 0.8rem 1.2rem; margin: 1.5rem 0; border-radius: 0 6px 6px 0; font-size: 0.9rem; }
.terms-list { margin: 1rem 0 1rem 1.2rem; font-size: 0.88rem; line-height: 2; }

/* Vergleichs-/Bedingungs-Tabellen */
.matrix { margin: 1.5rem 0; overflow-x: auto; }
.matrix table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 480px; }
.matrix th { color: var(--accent); border-bottom: 1px solid var(--border); padding: 0.5rem 0.8rem; text-align: left; font-weight: normal; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.72rem; }
.matrix td { padding: 0.5rem 0.8rem; border-bottom: 1px solid rgba(0,200,255,0.06); }
.matrix tr:last-child td { border-bottom: none; }
.matrix td:first-child { opacity: 0.7; }
.matrix .col-you { background: rgba(0,200,255,0.05); }

/* Redeem-Box (funktionaler Teil) */
.redeem-box { background: var(--card-bg, rgba(255,255,255,0.02)); border: 1px solid var(--border); border-radius: 8px; padding: 1.6rem; margin: 1.5rem 0; }
.redeem-box label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.6; margin-bottom: 0.4rem; }
.redeem-box input { width: 100%; background: #0d1117; border: 1px solid var(--border); border-radius: 4px; color: var(--text); font-family: inherit; font-size: 0.85rem; padding: 0.6rem 0.8rem; margin-bottom: 0.4rem; }
.redeem-box input:focus { outline: none; border-color: var(--accent); }
.field-hint { font-size: 0.72rem; opacity: 0.45; margin-bottom: 1.2rem; }
.redeem-step { display: flex; gap: 1rem; margin-top: 1.4rem; }
.redeem-step p { font-size: 0.85rem; margin-bottom: 0.6rem; }
.step-no { flex: 0 0 auto; width: 1.8rem; height: 1.8rem; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.redeem-step > div { flex: 1; }
.redeem-step input { margin-bottom: 0.8rem; }

.status { border-radius: 4px; padding: 0.7rem 1rem; font-size: 0.85rem; margin: 1rem 0 0.4rem; }
.status.ok { background: rgba(63,185,80,0.1); border-left: 3px solid var(--green); }
.status.err { background: rgba(255,107,53,0.1); border-left: 3px solid var(--accent2); }
.status.warn { background: rgba(0,200,255,0.06); border-left: 3px solid var(--accent); }

.btn { display: inline-block; padding: 0.65rem 1.6rem; border-radius: 4px; font-weight: bold; font-size: 0.85rem; font-family: inherit; cursor: pointer; text-decoration: none; transition: opacity 0.2s; }
.btn-primary { background: var(--accent); color: var(--bg); border: 1px solid var(--accent); }
.btn-primary:hover { opacity: 0.85; }
.btn-secondary { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.btn-secondary:hover { background: rgba(0,200,255,0.1); }

.cta-box { text-align: center; padding: 2.5rem 0 1rem; margin-top: 2rem; border-top: 1px solid var(--border); }
.cta-note { text-align: center; font-size: 0.8rem; opacity: 0.7; }

/* Terms-Seite */
.terms-meta { font-size: 0.78rem; opacity: 0.5; margin-bottom: 2rem; }
.terms-section p, .terms-section li { font-size: 0.88rem; }
.terms-section ul { margin: 0.5rem 0 1rem 1.2rem; }

footer { text-align: center; padding: 2rem 0; font-size: 0.75rem; color: #6b7fa0; border-top: 1px solid var(--border); margin-top: 3rem; }
footer a { color: var(--accent); }

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.2rem; }
    .redeem-step { flex-direction: column; gap: 0.4rem; }
}
@media (max-width: 480px) {
    .container { padding: 1rem; }
    h1 { font-size: 1.5rem; }
    .matrix table { font-size: 0.75rem; }
    .cta-box .btn { display: block; width: 100%; text-align: center; }
    footer { line-height: 2.2; }
}
