/* ==============================================
   EMPLOYIA — Design System v2
   Premium Dark Mode for AI & Deep Tech
   ============================================== */

:root {
    --bg-base: #050508;
    --bg-surface: #0D0D14;
    --bg-elevated: #13131E;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    --text-1: #FFFFFF;
    --text-2: #9D9EB8;
    --text-3: #55566A;

    --brand-blue: #60A5FA;
    --brand-purple: #A78BFA;
    --brand-cyan: #34D3F7;
    --brand-green: #4ADE80;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.09);

    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --max-w: 1160px;
    --nav-h: 76px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;
}

/* -------------------- Reset -------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-base);
    color: var(--text-1);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
svg {
    display: block;
}

/* -------------------- Canvas -------------------- */
#hero-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

/* -------------------- Navigation -------------------- */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    z-index: 999;
    transition: background 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}

.nav-header.scrolled {
    background: rgba(5, 5, 8, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: var(--border-subtle);
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-wordmark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1.75rem;
    letter-spacing: 0.18em;
    color: #ffffff;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.logo-wrap:hover .logo-wordmark {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-1);
}

.nav-cta {
    margin-left: 1.5rem;
}

/* Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-drawer {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 2rem;
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 998;
}

.mobile-drawer.open {
    display: flex;
}

/* -------------------- Buttons -------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: all 0.22s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-arrow {
    transition: transform 0.2s;
    display: inline-block;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    color: #fff;
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 24px 4px rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-1);
    border: 1px solid var(--border-card);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

/* -------------------- Gradient Text -------------------- */
.gradient-text {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-purple) 50%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -------------------- Section Shared -------------------- */
section {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-sub {
    margin: 0 auto;
}

/* -------------------- Hero -------------------- */
.hero-section {
    min-height: calc(100svh - var(--nav-h));
    display: flex;
    align-items: center;
    padding-top: 0;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 9rem 0 5rem 0;
    /* Padding top to give logo breathing room */
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: var(--brand-blue);
    font-size: 0.825rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--brand-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

#typewriter-target {
    display: inline-block;
    text-align: left;
}

.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--text-2);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-markets {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-3);
}

.hero-markets .divider {
    color: var(--text-3);
}

/* -------------------- Floating Code Card -------------------- */
.code-card-wrap {
    perspective: 1000px;
}

.code-card {
    width: 100%;
    background: rgba(13, 13, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    animation: float-card 6s ease-in-out infinite;
    z-index: 5;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0px) rotateY(-5deg) rotateX(2deg);
    }

    50% {
        transform: translateY(-14px) rotateY(-5deg) rotateX(2deg);
    }
}

.code-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot.red {
    background: #FF5F57;
}

.dot.yellow {
    background: #FEBC2E;
}

.dot.green {
    background: #28C840;
}

.code-card-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-3);
    margin-left: 0.4rem;
}

.code-card-body {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.8;
    padding: 1.25rem;
    white-space: pre;
    overflow: hidden;
    min-height: 260px;
    color: #c4c4e0;
}

.code-k {
    color: #C084FC;
}

/* keyword */
.code-f {
    color: #60A5FA;
}

/* function */
.code-s {
    color: #86EFAC;
}

/* string */
.code-c {
    color: #55566A;
}

/* comment */
.code-n {
    color: #F8FAFC;
}

/* name */
.code-t {
    color: #34D399;
}

/* type */
.code-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--brand-blue);
    vertical-align: text-bottom;
    margin-left: 1px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* -------------------- Quote Block -------------------- */
.quote-block {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 2rem 4rem;
    position: relative;
}

.quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 8rem;
    line-height: 0.5;
    color: var(--brand-blue);
    opacity: 0.25;
    margin-bottom: 1rem;
    display: block;
    user-select: none;
}

.quote-block blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.55;
    color: var(--text-1);
    margin: 0 0 1.5rem;
    letter-spacing: 0.01em;
}

.quote-block cite {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
    font-style: normal;
}

.quote-response {
    margin-top: 2rem;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -------------------- Roles -------------------- */
.roles-section {
    padding: 7rem 0;
    border-top: 1px solid var(--border-subtle);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.role-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease,
        box-shadow 0.3s ease;
    cursor: default;
}

.role-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(96, 165, 250, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(96, 165, 250, 0.05);
}

.role-icon {
    width: 44px;
    height: 44px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.role-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-purple);
}

