/* Skip Solitaire Pro — site theme
 * Inspired by Appfly X (apptemplate.webflow.io). Light theme by default,
 * with a dark-theme override via `<html data-theme="dark">` (toggled by
 * the sun/moon button in the nav, persisted in localStorage).
 *
 * The admin panel uses `<body class="admin">` to override these vars
 * with its own always-dark palette, regardless of public theme.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Brand */
    --brand:        #4a3aff;
    --brand-dark:   #3a2dcc;
    --brand-soft:   rgba(74, 58, 255, 0.10);
    --accent:       #1bbaff;
    --accent-soft:  rgba(27, 186, 255, 0.12);
    --gold:         #e6b447;
    --gold-deep:    #b88728;
    --green:        #22d47b;
    --red:          #ff5b5b;

    /* Light theme (default) */
    --bg:           #ffffff;
    --bg-2:         #fafafa;
    --bg-3:         #f3f4f9;
    --surface:      #ffffff;
    --surface-2:    #fafafa;
    --line:         #e6e6ee;
    --line-soft:    rgba(0, 0, 0, 0.06);
    --text:         #050229;
    --text-soft:    #4a5568;
    --muted:        #666977;
    --hero-bg:      linear-gradient(135deg, #050229 0%, #1a1180 60%, #4a3aff 100%);
    --hero-text:    #ffffff;
    --hero-text-soft: rgba(255, 255, 255, 0.78);
    --footer-bg:    #050229;
    --footer-text:  #c8cbe0;

    /* Geometry */
    --radius-sm:    8px;
    --radius:       14px;
    --radius-lg:    22px;
    --radius-pill:  1000px;
    --shadow-sm:    0 2px 8px rgba(20, 14, 60, 0.04);
    --shadow:       0 12px 32px -16px rgba(20, 14, 60, 0.18);
    --shadow-lg:    0 40px 80px -30px rgba(20, 14, 60, 0.35);

    --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono:    ui-monospace, SFMono-Regular, 'SF Mono', Menlo, monospace;
}

/* Dark theme (shadcn-style zinc) — toggle by setting data-theme="dark" on <html>.
 * Hero stays on its purple gradient even in dark mode — it's a brand element. */
:root[data-theme="dark"] {
    --bg:           #0a0a0a;
    --bg-2:         #18181b;
    --bg-3:         #1c1c20;
    --surface:      #18181b;
    --surface-2:    #232328;
    --line:         #27272a;
    --line-soft:    rgba(255, 255, 255, 0.06);
    --text:         #fafafa;
    --text-soft:    #d4d4d8;
    --muted:        #a1a1aa;
    --footer-bg:    #050229;
    --footer-text:  #c8cbe0;
    --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow:       0 12px 32px -16px rgba(0, 0, 0, 0.5);
    --shadow-lg:    0 40px 80px -30px rgba(0, 0, 0, 0.75);
}

* { box-sizing: border-box; }
html { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }
html, body {
    margin: 0; padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: var(--brand); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; }

