:root {
    --or-admin-font-family: "Barlow", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    --portal-brand-accent: #55aaff;
    --portal-brand-accent-hover: #3d99ee;
    --portal-brand-on-accent: #ffffff;
    --portal-brand-accent-bar-height: 10px;
    --bg: #f6f9fc;
    --surface: #ffffff;
    --surface-alt: #eef5fb;
    --ink: #10161d;
    --muted: #4d5b6a;
    --line: rgba(16, 22, 29, 0.12);
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(85, 170, 255, 0.08) 0%, rgba(85, 170, 255, 0) 18rem),
        linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
    color: var(--ink);
    font-family: var(--or-admin-font-family);
    font-size: 16px;
    line-height: 1.4;
}

a {
    color: inherit;
}

h1,
h2,
.eyebrow,
.panel-label,
.section-kicker {
    font-family: var(--or-admin-font-family);
}

.landing-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: calc(2rem + var(--portal-brand-accent-bar-height)) 1.25rem 4rem;
}

.or-brand-accent-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--portal-brand-accent-bar-height);
    background: var(--portal-brand-accent);
    z-index: 20;
    pointer-events: none;
}

.site-header {
    display: flex;
    align-items: center;
    min-height: 3.25rem;
    margin-bottom: 1.5rem;
}

.site-wordmark {
    font-size: 1.0625rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
    text-decoration: none;
}

.hero {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
    align-items: stretch;
    padding-top: 0.25rem;
}

.hero-copy,
.hero-panel,
.value-grid article,
.narrative,
.site-footer {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(31, 52, 74, 0.05);
}

.hero-copy {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow,
.panel-label,
.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--portal-brand-accent);
    margin: 0 0 1rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.3rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 1rem;
    max-width: 12ch;
}

.lede,
.hero-panel li,
.value-grid p,
.narrative p,
.site-footer {
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.primary-link,
.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 0.6rem;
    text-decoration: none;
    font-weight: 700;
    transition: transform 120ms ease, background 120ms ease;
}

.primary-link {
    background: var(--portal-brand-accent);
    color: var(--portal-brand-on-accent);
}

.secondary-link {
    background: var(--surface-alt);
    color: var(--portal-brand-accent);
}

.primary-link:hover,
.secondary-link:hover {
    transform: translateY(-1px);
}

.primary-link:hover {
    background: var(--portal-brand-accent-hover);
}

.hero-panel {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-panel ul {
    margin: 0;
    padding-left: 1.1rem;
}

.hero-panel li + li {
    margin-top: 0.8rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.value-grid article,
.narrative {
    padding: 1.5rem;
}

.value-grid h2,
.narrative h2 {
    margin: 0 0 0.6rem;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.narrative {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 1rem;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    font-size: 0.8125rem;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hero,
    .value-grid,
    .narrative {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: unset;
    }

    .hero h1 {
        max-width: none;
    }

    .site-footer {
        flex-direction: column;
    }
}
