:root {
    font-family: 'Manrope', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0e1428;
    background-color: #fffdf8;
    line-height: 1.6;
    --orange: #ff8a00;
    --orange-soft: #ffc18a;
    --navy: #0e1428;
    --text-muted: #5b647b;
    --border: #e6e7ef;
    --bg-muted: #f7f8fb;
    --body-bg: #fffefc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: inherit;
    color: inherit;
    background: var(--body-bg);
    font-size: 1.05rem;
    line-height: 1.7;
}

body[data-page-theme="dark"] {
    background: #05060a;
    color: #f7f7ff;
    --text-muted: #cbd5ff;
    --body-bg: #05060a;
}

main {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
    box-shadow: none;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    padding: 0.75rem 1.25rem;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    z-index: 999;
}

.skip-link:focus {
    left: 10px;
}

body.contrast-mode {
    background: #05060a;
    color: #f7f7ff;
    --text-muted: #cbd5ff;
}

body.contrast-mode .candidate-panel,
body.contrast-mode .question-card,
body.contrast-mode .session-utility-bar,
body.contrast-mode .question-progress,
body.contrast-mode .answer-preview,
body.contrast-mode .question-instructions,
body.contrast-mode .focus-banner,
body.contrast-mode .question-guidance,
body.contrast-mode .device-support {
    background: rgba(10, 13, 26, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
    color: #f7f7ff;
}

body.contrast-mode .progress-stat,
body.contrast-mode .behavioral-set-card,
body.contrast-mode .question-card .option-list label {
    background: rgba(15, 20, 40, 0.85);
    color: #f7f7ff;
    border-color: rgba(255, 255, 255, 0.25);
}

body.contrast-mode .device-support input {
    background: #020617;
    color: #f7f7ff;
    border-color: rgba(255, 255, 255, 0.35);
}

body.contrast-mode .btn {
    background: #fbbf24;
    color: #111;
    box-shadow: none;
}

body.contrast-mode .btn-outline {
    background: transparent;
    color: #f7f7ff;
    border-color: rgba(255, 255, 255, 0.6);
}

body.contrast-mode .btn-ghost {
    color: #fbbf24;
}

body.contrast-mode .progress-stat span,
body.contrast-mode .help-text {
    color: #cbd5ff;
}

body.contrast-mode .progress-bar {
    background: rgba(255, 255, 255, 0.25);
}

body.contrast-mode .progress-bar span {
    background: linear-gradient(120deg, #fbbf24, #fde047);
}

body.contrast-mode .accessibility-toggles {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
}
body.contrast-mode .theme-toggle,
body.contrast-mode .contrast-toggle {
    color: #f8f9ff;
}

body.candidate-experience {
    font-size: 1.05rem;
    line-height: 1.65;
    background: var(--bg-muted);
}

body.candidate-experience .candidate-panel {
    font-size: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.flash-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 100;
}

.flash {
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    background: rgba(14, 20, 40, 0.9);
    color: #fff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.flash.success {
    background: linear-gradient(120deg, #1ccf9a, #0faa7c);
}

.flash.error {
    background: linear-gradient(120deg, #ff6464, #ff8a8a);
}

img {
    max-width: 100%;
    display: block;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(14, 20, 40, 0.04);
    padding: 0.75rem 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: space-between;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    flex-shrink: 0;
    text-decoration: none;
}

.brand:visited {
    color: var(--navy);
}

.brand img {
    height: 100px;
    width: auto;
    display: block;
    max-width: 100%;
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: rgba(14, 20, 40, 0.05);
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    background: rgba(83, 55, 239, 0.8);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn.small {
    padding: 0.55rem 1.2rem;
    border-radius: 30px;
}

.btn-outline.small {
    padding: 0.55rem 1.1rem;
    border-radius: 30px;
}

.btn {
    border: none;
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(255, 138, 0, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.98);
    color: var(--navy);
    border: 1px solid rgba(14, 20, 40, 0.14);
    box-shadow: none;
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: none;
    box-shadow: none;
    text-decoration: underline;
}

.link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
}

.btn-pill.secondary {
    background: #fff;
    color: var(--orange);
    border: 1px solid var(--orange);
    box-shadow: none;
}

.hero {
    position: relative;
    text-align: center;
    padding: 6rem 1rem 8rem;
    overflow: hidden;
    background: linear-gradient(135deg, #fffdf8, #f6f9ff);
    transition: background 0.6s ease;
}
.hero[data-persona="candidate"] {
    background: linear-gradient(135deg, #f2f7ff, #fff6fb);
}

.hero-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-badge span {
    background: rgba(255, 138, 0, 0.15);
    color: var(--orange);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero-tagline {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 700;
    margin: 0 0 1.25rem;
    line-height: 1.1;
    color: var(--navy);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}


.hero h1 .highlight {
    color: var(--orange);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-persona-toggle {
    display: inline-flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.persona-btn {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
}
.persona-btn.is-active {
    background: rgba(255, 138, 0, 0.15);
    color: var(--orange);
}

.nav-primary-cta {
    box-shadow: 0 12px 28px rgba(255, 138, 0, 0.35);
}

.trusted-strip {
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(14, 20, 40, 0.05);
    background: rgba(255, 255, 255, 0.6);
}

.trusted-strip .logo-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: 700;
    color: rgba(14, 20, 40, 0.6);
    margin: 0.75rem 0 0.5rem;
    flex-wrap: wrap;
}

.trusted-strip blockquote {
    margin: 0.5rem auto 0;
    max-width: 640px;
    font-style: italic;
    color: var(--navy);
}

.live-feed {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(14, 20, 40, 0.05);
}
.live-feed-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.feed-label {
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--orange);
}
.feed-slot {
    font-weight: 500;
    color: var(--navy);
    min-height: 24px;
}
.feed-slot .ticker-text {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-slide 4s ease;
}

@keyframes ticker-slide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suite {
    padding: 4rem 1rem 3rem;
}

.suite-map {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: stretch;
}
.suite-instructions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.suite-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.suite-card {
    text-align: left;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    padding: 1.5rem;
    box-shadow: 0 20px 45px rgba(14, 20, 40, 0.05);
    cursor: pointer;
    width: 100%;
}
.suite-card.is-active {
    border-color: rgba(255, 138, 0, 0.4);
    box-shadow: 0 25px 45px rgba(255, 138, 0, 0.15);
}
.suite-card:hover {
    border-color: rgba(255, 138, 0, 0.25);
}
.suite-card .pill {
    margin-bottom: 0.5rem;
}
.suite-action {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    font-size: 0.9rem;
}
.suite-focus {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}
.suite-focus li {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.suite-detail {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 24px;
    padding: 2rem;
    background: rgba(249, 250, 255, 0.9);
    height: 100%;
}
.suite-panel {
    display: none;
}
.suite-panel.is-active {
    display: block;
    height: 100%;
}
.suite-metrics {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.65rem;
}
.suite-metrics li {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(14, 20, 40, 0.05);
    padding: 0.75rem;
}
.suite-metrics span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.suite-metrics strong {
    font-size: 1.05rem;
}
.suite-panel li + li {
    margin-top: 0;
    color: var(--text-muted);
}
.suite-panel.is-active li {
    opacity: 0;
    animation: suite-list 0.4s forwards;
}
.suite-panel.is-active li:nth-child(1) {
    animation-delay: 0.05s;
}
.suite-panel.is-active li:nth-child(2) {
    animation-delay: 0.15s;
}
.suite-panel.is-active li:nth-child(3) {
    animation-delay: 0.25s;
}

@keyframes suite-list {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accent-marketing {
    background: rgba(14, 116, 144, 0.12);
    color: #0f766e;
}

.accent-product {
    background: rgba(78, 63, 156, 0.12);
    color: #4f3f9c;
}

.accent-behavioral {
    background: rgba(234, 88, 12, 0.12);
    color: #c2410c;
}

@media (max-width: 900px) {
    .suite-map {
        grid-template-columns: 1fr;
    }
    .suite-detail {
        height: auto;
    }
}

.outcomes {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #fdfcf9, #f4f6ff);
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.outcome-grid canvas {
    margin-top: 0.75rem;
}
.metric-card {
    background: #fff;
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid rgba(14, 20, 40, 0.06);
    box-shadow: 0 20px 40px rgba(14, 20, 40, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.metric-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}
.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.metric-card .btn-outline.small {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.pricing {
    background: radial-gradient(circle at top, rgba(83, 55, 239, 0.08), transparent 55%), rgba(248, 249, 255, 0.95);
    border-top: 1px solid rgba(14, 20, 40, 0.05);
    border-bottom: 1px solid rgba(14, 20, 40, 0.05);
}
.pricing .section-shell {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.pricing-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.pricing-card {
    border-radius: 28px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: #fff;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: 0 25px 40px rgba(14, 20, 40, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 540px;
}
.pricing-card.is-highlighted {
    border-color: rgba(83, 55, 239, 0.4);
    box-shadow: 0 30px 50px rgba(83, 55, 239, 0.18);
    transform: translateY(-6px);
    background: linear-gradient(180deg, rgba(83, 55, 239, 0.08), rgba(255, 255, 255, 0.95));
}
.pricing-card.theme-starter {
    border-color: rgba(15, 183, 122, 0.2);
    background: linear-gradient(180deg, rgba(15, 183, 122, 0.08), rgba(255, 255, 255, 0.98));
}
.pricing-card.theme-pro {
    border-color: rgba(83, 55, 239, 0.3);
    background: linear-gradient(180deg, rgba(163, 137, 255, 0.18), rgba(255, 255, 255, 0.98));
}
.pricing-card.theme-enterprise {
    border-color: rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, rgba(14, 20, 40, 0.07), rgba(255, 255, 255, 0.98));
}
.pricing-card-head .muted {
    margin-top: 0.35rem;
}
.plan-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}
.plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.75rem;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.06);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    align-self: flex-start;
}
.pricing-card.is-highlighted .plan-badge {
    background: rgba(83, 55, 239, 0.15);
    color: #4b2edd;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0.3rem 0 0.6rem;
}
.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
}
.pricing-price .frequency {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.pricing-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.pricing-meta p {
    margin: 0;
    font-size: 0.95rem;
}
.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--text-muted);
}
.pricing-feature-list li {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}
.pricing-feature-list svg {
    width: 16px;
    height: 16px;
    color: #15bf7c;
    flex-shrink: 0;
}
.pricing-card.is-highlighted .pricing-feature-list svg {
    color: #5337ef;
}
.pricing-cta {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}
.pricing-cta .btn {
    width: 100%;
    max-width: 240px;
    text-align: center;
    box-shadow: 0 18px 35px rgba(255, 138, 0, 0.25);
}
.pricing-footnote {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.case-slider {
    padding: 4rem 1rem;
}
.case-slider-body {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.case-panels {
    position: relative;
    min-height: 220px;
}
.case-panel {
    opacity: 0;
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 24px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 45px rgba(14, 20, 40, 0.05);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(10px);
}
.case-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
.case-metric {
    margin-top: 1.25rem;
    display: inline-flex;
    flex-direction: column;
    padding: 0.75rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 138, 0, 0.1);
    color: var(--navy);
}
.case-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.case-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(14, 20, 40, 0.2);
    cursor: pointer;
}
.case-dots button.is-active {
    background: var(--orange);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 20, 40, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 20, 40, 0.03) 1px, transparent 1px);
    background-size: 140px 140px;
    opacity: 0.5;
}

.hero-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffe3c4, rgba(255, 227, 196, 0));
    z-index: 1;
}

.orb-one {
    top: 80px;
    left: 10%;
}

.orb-two {
    bottom: 60px;
    right: 12%;
    width: 160px;
    height: 160px;
}

main {
    flex: 1;
}

.section-heading {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 720px;
}
.section-heading.section-heading-tight {
    margin-bottom: 1.5rem;
}

.section-heading.align-left {
    text-align: left;
    margin: 0 0 2rem;
    max-width: none;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
}

.muted {
    color: var(--text-muted);
}

.muted.small {
    font-size: 0.85rem;
}

.feature-suite {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

.assessment-catalog {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.pillars {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    border-radius: 24px;
    background: #fff;
    padding: 1.75rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 25px 45px rgba(15, 20, 40, 0.05);
}

.pillar-card h3 {
    margin: 0.5rem 0 0.5rem;
    font-size: 1.4rem;
}

.pillar-card ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.workflow {
    background: var(--bg-muted);
    padding: 3.5rem 1.5rem 4.5rem;
}

.workflow-steps {
    list-style: none;
    margin: 2rem auto;
    padding: 0;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.workflow-steps li {
    background: #fff;
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(14, 20, 40, 0.06);
    box-shadow: 0 25px 45px rgba(14, 20, 40, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.workflow-steps li::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 138, 0, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-steps li:hover::after {
    opacity: 1;
}

.step-header {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.step-label {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.workflow-steps h3 {
    margin: 0;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 138, 0, 0.15);
    color: var(--orange);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.workflow-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.journey-hero,
.journey-board {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 0;
}
.journey-board {
    padding-top: 2rem;
    padding-bottom: 4rem;
}
.journey-hero {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}
.journey-hero-content {
    flex: 1;
    min-width: 320px;
}
.journey-hero-detail {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 25px 55px rgba(11, 16, 30, 0.08);
}
.journey-legend {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.tag {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.tag.company {
    background: rgba(255, 138, 0, 0.15);
    color: var(--orange);
}
.tag.candidate {
    background: rgba(14, 20, 40, 0.08);
    color: var(--navy);
}
.journey-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    color: var(--navy);
    font-weight: 600;
}
.journey-benefits li::before {
    content: "•";
    color: var(--orange);
    margin-right: 0.5rem;
}
.journey-benefits li {
    display: flex;
    align-items: flex-start;
}
.journey-board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}
.journey-card {
    border-radius: 24px;
    padding: 1.4rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 20px 35px rgba(10, 15, 30, 0.08);
    background: #f9fafc;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.journey-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 45px rgba(10, 15, 30, 0.12);
}
.journey-card.company {
    background: rgba(255, 138, 0, 0.08);
}
.journey-card.candidate {
    background: rgba(14, 20, 40, 0.05);
}
.journey-card .label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    margin: 0;
    color: var(--text-muted);
}
.journey-card .title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0.45rem 0;
}
.journey-card .meta {
    margin: 0;
    color: var(--text-muted);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.catalog-card {
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 20px 35px rgba(8, 17, 33, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.catalog-header h3 {
    margin: 0.4rem 0 0;
    font-size: 1.2rem;
}

.catalog-card .pill.subtle {
    background: rgba(14, 20, 40, 0.05);
    color: var(--navy);
}

.catalog-card .ghost-link {
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.catalog-card .ghost-link:hover {
    opacity: 1;
}

.category-summary {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
}

.assessment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assessment-summary-card {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.assessment-summary-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.assessment-copy {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.assessment-pill {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(99, 112, 255, 0.12);
    color: #6370ff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.assessment-title {
    font-weight: 700;
    margin: 0;
}

.assessment-meta {
    margin: 0.2rem 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.skill-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.4rem;
    justify-items: flex-end;
}

.skill-pill-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 138, 0, 0.12);
    color: var(--orange);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-weight: 600;
}

.empty-state {
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.feature-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.feature-accordion {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    text-align: left;
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 1.15rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease, color 0.2s ease;
}

.accordion-item small {
    display: block;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.92rem;
    margin-top: 0.5rem;
}

.accordion-item .chevron {
    position: absolute;
    right: 20px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(-45deg);
}

.accordion-item.is-active {
    background: rgba(255, 138, 0, 0.08);
    color: var(--orange);
}

.feature-accordion .accent-bar {
    position: absolute;
    left: 0;
    width: 4px;
    height: 60px;
    background: var(--orange);
    border-radius: 0 4px 4px 0;
    transform: translateY(18px);
    transition: transform 0.3s ease;
}

.feature-panels {
    position: relative;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f7f7fb 100%);
    border-radius: 30px;
    padding: 2rem 2.25rem;
    box-shadow: 0 35px 60px rgba(15, 26, 58, 0.08);
    border: 1px solid rgba(14, 20, 40, 0.05);
    display: none;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
}

.feature-card.is-active {
    display: flex;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.6rem;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
}

.feature-card .pill {
    align-self: flex-start;
}

.feature-points {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: var(--navy);
    font-weight: 600;
}

.feature-points li {
    position: relative;
    padding-left: 1.4rem;
}

.feature-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.mobile-suite {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.device-mockup {
    justify-self: center;
    position: relative;
}

.device-screen {
    width: 260px;
    height: 520px;
    border-radius: 36px;
    background: linear-gradient(180deg, #ffefcf 0%, #ffe1ba 100%);
    border: 8px solid #0e1428;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4rem;
    position: relative;
}

.device-notch {
    width: 120px;
    height: 22px;
    background: #0e1428;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.schedule-pill {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 20px 40px rgba(255, 138, 0, 0.25);
}

.schedule-pill span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lock-time {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
}

.lock-time small {
    display: block;
    font-size: 1rem;
    color: var(--navy);
}

.device-shadow {
    width: 80%;
    height: 20px;
    background: radial-gradient(circle, rgba(15, 21, 40, 0.2), transparent);
    margin: 20px auto 0;
    border-radius: 50%;
}

.mobile-copy p {
    color: var(--text-muted);
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.5rem;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.dot-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.store-btn {
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    background: #fff;
    font-weight: 600;
}

.store-btn.play-store {
    border-color: #dfe4ff;
}

.resources {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

.resource-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.resource-grid article {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 24px;
    padding: 1.4rem 1.5rem;
    background: #fff;
    box-shadow: 0 20px 35px rgba(14, 20, 40, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.resource-actions {
    margin-top: auto;
}
.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 50px rgba(15, 26, 58, 0.12);
}
.resource-card header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pill {
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.75rem;
}

.pill.accent {
    background: rgba(255, 138, 0, 0.1);
    color: var(--orange);
}

.pill.success {
    background: rgba(28, 206, 151, 0.1);
    color: #1cce97;
}

.pill.neutral {
    background: rgba(99, 112, 255, 0.1);
    color: #6370ff;
}

.resource-card h3 {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.1rem;
}
.resource-card h3 a {
    text-decoration: none;
    color: var(--navy);
}
.resource-card h3 a:hover {
    text-decoration: underline;
}

.resource-card p {
    color: var(--text-muted);
}

.author {
    font-weight: 500;
    margin-top: auto;
}

.outline-link {
    border: 1px solid rgba(14, 20, 40, 0.15);
    background: transparent;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 0.75rem;
}

.resource-card .card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(255, 138, 0, 0.12), rgba(14, 20, 40, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.resource-card:hover .card-shade {
    opacity: 1;
}

.testimonial {
    padding: 6rem 1.5rem;
}
.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff 0%, #fff6ee 100%);
    border-radius: 36px;
    border: 1px solid rgba(14, 20, 40, 0.05);
    box-shadow: 0 45px 80px rgba(12, 18, 40, 0.08);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 3rem;
    align-items: center;
}
.testimonial-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial-copy .lede {
    margin: 0;
    color: var(--text-muted);
}
.testimonial-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: var(--navy);
    font-weight: 600;
}
.testimonial-points li {
    display: flex;
    align-items: flex-start;
}
.testimonial-points li::before {
    content: "→";
    color: var(--orange);
    margin-right: 0.45rem;
}
.testimonial-card {
    background: #fff;
    border-radius: 28px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 35px 70px rgba(12, 18, 40, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.testimonial-slider {
    position: relative;
    min-height: 260px;
}
.testimonial-panel {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    inset: 0;
    padding: 0 1rem;
}
.testimonial-panel.is-active {
    opacity: 1;
    transform: translateY(0);
}
.testimonial-panel .person {
    margin: 0.65rem 0 0.1rem;
    font-weight: 600;
    font-size: 1.05rem;
}
.testimonial-panel .role {
    margin: 0 0 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.testimonial-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
}
.testimonial-avatar img,
.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 138, 0, 0.15);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.3rem;
}
.testimonial blockquote {
    font-size: 1.15rem;
    color: #2c2f44;
    font-weight: 500;
    margin: -14px auto 1.5rem;
    max-width: 520px;
    line-height: 1.2;
}
.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #d7dbe8;
    border: none;
    cursor: pointer;
}
.dots button.is-active {
    background: var(--orange);
    width: 22px;
}

.cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.12), #fff);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(14, 20, 40, 0.06);
    box-shadow: 0 30px 50px rgba(15, 26, 58, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.cta-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.85rem;
}

.cta-highlights article {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: inset 0 0 20px rgba(255, 138, 0, 0.08);
}

.highlight-value {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.highlight-label {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-checks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.cta-checks ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cta-checks li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-weight: 600;
}

.cta-checks li::before {
    content: "✓";
    color: var(--orange);
    font-weight: 700;
}

.cta-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 20px 45px rgba(15, 26, 58, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.cta-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.cta-form label {
    font-weight: 600;
    color: var(--text-muted);
}

.auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted);
    padding: 3rem 1rem;
}

.auth-card {
    background: #fff;
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(14, 20, 40, 0.06);
    box-shadow: 0 35px 60px rgba(15, 26, 58, 0.08);
    max-width: 640px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.auth-copy h1 {
    margin: 0.5rem 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.cta ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.cta li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cta li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 700;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-form label {
    font-weight: 600;
    color: var(--text-muted);
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    border-radius: 999px;
    border: 1px solid var(--border);
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
    width: 100%;
}

.cta-form textarea {
    border-radius: 18px;
    resize: vertical;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.field-error {
    color: #ff6464;
    font-size: 0.85rem;
}

.form-error {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.4);
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    color: #c92323;
    font-size: 0.9rem;
}

.site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #f9fafc;
    margin-top: 3rem;
}
.footer-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.footer-brand p {
    color: var(--text-muted);
    margin: 0 0 1rem;
}
.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}
.footer-heading {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.footer-nav ul,
.footer-newsletter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-nav a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
}
.footer-newsletter p {
    color: var(--text-muted);
    margin: 0 0 0.75rem;
}
.footer-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.footer-form input {
    flex: 1;
    min-width: 200px;
    border-radius: 999px;
    border: 1px solid var(--border);
    padding: 0.55rem 0.9rem;
    font-family: inherit;
}
.footer-form button {
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}
.site-footer .heart {
    color: var(--orange);
}

@media (max-width: 900px) {
    body {
        font-size: 1.02rem;
    }

    .site-header {
        padding: 0.6rem 0;
    }

    .nav {
        padding: 0 1.25rem;
        gap: 0.75rem;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-header {
        width: 100%;
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 1rem;
        border-radius: 20px;
        border: 1px solid rgba(14, 20, 40, 0.08);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 35px rgba(14, 20, 40, 0.08);
    }

    .nav.is-open .nav-menu {
        display: flex;
    }

    .brand img {
        height: 80px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .nav-links a,
    .nav-actions .btn {
        width: 100%;
    }

    .hero {
        padding: 5rem 1.25rem 4.5rem;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 6vw, 3.6rem);
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-persona-toggle,
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-heading {
        padding: 0 0.25rem;
        max-width: 640px;
    }

    .suite,
    .feature-suite,
    .pillars,
    .workflow,
    .journey-hero,
    .journey-board,
    .resources,
    .testimonial,
    .case-slider,
    .outcomes,
    .pricing,
    .cta {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .pillar-grid,
    .workflow-steps,
    .feature-body,
    .journey-board-grid,
    .catalog-grid,
    .outcome-grid,
    .pricing-grid,
    .resource-grid,
    .cta-highlights,
    .cta-checks {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .journey-hero {
        gap: 1.5rem;
    }

    .cta {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .footer-shell {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 1rem;
        line-height: 1.6;
    }

    .site-header {
        padding: 0.5rem 0;
    }

    .brand img {
        height: 64px;
    }

    .hero {
        padding: 4.5rem 1rem 3.5rem;
        text-align: left;
    }

    .hero-inner {
        max-width: 100%;
    }

    .hero-badge {
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-persona-toggle,
    .hero-cta {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-persona-toggle .persona-btn,
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .section-heading {
        text-align: left;
    }

    .section-heading h2 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .section-shell {
        padding: 0 1rem;
    }

    .suite {
        padding: 3rem 0.5rem 2.5rem;
    }

    .suite-map {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .suite-instructions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        font-size: 0.9rem;
    }

    .suite-card,
    .suite-detail,
    .pillar-card,
    .workflow-steps li,
    .feature-card,
    .catalog-card,
    .journey-hero-detail,
    .journey-card,
    .metric-card,
    .pricing-card,
    .resource-grid article,
    .cta-card,
    .cta-form-card {
        padding: 1.25rem;
    }

    .suite-metrics {
        grid-template-columns: 1fr;
    }

    .suite-detail .btn {
        width: 100%;
        text-align: center;
    }

    .workflow-steps,
    .pillar-grid,
    .feature-body,
    .journey-board-grid,
    .outcome-grid,
    .pricing-grid,
    .resource-grid,
    .cta-highlights,
    .cta-checks,
    .cta-form .form-row,
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .journey-hero {
        flex-direction: column;
        padding: 3rem 1rem 0;
    }

    .journey-hero-content,
    .journey-hero-detail {
        min-width: auto;
    }

    .journey-board {
        padding: 2rem 1rem 3rem;
    }

    .journey-legend {
        flex-wrap: wrap;
    }

    .feature-suite,
    .pillars,
    .workflow,
    .journey-board,
    .resources,
    .testimonial,
    .case-slider,
    .outcomes,
    .pricing,
    .cta {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .feature-body {
        gap: 1.5rem;
    }

    .feature-accordion {
        position: static;
    }

    .feature-accordion .accent-bar {
        display: none;
    }

    .feature-card {
        min-height: auto;
    }

    .case-slider {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .case-panels {
        min-height: 0;
    }

    .case-panel {
        position: relative;
        opacity: 1;
        transform: none;
        margin-bottom: 1rem;
    }

    .case-panel:not(.is-active) {
        display: none;
    }

    .testimonial {
        padding: 4rem 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-slider {
        min-height: 0;
    }

    .testimonial-panel {
        position: relative;
        padding: 0;
    }

    .testimonial-panel:not(.is-active) {
        display: none;
    }

    .outcomes {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .metric-card {
        gap: 0.5rem;
    }

    .pricing-card {
        min-height: auto;
    }

    .cta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 3rem 1rem 4rem;
    }

    .cta-form button {
        width: 100%;
    }

    .site-footer {
        margin-top: 2rem;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        padding: 2.5rem 1rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

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

    .footer-form input,
    .footer-form button {
        width: 100%;
        min-width: 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.console-shell {
    min-height: 100vh;
    display: flex;
    background: var(--bg-muted);
}

.console-sidebar {
    width: 260px;
    background: #101632;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
}

.console-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.console-brand .glyph {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(130deg, #ff8a00, #ffb347);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.console-brand p {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

.console-brand small {
    color: rgba(255, 255, 255, 0.7);
}

.console-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.console-sidebar nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-weight: 600;
}

.console-sidebar nav a.is-active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.console-sidebar-foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.console-sidebar-foot p {
    margin: 0;
    font-weight: 600;
}

.console-logout {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
}

.console-main {
    flex: 1;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.console-panel {
    background: #fff;
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 20px 40px rgba(14, 20, 40, 0.04);
}
.panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.content-block-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.content-block-grid article {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f9f9ff;
}
.content-block-grid .block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.status-pill {
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
}
.status-pill.is-on {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
}
.console-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.console-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.console-form input,
.console-form textarea,
.console-form select {
    border: 1px solid rgba(14, 20, 40, 0.15);
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
}
.console-form .field-error {
    color: #b91c1c;
    font-size: 0.85rem;
}
.console-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
.console-table th,
.console-table td {
    padding: 0.65rem;
    border-bottom: 1px solid rgba(14, 20, 40, 0.08);
    text-align: left;
}
.console-table th {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.console-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}
.console-hero {
    width: 100%;
    background: linear-gradient(120deg, #eef1ff 0%, #fff9f2 100%);
    border-radius: 32px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 45px rgba(14, 20, 40, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}
.hero-content {
    max-width: 520px;
}
.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}
.hero-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(254, 244, 233, 0.9));
    border-radius: 26px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(14, 20, 40, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-highlight-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-right: 1rem;
}

.hero-highlight-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background: rgba(14, 20, 40, 0.08);
}

.hero-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(14, 20, 40, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.hero-stat-icon svg {
    width: 28px;
    height: 28px;
}

.hero-stat-label {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-stat-value {
    margin: 0.15rem 0 0;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--navy);
}

.hero-stat-helper {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .hero-highlight {
        grid-template-columns: 1fr;
    }

    .hero-highlight-stat {
        padding-right: 0;
    }

    .hero-highlight-stat:not(:last-child)::after {
        display: none;
    }
}

.console-page-header .lede {
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.panel {
    background: #fff;
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(14, 20, 40, 0.06);
    box-shadow: 0 20px 40px rgba(13, 18, 34, 0.05);
}
.panel-contained {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-bottom: 1.75rem;
}
.section-tight {
    margin-bottom: 1.25rem;
}

.panel header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stats-grid article {
    background: #fff;
    border-radius: 18px;
    padding: 1.25rem;
    border: 1px solid rgba(14, 20, 40, 0.05);
}

.stats-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .stats-grid.three-up {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.assessment-stat-card {
    --card-accent: #ff8a00;
    --card-accent-soft: rgba(255, 138, 0, 0.15);
    padding: 1.75rem;
    border-radius: 30px;
    border: 1px solid rgba(14, 20, 40, 0.06);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(240, 243, 255, 0.95));
    box-shadow: 0 25px 45px rgba(14, 20, 40, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.assessment-grid {
    margin-top: 2rem;
}

.assessment-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.assessment-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--card-accent-soft);
    color: var(--card-accent);
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assessment-heading {
    flex: 1;
}

.assessment-card-header h3 {
    margin: 0.2rem 0 0;
}

.assessment-stat-card .label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.micro-pill {
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.08);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
}

.stat-total {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-total span {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.progress-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.08);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: inherit;
    background: var(--card-accent);
    transition: width 0.3s ease;
}

.progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-breakdown {
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

.stat-breakdown dt {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.stat-breakdown dd {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    color: var(--navy);
}

.stat-breakdown div {
    flex: 1;
}

.assessment-stat-card .card-actions {
    margin-top: auto;
}

.theme-marketing {
    --card-accent: #ff8a00;
    --card-accent-soft: rgba(255, 138, 0, 0.18);
    background: linear-gradient(150deg, rgba(255, 236, 210, 0.6), rgba(255, 255, 255, 0.95));
}

.theme-product {
    --card-accent: #5f6bff;
    --card-accent-soft: rgba(95, 107, 255, 0.18);
    background: linear-gradient(150deg, rgba(232, 236, 255, 0.8), rgba(255, 255, 255, 0.98));
}

.theme-behavioral {
    --card-accent: #ff5f9e;
    --card-accent-soft: rgba(255, 95, 158, 0.16);
    background: linear-gradient(150deg, rgba(255, 230, 239, 0.8), rgba(255, 255, 255, 0.98));
}

@media (max-width: 600px) {
    .assessment-card-header {
        flex-wrap: wrap;
    }

    .micro-pill {
        margin-left: auto;
    }
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.panel-grid.metric-grid .panel {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(14, 20, 40, 0.05);
    box-shadow: 0 18px 35px rgba(14, 20, 40, 0.05);
}
.panel-grid.metric-grid .panel.emphasize {
    background: linear-gradient(160deg, rgba(255, 255, 255, 1), rgba(239, 243, 255, 0.9));
}
.quick-links-panel .chip-row {
    justify-content: flex-start;
}

.deadline-list,
.activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deadline-list li,
.activity-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.deadline-list li:last-child,
.activity-list li:last-child {
    border-bottom: none;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.detail-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--text-muted);
}

.card-actions {
    display: flex;
    gap: 1rem;
}

.card-actions a {
    text-decoration: none;
    font-weight: 600;
    color: var(--orange);
}

.table {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: inherit;
    text-decoration: none;
}

.table-row.table-head {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.table-row:last-child {
    border-bottom: none;
}

.question-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.question-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.choice-list {
    list-style: none;
    padding-left: 1rem;
    margin: 0.5rem 0 0;
    color: var(--text-muted);
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
}

.inline-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.inline-form input {
    flex: 1;
    min-width: 240px;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 0.65rem 0.85rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-grid strong {
    font-size: 1.5rem;
}

.session-panel header {
    align-items: center;
    gap: 1rem;
}

.session-meta {
    color: var(--text-muted);
    margin-top: -0.5rem;
}

.session-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.metric-panel {
    padding: 1.5rem 2rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.metric-card {
    background: #f6f7fb;
    border-radius: 18px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(14, 20, 40, 0.05);
}

.metric-cluster .metric-panel {
    position: relative;
    overflow: hidden;
}

.metric-panel-inner {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.metric-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(14, 20, 40, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

.metric-icon svg {
    width: 28px;
    height: 28px;
}

.accent-clients {
    background: linear-gradient(135deg, rgba(194, 255, 232, 0.5), rgba(255, 255, 255, 0.9));
}

.accent-users {
    background: linear-gradient(135deg, rgba(255, 240, 219, 0.8), rgba(255, 255, 255, 0.95));
}

.quick-links-panel.neutral {
    background: linear-gradient(135deg, rgba(238, 240, 255, 0.6), rgba(255, 255, 255, 0.95));
}

.metric-label {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.metric-value {
    margin: 0.35rem 0 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.metric-panel .metric-value {
    font-size: 2rem;
}

.metric-helper {
    color: var(--text-muted);
    margin: 0.35rem 0 0;
}

.metric-breakdown {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.metric-breakdown li {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.metric-breakdown strong {
    font-size: 1.4rem;
    color: var(--navy);
    line-height: 1.2;
}

.metric-value.decision.advance {
    color: #0faa7c;
}

.metric-value.decision.reject {
    color: #eb5757;
}

.candidate-shell {
    min-height: 100vh;
    background: var(--bg-muted);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 3rem 1.5rem;
}

.candidate-shell.single-column {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
}

.candidate-skip-link {
    align-self: flex-end;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-decoration: underline;
    color: var(--navy);
}

.candidate-panel {
    background: #fff;
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 25px 45px rgba(15, 20, 40, 0.06);
}

.candidate-panel .lede {
    color: var(--text-muted);
}

.candidate-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.candidate-meta dt {
    font-weight: 600;
    color: var(--text-muted);
}

.candidate-meta dd {
    margin: 0.2rem 0 0;
    font-size: 1.05rem;
}

.candidate-callout {
    background: rgba(255, 138, 0, 0.1);
    border-radius: 18px;
    padding: 1rem 1.25rem;
}

.candidate-rules {
    background: #f6f7fb;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.candidate-rules ul {
    margin: 0.75rem 0 0 1rem;
    color: var(--text-muted);
}

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

.pause-panel {
    text-align: center;
    padding: 3rem 2.5rem;
}

.pause-panel .lede {
    max-width: 520px;
    margin: 0.5rem auto 2rem;
}

.practice-panel .practice-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
.practice-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.practice-card {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    background: rgba(249, 250, 255, 0.9);
}
.practice-feedback {
    margin-top: 0.75rem;
    font-weight: 600;
}
.practice-feedback.success {
    color: #16a34a;
}
.practice-feedback.warning {
    color: #d97706;
}

.pause-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pause-meta article {
    background: rgba(246, 247, 251, 0.9);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-width: 180px;
}

.pause-meta span {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.pause-meta strong {
    font-size: 1.15rem;
    color: var(--navy);
}

.resume-form {
    margin-bottom: 1.5rem;
}

.candidate-question label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.candidate-question ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.candidate-question li {
    margin-bottom: 0.35rem;
}

.candidate-panel input[type="radio"],
.candidate-panel input[type="checkbox"] {
    margin-right: 0.5rem;
}

.candidate-panel textarea {
    resize: vertical;
}

.candidate-next-steps {
    list-style: disc;
    margin: 1.5rem 0 2rem 1.25rem;
    color: var(--text-muted);
}

.completed-panel {
    place-items: center;
}

.behavior-panel {
    margin-top: 2rem;
}
.behavior-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(120deg, rgba(255, 138, 0, 0.12), rgba(78, 70, 229, 0.08));
    border-radius: 18px;
    margin: -1rem -1.5rem 1.5rem;
}
.behavior-title {
    max-width: 640px;
}
.behavior-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
}
.meta-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    min-width: 150px;
    box-shadow: inset 0 0 0 1px rgba(14, 20, 40, 0.05);
}
.meta-card p {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.meta-card .meta-value {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.4rem;
    font-weight: 700;
}
.risk-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    margin-top: 0.35rem;
}
.risk-badge.risk-high_risk,
.risk-badge.risk-reject {
    background: rgba(231, 76, 60, 0.15);
    color: #c0392b;
}
.risk-badge.risk-moderate_risk,
.risk-badge.risk-consider_interview {
    background: rgba(255, 206, 84, 0.2);
    color: #b97300;
}
.risk-badge.risk-low_risk,
.risk-badge.risk-low,
.risk-badge.risk-invite_to_interview {
    background: rgba(46, 204, 113, 0.18);
    color: #1d7d46;
}
.behavior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.behavior-card {
    background: #f5f6fc;
    padding: 1.25rem 1.4rem;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(14, 20, 40, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.behavior-card .card-label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.behavior-card .card-value {
    font-size: 1.4rem;
    margin: 0;
}
.behavior-card .card-metric {
    margin: 0;
    font-weight: 600;
}
.behavior-card .card-metric small {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
}
.behavior-card .muted {
    color: var(--text-muted);
    margin: 0;
}
.chip-list {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.chip {
    background: rgba(79, 70, 229, 0.1);
    color: #4338ca;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.behavior-split {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
@media (max-width: 980px) {
    .behavior-split {
        grid-template-columns: 1fr;
    }
    .language-flex {
        grid-template-columns: 1fr;
    }
    .language-aside {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }
}
.behavior-summary {
    display: grid;
    gap: 1rem;
}
.behavior-summary article {
    padding: 1rem 1.25rem;
    background: #f8f9fd;
    border-radius: 16px;
}
.behavior-summary .trait-label {
    font-weight: 600;
    margin: 0.25rem 0;
}
.behavior-summary .muted {
    color: var(--text-muted);
    margin: 0;
}
.trait-table {
    margin-top: 0;
}
.behavior-risks {
    margin-top: 2rem;
}
.behavior-risks .flag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.behavior-risks .flag-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(14, 20, 40, 0.08);
}
.behavior-risks .follow-up {
    margin-top: 1.5rem;
    background: #f5f6fc;
    padding: 1.25rem;
    border-radius: 16px;
}
.question-step .question-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, #fffdf8, #f5f6fc);
    border: 1px solid rgba(14, 20, 40, 0.05);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 14px 35px rgba(14, 20, 40, 0.06);
    gap: 1.5rem;
}
.question-step .progress-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
}
.status-chip .chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.16);
}
.progress-count {
    display: flex;
    gap: 0.4rem;
    align-items: baseline;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}
.progress-count .progress-total {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.progress-meter {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-end;
}

.session-utility-bar {
    margin: 1.5rem 0 1.2rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.session-utility-bar strong {
    font-size: 1.05rem;
    color: var(--navy);
}

.session-utility-bar form {
    margin: 0;
}

.device-support {
    border: 1px dashed rgba(15, 23, 42, 0.15);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(249, 250, 255, 0.9);
}

.device-support p {
    margin: 0.3rem 0 0;
    color: var(--text-muted);
}

.device-support form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin: 0;
}

.device-support input {
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.95rem;
    min-width: 220px;
}

.input-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: -1rem 0 1.5rem;
}

.accessibility-hint {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.support-center {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 35px rgba(14, 20, 40, 0.08);
}
.support-center-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.support-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.support-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.support-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.support-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.support-submit .tiny {
    font-size: 0.8rem;
}

.help-drawer {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.help-drawer summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
}

.help-drawer .chevron {
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.help-drawer[open] .chevron {
    transform: rotate(225deg);
}

.help-drawer .help-content {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.75rem;
}

.help-drawer article strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.help-drawer article p {
    margin: 0;
    color: var(--text-muted);
}
.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(14, 20, 40, 0.08);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(14, 20, 40, 0.08);
}
.progress-bar span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(120deg, #ff8a00, #ffb347);
    border-radius: inherit;
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.3);
}
.progress-percent {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.question-step .question-progress {
    flex-wrap: wrap;
}
.question-step .question-progress,
.progress-meter,
.progress-bar {
    min-width: 0;
}
.progress-meter {
    min-width: 220px;
}
.progress-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.progress-stat {
    border-radius: 14px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}
.progress-stat span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.progress-stat strong {
    display: block;
    font-size: 1.4rem;
    margin-top: 0.25rem;
}
@media (max-width: 640px) {
    .question-step .question-progress {
        flex-direction: column;
        align-items: flex-start;
    }
    .progress-meter {
        width: 100%;
        align-items: flex-start;
    }
    .progress-bar {
        margin-left: 0;
    }
    .session-utility-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .device-support {
        flex-direction: column;
        align-items: flex-start;
    }
    .device-support form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .device-support input,
    .device-support button {
        width: 100%;
    }
    .support-center-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .support-submit {
        flex-direction: column;
        align-items: flex-start;
    }
}
.question-instructions {
    background: #f5f6fc;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}
.focus-banner {
    background: rgba(255, 138, 0, 0.08);
    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--navy);
}
.focus-banner span {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    font-size: 0.75rem;
    margin-right: 0.5rem;
}
.question-guidance {
    border: 1px dashed rgba(15, 23, 42, 0.2);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin: 0.75rem 0 1rem;
    background: rgba(249, 250, 255, 0.8);
}
.question-guidance strong {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.question-guidance p {
    margin: 0;
    color: var(--text-muted);
}
.answer-preview {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    background: #fdfcf9;
}
.answer-preview .preview-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}
.answer-preview .char-count {
    font-weight: 600;
    color: var(--text-muted);
}
.answer-preview .char-count.is-warning {
    color: #d97706;
}
.preview-hint {
    margin: 0 0 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.preview-body {
    min-height: 80px;
    padding: 0.75rem;
    border-radius: 10px;
    background: #fff;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    color: var(--navy);
    white-space: pre-wrap;
}
.preview-body.is-empty {
    color: var(--text-muted);
    font-style: italic;
}

.help-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
}
.ranking-items {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
    color: var(--navy);
    font-weight: 600;
}
.ranking-items li {
    margin-bottom: 0.35rem;
}

.timer {
    margin: 0;
    font-weight: 600;
    color: var(--orange);
}
.share-meta p {
    margin: 0;
}
.share-meta {
    text-align: right;
}

.score-highlight .share-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.share-meta {
    text-align: right;
}
.score-highlight .meta {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.fit-grid .label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.fit-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fit-grid li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(14, 20, 40, 0.06);
    font-size: 0.95rem;
}
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.chip {
    background: rgba(255, 138, 0, 0.12);
    color: var(--navy);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-weight: 600;
    font-size: 0.85rem;
}
.chip.warning {
    background: rgba(255, 100, 100, 0.12);
    color: #eb5757;
}
.chip.emphasis {
    background: rgba(15, 170, 124, 0.15);
    color: #0faa7c;
}
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.risk-card {
    border-radius: 18px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: #fff;
    box-shadow: 0 10px 25px rgba(14, 20, 40, 0.05);
}
.risk-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
}
.risk-copy h3 {
    margin: 0 0 0.25rem;
}
.risk-copy p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.risk-pill {
    margin-left: auto;
    font-weight: 600;
}
.risk-card.severity-watchlist .risk-icon {
    background: rgba(255, 138, 0, 0.8);
}
.risk-card.severity-watchlist .risk-pill {
    color: #ff8a00;
}
.risk-card.severity-reject .risk-icon {
    background: rgba(235, 87, 87, 0.85);
}
.risk-card.severity-reject .risk-pill {
    color: #eb5757;
}
.summary-callout {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(225, 242, 255, 0.9));
    border: 1px solid rgba(14, 20, 40, 0.05);
}
.summary-callout-responsive {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}
.summary-callout.tone-positive {
    background: linear-gradient(120deg, rgba(225, 255, 244, 0.9), rgba(255, 255, 255, 0.95));
}
.summary-callout.tone-warning {
    background: linear-gradient(120deg, rgba(255, 235, 230, 0.9), rgba(255, 255, 255, 0.95));
}
.summary-callout-main h2 {
    margin: 0.4rem 0;
}
.summary-callout-main p {
    margin: 0;
    color: var(--text-muted);
}
.summary-callout-main .pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.summary-callout-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.metric-chip {
    min-width: 120px;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(14, 20, 40, 0.08);
    text-align: center;
}
.metric-chip strong {
    font-size: 1.5rem;
}
.drilldown-panel details {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
}
.drilldown-panel summary {
    list-style: none;
    cursor: pointer;
    padding: 0.85rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.drilldown-panel summary::-webkit-details-marker {
    display: none;
}
.drilldown-body {
    padding: 0 1rem 1rem;
    border-top: 1px solid rgba(14, 20, 40, 0.05);
    color: var(--text-muted);
}
.drilldown-status {
    font-weight: 600;
}
.drilldown-status.positive {
    color: #0faa7c;
}
.drilldown-status.warning {
    color: #eb5757;
}
.decision-cta-panel .decision-cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.decision-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}
.decision-tab {
    border-radius: 16px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    cursor: pointer;
    background: #fff;
}
.decision-tab .tab-title {
    font-weight: 700;
}
.decision-tab .tab-helper {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.decision-tab.positive {
    background: rgba(225, 255, 244, 0.9);
}
.decision-tab.warning {
    background: rgba(255, 235, 230, 0.9);
}
.decision-note textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.6rem 0.8rem;
    font-family: inherit;
}
.followup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.followup-card {
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 235, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}
.followup-card .card-title {
    margin: 0 0 0.35rem;
    font-weight: 600;
}
.comparative-grid,
.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.heatmap-card {
    border-radius: 16px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 20, 40, 0.05);
    text-align: center;
}
.heatmap-card strong {
    font-size: 1.8rem;
}
.trait-bar {
    padding: 0.5rem 0;
}
.trait-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}
.trait-bar .progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.08);
    overflow: hidden;
}
.trait-bar .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8a00, #ffc562);
}
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.summary-card {
    border-radius: 18px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(14, 20, 40, 0.05);
}
.summary-card h3 {
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.summary-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.35rem 0;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.review-card {
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
}
.review-card .badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.08);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.review-card strong {
    font-size: 2rem;
    display: block;
    margin-top: 0.4rem;
}
.review-card.is-recommended {
    border-color: rgba(15, 170, 124, 0.4);
    box-shadow: 0 12px 30px rgba(15, 170, 124, 0.1);
}
.heatmap-card.status-positive {
    border-color: rgba(15, 170, 124, 0.3);
    background: rgba(225, 255, 244, 0.9);
}
.heatmap-card.status-warning {
    border-color: rgba(235, 87, 87, 0.3);
    background: rgba(255, 235, 230, 0.9);
}
.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.timeline-list::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(14, 20, 40, 0.08);
}
.timeline-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}
.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--navy);
    flex-shrink: 0;
    margin-top: 0.35rem;
}
.timeline-label {
    margin: 0;
    font-weight: 600;
}
.timeline-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.timeline-desc {
    margin: 0.35rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: var(--text-muted);
}
.audit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.audit-card {
    border-radius: 16px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: rgba(255, 255, 255, 0.95);
}
.audit-card h3 {
    margin: 0.35rem 0;
}
.audit-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.feedback-insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}
.notes-timeline {
    margin-top: 1.5rem;
    position: relative;
}
.notes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.notes-list li {
    display: flex;
    gap: 1rem;
    position: relative;
}
.note-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    margin-top: 0.4rem;
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.15);
}
.note-body {
    flex: 1;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: rgba(255, 255, 255, 0.8);
}
.note-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.badge {
    display: inline-flex;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.08);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.chip-row.warning .chip {
    background: rgba(235, 87, 87, 0.12);
    color: #eb5757;
}

.api-shell {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.api-shell .hero {
    text-align: center;
}
.api-shell .hero h1 {
    margin-bottom: 0.5rem;
}
.api-shell .panel {
    scroll-margin-top: 110px;
}
.api-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.api-hero-metrics {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}
.api-hero-metrics article {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 0.95rem 1.2rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 20px 45px rgba(14, 20, 40, 0.08);
    text-align: left;
}
.api-hero-metrics strong {
    display: block;
    font-size: 1.35rem;
    color: var(--navy);
}
.api-hero-metrics span {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.api-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.api-hero-list li {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.08);
    font-weight: 600;
    color: var(--navy);
}
.api-mini-nav {
    position: sticky;
    top: 72px;
    z-index: 12;
    margin: 0 0 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 25px 50px rgba(14, 20, 40, 0.08);
    backdrop-filter: blur(8px);
    padding: 0.35rem;
}
.api-mini-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
    scrollbar-width: none;
}
.api-mini-nav ul::-webkit-scrollbar {
    display: none;
}
.api-mini-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.api-mini-nav a.is-active {
    background: linear-gradient(120deg, #ff8a00, #ff3c78);
    color: #fff;
    box-shadow: 0 15px 35px rgba(255, 100, 0, 0.35);
}
.api-mini-nav a:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}
.hero-loop-panel {
    background: #0f172c;
    color: #f8f8ff;
    position: relative;
    overflow: hidden;
}
.hero-loop-panel::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.35), rgba(255, 138, 0, 0));
    bottom: -90px;
    right: -80px;
    filter: blur(6px);
}
.hero-loop-panel > * {
    position: relative;
}
.loop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}
.loop-copy .lede {
    color: rgba(248, 248, 255, 0.75);
}
.loop-steps {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.loop-steps li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.loop-steps .step-index {
    min-width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}
.loop-steps strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
}
.loop-steps p {
    margin: 0;
    color: rgba(248, 248, 255, 0.7);
}
.loop-visual {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    box-shadow: 0 35px 75px rgba(6, 8, 16, 0.55);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.loop-visual-header {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(248, 248, 255, 0.7);
}
.loop-visual-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(248, 248, 255, 0.5);
}
.loop-track {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0.5rem;
    align-items: center;
}
.loop-node {
    border-radius: 18px;
    padding: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: loopPulse 6s ease-in-out infinite;
}
.loop-node strong {
    display: block;
    color: #fff;
}
.loop-node small {
    color: rgba(248, 248, 255, 0.65);
    font-size: 0.85rem;
}
.loop-node.is-session {
    animation-delay: 1s;
}
.loop-node.is-webhook {
    animation-delay: 2s;
}
.loop-arrow {
    width: 34px;
    height: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}
.loop-arrow::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid rgba(255, 255, 255, 0.35);
    transform: translateY(-50%);
}
.loop-video {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
}
.loop-video-screen {
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}
.loop-video-header {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 0.3rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(248, 248, 255, 0.75);
}
.loop-video-wave {
    display: flex;
    gap: 0.4rem;
    padding: 1.25rem 1rem;
    justify-content: space-between;
}
.loop-video-wave span {
    flex: 1;
    height: 90px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
    animation: loopWave 3s ease-in-out infinite;
}
.loop-video-wave span:nth-child(2) {
    animation-delay: 0.3s;
}
.loop-video-wave span:nth-child(3) {
    animation-delay: 0.6s;
}
.loop-video-footer {
    padding: 0.9rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(248, 248, 255, 0.75);
}
.download-panel {
    background: linear-gradient(120deg, #fff5ec, #fff);
    padding: 2rem;
}
.download-card {
    border-radius: 32px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    padding: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 2rem;
    background: #fff;
    box-shadow: 0 40px 70px rgba(14, 20, 40, 0.1);
}
.download-copy h2 {
    margin-bottom: 0.5rem;
}
.download-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.download-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: rgba(247, 248, 255, 0.85);
}
.download-list strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
}
.download-list p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.download-list .btn {
    white-space: nowrap;
}
.playground-panel {
    background: #0f172c;
    color: #f8f8ff;
}
.playground-panel .section-heading .lede {
    color: rgba(248, 248, 255, 0.7);
}
.playground-shell {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 1.5rem;
}
.playground-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.playground-tab {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0.85rem 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.playground-tab .method {
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}
.playground-tab .path {
    font-family: "SFMono-Regular", Menlo, monospace;
    font-size: 0.9rem;
}
.playground-tab p {
    margin: 0;
    color: rgba(248, 248, 255, 0.75);
    font-size: 0.85rem;
}
.playground-tab.is-active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 18px 30px rgba(3, 8, 14, 0.45);
}
.playground-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}
.playground-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 30px 60px rgba(3, 5, 12, 0.45);
}
.playground-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(248, 248, 255, 0.8);
}
.playground-card header .label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}
.playground-meta strong {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(248, 248, 255, 0.8);
    font-size: 0.85rem;
}
.playground-meta pre {
    margin: 0;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.35);
    padding: 1rem;
    font-family: "SFMono-Regular", Menlo, monospace;
    white-space: pre-wrap;
    word-break: break-word;
    color: #f5f6ff;
    min-height: 92px;
    transition: box-shadow 0.2s ease;
}
.playground-run {
    align-self: flex-start;
}
.playground-card.is-running pre[data-playground-response] {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.playground-tip {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(248, 248, 255, 0.65);
}
.env-panel {
    background: #f5f7ff;
}
.env-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.env-grid article {
    border: 1px dashed rgba(14, 20, 40, 0.15);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    background: #fff;
}
.env-grid .label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.env-grid strong {
    font-size: 1.05rem;
}
.architecture-panel {
    background: #fffdf8;
}
.arch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.arch-card {
    border: 1px solid rgba(14, 20, 40, 0.1);
    border-radius: 18px;
    padding: 1.25rem;
    background: #fff;
}
.arch-card h3 {
    margin: 0 0 0.5rem;
}
.panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.panel-heading .lede {
    max-width: 360px;
    margin: 0;
    color: var(--text-muted);
}
.api-endpoints {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}
.endpoint-panel {
    background: #fff9f2;
}
.endpoint-card {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(14, 20, 40, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.endpoint-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(14, 20, 40, 0.08);
}
.endpoint-card .method {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.endpoint-card .path {
    display: block;
    margin: 0.25rem 0 0.75rem;
    font-family: "SFMono-Regular", Menlo, monospace;
    font-size: 0.95rem;
    color: var(--navy);
    word-break: break-all;
}
.endpoint-card p {
    margin: 0;
    color: var(--text-muted);
}
.endpoint-schema {
    margin-top: 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: #f9fafc;
    padding: 0.5rem 0.75rem;
}
.endpoint-schema summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.endpoint-schema summary::before {
    content: "↓";
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}
.endpoint-schema[open] summary::before {
    transform: rotate(-180deg);
}
.endpoint-schema pre {
    margin: 0.75rem 0 0;
    background: #fff;
    border-radius: 10px;
    padding: 0.6rem;
    font-family: "SFMono-Regular", Menlo, monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--navy);
    white-space: pre-wrap;
    word-break: break-word;
}
.language-info-panel {
    background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 40%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.language-info-panel::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.35), rgba(255, 138, 0, 0));
    top: -120px;
    right: -60px;
    filter: blur(10px);
    pointer-events: none;
}
.language-info-panel > * {
    position: relative;
}
.language-flex {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 420px);
    gap: 2.5rem;
    align-items: center;
}
.language-copy h2 {
    margin: 0.25rem 0 0.75rem;
    font-size: clamp(2rem, 3vw, 2.75rem);
}
.language-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.25rem;
}
.language-pill {
    background: rgba(14, 20, 40, 0.08);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
}
.language-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.language-stats article {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.language-stats strong {
    font-size: 2rem;
    color: var(--navy);
}
.language-stats span {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.language-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.language-aside {
    display: flex;
    justify-content: flex-end;
}
.language-aside-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 25px 55px rgba(15, 20, 40, 0.15);
    backdrop-filter: blur(6px);
    max-width: 360px;
    width: 100%;
}
.language-aside-card .label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--orange);
    font-weight: 700;
}
.language-aside-card .language-stats {
    gap: 1rem;
    justify-content: space-between;
    border-bottom: 1px solid rgba(14, 20, 40, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.language-aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--navy);
}
.language-aside-list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.language-aside-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 0.45rem;
    flex-shrink: 0;
}
.language-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.language-tabs {
    margin-bottom: 1.25rem;
}
.language-tab {
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 999px;
    padding: 0.35rem 0.95rem;
    background: rgba(255, 255, 255, 0.6);
    color: var(--navy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}
.language-tab .language-token {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(120deg, #ff8a00, #ff3c78);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.language-tab.is-active {
    background: #0f172c;
    color: #fff;
    box-shadow: 0 12px 30px rgba(10, 15, 40, 0.25);
    border-color: transparent;
}
.language-code-panel {
    background: #0f172c;
    color: #f8f8ff;
}
.language-code-panel .panel-heading .lede {
    color: rgba(248, 248, 255, 0.7);
}
.language-code-panel .language-tab {
    background: rgba(248, 248, 255, 0.08);
    color: #f8f8ff;
    border-color: rgba(248, 248, 255, 0.2);
}
.language-code-panel .language-tab .language-token {
    background: rgba(255, 255, 255, 0.1);
}
.language-code-panel .language-tab.is-active {
    background: rgba(255, 255, 255, 0.2);
    border-color: transparent;
}
.snippet-card,
.sample-card,
.code-card {
    position: relative;
    background: linear-gradient(120deg, #0e1428 0%, #111c3f 50%, #0e1428 100%);
    background-size: 220% 220%;
    animation: codeGlow 12s ease-in-out infinite;
    color: #f8f8ff;
    border-radius: 22px;
    padding: 1.25rem;
    font-size: 0.9rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 30px rgba(13, 18, 34, 0.35);
}
.snippet-card pre,
.sample-card pre,
.code-card pre {
    margin: 0;
    overflow: visible;
    white-space: pre-wrap;
    word-break: break-word;
}
.snippet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.snippet-card .label,
.code-card .label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(248, 248, 255, 0.65);
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}
.code-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 45px rgba(13, 18, 34, 0.45);
}
.sample-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.sample-card-header strong {
    display: block;
    font-size: 0.9rem;
}
.copy-trigger.dark {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.snippet-card code,
.sample-card code {
    display: block;
    animation: codePulse 6s ease-in-out infinite;
}
.language-card-stack {
    position: relative;
    min-height: 220px;
}
.language-code-panel .language-card {
    display: none;
}
.language-code-panel .language-card.is-active {
    display: flex;
}
@keyframes codeGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes codePulse {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
        opacity: 0.95;
    }
    50% {
        text-shadow: 0 0 28px rgba(255, 138, 0, 0.35);
        opacity: 1;
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
        opacity: 0.95;
    }
}
@keyframes loopPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 138, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 138, 0, 0);
    }
}
@keyframes loopWave {
    0% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
    100% {
        transform: scaleY(0.5);
    }
}
.integration-panel {
    background: #fff9f2;
    padding: 2rem 2.25rem;
}
.stacks-panel .stack-card {
    max-width: 520px;
}
.stacks-intro {
    max-width: 520px;
    margin-bottom: 1.25rem;
}
.stacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.stack-card h2 {
    margin-bottom: 0.25rem;
}
.integration-panel .stack-card {
    background: #f7f8fc;
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
}
.integration-panel .stack-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.integration-panel .stack-card li {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(14, 20, 40, 0.06);
    font-weight: 600;
    color: var(--navy);
    display: flex;
    gap: 0.5rem;
}
.integration-panel .stack-card li span {
    min-width: 120px;
    color: var(--text-muted);
    font-weight: 500;
}
.stacks-note {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 20px 45px rgba(13, 18, 34, 0.08);
}
.stacks-note .label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.stacks-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: var(--navy);
    font-size: 0.95rem;
}
.stacks-note li {
    position: relative;
    padding-left: 1.5rem;
}
.stacks-note li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}
.sample-panel {
    background: #fff5ec;
    position: relative;
    overflow: hidden;
    padding: 2rem 2.25rem 2.5rem;
}
.sample-panel::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.25), rgba(255, 138, 0, 0));
    border-radius: 50%;
    top: -120px;
    right: -80px;
    pointer-events: none;
}
.sample-panel > * {
    position: relative;
}
.sample-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.sample-copy {
    max-width: 560px;
}
.sample-note {
    flex: 1;
    min-width: 240px;
    color: rgba(15, 23, 42, 0.85);
    font-size: 0.95rem;
    background: #fff;
    padding: 1.1rem 1.4rem;
    border-radius: 18px;
    box-shadow: 0 30px 55px rgba(14, 20, 40, 0.15);
    border: 1px solid rgba(14, 20, 40, 0.05);
}
.sample-note p {
    margin: 0;
}
.sample-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    width: 100%;
    margin-top: 1rem;
}
.sample-card {
    position: relative;
    min-height: 280px;
    padding-top: 1.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.sample-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(12, 17, 35, 0.45);
}
.step-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
    font-weight: 700;
    color: rgba(248, 248, 255, 0.9);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}
.sample-card pre {
    padding-top: 0;
}
.partner-panel {
    background: linear-gradient(135deg, #f7f9ff, #fff);
    padding: 2.25rem;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.partner-grid article {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    background: #fff;
    box-shadow: 0 20px 45px rgba(14, 20, 40, 0.06);
}
.partner-name {
    font-weight: 700;
    margin: 0 0 0.4rem;
}
.partner-grid blockquote {
    margin: 0;
    color: var(--text-muted);
    font-style: italic;
}
.changelog-panel {
    background: linear-gradient(135deg, #fff, #fff8ef);
    padding: 2.5rem;
}
.changelog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.changelog-list::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 138, 0, 0.25);
}
.changelog-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 18px;
    background: #fff;
    position: relative;
    box-shadow: 0 18px 30px rgba(14, 20, 40, 0.04);
}
.changelog-list li::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.15);
}
.changelog-list span {
    font-weight: 600;
    color: var(--orange);
    min-width: 110px;
}
.token-panel .token-card {
    background: #0e1428;
    border-radius: 22px;
    padding: 1.5rem;
    color: #f8f8ff;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.token-card pre {
    margin: 0;
    font-size: 1.1rem;
}
.token-card .label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: rgba(248, 248, 255, 0.7);
    margin-bottom: 0.35rem;
    display: block;
}
.token-card code {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}
.token-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-top: 0.25rem;
}
.copy-trigger {
    background: rgba(255, 255, 255, 0.1);
}
.token-generate {
    background: #fff;
    color: var(--navy);
}
.nav-links a.is-active {
    color: var(--navy);
    font-weight: 700;
}