/* ── Layout primitives ────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
section.band { background: var(--bg-2); }
@media (max-width: 720px) { section { padding: 56px 0; } }

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; color: var(--text); }
h1 { font-size: clamp(40px, 6.5vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 22px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
.eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--brand);
    background: var(--brand-soft);
    padding: 6px 14px; border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.lead { font-size: 18px; color: var(--text-soft); line-height: 1.6; }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line-soft);
}
html[data-theme="dark"] .nav { background: rgba(10, 10, 10, 0.92); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; max-width: 1220px; margin: 0 auto;
    gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 800; font-size: 17px; text-decoration: none; }
.brand:hover { color: var(--text); text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.brand small { color: var(--muted); font-weight: 500; letter-spacing: 0.1em; font-size: 11px; text-transform: uppercase; display: block; }
.nav-links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a {
    color: var(--text-soft); padding: 10px 16px; border-radius: var(--radius-pill);
    font-weight: 500; font-size: 14px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--bg-2); color: var(--text); text-decoration: none; }
.nav-links a.active { color: var(--brand); }
.nav-cta {
    background: var(--brand) !important; color: #fff !important;
    padding: 11px 22px !important; border-radius: var(--radius-pill);
    font-weight: 600 !important;
    box-shadow: 0 8px 24px -10px var(--brand);
}
.nav-cta:hover { background: var(--brand-dark) !important; color: #fff !important; text-decoration: none !important; }

/* Apple sign-in CTA in the nav: black pill with the SF Apple glyph. */
.nav-cta-apple { background: #000 !important; box-shadow: 0 8px 24px -10px rgba(0,0,0,0.4); display: inline-flex; align-items: center; gap: 8px; }
.nav-cta-apple:hover { background: #1a1a1a !important; }
.nav-cta-apple .apple::before { content: "\F8FF"; font-size: 16px; line-height: 1; }

/* Logged-in profile chip: avatar circle + coin balance pill. */
.profile-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 14px 4px 4px !important; border-radius: var(--radius-pill);
    background: var(--bg-2) !important; color: var(--text) !important;
    text-decoration: none !important; transition: background .15s;
    border: 1px solid var(--line);
}
.profile-chip:hover { background: var(--bg-3) !important; color: var(--text) !important; text-decoration: none !important; }
.profile-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff; font-weight: 700; font-size: 13px;
    display: inline-flex; align-items: center; justify-content: center;
}
.profile-coins {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: var(--font-mono); font-weight: 700; font-size: 13px;
    color: var(--gold-deep);
}
html[data-theme="dark"] .profile-coins { color: var(--gold); }
.profile-coins .coin { width: 14px; height: 14px; font-size: 10px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; font-size: 22px; }
.theme-toggle {
    background: var(--bg-2); border: 1px solid var(--line);
    color: var(--text); cursor: pointer; padding: 8px; border-radius: var(--radius-pill);
    width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; transition: background .15s, transform .15s;
}
.theme-toggle:hover { background: var(--bg-3); }
.theme-toggle .sun, .theme-toggle .moon { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: inline; }
html:not([data-theme="dark"]) .theme-toggle .moon { display: inline; }
@media (max-width: 880px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute; top: 68px; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: var(--bg);
        padding: 0 16px;
        border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden; transition: max-height .25s;
    }
    .nav-links.open { max-height: 80vh; padding: 12px 16px; }
    .nav-links a { padding: 14px 16px; width: 100%; border-radius: var(--radius); }
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 15px;
    text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s;
    border: 0; cursor: pointer; font-family: var(--font);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 24px -10px var(--brand); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 12px 32px -10px var(--brand); }
.btn-ghost { background: var(--bg-2); color: var(--text); }
.btn-ghost:hover { background: var(--bg-3); color: var(--text); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-on-dark { background: rgba(255,255,255,0.12); color: #fff; }
.btn-on-dark:hover { background: rgba(255,255,255,0.2); color: #fff; }

.btn-app-store {
    display: inline-flex; align-items: center; gap: 12px;
    background: #000; color: #fff;
    padding: 12px 24px; border-radius: var(--radius-pill);
    text-decoration: none; transition: transform .15s, box-shadow .15s;
}
.btn-app-store:hover { transform: translateY(-1px); box-shadow: 0 14px 32px -10px rgba(0,0,0,0.4); color: #fff; text-decoration: none; }
.btn-app-store .apple { font-size: 28px; }
.btn-app-store .text { line-height: 1.1; }
.btn-app-store .text small { display: block; font-size: 10px; opacity: .8; letter-spacing: 0.05em; }
.btn-app-store .text strong { display: block; font-size: 18px; font-weight: 600; }

/* ── Coin glyph (kept as a brand element) ────────────────────────────── */
.coin {
    display: inline-flex; align-items: center; justify-content: center;
    width: 1.2em; height: 1.2em; border-radius: 50%;
    background: linear-gradient(135deg, #ffd959 0%, #e6a519 100%);
    border: 1px solid #8d6206;
    color: #5a3f08;
    font-family: Georgia, serif; font-weight: 900;
    font-size: 0.75em;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,.18), inset 0 2px 4px rgba(255,255,255,.4);
}
.coin::after { content: "S"; }
.coin.big { width: 70px; height: 70px; font-size: 40px; }
.coin-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: var(--radius-pill);
    background: var(--bg-2); color: var(--gold-deep);
    font-family: var(--font-mono); font-weight: 700;
    font-variant-numeric: tabular-nums; font-size: 14px;
    border: 1px solid var(--line);
}
html[data-theme="dark"] .coin-chip { color: var(--gold); }
.coin-chip .coin { width: 16px; height: 16px; font-size: 11px; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
    background: var(--hero-bg);
    color: var(--hero-text);
    padding: 96px 0 80px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 85% 25%, rgba(27, 186, 255, 0.20), transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.06), transparent 40%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.hero h1 { color: #fff; }
.hero .lead { color: var(--hero-text-soft); font-size: 19px; max-width: 540px; }
.hero .kicker { background: rgba(255,255,255,0.12); color: #fff; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero .btn-ghost { background: rgba(255,255,255,0.12); color: #fff; }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }
@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-art { order: -1; }
    .hero .lead { margin-left: auto; margin-right: auto; }
    .hero .cta-row { justify-content: center; }
}
.hero-art { display: flex; justify-content: center; position: relative; }
.phone-frame {
    width: 290px; max-width: 100%; border-radius: 44px;
    box-shadow: var(--shadow-lg), 0 0 0 8px #111 inset, 0 0 60px rgba(74, 58, 255, 0.3);
    background: #000; padding: 8px; position: relative;
    transform: rotate(-3deg); transition: transform .4s;
}
.phone-frame:hover { transform: rotate(0) scale(1.02); }
.phone-frame img { display: block; width: 100%; height: auto; border-radius: 36px; }
@media (max-width: 920px) {
    .phone-frame { width: 250px; transform: rotate(0); }
}

/* ── Live stats bar ───────────────────────────────────────────────────── */
.stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
.stat-cell .num {
    display: block; font-weight: 800;
    font-size: 32px; color: var(--text);
    font-variant-numeric: tabular-nums; line-height: 1;
}
.stat-cell .lbl {
    display: block; font-size: 11px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-top: 8px; font-weight: 600;
}
.live-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(34, 212, 123, 0.6);
    animation: live-pulse 1.6s infinite;
    margin-right: 8px; vertical-align: middle;
}
@keyframes live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 212, 123, 0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(34, 212, 123, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 212, 123, 0); }
}

/* ── Section headers ──────────────────────────────────────────────────── */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .lead { margin-top: 14px; }

/* ── Feature grid ─────────────────────────────────────────────────────── */
.features {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 880px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features { grid-template-columns: 1fr; } }
.feature {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-soft); }
.feature .ico {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--brand-soft); color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 18px;
}
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--text-soft); font-size: 15px; margin: 0; line-height: 1.6; }