.role-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.role-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
    flex: 1;
}

.role-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.role-footer span {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--text-3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
}

/* -------------------- Dual Section -------------------- */
.dual-section {
    padding: 7rem 0;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dual-card {
    padding: 3rem;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.founders-card {
    background: linear-gradient(145deg, rgba(96, 165, 250, 0.08) 0%, rgba(167, 139, 250, 0.04) 100%);
    border: 1px solid rgba(96, 165, 250, 0.18);
}

.talent-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
}

.dual-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-blue);
}

.dual-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.dual-card>p {
    color: var(--text-2);
    line-height: 1.7;
    font-size: 0.975rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--text-2);
}

.check {
    color: var(--brand-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.arrow-item {
    color: var(--text-3);
    flex-shrink: 0;
}

/* -------------------- Metrics -------------------- */
.metrics-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.metric {
    background: var(--bg-base);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-unit {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-3);
    margin-top: 0.25rem;
}

/* -------------------- CTA Section -------------------- */
.cta-section {
    padding: 8rem 0;
}

.cta-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* -------------------- Footer -------------------- */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 4rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-3);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    color: var(--text-3);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-link:hover {
    color: var(--text-1);
    border-color: var(--text-3);
    background: rgba(255, 255, 255, 0.05);
}

.footer-badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.footer-badge-link {
    display: inline-flex;
    opacity: 0.65;
    transition: opacity 0.2s;
}

.footer-badge-link:hover {
    opacity: 1;
}

.footer-badge {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.footer-badge--gdpr {
    filter: grayscale(0.4);
}

.footer-badge--bitmi {
    mix-blend-mode: screen;
    filter: grayscale(0.2) brightness(1.1);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.link-col {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.link-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-1);
    margin-bottom: 0.25rem;
}

.link-col a {
    font-size: 0.875rem;
    color: var(--text-3);
    transition: color 0.2s;
}

.link-col a:hover {
    color: var(--text-1);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    color: var(--text-3);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.82rem;
    color: var(--text-3);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text-1);
}

/* -------------------- Scroll Reveal -------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 900px) {
    .code-card {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .dual-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* -------------------- Cookie Banner -------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-card);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: none;
}

.cookie-banner--visible {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: var(--brand-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-link:hover {
    color: var(--text-1);
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
}

/* ==============================================
   RESPONSIVE — Mobile First
   All desktop CSS is untouched.
   These rules only fire at ≤ 768px.
   ============================================== */

/* ---- Tablet: collapse hero code card at 1024px ---- */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .code-card-wrap {
        display: none;
    }

    .hero-content {
        padding: 8rem 0 4rem;
        align-items: center;
        text-align: center;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* ---- Mobile: 768px and below ---- */
@media (max-width: 768px) {

    /* Container padding */
    .container {
        padding: 0 1.25rem;
    }

    /* ---- Navigation ---- */
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* ---- Hero ---- */
    .hero-content {
        padding: 7rem 0 3rem;
        align-items: flex-start;
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* ---- Sections: reduce vertical padding ---- */
    .roles-section,
    .dual-section {
        padding: 4rem 0;
    }

    .metrics-section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 4rem 0;
    }

    /* ---- Roles Grid: single column ---- */
    .roles-grid {
        grid-template-columns: 1fr;
    }

    /* ---- Dual Path: stack vertically ---- */
    .dual-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dual-card {
        padding: 2rem 1.5rem;
    }

    /* ---- Quote block ---- */
    .quote-block {
        padding: 1rem 0 3rem;
    }

    .quote-mark {
        font-size: 5rem;
    }

    /* ---- CTA Section ---- */
    .cta-inner {
        padding: 3rem 1.25rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* ---- Footer ---- */
    .footer-inner {
        flex-direction: column;
        gap: 2.5rem;
        padding: 3rem 0 1.5rem;
    }

    .footer-right {
        width: 100%;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-badges {
        margin-top: 1.5rem;
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    /* ---- Cookie Banner ---- */
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

    /* ---- Section text ---- */
    .section-sub {
        font-size: 0.95rem;
    }
}