.blog-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.blog-shell.simple {
    gap: 1.5rem;
}
.blog-simple-hero {
    text-align: center;
}
.blog-simple-hero h1 {
    margin-bottom: 0.5rem;
}
.simple-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.simple-card {
    min-height: 280px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.simple-card.is-visible {
    transform: translateY(0);
    box-shadow: 0 25px 45px rgba(14, 20, 40, 0.1);
}
.simple-card:not(.is-visible) {
    transform: translateY(30px);
    opacity: 0;
}

.page-container.slim {
    max-width: 960px;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.hero-card.stacked {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.info-grid,
.pillar-grid,
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.info-card,
.value-card,
.pillar-card {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 24px;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 20px 45px rgba(13, 18, 34, 0.05);
}
.info-card .label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.info-card h3 {
    margin: 0.35rem 0;
}
.info-card .sla {
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}
.info-card ul,
.pillar-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.split-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    align-items: stretch;
}
.map-card {
    border: 1px dashed rgba(14, 20, 40, 0.2);
    border-radius: 24px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #f8f9ff;
}
.map-visual {
    height: 200px;
    border-radius: 18px;
    background: radial-gradient(circle at top, #ffdaaa, #ffd194, #ffe7c7);
}
.stacked-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.stacked-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(14, 20, 40, 0.08);
    padding-bottom: 0.5rem;
}
.stacked-list li:last-child {
    border-bottom: none;
}
.roles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.roles-list article {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 20px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: #fff;
}
.role-meta {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.hero-card {
    background: linear-gradient(120deg, #fff, #fff6ee);
    border-radius: 36px;
    border: 1px solid rgba(14, 20, 40, 0.05);
    box-shadow: 0 40px 70px rgba(12, 18, 40, 0.08);
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}
.blog-hero-card {
    gap: 2rem;
    align-items: stretch;
}
.hero-filters {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.filter-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.clear-filter {
    font-size: 0.85rem;
    color: var(--orange);
    text-decoration: underline;
}
.filter-chip-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.filter-chip {
    border: 1px solid rgba(14, 20, 40, 0.12);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.filter-chip small {
    background: rgba(14, 20, 40, 0.05);
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.filter-chip.is-active {
    background: linear-gradient(120deg, #101632, #1f2f5c);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(16, 22, 50, 0.35);
}
.hero-note-latest {
    gap: 0.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #fff, #fff6ef);
    border: 1px solid rgba(14, 20, 40, 0.05);
    box-shadow: 0 25px 55px rgba(14, 20, 40, 0.1);
}
.hero-note-latest .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--orange);
}
.hero-note-latest .btn {
    align-self: flex-start;
    margin-top: 0.75rem;
}
.latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.latest-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(14, 20, 40, 0.08);
}
.latest-list li:last-child {
    border-bottom: none;
}
.latest-title {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
}
.latest-title a {
    color: var(--navy);
    text-decoration: none;
}
.latest-title a:hover {
    text-decoration: underline;
}
.latest-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
}
.blog-filter-bar {
    position: sticky;
    top: 70px;
    z-index: 15;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 25px 55px rgba(14, 20, 40, 0.08);
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.blog-filter-bar .filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}
.search-field {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(14, 20, 40, 0.1);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    background: #fff;
}
.search-field .filter-icon {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1;
}
.search-field input {
    border: none;
    flex: 1;
    font-size: 1rem;
    padding: 0.35rem 0.1rem;
    outline: none;
}
.search-field input::placeholder {
    color: rgba(14, 20, 40, 0.4);
}
.clear-search {
    border: none;
    background: transparent;
    color: var(--orange);
    font-weight: 600;
    cursor: pointer;
}
.clear-search.is-hidden {
    display: none;
}
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.tag-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}
.tag-chip-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tag-chip {
    border-radius: 999px;
    border: 1px solid rgba(14, 20, 40, 0.1);
    padding: 0.4rem 0.9rem;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.tag-chip span {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(14, 20, 40, 0.05);
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
}
.tag-chip.is-active {
    background: linear-gradient(120deg, #ff8a00, #ff3c78);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 25px rgba(255, 100, 0, 0.35);
}
.tag-chip.is-active span {
    background: rgba(248, 248, 255, 0.25);
    color: #fff;
}
.hero-note {
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 40px rgba(13, 18, 34, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero-note .btn {
    align-self: flex-start;
    margin-top: 0.25rem;
}
.featured-slider-panel {
    background: #0f172c;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.25rem;
    color: #f8f8ff;
    box-shadow: 0 35px 65px rgba(9, 12, 25, 0.35);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.slider-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.slider-heading .eyebrow {
    color: rgba(248, 248, 255, 0.8);
}
.slider-heading h2 {
    margin: 0.25rem 0 0;
}
.slider-controls {
    display: flex;
    gap: 0.75rem;
}
.slider-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.slider-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}
.featured-slider {
    overflow: hidden;
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    padding: 0.5rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}
.featured-slide {
    min-width: 100%;
    padding: 1rem;
    position: relative;
    isolation: isolate;
}
.featured-slide::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 26px;
    background: var(--slide-image, linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)));
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: blur(2px);
}
.featured-slide::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 26px;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.25));
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 2;
    background: rgba(5, 8, 18, 0.55);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 25px 55px rgba(3, 5, 12, 0.45);
}
.slide-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(248, 248, 255, 0.7);
}
.slide-meta .pill {
    color: #fff;
}
.slide-content h3 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.slide-content h3 a {
    color: inherit;
    text-decoration: none;
}
.slide-content h3 a:hover {
    text-decoration: underline;
}
.slide-content p {
    color: rgba(248, 248, 255, 0.85);
}
.slide-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.slide-author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}
.slide-author span {
    display: block;
    color: rgba(248, 248, 255, 0.7);
    font-size: 0.9rem;
}
.slide-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.slider-indicators {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    margin-top: 1rem;
}
.slider-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.slider-indicators .indicator.is-active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}
.reading-list-panel {
    margin-top: 2.5rem;
}
.reading-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.reading-card {
    border-radius: 28px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 25px 45px rgba(13, 18, 34, 0.08);
}
.reading-card-header h3 {
    margin: 0 0 0.35rem;
}
.reading-card-header p {
    margin: 0;
    color: var(--text-muted);
}
.reading-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.reading-card-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(14, 20, 40, 0.08);
    padding-bottom: 0.6rem;
}
.reading-card-list li:last-child {
    border-bottom: none;
}
.reading-card-list a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}
.reading-card-list a:hover {
    text-decoration: underline;
}
.reading-card-list span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.reading-card-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.proof-panel {
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 1.75rem;
    border-radius: 36px;
    padding: 2rem;
    background: linear-gradient(120deg, #0f172c 0%, #192b4d 55%, #fff8ef 55%);
    box-shadow: 0 35px 60px rgba(12, 18, 32, 0.15);
}
.proof-card {
    border-radius: 28px;
    padding: 1.75rem;
    background: linear-gradient(135deg, #101632, #1c2c58);
    color: #f7f9ff;
    box-shadow: 0 25px 65px rgba(9, 12, 25, 0.4);
}
.top-reads {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.top-reads li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(248, 248, 255, 0.08);
}
.top-reads .rank {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(248, 248, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(248, 248, 255, 0.85);
}
.top-read-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.top-read-content a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.top-read-content a:hover {
    text-decoration: underline;
}
.top-read-content span {
    font-size: 0.85rem;
    color: rgba(248, 248, 255, 0.7);
}
.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.testimonial-stack .subscribe-card {
    background: linear-gradient(135deg, #fff6e9, #fff);
    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(255, 138, 0, 0.15);
}
.testimonial-stack .subscribe-card h3 {
    margin: 0.25rem 0 0.5rem;
}
.testimonial-stack .subscribe-card p {
    color: var(--navy);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.testimonial-card {
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: #fff;
    box-shadow: 0 20px 45px rgba(13, 18, 34, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.testimonial-card .quote {
    margin: 0;
    font-style: italic;
    color: var(--navy);
}
.testimonial-card .person {
    margin: 0;
    font-weight: 600;
}
.testimonial-card .company {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.newsletter-panel {
    margin: 3rem 0 2rem;
    border-radius: 32px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    padding: 2rem;
    background: linear-gradient(135deg, #f8faff, #fff);
    box-shadow: 0 30px 55px rgba(14, 20, 40, 0.08);
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.newsletter-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.newsletter-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--navy);
}
.newsletter-form input {
    border: 1px solid rgba(14, 20, 40, 0.12);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-size: 1rem;
}
.newsletter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.newsletter-actions p {
    margin: 0;
    color: var(--text-muted);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.blog-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 25px 35px rgba(14, 20, 40, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 45px rgba(14, 20, 40, 0.08);
}
.blog-card header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.blog-card header .read-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.blog-card header .read-time::before {
    content: "•";
}
.blog-card h3 {
    margin: 0;
    font-size: 1.2rem;
}
.blog-card h3 a {
    color: var(--navy);
    text-decoration: none;
}
.blog-card h3 a:hover {
    text-decoration: underline;
}
.blog-card .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.blog-card .author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(14, 20, 40, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy);
}
.blog-card .author span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.blog-card.compact {
    border-radius: 26px;
    background: linear-gradient(180deg, #fff, #f8f9ff);
    border-color: rgba(14, 20, 40, 0.04);
    box-shadow: 0 25px 40px rgba(14, 20, 40, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.compact-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.compact-grid .meta-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.blog-load-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.blog-card .outline-link {
    align-self: flex-start;
}
.blog-article h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}
.blog-shell-detail .hero-card {
    padding: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.blog-article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    gap: 2rem;
}
.reading-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.7);
}
.preview-banner {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 138, 0, 0.1);
    color: #a35200;
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9rem;
}
.detail-hero .article-hero {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(11, 16, 30, 0.15);
}
.detail-hero [data-reading-progress] {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 1rem;
    overflow: hidden;
}
.detail-hero [data-reading-progress] span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(120deg, #ff8a00, #ff3c78);
}
.article-toc {
    position: sticky;
    top: 90px;
    align-self: flex-start;
    border-radius: 24px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    padding: 1.25rem;
    background: #fff;
    box-shadow: 0 20px 40px rgba(13, 18, 34, 0.05);
}
.article-toc p {
    margin: 0 0 0.85rem;
    font-weight: 600;
    color: var(--navy);
}
.article-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.article-toc a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
}
.article-toc a.is-active {
    color: var(--navy);
    font-weight: 600;
}
.blog-article .article-body {
    margin-top: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}
.blog-related {
    margin-top: 3rem;
}
.reading-carousel {
    overflow: hidden;
    position: relative;
}
.reading-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease;
}
.reading-track .blog-card {
    min-width: clamp(260px, 45vw, 360px);
}
.reading-carousel-controls {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}
.related-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.related-tags a {
    text-decoration: none;
    color: var(--navy);
}
.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.question-card {
    background: #f5f6fc;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.question-card h2 {
    margin-top: 0.5rem;
}
.question-input textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(14, 20, 40, 0.1);
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit;
}
.option-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}
.option-item {
    background: #fff;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}
.option-item input[type="radio"],
.option-item input[type="checkbox"] {
    transform: scale(1.1);
}
.option-list.checkbox .option-item {
    align-items: flex-start;
}
.behavioral-set-card {
    background: #f5f6fc;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.behavioral-set-card .statement-list.large {
    margin: 1rem 0;
    list-style: none;
    padding: 0;
}
.behavioral-set-card .statement-list.large li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(14, 20, 40, 0.08);
    display: flex;
    gap: 0.75rem;
}
.behavioral-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.behavioral-inputs label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
    display: inline-block;
}
.behavioral-select {
    width: 100%;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    box-shadow: 0 10px 30px rgba(14, 20, 40, 0.05);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5 7l5 6 5-6' stroke='%230e1428' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 2.5rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}
.behavioral-select:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.25);
}
.behavioral-select::-ms-expand {
    display: none;
}

.behavioral-response-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}
.behavioral-response-table th,
.behavioral-response-table td {
    text-align: left;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(14, 20, 40, 0.08);
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .feature-panel,
    .feature-accordion {
        border-radius: 16px;
    }
    .console-shell {
        flex-direction: column;
    }
    .console-sidebar {
        width: 100%;
        flex-direction: row;
        align-items: center;
    }
    .console-sidebar nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .console-main {
        padding: 1.5rem;
    }
    .console-page-header {
        flex-direction: column;
    }
    .candidate-shell {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    .session-utility-bar,
    .device-support {
        flex-direction: column;
        align-items: flex-start;
    }
    .device-support form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .device-support input,
    .device-support button {
        width: 100%;
    }
}
.request-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.request-copy {
    max-width: 520px;
}
.request-note {
    flex: 1;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 20px 35px rgba(14, 20, 40, 0.08);
}
.request-note .label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.request-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--navy);
}
.request-note li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.95rem;
}
.request-note li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}
.request-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.request-form .form-row.single {
    grid-template-columns: 1fr;
}
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.7rem 1rem;
    margin: 0.5rem 0 0.35rem;
}
.checkbox-pill {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(14, 20, 40, 0.12);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.checkbox-pill input[type="checkbox"] {
    accent-color: var(--orange);
    width: 18px;
    height: 18px;
}
.checkbox-pill:hover {
    border-color: rgba(83, 55, 239, 0.4);
    box-shadow: 0 8px 20px rgba(14, 20, 40, 0.08);
    transform: translateY(-1px);
}
.checkbox-pill span:last-child {
    flex: 1;
}
.apply-page {
    background: linear-gradient(180deg, #f4f6ff 0%, #fef7f1 100%);
}
.apply-main {
    flex: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}
.auth-main {
    max-width: 560px;
}
.portal-shell {
    min-height: 100vh;
    background: linear-gradient(180deg, #f5f6ff 0%, #fff9f2 100%);
    padding: 3rem 1.5rem 4rem;
}
.portal-hero {
    background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.95), rgba(247, 241, 233, 0.6));
    border-radius: 32px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 25px 40px rgba(14, 20, 40, 0.08);
}
.portal-hero.expanded {
    flex-wrap: wrap;
}
.portal-hero-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1 1 40%;
}
.portal-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    flex: 1 1 40%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 1rem 1.25rem;
}
.portal-hero.compact {
    padding: 1.5rem 2rem;
}
.portal-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 138, 0, 0.15);
    display: grid;
    place-items: center;
    font-size: 2rem;
    position: relative;
}
.portal-hero-icon.logo {
    background: #fff;
    padding: 8px;
}
.portal-hero-icon.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.portal-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}
.portal-steps article {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.25rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 15px 35px rgba(14, 20, 40, 0.06);
}
.portal-steps h3 {
    margin: 0.4rem 0;
}
.step-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    background: rgba(255, 138, 0, 0.15);
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.step-tag.subtle {
    background: rgba(14, 20, 40, 0.05);
    color: var(--navy);
}
.logo-edit-trigger {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(14, 20, 40, 0.25);
}
.logo-edit-modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 11, 25, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}
.logo-edit-modal.is-visible {
    display: flex;
}
.logo-edit-card {
    background: #fff;
    border-radius: 28px;
    padding: 2rem;
    width: min(520px, 100%);
    position: relative;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}