/* ── Screenshot showcase ──────────────────────────────────────────────── */
.shots {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    align-items: stretch;
}
@media (max-width: 880px) { .shots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .shots { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }
.shot {
    border-radius: 36px; padding: 8px; background: #0a0a0a;
    box-shadow: var(--shadow);
    transition: transform .25s;
}
.shot:hover { transform: translateY(-6px); }
.shot img { display: block; border-radius: 28px; width: 100%; height: auto; }
.shot-card-text {
    display: flex; flex-direction: column; gap: 16px;
    justify-content: center; align-items: center; text-align: center;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    padding: 56px 28px; color: #fff; box-shadow: var(--shadow);
}
.shot-card-text .coin.big { box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.shot-card-text h3 { color: #fff; font-size: 22px; margin: 0; }
.shot-card-text p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }

/* ── Leaderboard ──────────────────────────────────────────────────────── */
.leaderboard {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.leaderboard table { width: 100%; border-collapse: collapse; }
.leaderboard th, .leaderboard td {
    padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line);
}
.leaderboard th {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted);
    background: var(--bg-2);
}
.leaderboard tr:last-child td { border-bottom: 0; }
.leaderboard .rank {
    font-family: var(--font); font-weight: 800;
    font-variant-numeric: tabular-nums; color: var(--muted);
    width: 60px;
}
.leaderboard .rank.gold   { color: var(--gold); }
.leaderboard .rank.silver { color: #94a0ad; }
.leaderboard .rank.bronze { color: #c89060; }
.leaderboard .player { font-weight: 600; color: var(--text); }
.leaderboard .coins {
    text-align: right; font-family: var(--font); font-weight: 700;
    color: var(--gold-deep); font-variant-numeric: tabular-nums;
}
html[data-theme="dark"] .leaderboard .coins { color: var(--gold); }
.leaderboard .coins-cell { display: inline-flex; gap: 6px; align-items: center; }
.leaderboard tr.me td { background: var(--brand-soft); }
.search-box {
    width: 100%; padding: 14px 18px; border-radius: var(--radius-pill);
    background: var(--surface); border: 1px solid var(--line);
    color: var(--text); font-size: 15px; margin-bottom: 18px;
    font-family: var(--font);
}
.search-box:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.empty-row { padding: 36px; text-align: center; color: var(--muted); }

/* ── How to play (steps) ──────────────────────────────────────────────── */
.steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    counter-reset: stepnum;
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 28px; counter-increment: stepnum;
    position: relative;
}
.step::before {
    content: counter(stepnum, decimal-leading-zero);
    font-size: 38px; font-weight: 800;
    background: linear-gradient(180deg, var(--brand), var(--accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    opacity: 0.4;
    position: absolute; top: 14px; right: 22px; line-height: 1;
}
.step h4 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 14px; margin: 0; line-height: 1.6; }

/* ── News + guides cards ──────────────────────────────────────────────── */
.post-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 720px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 28px;
    display: block; color: var(--text); text-decoration: none;
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.post-card:hover {
    transform: translateY(-3px); color: var(--text);
    text-decoration: none; border-color: var(--brand-soft);
    box-shadow: var(--shadow);
}
.post-card .meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.05em; font-weight: 600; text-transform: uppercase; }
.post-card h3 { font-size: 21px; margin-bottom: 10px; }
.post-card p { color: var(--text-soft); font-size: 15px; margin: 0; }

/* ── Article ──────────────────────────────────────────────────────────── */
.article {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 48px;
    margin-top: 24px;
}
.article h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.article .meta { color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.article h2 { font-size: 26px; margin-top: 36px; margin-bottom: 12px; }
.article h3 { font-size: 20px; margin-top: 28px; margin-bottom: 8px; }
.article p, .article li { color: var(--text-soft); font-size: 16px; line-height: 1.7; }
.article ul, .article ol { padding-left: 22px; }
.article code {
    background: var(--bg-2); padding: 3px 8px; border-radius: 6px;
    font-family: var(--font-mono); font-size: 0.92em; color: var(--brand);
    border: 1px solid var(--line);
}
.article a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) { .article { padding: 28px 22px; } }

/* ── Support / FAQ ────────────────────────────────────────────────────── */
.faq details {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 18px 26px; margin-bottom: 12px;
    transition: border-color .15s;
}
.faq details[open] { border-color: var(--brand-soft); box-shadow: var(--shadow-sm); }
.faq summary {
    font-weight: 700; cursor: pointer; padding: 6px 0;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 24px; font-weight: 300; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p, .faq details > * { color: var(--text-soft); margin: 12px 0 6px; }

/* ── Forms ────────────────────────────────────────────────────────────── */
.form-grid { display: grid; gap: 16px; }
label { font-size: 13px; color: var(--muted); display: block; margin-bottom: 6px; font-weight: 600; }
.form-input, .form-textarea, .form-select {
    width: 100%; padding: 14px 16px; border-radius: var(--radius);
    background: var(--surface); border: 1px solid var(--line);
    color: var(--text); font-size: 15px; font-family: var(--font);
    transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft);
}
.form-textarea { min-height: 140px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-ok  { color: var(--green); padding: 14px 18px; background: rgba(34, 212, 123, 0.1); border-radius: var(--radius); border: 1px solid rgba(34, 212, 123, 0.3); margin-bottom: 14px; }
.form-err { color: var(--red); padding: 14px 18px; background: rgba(255, 91, 91, 0.1); border-radius: var(--radius); border: 1px solid rgba(255, 91, 91, 0.3); margin-bottom: 14px; }

/* ── Press kit ────────────────────────────────────────────────────────── */
.press-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 720px) { .press-grid { grid-template-columns: 1fr; } }
.press-card {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 28px; text-align: center;
}
.press-card img { max-width: 160px; margin: 0 auto 16px; border-radius: var(--radius); }

/* ── Footer ───────────────────────────────────────────────────────────── */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 28px;
    margin-top: 96px;
}
footer .brand, footer .brand:hover { color: #fff; }
.foot-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    margin-bottom: 32px;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.foot-grid h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin: 0 0 14px; font-weight: 700; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a { color: var(--footer-text); font-size: 14px; }
.foot-grid a:hover { color: #fff; text-decoration: none; }
.foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px; color: rgba(200,203,224,0.6);
    font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.foot-bottom a { color: rgba(200,203,224,0.7); }

/* ── Misc ─────────────────────────────────────────────────────────────── */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.kicker {
    display: inline-block; padding: 6px 16px; border-radius: var(--radius-pill);
    background: var(--brand-soft); color: var(--brand);
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 18px;
}
