:root {
    --cc-ink: #172434;
    --cc-muted: #556475;
    --cc-paper: #ffffff;
    --cc-canvas: #f2f5f7;
    --cc-navy: #0d355a;
    --cc-blue: #0066a1;
    --cc-gold: #d9a521;
    --cc-gold-text: #886000;
    --cc-green: #24734b;
    --cc-border: #d7dfe5;
    --cc-radius: 1rem;
    --cc-shadow: 0 12px 35px rgba(13, 53, 90, 0.08);
}

body {
    background: var(--cc-canvas);
    color: var(--cc-ink);
    font-family: "Segoe UI", system-ui, sans-serif;
}

.platform-hero {
    background: linear-gradient(125deg, #0d355a 0%, #075d86 72%, #08738e 100%);
    border-radius: var(--cc-radius);
    color: white;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5rem);
    position: relative;
}

.platform-hero::after {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
    height: 22rem;
    position: absolute;
    right: -8rem;
    top: -10rem;
    width: 22rem;
}

.platform-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.8rem);
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.02;
    max-width: 13ch;
}

.platform-hero p {
    color: #e3f2fb;
    font-size: 1.1rem;
    max-width: 58ch;
}

.eyebrow,
.feature-panel__eyebrow {
    color: var(--cc-gold-text);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    margin-top: 1.25rem;
}

.platform-hero .eyebrow { color: #ffdf86; }
code { color: #ad2568; }
.account-recovery-links a { display: inline-flex; align-items: center; min-height: 2.75rem; padding: .25rem 0; }

.feature-panel {
    align-items: flex-start;
    background: var(--cc-paper);
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    box-shadow: var(--cc-shadow);
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr;
    padding: 1.4rem;
}

.feature-panel h2 {
    font-size: 1.25rem;
    margin: 0 0 0.4rem;
}

.feature-panel p:not(.feature-panel__eyebrow) {
    color: var(--cc-muted);
    margin: 0;
}

.feature-panel__icon {
    align-items: center;
    background: #e8f3f8;
    border-radius: 0.8rem;
    color: var(--cc-navy);
    display: flex;
    font-size: 1.35rem;
    height: 3rem;
    justify-content: center;
    width: 3rem;
}

.feature-panel__actions {
    margin-top: 1rem;
}

.status-pill {
    align-items: center;
    background: #e7ebef;
    border-radius: 999px;
    color: #344454;
    display: inline-flex;
    font-size: 0.85rem;
    font-weight: 650;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
}

.status-pill__mark {
    background: currentColor;
    border-radius: 50%;
    height: 0.48rem;
    width: 0.48rem;
}

.status-pill--ready {
    background: #e1f3e8;
    color: var(--cc-green);
}

.action-link {
    color: var(--cc-blue);
    font-weight: 650;
    text-underline-offset: 0.2em;
}

.display-stage {
    align-items: center;
    background: #06192c;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
    padding: 2rem;
    text-align: center;
}

.display-stage strong {
    color: #ffd66b;
    font-size: clamp(3rem, 12vw, 8rem);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