.logo-edit-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}
.portal-actions {
    justify-self: end;
}
.portal-actions.stacked {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}
.summary-toggle {
    margin: 0;
}
.toggle-control {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
}
.toggle-control input {
    width: 40px;
    height: 20px;
}
.quick-action-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.quick-action-card {
    border-radius: 20px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 20, 40, 0.08);
    box-shadow: 0 15px 30px rgba(14, 20, 40, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quick-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(14, 20, 40, 0.08);
}
.portal-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.portal-card-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.portal-card-grid.two-up {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.portal-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(14, 20, 40, 0.06);
    box-shadow: 0 12px 35px rgba(14, 20, 40, 0.08);
    min-height: 170px;
}
.project-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.project-card-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}
.project-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-end;
}
.project-kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
}
.project-kpi-row div {
    background: rgba(14, 20, 40, 0.03);
    border-radius: 18px;
    padding: 0.85rem 1rem;
}
.micro-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(14, 20, 40, 0.6);
    margin-bottom: 0.15rem;
}
.project-spotlight-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: linear-gradient(135deg, rgba(243, 247, 255, 0.9), rgba(255, 255, 255, 0.9));
}
.project-spotlight-card .spotlight-name {
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.spotlight-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    text-align: right;
}
.spotlight-score strong {
    font-size: 1.6rem;
    font-weight: 700;
}
.project-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}
.project-card-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.project-health-grid .portal-card {
    min-height: auto;
}
.top-candidate-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.top-candidate-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 20px rgba(14, 20, 40, 0.05);
}
.top-candidate-card .label {
    margin-bottom: 0.2rem;
}
.pipeline-board {
    margin-bottom: 2rem;
}
.pipeline-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
    gap: 1rem;
}
.pipeline-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.pipeline-column {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    border: 1px solid rgba(14, 20, 40, 0.06);
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 260px;
}
.pipeline-column-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pipeline-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.pipeline-card {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: rgba(248, 250, 255, 0.9);
    box-shadow: 0 10px 25px rgba(14, 20, 40, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.pipeline-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.score-pill {
    padding: 0.1rem 0.55rem;
    border-radius: 12px;
    background: rgba(14, 20, 40, 0.08);
    font-size: 0.8rem;
    font-weight: 600;
}
.pipeline-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pipeline-stage-form {
    margin: 0;
}
.pipeline-stage-select {
    border-radius: 16px;
    border: 1px solid rgba(14, 20, 40, 0.15);
    padding: 0.3rem 0.75rem;
    font-size: 0.85rem;
    background: #fff;
}
.muted.tiny {
    font-size: 0.75rem;
}
.metric-snapshot .portal-card {
    min-height: auto;
}
.portal-card-grid > *:nth-child(3n + 1) {
    grid-column: span 1;
}
.portal-card-grid > *:nth-child(3n + 2) {
    grid-column: span 1;
}
.portal-card-grid > *:nth-child(3n + 3) {
    grid-column: span 1;
}
.plan-overview-panel {
    margin-bottom: 2rem;
}
.plan-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.plan-card-head h2 {
    margin: 0.2rem 0 0;
}
.plan-usage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.usage-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.usage-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.08);
    overflow: hidden;
}
.usage-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(120deg, #5337ef, #7c3aed);
    border-radius: 999px;
}
.plan-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.plan-actions .tiny {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.portal-card.card-muted {
    background: rgba(255, 255, 255, 0.6);
}
.benchmark-card {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(236, 243, 255, 0.95));
    min-height: auto;
}
.info-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(14, 20, 40, 0.08);
    font-size: 0.7rem;
    margin-left: 0.25rem;
    cursor: help;
}
.notification-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.notification-card {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    background: #fff;
    box-shadow: 0 12px 25px rgba(14, 20, 40, 0.05);
}
.notification-card.notification-warning {
    border-color: rgba(255, 138, 0, 0.4);
    background: rgba(255, 138, 0, 0.08);
}
.notification-card.notification-success {
    border-color: rgba(15, 170, 124, 0.3);
    background: rgba(15, 170, 124, 0.08);
}
.notification-card form {
    margin: 0;
}
.branding-section {
    margin-bottom: 2rem;
}
.branding-card .form-field {
    margin-bottom: 0.75rem;
}
.branding-card .logo-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.branding-card input[type="file"] {
    border: 1px dashed rgba(14, 20, 40, 0.2);
    padding: 0.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
}
.remove-logo-form {
    margin: 0;
}
.activity-filter-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 245, 255, 0.9));
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 24px;
    padding: 1.5rem;
}
.activity-filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
    flex: 1;
}
.activity-filter-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: var(--text-muted);
    gap: 0.3rem;
    flex: 1 1 160px;
}
.activity-filter-form select {
    border-radius: 12px;
    border: 1px solid rgba(14, 20, 40, 0.15);
    padding: 0.6rem 0.8rem;
    min-width: 140px;
    background: #fff;
    font-weight: 600;
}
.activity-filter-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chart-card canvas {
    width: 100% !important;
    height: 260px !important;
    margin-top: 1rem;
}
.portal-card .label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.portal-card h2 {
    margin: 0;
    font-size: 2rem;
}
.portal-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    border: 1px solid rgba(14, 20, 40, 0.06);
    box-shadow: 0 25px 50px rgba(14, 20, 40, 0.08);
}
.assignment-highlight {
    border: 2px solid rgba(255, 138, 0, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 239, 217, 0.9));
    margin-top: 1.75rem;
}
.assignment-highlight header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}
.assignment-highlight .muted {
    max-width: 540px;
}
.assignment-highlight .btn {
    box-shadow: 0 18px 40px rgba(255, 138, 0, 0.3);
}
.quick-action-head {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.quick-action-head h2 {
    margin: 0;
}
.portal-assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.portal-assessment-card {
    border-radius: 18px;
    padding: 1.25rem;
    background: #f7f8ff;
}
.portal-assessment-card.enhanced {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(237, 240, 255, 0.95));
    border: 1px solid rgba(14, 20, 40, 0.05);
    box-shadow: 0 12px 30px rgba(14, 20, 40, 0.06);
}
.assessment-metrics {
    display: flex;
    gap: 1.25rem;
    margin: 1rem 0;
}
.assessment-metrics dt {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.assessment-metrics dd {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}
.assessment-metrics div {
    flex: 1;
}
.attention-card ul,
.activity-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.attention-card li strong {
    display: block;
    margin-bottom: 0.35rem;
}
.activity-card li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(14, 20, 40, 0.06);
    padding-bottom: 0.75rem;
}
.activity-card li:last-child {
    border-bottom: none;
}
.activity-name {
    font-weight: 600;
    margin: 0;
}
.activity-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}
.mini-funnel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(14, 20, 40, 0.08);
}
.mini-funnel span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    color: var(--text-muted);
}
.mini-funnel strong {
    font-size: 1.3rem;
}
.quick-action-card .label {
    margin-bottom: 0.25rem;
    color: var(--navy);
}
.activity-card .pill {
    padding: 0.35rem 0.9rem;
}
.portal-hero-stats .hero-stat-value {
    font-size: 2.4rem;
}
.portal-hero-stats .hero-stat-helper {
    font-size: 0.85rem;
}
.activity-row .portal-card {
    min-height: 280px;
}
.quick-action-card span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}
.project-preview {
    margin-top: 1.5rem;
}
.project-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.project-preview-grid article {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    background: #fff;
    box-shadow: 0 20px 35px rgba(14, 20, 40, 0.05);
}
.project-preview-grid h3 {
    margin: 0.25rem 0 0.4rem;
}
.project-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.charts-row .portal-card {
    min-height: 360px;
}
.portal-assessment-actions {
    margin-top: 1rem;
}
.invite-panel form .btn {
    width: 100%;
}
.portal-panel .table {
    border-radius: 18px;
    overflow: hidden;
}
.portal-panel .table-row {
    align-items: center;
}
.bulk-upload {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(14, 20, 40, 0.08);
}
.alert-card {
    border: 1px solid rgba(255, 138, 0, 0.3);
    background: rgba(255, 214, 170, 0.2);
    padding: 0.9rem 1rem;
    border-radius: 16px;
    margin-bottom: 1rem;
}
.project-filter {
    margin-bottom: 1rem;
}
.project-filter select {
    min-width: 220px;
}
.decision-pill {
    margin-left: 0.5rem;
    font-size: 0.75rem;
}
.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}
.table-actions form {
    margin: 0;
}
.report-hero {
    background: linear-gradient(120deg, #eef1ff 0%, #fff9f2 100%);
    padding: 2rem;
    border-radius: 32px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 45px rgba(14, 20, 40, 0.08);
}
.report-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.report-card-grid.two-up {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
.report-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 35px rgba(14, 20, 40, 0.05);
    border: 1px solid rgba(14, 20, 40, 0.05);
}
.report-card .label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
}
.report-card h2 {
    margin: 0;
    font-size: 2.25rem;
}
.report-card.chart-card canvas {
    width: 100% !important;
    height: 260px !important;
    margin-top: 1rem;
}
.auth-panel {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 255, 0.95));
}
.auth-panel .lede {
    color: var(--text-muted);
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}
.confirmation-panel {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.95));
    position: relative;
    overflow: hidden;
}
.confirmation-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(28, 207, 154, 0.15);
    color: #0faa7c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.request-panel {
    background: #f5f7ff;
    padding: 2rem 2.25rem;
}
.request-panel--glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 255, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 50px rgba(14, 20, 40, 0.08);
}
.request-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.request-panel .form-field label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: inline-block;
}
.request-panel .form-field input,
.request-panel .form-field textarea {
    border: 1px solid rgba(14, 20, 40, 0.15);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    font-size: 1rem;
    width: 100%;
    background: #fff;
    transition: border 0.15s ease, box-shadow 0.15s ease;
}
.request-panel .form-field textarea {
    min-height: 160px;
    resize: vertical;
}
.request-panel .form-field input:focus,
.request-panel .form-field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.15);
    outline: none;
}
.request-panel button {
    width: auto;
    align-self: flex-start;
    padding: 0.9rem 2.5rem;
    margin-top: 0.5rem;
}
.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 0.75rem;
}
.assessment-card {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border-radius: 18px;
    border: 1px solid rgba(14, 20, 40, 0.08);
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    min-height: 150px;
}
.assessment-card:hover {
    border-color: rgba(255, 138, 0, 0.6);
    box-shadow: 0 18px 30px rgba(14, 20, 40, 0.12);
    transform: translateY(-2px);
}
.assessment-card input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
}
.assessment-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.assessment-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.assessment-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.assessment-section__header {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.assessment-section__header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.activity-card ul .muted {
    font-size: 0.85rem;
}
.notes-panel .note-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.note-flag {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.note-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 0.25rem;
}
.notes-list .pill {
    align-self: flex-start;
}
.feedback-panel {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.feedback-scale ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    gap: 1rem;
}
.feedback-scale li label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.feedback-panel textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.6rem 0.8rem;
    font-family: inherit;
}
.feedback-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}
.feedback-form input[type="email"],
.feedback-form input[type="text"] {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.6rem 0.8rem;
    font-family: inherit;
}
.inline-checkbox {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.feedback-contact {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.feedback-contact p {
    margin: 0.35rem 0;
}
.integrity-panel .integrity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.integrity-panel article {
    border: 1px solid rgba(14, 20, 40, 0.08);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.8);
}
.integrity-panel .label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0 0 0.35rem;
}
.integrity-panel .muted.small {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .portal-hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .activity-card li {
        flex-direction: column;
        align-items: flex-start;
    }
    .activity-meta {
        align-items: flex-start;
    }
}
.divider {
    width: 100%;
    height: 1px;
    background: rgba(14, 20, 40, 0.08);
    margin: 1.5rem 0;
}
.section-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.slide-meta .pill {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}
.slide-meta span:not(:first-child)::before {
    content: "•";
    opacity: 0.6;
    margin-right: 0.35rem;
}
.pricing-card.theme-starter {
    border-color: rgba(15, 183, 122, 0.2);
    background: linear-gradient(180deg, rgba(15, 183, 122, 0.08), rgba(255, 255, 255, 0.98));
}
.pricing-card.theme-pro {
    border-color: rgba(83, 55, 239, 0.3);
    background: linear-gradient(180deg, rgba(83, 55, 239, 0.08), rgba(255, 255, 255, 0.98));
}
.pricing-card.theme-enterprise {
    border-color: rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, rgba(14, 20, 40, 0.05), rgba(255, 255, 255, 0.98));
}
