:root {
    --night: #130d17;
    --night-soft: #21162a;
    --plum: #4d255d;
    --plum-bright: #7c3f87;
    --lavender: #c8a9ff;
    --rose: #f2a4bb;
    --paper: #f8f5fa;
    --surface: #fff;
    --ink: #211b26;
    --muted: #746b79;
    --line: #e8e0ec;
    --success: #24704d;
    --danger: #a23855;
    --shadow: 0 18px 50px rgba(35, 20, 43, .10);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 85% 10%, rgba(200, 169, 255, .17), transparent 24rem),
        var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(19, 13, 23, .94);
    color: #fff;
    backdrop-filter: blur(18px);
}
.nav-shell, .page-shell, .site-footer {
    width: min(1180px, calc(100% - 34px));
    margin-inline: auto;
}
.nav-shell {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.02em;
}
.brand-small { font-size: 20px; }
.brand-orbit {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    transform: rotate(-20deg);
}
.brand-orbit i {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--lavender));
    box-shadow: 0 0 18px var(--rose);
}
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 6px; flex-wrap: wrap; }
.nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: #eae0ee;
    font-size: 14px;
    font-weight: 700;
}
.nav-links a:hover { background: rgba(255,255,255,.09); color: #fff; }
.nav-links .nav-cta { background: #fff; color: var(--night); padding-inline: 18px; }
.nav-links .nav-quiet { color: #b9aabd; }
.nav-toggle, .mobile-activation-cta { display: none; }
.nav-toggle {
    min-height: 40px;
    border-color: rgba(255,255,255,.2);
    padding-inline: 13px;
    background: transparent;
    color: #fff;
    font-size: 13px;
}
.nav-toggle-lines { width: 17px; display: grid; gap: 3px; }
.nav-toggle-lines i { height: 2px; display: block; border-radius: 2px; background: currentColor; }

.page-shell { min-height: calc(100vh - 210px); padding-block: 36px 70px; }
.site-footer {
    width: 100%;
    min-height: 140px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding: 32px max(24px, calc((100vw - 1180px) / 2));
    background: var(--night);
    color: #ddd0e1;
}
.site-footer p { margin: 6px 0 0; color: #a99bad; font-size: 13px; }
.site-footer nav { display: flex; gap: 18px; font-size: 13px; font-weight: 700; }
.site-footer .ai-disclosure { text-align: right; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(38px, 7vw, 72px); margin-bottom: 14px; }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 20px; }
.muted { color: var(--muted); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--plum-bright);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 1px; content: ""; background: currentColor; }
.page-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}
.page-heading h1 { font-size: clamp(38px, 5vw, 58px); }
.page-heading > div:first-child { max-width: 720px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.button, button, input[type="submit"] {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--plum);
    border-radius: 999px;
    padding: 0 20px;
    background: var(--plum);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, button:hover, input[type="submit"]:hover {
    transform: translateY(-1px);
    background: var(--plum-bright);
    box-shadow: 0 9px 24px rgba(77, 37, 93, .22);
}
.button.secondary, button.secondary { border-color: var(--line); background: #fff; color: var(--ink); }
.button.ghost { border-color: rgba(255,255,255,.3); background: transparent; color: #fff; }
.button.danger { border-color: var(--danger); background: var(--danger); }
.button.small, button.small { min-height: 36px; padding-inline: 14px; font-size: 13px; }
.language-form, .chat-language-form { margin: 0; }
.language-form select, .chat-language-form select {
    width: auto;
    min-height: 36px;
    margin: 0;
    border-radius: 999px;
    padding: 7px 30px 7px 11px;
    font-size: 12px;
    font-weight: 800;
}
.language-picker { margin: 4px 0 22px; border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.language-picker legend { padding: 0 7px; font-weight: 800; }
.language-picker .checkbox { display: inline-flex; margin: 5px 14px 5px 0; }
.language-picker .form-hint { margin: 0 0 10px; }
.language-count { color: var(--muted); font-size: 12px; font-weight: 800; }

.panel, .card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.panel { padding: clamp(20px, 4vw, 34px); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.message {
    margin-bottom: 16px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}
.message.success { border-color: #b9dec9; color: var(--success); }
.message.error, .message.warning { border-color: #efbfd0; color: var(--danger); }
.message.info { border-color: #d5c5eb; color: var(--plum); }
.badge, .pill {
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 10px;
    background: #f1e9f5;
    color: var(--plum);
    font-size: 12px;
    font-weight: 800;
}

form label { display: block; margin: 0 0 7px; font-size: 14px; font-weight: 800; }
input, textarea, select {
    width: 100%;
    min-height: 48px;
    margin: 0 0 18px;
    border: 1px solid #dcd1e1;
    border-radius: 14px;
    padding: 11px 13px;
    background: #fff;
    color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus {
    border-color: var(--plum-bright);
    outline: 3px solid rgba(124,63,135,.12);
}
input[type="checkbox"], input[type="radio"] { width: auto; min-height: 0; margin: 0 8px 0 0; }
.checkbox label { display: flex; align-items: center; font-weight: 600; }
.form-hint { display: block; margin: -11px 0 16px; color: var(--muted); font-size: 12px; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.login-form button { width: 100%; }
.login-hint { margin: 10px 0 0; text-align: center; }

.hero {
    min-height: min(720px, calc(100vh - 108px));
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    margin-top: -36px;
    border-radius: 0 0 34px 34px;
    background: var(--night);
    color: #fff;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 7vw, 86px); }
.hero-copy h1 { max-width: 700px; }
.hero-copy .lead { max-width: 610px; color: #d7cadb; font-size: clamp(17px, 2vw, 21px); }
.hero-copy .eyebrow { color: var(--rose); }
.hero-visual { position: relative; min-height: 520px; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(.78); }
.hero-visual::after {
    position: absolute; inset: 0; content: "";
    background: linear-gradient(90deg, var(--night), transparent 34%), linear-gradient(0deg, rgba(19,13,23,.4), transparent 45%);
}
.hero-note {
    position: absolute; z-index: 2; right: 28px; bottom: 28px;
    max-width: 280px; padding: 15px 17px;
    border: 1px solid rgba(255,255,255,.2); border-radius: 16px;
    background: rgba(19,13,23,.65); backdrop-filter: blur(12px);
}
.hero-note strong, .hero-note span { display: block; }
.hero-note span { color: #cdbfd1; font-size: 13px; }
.landing-section { padding: clamp(54px, 8vw, 96px) 0 10px; }
.landing-intro { max-width: 720px; margin-bottom: 34px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { min-height: 220px; padding: 26px; }
.value-card .number { color: var(--rose); font-family: Georgia, serif; font-size: 42px; }
.privacy-band {
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
    margin-top: 70px; padding: clamp(32px, 6vw, 64px);
    border-radius: 30px; background: var(--night-soft); color: #fff;
}
.privacy-band p { color: #cdbfd1; }

.character-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.character-card { overflow: hidden; }
.character-card-image { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #ddd2e1; }
.character-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.character-card:hover img { transform: scale(1.025); }
.character-card-image .badge { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.9); }
.character-card-body { padding: 20px; }
.character-card-body h2 { margin-bottom: 8px; font-size: 28px; }
.character-card-body p { min-height: 50px; color: var(--muted); }
.filter-bar {
    display: grid; grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, .5fr)) auto; gap: 10px; align-items: end;
    margin-bottom: 26px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff;
}
.filter-bar input, .filter-bar select { margin: 0; }
.catalog-filters { margin-bottom: 26px; }
.catalog-filters > summary {
    width: fit-content;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 15px;
    background: #fff;
    color: var(--plum);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.catalog-filters[open] > summary { margin-bottom: 10px; }
.catalog-filters .filter-bar { margin-bottom: 0; }
.character-profile { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: 34px; }
.character-portrait { position: sticky; top: 106px; overflow: hidden; align-self: start; }
.character-portrait img { width: 100%; max-height: 720px; display: block; object-fit: cover; }
.profile-copy { padding-block: 20px; }
.profile-copy h1 { margin-top: 8px; }
.trait-list { display: flex; flex-wrap: wrap; gap: 8px; margin-block: 18px 28px; }
.detail-block { padding-block: 20px; border-top: 1px solid var(--line); }
.start-card { margin-top: 22px; padding: 24px; border-radius: 20px; background: #f1e9f5; }
.start-card select { background: #fff; }

.conversation-list { display: grid; gap: 12px; }
.conversation-row {
    display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 16px;
    padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff;
}
.conversation-row img, .avatar-placeholder { width: 64px; height: 64px; border-radius: 18px; object-fit: cover; background: #e7dceb; }
.conversation-row h3 { margin-bottom: 4px; }
.conversation-row p { margin: 0; color: var(--muted); font-size: 14px; }
.chat-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 18px; }
.chat-shell { overflow: hidden; padding: 0; }
.chat-header {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    min-height: 88px; padding: 14px 20px; border-bottom: 1px solid var(--line); background: #fff;
}
.chat-person { display: flex; align-items: center; gap: 12px; }
.chat-person img { width: 54px; height: 54px; border-radius: 17px; object-fit: cover; }
.chat-person h1 { margin: 0 0 3px; font-family: inherit; font-size: 19px; letter-spacing: -.02em; }
.chat-person p { margin: 0; color: var(--muted); font-size: 12px; }
.chat-feed {
    height: min(64vh, 650px); min-height: 420px; overflow-y: auto;
    display: flex; flex-direction: column; gap: 11px;
    padding: 24px; background: linear-gradient(180deg, #faf8fb, #f5f0f7);
}
.bubble {
    max-width: min(78%, 650px); padding: 12px 15px; border-radius: 18px;
    overflow-wrap: anywhere;
}
.bubble-body { display: block; white-space: pre-wrap; }
.bubble.user { align-self: flex-end; border-bottom-right-radius: 5px; background: var(--plum); color: #fff; }
.bubble.character { align-self: flex-start; border: 1px solid var(--line); border-bottom-left-radius: 5px; background: #fff; }
.bubble.failed { border-color: #ecc0ce; }
.bubble.sending { opacity: .72; }
.bubble-meta { display: block; margin-top: 5px; opacity: .65; font-size: 10px; }
.listen-button {
    min-height: 28px;
    margin-top: 8px;
    border-color: var(--line);
    padding-inline: 10px;
    background: #fff;
    color: var(--plum);
    font-size: 11px;
}
.typing { display: none; align-self: flex-start; color: var(--muted); font-size: 13px; }
.typing.visible { display: block; }
.chat-compose { padding: 14px; border-top: 1px solid var(--line); background: #fff; }
.compose-alert {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    border: 1px solid #d8cce0;
    border-radius: 14px;
    padding: 11px 12px;
    background: #f7f2f9;
    color: var(--ink);
    font-size: 13px;
}
.compose-alert[hidden] { display: none; }
.compose-alert.error { border-color: #efbfd0; background: #fff1f5; color: #8f2149; }
.compose-alert.success { border-color: #b9dec9; background: #effaf3; color: var(--success); }
.compose-alert-icon {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--plum);
    color: #fff;
    font-weight: 900;
}
.compose-alert.error .compose-alert-icon { background: #8f2149; }
.compose-alert.success .compose-alert-icon { background: var(--success); }
.compose-alert-dismiss {
    width: 30px;
    min-width: 30px;
    min-height: 30px;
    border: 0;
    padding: 0;
    background: transparent;
    color: currentColor;
    font-size: 20px;
}
.compose-alert-dismiss:hover { transform: none; box-shadow: none; background: rgba(0,0,0,.05); }
.composer-row { display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: end; }
.composer-row textarea { min-height: 48px; max-height: 150px; margin: 0; }
.composer-row button { min-width: 48px; padding-inline: 15px; }
.composer-context { margin: 9px 4px 0; color: var(--muted); font-size: 12px; }
.record-button { border-color: var(--line); background: #fff; color: var(--plum); }
.record-button.recording { border-color: var(--danger); background: #fff0f4; color: var(--danger); }
.chat-side { display: grid; align-content: start; gap: 14px; }
.chat-side .panel { padding: 20px; box-shadow: none; }
.affinity-track { height: 8px; overflow: hidden; border-radius: 999px; background: #e9dfed; }
.affinity-track i { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--rose), var(--plum-bright)); }

.memory-list { display: grid; gap: 12px; }
.memory-card { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 20px; }
.memory-card.hidden-memory { opacity: .62; }
.memory-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 9px; }
.memory-card p { margin: 0; }
.memory-actions { display: flex; align-items: flex-start; gap: 6px; flex-wrap: wrap; }
.empty-state { padding: 46px; border: 1px dashed #cdbdd3; border-radius: 22px; text-align: center; background: rgba(255,255,255,.6); }

.onboarding-shell { max-width: 920px; margin: 0 auto; }
.onboarding-steps { display: flex; gap: 8px; margin-bottom: 24px; }
.onboarding-steps i { height: 5px; flex: 1; border-radius: 99px; background: #e5dbe9; }
.onboarding-steps i.active { background: var(--plum-bright); }
.onboarding-quick { max-width: 1040px; }
.onboarding-heading { margin-bottom: 22px; }
.onboarding-heading h1 { max-width: 820px; }
.quick-start-form { padding: clamp(16px, 3vw, 28px); }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.choice-card { position: relative; overflow: hidden; border: 2px solid transparent; border-radius: 16px; background: #fff; cursor: pointer; }
.choice-card:has(input:checked) { border-color: var(--plum-bright); box-shadow: 0 0 0 4px rgba(124,63,135,.10); }
.choice-card img { width: 100%; aspect-ratio: 4/5; display: block; object-fit: cover; }
.choice-card span { display: block; padding: 10px; font-weight: 800; }
.choice-card input { position: absolute; top: 10px; right: 10px; width: 18px; }
.quick-choice-card input { opacity: 0; pointer-events: none; }
.quick-choice-card .choice-check {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    padding: 0;
    background: rgba(19,13,23,.42);
    color: transparent;
    box-shadow: 0 3px 12px rgba(19,13,23,.2);
}
.quick-choice-card:has(input:checked) .choice-check { background: var(--plum); color: #fff; }
.quick-choice-card .choice-card-copy { min-height: 92px; padding: 12px 13px 14px; }
.quick-choice-card .choice-card-copy strong { display: block; margin-bottom: 4px; font-size: 18px; }
.quick-choice-card .choice-card-copy small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.quick-start-footer { display: grid; justify-items: center; padding-top: 4px; text-align: center; }
.quick-start-footer .checkbox { margin-bottom: 15px; }
.quick-start-footer .checkbox label { justify-content: center; }
.quick-start-button { min-width: min(100%, 340px); }
.quick-start-hint { max-width: 520px; margin: 10px 0 0; }
.age-confirmed { margin-bottom: 14px; color: var(--success); font-size: 13px; font-weight: 800; }
.age-confirmed span { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #e5f5eb; }
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.stat-card { padding: 20px; }
.stat-card strong { display: block; font-family: Georgia, serif; font-size: 34px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 8px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { color: var(--muted); font-size: 12px; text-transform: uppercase; }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-copy { min-height: 520px; }
    .hero-visual { min-height: 460px; }
    .value-grid, .character-grid { grid-template-columns: repeat(2, 1fr); }
    .privacy-band, .character-profile, .chat-layout { grid-template-columns: 1fr; }
    .character-portrait { position: static; }
    .chat-side { grid-template-columns: repeat(2, 1fr); }
    .choice-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .filter-bar { grid-template-columns: 1fr 1fr; }
    .site-footer { grid-template-columns: 1fr; }
    .site-footer .ai-disclosure { text-align: left; }
}
@media (max-width: 680px) {
    body { padding-bottom: 64px; }
    .nav-shell { min-height: 64px; flex-wrap: wrap; gap: 8px; padding-block: 10px; }
    .nav-toggle { display: inline-flex; }
    .nav-toggle:hover { transform: none; box-shadow: none; background: rgba(255,255,255,.08); }
    .nav-links {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4px;
        padding: 8px 0 4px;
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { width: 100%; flex: 0 0 auto; justify-content: flex-start; }
    .nav-links .nav-cta { justify-content: center; }
    .language-form { width: 100%; }
    .language-form select { width: 100%; margin-top: 4px; }
    .page-shell { padding-top: 24px; }
    .hero { margin-top: -24px; margin-inline: -17px; border-radius: 0 0 26px 26px; }
    .hero-copy { min-width: 0; min-height: 410px; padding: 48px 22px 42px; }
    .hero-copy h1 { max-width: 100%; font-size: clamp(39px, 12vw, 54px); overflow-wrap: anywhere; }
    .hero-copy .actions .button { width: 100%; }
    .hero-visual { min-height: 360px; }
    .value-grid, .character-grid, .choice-grid, .settings-grid, .stats-grid, .chat-side { grid-template-columns: 1fr; }
    .quick-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
    .quick-choice-card .choice-card-copy { min-height: 105px; padding-inline: 10px; }
    .quick-choice-card .choice-card-copy strong { font-size: 16px; }
    .quick-start-form { margin-inline: -6px; }
    .onboarding-heading h1 { font-size: clamp(36px, 11vw, 48px); }
    .filter-bar { grid-template-columns: 1fr; }
    .catalog-filters > summary { width: 100%; text-align: center; }
    .page-heading { align-items: flex-start; flex-direction: column; }
    .character-profile { gap: 16px; }
    .chat-feed { height: 58vh; min-height: 390px; padding: 16px 12px; }
    .bubble { max-width: 88%; }
    .chat-header { align-items: flex-start; }
    .chat-header > .actions { justify-content: flex-end; }
    .chat-header .button { min-height: 36px; padding-inline: 11px; font-size: 12px; }
    .composer-row { grid-template-columns: auto 1fr; }
    .composer-row button[type="submit"] { grid-column: 1 / -1; }
    .conversation-row { grid-template-columns: 54px 1fr; }
    .conversation-row img { width: 54px; height: 54px; }
    .conversation-row > .pill { grid-column: 2; justify-self: start; }
    .memory-card { grid-template-columns: 1fr; }
    .mobile-activation-cta {
        position: fixed;
        z-index: 70;
        right: 14px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 14px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--plum);
        color: #fff;
        font-weight: 900;
        box-shadow: 0 14px 30px rgba(35,20,43,.28);
    }
}
