@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Space+Grotesk:wght@300;400;500;700&family=VT323&display=swap');

:root {
    --background: #050013;
    --background-alt: #12022c;
    --background-card: rgba(12, 0, 40, 0.9);
    --gradient-hero:
        radial-gradient(circle at 15% 20%, rgba(70, 175, 255, 0.35), transparent 60%),
        radial-gradient(circle at 85% 15%, rgba(120, 255, 248, 0.28), transparent 58%),
        linear-gradient(180deg, #050013 0%, #071331 45%, #01040d 100%);
    --gradient-accent: linear-gradient(130deg, #5fd3ff 0%, #7cffe8 50%, #c4f1ff 100%);
    --text-primary: #fef8ff;
    --text-muted: #a9d7ff;
    --border-color: rgba(255, 255, 255, 0.14);
    --shadow-soft: 0 24px 64px rgba(90, 200, 255, 0.18);
    --radius-lg: 26px;
    --radius-md: 18px;
    --transition: all 0.3s ease;
    --container-width: min(1180px, 92vw);
    --section-spacing: 120px;
    --font-heading: 'Bungee', 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Space Grotesk', 'Inter', 'Segoe UI', sans-serif;
    --font-mono: 'VT323', 'Fira Mono', monospace;
}

@keyframes neonPulse {
    0% { box-shadow: 0 0 8px rgba(120, 250, 255, 0.4), 0 0 24px rgba(102, 200, 255, 0.2); }
    50% { box-shadow: 0 0 12px rgba(102, 200, 255, 0.5), 0 0 32px rgba(120, 250, 255, 0.35); }
    100% { box-shadow: 0 0 18px rgba(102, 200, 255, 0.6), 0 0 40px rgba(120, 250, 255, 0.45); }
}

@keyframes scanline {
    0% { opacity: 0.05; transform: translateY(-10%); }
    50% { opacity: 0.18; transform: translateY(10%); }
    100% { opacity: 0.05; transform: translateY(-10%); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--gradient-hero);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: -20vmax;
    z-index: -2;
    pointer-events: none;
}

body::before {
    background:
        radial-gradient(circle at 20% 20%, rgba(90, 200, 255, 0.18), transparent 52%),
        radial-gradient(circle at 80% 10%, rgba(0, 255, 234, 0.22), transparent 60%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 8px);
    mix-blend-mode: screen;
    opacity: 0.8;
    animation: scanline 16s linear infinite;
}

body::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05'%3E%3Cpath d='M0 80h160M80 0v160'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -3;
}

body.nav-menu-open {
    overflow: hidden;
}

a {
    color: #78faff;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

a:hover {
    color: #67dbff;
    text-shadow: 0 0 14px rgba(140, 220, 255, 0.6);
}

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

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

/* Header / Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(5, 0, 25, 0.72);
    border-bottom: 1px solid rgba(140, 220, 255, 0.18);
    box-shadow: 0 10px 30px rgba(5, 0, 40, 0.45);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    position: relative;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 14px rgba(120, 250, 255, 0.6);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a[href*="shop"],
.nav-links a[href*="shop"].nav-btn {
    display: none !important;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(120, 250, 255, 0.15);
    background: rgba(12, 0, 40, 0.45);
    box-shadow: 0 6px 18px rgba(80, 248, 255, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: #fff6ff;
    border-color: rgba(140, 220, 255, 0.55);
    box-shadow: 0 0 24px rgba(140, 220, 255, 0.45);
    transform: translateY(-2px);
    background: rgba(140, 220, 255, 0.12);
}

.nav-mega {
    position: relative;
    list-style: none;
}

.nav-mega__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.nav-mega__toggle::after {
    content: '▾';
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-mega.is-open > .nav-mega__toggle,
.nav-mega__toggle:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.14);
}

.nav-mega.is-open > .nav-mega__toggle::after {
    transform: rotate(180deg);
}

.nav-mega__panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    padding: 28px;
    border-radius: 20px;
    background: rgba(5, 7, 15, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 32px 60px rgba(5, 7, 15, 0.45);
    min-width: min(720px, 92vw);
    z-index: 1200;
}

.nav-mega.is-open > .nav-mega__panel {
    display: grid;
}

.nav-mega__item {
    display: grid;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(226, 232, 240, 0.92);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-mega__item:hover {
    background: rgba(99, 102, 241, 0.16);
    color: #f8fafc;
}

.nav-mega__title {
    font-family: var(--font-heading);
    font-size: 1rem;
}

.nav-mega__desc {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.85);
}

.nav-links .lang-switch {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links .nav-cta {
    margin-left: 12px;
}

.nav-links .nav-btn {
    padding: 12px 22px;
    font-size: 0.95rem;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.32);
}

.nav-links .nav-btn:hover {
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.42);
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:focus-visible {
    outline: 2px solid rgba(147, 197, 253, 0.8);
    outline-offset: 2px;
}

.nav-toggle:hover {
    background: rgba(99, 102, 241, 0.22);
    border-color: rgba(147, 197, 253, 0.35);
}

.nav-toggle__box {
    position: relative;
    width: 20px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle__bar {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle__label {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(120, 250, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    color: #0b041c;
    background: rgba(120, 250, 255, 0.85);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(80, 248, 255, 0.22);
}

.btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 36px rgba(140, 220, 255, 0.4);
    border-color: rgba(140, 220, 255, 0.7);
}

.btn-primary {
    background: var(--gradient-accent);
    color: #0b041c;
    box-shadow: 0 16px 40px rgba(102, 200, 255, 0.35);
    border-color: transparent;
}

.btn-primary:hover {
    box-shadow: 0 24px 50px rgba(102, 200, 255, 0.5);
}

.btn-secondary {
    background: rgba(8, 0, 32, 0.8);
    color: #78faff;
    border-color: rgba(140, 220, 255, 0.35);
    box-shadow: 0 12px 28px rgba(12, 0, 40, 0.6);
}

.btn-secondary:hover {
    background: rgba(140, 220, 255, 0.18);
    color: #fff6ff;
}

/* Hero */
.hero {
    padding: 140px 0 110px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(102, 200, 255, 0.18), transparent 60%),
        linear-gradient(300deg, rgba(80, 248, 255, 0.16), transparent 58%);
    mix-blend-mode: screen;
    pointer-events: none;
    filter: blur(0.5px);
}

.hero .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 14px;
    background: rgba(12, 0, 40, 0.8);
    color: #78faff;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    width: fit-content;
    border: 1px solid rgba(120, 250, 255, 0.45);
    box-shadow: 0 0 18px rgba(120, 250, 255, 0.45);
    animation: neonPulse 3.6s ease-in-out infinite alternate;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow:
        0 0 18px rgba(102, 200, 255, 0.5),
        0 0 34px rgba(80, 248, 255, 0.35);
    position: relative;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(206, 186, 255, 0.85);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.announcement-banner {
    margin-top: 10px;
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(12, 0, 40, 0.92), rgba(140, 220, 255, 0.18));
    border: 1px solid rgba(140, 220, 255, 0.4);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 620px;
    box-shadow: 0 20px 40px rgba(8, 0, 32, 0.6);
}

.announcement-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(102, 200, 255, 0.28);
    color: #def3ff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(140, 220, 255, 0.5);
}

.announcement-text {
    flex: 1 1 260px;
    display: grid;
    gap: 6px;
}

.announcement-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-shadow: 0 0 14px rgba(102, 200, 255, 0.35);
}

.announcement-text p {
    color: rgba(206, 186, 255, 0.75);
    font-size: 0.95rem;
    margin: 0;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(102, 200, 255, 0.28);
    color: #e4f6ff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    border: 1px solid rgba(140, 220, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.announcement-link:hover {
    background: rgba(120, 250, 255, 0.3);
    color: #0b041c;
    box-shadow: 0 0 18px rgba(120, 250, 255, 0.4);
}

.credly-section {
    background: linear-gradient(145deg, rgba(23, 30, 56, 0.7), rgba(12, 18, 36, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 32px;
    padding: 72px 0;
    margin-top: 48px;
}

.credly-section .section-header.center p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
}

.credly-badges {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin: 40px auto;
}

.credly-badge {
    min-width: 160px;
    max-width: 190px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(8, 12, 24, 0.7);
    box-shadow: 0 26px 52px rgba(6, 10, 28, 0.38);
}

.credly-skills {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.credly-skills__head h3 {
    margin: 0 0 8px;
}

.credly-skills__head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.credly-skills__head a {
    color: #cfd3ff;
    text-decoration: underline;
    text-decoration-color: rgba(207, 211, 255, 0.4);
}

.credly-skills__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.credly-skills__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 14, 28, 0.7);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.credly-skills__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(8, 12, 28, 0.35);
}

.credly-skills__item--status {
    justify-content: flex-start;
    color: var(--text-muted);
    font-style: italic;
}

.credly-skills__item.is-collapsed {
    display: none;
}

.credly-skills__name {
    font-weight: 600;
    flex: 1 1 auto;
    min-width: 0;
}

.credly-skills__count {
    flex: none;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.25);
    color: #e3e5ff;
    font-size: 0.95rem;
}

.credly-skills__evidence {
    flex: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.credly-skills__toggle {
    align-self: center;
    margin-top: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(139, 92, 246, 0.45);
    background: rgba(139, 92, 246, 0.15);
    color: #dcdfff;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.credly-skills__toggle:hover {
    background: rgba(139, 92, 246, 0.24);
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.3);
}

.credly-skills__toggle:focus-visible {
    outline: 2px solid rgba(139, 92, 246, 0.5);
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .credly-section {
        padding: 58px 0;
    }
}

@media (max-width: 680px) {
    .credly-skills__list {
        grid-template-columns: minmax(0, 1fr);
    }

    .credly-skills__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .credly-skills__count {
        order: 2;
    }

    .credly-skills__evidence {
        order: 3;
    }
}

.hero-card .announcement-banner {
    margin-top: 20px;
    max-width: 100%;
    width: 100%;
}

.hero-card {
    background: linear-gradient(160deg, rgba(12, 0, 40, 0.92), rgba(102, 200, 255, 0.18));
    border: 1px solid rgba(120, 250, 255, 0.22);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    gap: 24px;
    box-shadow: 0 26px 52px rgba(8, 0, 32, 0.55);
}

.dna-bubble {
    position: relative;
    border-radius: 18px;
    padding: 20px 22px;
    background: linear-gradient(145deg, rgba(8, 20, 38, 0.9), rgba(102, 200, 255, 0.18));
    border: 1px solid rgba(126, 214, 255, 0.35);
    box-shadow: 0 18px 36px rgba(8, 0, 32, 0.45);
    display: grid;
    gap: 12px;
}

.dna-bubble h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(102, 200, 255, 0.3);
}

.dna-bubble p {
    color: rgba(206, 186, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dna-bubble__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dna-bubble__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 14px;
    border: 1px solid rgba(126, 214, 255, 0.5);
    background: rgba(8, 20, 38, 0.85);
    color: #67dbff;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.dna-bubble__actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(126, 214, 255, 0.35);
    color: #e4f6ff;
}

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

.metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric strong {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    text-shadow: 0 0 12px rgba(102, 200, 255, 0.3);
}

.metric span {
    font-size: 0.95rem;
    color: rgba(206, 186, 255, 0.7);
}

/* Sections */
.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 220, 255, 0.6), transparent);
    top: 0;
    opacity: 0.35;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 760px;
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow:
        0 0 16px rgba(102, 200, 255, 0.35),
        0 0 32px rgba(80, 248, 255, 0.25);
}

.section-header p {
    color: rgba(206, 186, 255, 0.75);
    font-size: 1.05rem;
}

.trust-strip {
    padding: 32px 0;
    border-top: 1px solid rgba(140, 220, 255, 0.25);
    border-bottom: 1px solid rgba(120, 250, 255, 0.2);
    background: linear-gradient(135deg, rgba(12, 0, 40, 0.85), rgba(120, 250, 255, 0.12));
    box-shadow: inset 0 1px 0 rgba(140, 220, 255, 0.18);
}

.trust-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trust-strip__label {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(203, 213, 255, 0.8);
}

.trust-strip__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    align-items: center;
    justify-content: center;
}

.trust-strip__logo {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(12, 0, 40, 0.75);
    border: 1px solid rgba(140, 220, 255, 0.25);
    color: #e4f6ff;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.highlight-section {
    padding: var(--section-spacing) 0;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.highlight-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 6px;
}

.highlight-header p {
    color: var(--text-muted);
    max-width: 640px;
}

.highlight-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(102, 200, 255, 0.22);
    color: #def3ff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border: 1px solid rgba(140, 220, 255, 0.35);
    text-shadow: 0 0 10px rgba(102, 200, 255, 0.35);
}

.highlight-slider-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 18px;
    padding: 36px 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.92), rgba(102, 200, 255, 0.2));
    border: 1px solid rgba(140, 220, 255, 0.28);
    box-shadow: 0 32px 60px rgba(8, 0, 32, 0.55);
}

.highlight-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px;
    margin: 0 48px;
}

.highlight-slider::-webkit-scrollbar {
    display: none;
}

.highlight-slide {
    flex: 0 0 320px;
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.92), rgba(120, 250, 255, 0.2));
    border: 1px solid rgba(120, 250, 255, 0.28);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: grid;
    gap: 14px;
    scroll-snap-align: start;
    box-shadow: 0 24px 48px rgba(8, 0, 32, 0.55);
    min-height: 240px;
}

.highlight-slide h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-shadow: 0 0 12px rgba(102, 200, 255, 0.35);
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(120, 250, 255, 0.24);
    color: #0b041c;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(140, 220, 255, 0.3);
}

.highlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.slider-nav {
    appearance: none;
    border: 1px solid rgba(140, 220, 255, 0.4);
    background: rgba(12, 0, 40, 0.92);
    color: #e4f6ff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-nav:hover {
    transform: translateY(-50%) translateY(-2px);
    border-color: rgba(120, 250, 255, 0.6);
    background: rgba(102, 200, 255, 0.25);
}

.slider-nav:disabled {
    opacity: 0.28;
    cursor: default;
    transform: translateY(-50%);
}

@media (min-width: 1024px) {
    .highlight-slider {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
        overflow: visible;
        padding: 0;
        margin: 0;
    }

    .highlight-slide {
        flex: initial;
    }

    .slider-nav {
        display: none;
    }
}

.slider-nav--prev {
    left: 18px;
}

.slider-nav--next {
    right: 18px;
}

/* Desktop: show 4 highlight cards instead of carousel */
@media (min-width: 1024px) {
    .highlight-slider {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        overflow: visible;
        padding: 0;
        margin: 0;
    }
    .highlight-slide {
        flex: initial;
    }
    .slider-nav { display: none; }
}

.btn-tertiary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #dbeafe;
}

.btn-tertiary:hover {
    border-color: rgba(96, 165, 250, 0.65);
    color: #f8fafc;
}

.topics-section {
    padding-bottom: var(--section-spacing);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.topic-card {
    display: grid;
    gap: 14px;
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(140, 220, 255, 0.26);
    background: linear-gradient(145deg, rgba(12, 0, 40, 0.92), rgba(102, 200, 255, 0.18));
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 18px 40px rgba(8, 0, 32, 0.55);
}

.topic-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    border-color: rgba(120, 250, 255, 0.6);
    background: linear-gradient(145deg, rgba(18, 0, 48, 0.95), rgba(120, 250, 255, 0.25));
    box-shadow: 0 24px 50px rgba(102, 200, 255, 0.35);
}

.topic-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(102, 200, 255, 0.24);
    color: #e4f6ff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(140, 220, 255, 0.35);
    text-shadow: 0 0 10px rgba(102, 200, 255, 0.35);
}

.topic-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-shadow: 0 0 12px rgba(120, 250, 255, 0.35);
}

.topic-card p {
    color: rgba(206, 186, 255, 0.75);
}

.topic-cta {
    font-weight: 600;
    color: #78faff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.why-section {
    padding-top: var(--section-spacing);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.why-card {
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.9), rgba(102, 200, 255, 0.12));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(120, 250, 255, 0.22);
    padding: 28px;
    display: grid;
    gap: 12px;
    box-shadow: 0 18px 36px rgba(8, 0, 32, 0.55);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-shadow: 0 0 12px rgba(102, 200, 255, 0.3);
}

.why-card p {
    color: rgba(206, 186, 255, 0.78);
    line-height: 1.6;
}

.resource-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.resources-section {
    padding-top: var(--section-spacing);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.category-card {
    display: grid;
    gap: 14px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.92), rgba(120, 250, 255, 0.18));
    border: 1px solid rgba(120, 250, 255, 0.28);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    box-shadow: 0 20px 40px rgba(8, 0, 32, 0.55);
}

.category-card:hover {
    transform: translateY(-6px) rotate(0.6deg);
    border-color: rgba(140, 220, 255, 0.5);
    background: linear-gradient(150deg, rgba(18, 0, 48, 0.95), rgba(102, 200, 255, 0.25));
    box-shadow: 0 28px 54px rgba(102, 200, 255, 0.3);
}

.resource-callouts {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.callout-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(140, 220, 255, 0.32);
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.92), rgba(102, 200, 255, 0.22));
    display: grid;
    gap: 16px;
    box-shadow: 0 22px 48px rgba(8, 0, 32, 0.58);
}

.callout-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.callout-foot {
    display: grid;
    gap: 8px;
}

.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.resource-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(102, 200, 255, 0.24);
    border: 1px solid rgba(140, 220, 255, 0.4);
    color: #e4f6ff;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(102, 200, 255, 0.3);
}

.resource-links a:hover {
    border-color: rgba(120, 250, 255, 0.55);
    color: #78faff;
}

.achievements-section {
    padding-top: var(--section-spacing);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.achievement-card {
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.9), rgba(102, 200, 255, 0.2));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(140, 220, 255, 0.28);
    padding: 28px;
    display: grid;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(8, 0, 32, 0.56);
}

.achievement-card h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #e0e7ff;
    text-shadow: 0 0 16px rgba(120, 250, 255, 0.35);
}

.achievement-card p {
    color: rgba(206, 186, 255, 0.78);
    font-size: 0.95rem;
}

.achievement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #78faff;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.achievement-link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.achievement-link:hover {
    color: #e4f6ff;
    text-shadow: 0 0 12px rgba(102, 200, 255, 0.4);
}

.achievement-link:hover::after {
    transform: translateX(4px);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stack-item {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.success-section {
    padding-top: var(--section-spacing);
}

.success-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.success-card {
    flex: 1 1 300px;
    min-width: 280px;
    background: linear-gradient(155deg, rgba(12, 0, 40, 0.92), rgba(120, 250, 255, 0.2));
    border: 1px solid rgba(120, 250, 255, 0.26);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: grid;
    gap: 16px;
    box-shadow: 0 24px 50px rgba(8, 0, 32, 0.5);
}

.success-card header {
    display: grid;
    gap: 8px;
}

.success-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(102, 200, 255, 0.22);
    color: #e4f6ff;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(140, 220, 255, 0.35);
}

.success-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    text-shadow: 0 0 12px rgba(120, 250, 255, 0.3);
}

.success-metrics {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.success-metrics li {
    display: flex;
    gap: 10px;
    align-items: baseline;
    color: rgba(224, 231, 255, 0.9);
    font-size: 0.98rem;
}

.success-metrics li strong {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: #f4f5ff;
}

.success-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #78faff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.success-link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.success-link:hover {
    color: #e4f6ff;
    text-shadow: 0 0 12px rgba(102, 200, 255, 0.35);
}

.success-link:hover::after {
    transform: translateX(4px);
}

.newsletter-section {
    padding: var(--section-spacing) 0;
}

.newsletter-card {
    background: linear-gradient(140deg, rgba(12, 0, 40, 0.92), rgba(102, 200, 255, 0.25));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(140, 220, 255, 0.32);
    padding: 40px;
    display: grid;
    gap: 18px;
    text-align: center;
    box-shadow: 0 28px 56px rgba(8, 0, 32, 0.55);
}

.newsletter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(120, 250, 255, 0.24);
    color: #0b041c;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border: 1px solid rgba(140, 220, 255, 0.3);
    text-shadow: 0 0 10px rgba(102, 200, 255, 0.3);
}

.newsletter-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    text-shadow: 0 0 16px rgba(102, 200, 255, 0.35);
}

.newsletter-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.newsletter-note {
    font-size: 0.85rem;
    color: rgba(206, 186, 255, 0.78);
}

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

.value-card {
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.9), rgba(120, 250, 255, 0.18));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(120, 250, 255, 0.26);
    padding: 32px;
    display: grid;
    gap: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(8, 0, 32, 0.5);
}

.value-card::before {
    content: '';
    position: absolute;
    inset: -40% 55% 55% -40%;
    background: radial-gradient(circle at top left, rgba(102, 200, 255, 0.3), transparent 72%);
    opacity: 0.7;
    pointer-events: none;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-shadow: 0 0 12px rgba(120, 250, 255, 0.3);
}

.value-card p {
    color: rgba(206, 186, 255, 0.78);
    font-size: 0.98rem;
}

.value-card .check-list {
    position: relative;
    z-index: 1;
}

.value-card .value-meta {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(140, 220, 255, 0.75);
}

.mindmap-section {
    overflow: hidden;
}

.mindmap {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 120px 0 80px;
    min-height: 600px;
    isolation: isolate;
}

.mindmap::before,
.mindmap::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(120, 250, 255, 0.25);
    filter: drop-shadow(0 0 14px rgba(120, 250, 255, 0.25));
}

.mindmap::before {
    width: 520px;
    height: 520px;
    animation: orbitGlow 14s linear infinite;
}

.mindmap::after {
    width: 320px;
    height: 320px;
    border-style: solid;
    border-color: rgba(102, 200, 255, 0.25);
    animation: orbitGlowAlt 12s linear infinite reverse;
}

.mindmap__core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(150deg, rgba(8, 16, 36, 0.96), rgba(102, 200, 255, 0.3));
    border: 1px solid rgba(126, 214, 255, 0.4);
    text-align: center;
    box-shadow: 0 26px 52px rgba(8, 0, 32, 0.55);
    animation: corePulse 6s ease-in-out infinite;
}

.mindmap__core h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 0 18px rgba(102, 200, 255, 0.4);
}

.mindmap__core p {
    color: rgba(206, 186, 255, 0.8);
    line-height: 1.6;
}

.mindmap__node {
    position: absolute;
    width: 240px;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.92), rgba(120, 250, 255, 0.2));
    border: 1px solid rgba(120, 250, 255, 0.26);
    box-shadow: 0 20px 44px rgba(8, 0, 32, 0.5);
    display: grid;
    gap: 12px;
    transform-origin: center;
    animation: nodeFloat 12s ease-in-out infinite;
}

.mindmap__node h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(102, 200, 255, 0.3);
}

.mindmap__node ul {
    list-style: none;
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    color: rgba(206, 186, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
}

.mindmap__node ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mindmap__node ul li::before {
    content: '✦';
    color: rgba(140, 220, 255, 0.65);
}

.mindmap__node--1 {
    top: 6%;
    left: 50%;
    transform: translate(-50%, 0);
    animation-delay: 0s;
}

.mindmap__node--2 {
    top: 22%;
    right: 6%;
    transform: translate(0, -50%);
    animation-delay: 1.2s;
}

.mindmap__node--3 {
    top: 68%;
    right: 4%;
    transform: translate(0, -50%);
    animation-delay: 2.4s;
}

.mindmap__node--4 {
    bottom: 6%;
    left: 50%;
    transform: translate(-50%, 0);
    animation-delay: 3.6s;
}

.mindmap__node--5 {
    top: 68%;
    left: 4%;
    transform: translate(0, -50%);
    animation-delay: 4.8s;
}

.mindmap__node--6 {
    top: 22%;
    left: 6%;
    transform: translate(0, -50%);
    animation-delay: 6s;
}

.mindmap__footnote {
    text-align: center;
    margin-top: 48px;
    font-size: 0.95rem;
    color: rgba(206, 186, 255, 0.75);
}

@media (max-width: 1024px) {
    .mindmap::before,
    .mindmap::after {
        display: none;
    }

    .mindmap {
        padding: 60px 0;
        min-height: auto;
        display: grid;
        gap: 24px;
    }

    .mindmap__core {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 0 auto;
    }

    .mindmap__node {
        position: relative;
        width: 100%;
        transform: none;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .mindmap__footnote {
        margin-top: 12px;
    }
}

@keyframes orbitGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); opacity: 0.35; }
    50% { transform: translate(-50%, -50%) rotate(180deg); opacity: 0.55; }
    100% { transform: translate(-50%, -50%) rotate(360deg); opacity: 0.35; }
}

@keyframes orbitGlowAlt {
    0% { transform: translate(-50%, -50%) rotate(0deg); opacity: 0.45; }
    50% { transform: translate(-50%, -50%) rotate(180deg); opacity: 0.65; }
    100% { transform: translate(-50%, -50%) rotate(360deg); opacity: 0.45; }
}

@keyframes corePulse {
    0%, 100% { box-shadow: 0 26px 52px rgba(8, 0, 32, 0.55), 0 0 24px rgba(120, 250, 255, 0.32); }
    50% { box-shadow: 0 32px 60px rgba(8, 0, 32, 0.6), 0 0 32px rgba(120, 250, 255, 0.45); }
}

@keyframes nodeFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

.outcome-metrics {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.outcome-metric {
    padding: 24px 26px;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(12, 0, 40, 0.9), rgba(102, 200, 255, 0.18));
    border: 1px solid rgba(120, 250, 255, 0.2);
    display: grid;
    gap: 8px;
    box-shadow: 0 18px 38px rgba(8, 0, 32, 0.45);
}

.outcome-metric strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-shadow: 0 0 12px rgba(120, 250, 255, 0.3);
}

.outcome-metric span {
    color: rgba(206, 186, 255, 0.75);
    font-size: 0.95rem;
}

.cta-panel {
    background: linear-gradient(140deg, rgba(12, 0, 40, 0.92), rgba(102, 200, 255, 0.25));
    border: 1px solid rgba(140, 220, 255, 0.32);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    gap: 18px;
    text-align: center;
    box-shadow: 0 26px 56px rgba(8, 0, 32, 0.55);
}

.cta-panel h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow: 0 0 16px rgba(102, 200, 255, 0.35);
}

.cta-panel p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(206, 186, 255, 0.78);
    font-size: 1.05rem;
}

.cta-panel .hero-actions {
    justify-content: center;
}

.profile-card {
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.9), rgba(102, 200, 255, 0.2));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(120, 250, 255, 0.24);
    padding: 40px;
    display: grid;
    gap: 28px;
    box-shadow: 0 26px 60px rgba(8, 0, 32, 0.5);
}

.profile-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(120, 250, 255, 0.24);
    color: #0b041c;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border: 1px solid rgba(140, 220, 255, 0.3);
}

.profile-intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.profile-intro h3 {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 2.6rem);
    text-shadow: 0 0 16px rgba(102, 200, 255, 0.35);
}

.profile-role {
    color: rgba(191, 203, 255, 0.95);
    font-size: 1.05rem;
    margin-top: 8px;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(206, 186, 255, 0.78);
}

.profile-contact {
    display: grid;
    gap: 6px;
    text-align: right;
}

.profile-contact a {
    color: #dbe2ff;
    font-weight: 600;
}

.profile-contact span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.profile-summary {
    color: rgba(226, 232, 240, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 820px;
}

.profile-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.profile-stat {
    flex: 1 1 160px;
    min-width: 160px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.16);
    display: grid;
    gap: 6px;
}

.profile-stat strong {
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.profile-stat span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.profile-block {
    background: rgba(9, 14, 28, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-md);
    padding: 24px;
    display: grid;
    gap: 16px;
}

.profile-block h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.profile-list {
    display: grid;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.profile-list li {
    list-style: none;
    position: relative;
    padding-left: 18px;
}

.profile-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(129, 140, 248, 0.9);
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.3);
    color: rgba(226, 232, 240, 0.92);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.profile-block--timeline {
    grid-column: 1 / -1;
    background: rgba(10, 16, 36, 0.88);
}

.profile-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid rgba(99, 102, 241, 0.25);
    display: grid;
    gap: 18px;
}

.profile-timeline li {
    position: relative;
    padding-left: 24px;
    display: grid;
    gap: 6px;
}

.profile-timeline li::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid rgba(79, 70, 229, 0.9);
    background: #05070f;
}

.profile-timeline__time {
    color: rgba(165, 180, 252, 0.85);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-timeline strong {
    font-family: var(--font-heading);
}

.profile-timeline p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-board {
    display: grid;
    gap: 48px;
}

.faq-category {
    background: rgba(11, 17, 35, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    gap: 26px;
    box-shadow: 0 22px 48px rgba(6, 12, 30, 0.38);
}

.faq-category__header {
    display: grid;
    gap: 10px;
}

.faq-category__header h2,
.faq-category__header h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.faq-category__header p {
    color: rgba(203, 213, 225, 0.82);
    font-size: 1.02rem;
}

.faq-items {
    display: grid;
    gap: 16px;
}

details.faq-item {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

details.faq-item[open] {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

details.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    color: rgba(226, 232, 240, 0.92);
    transition: color 0.2s ease;
}

details.faq-item summary:hover {
    color: #fff;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: '\25BC';
    font-size: 0.85rem;
    color: rgba(165, 180, 252, 0.85);
    transition: transform 0.2s ease;
}

details.faq-item[open] summary::after {
    transform: rotate(-180deg);
}

.faq-answer {
    padding: 0 24px 22px;
    color: rgba(200, 210, 233, 0.88);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-answer a {
    color: #c7d2fe;
    text-decoration: underline;
}

.faq-answer + .faq-answer {
    margin-top: 12px;
}

.pill-row {
    display: block;
}

.pill {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd2ff;
    font-size: 0.95rem;
}

.pill-text {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd2ff;
    font-size: 0.95rem;
}

@media (max-width: 680px) {
    .announcement-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .announcement-link {
        width: 100%;
        justify-content: center;
    }
}

/**** Cards & Grids ****/
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.card {
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.9), rgba(102, 200, 255, 0.18));
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(120, 250, 255, 0.24);
    display: grid;
    gap: 18px;
    transition: var(--transition);
    box-shadow: 0 24px 48px rgba(8, 0, 32, 0.5);
}

.card:hover {
    transform: translateY(-8px) rotate(-0.6deg);
    border-color: rgba(140, 220, 255, 0.45);
    box-shadow: 0 28px 60px rgba(102, 200, 255, 0.3);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 12px rgba(120, 250, 255, 0.3);
}

.card p {
    color: rgba(206, 186, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.65;
}

.check-list {
    display: grid;
    gap: 12px;
}

.check-list li {
    list-style: none;
    display: flex;
    gap: 12px;
    color: rgba(206, 186, 255, 0.78);
}

.check-list li::before {
    content: '\2713';
    color: #67dbff;
    text-shadow: 0 0 10px rgba(140, 220, 255, 0.4);
}

.split-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.highlight-panel {
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.9), rgba(102, 200, 255, 0.2));
    border-radius: var(--radius-lg);
    padding: 34px;
    border: 1px solid rgba(120, 250, 255, 0.28);
    display: grid;
    gap: 18px;
    box-shadow: 0 24px 50px rgba(8, 0, 32, 0.5);
}

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

.process-step {
    padding: 28px;
    border-radius: var(--radius-md);
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.88), rgba(120, 250, 255, 0.18));
    border: 1px solid rgba(120, 250, 255, 0.22);
    display: grid;
    gap: 12px;
    box-shadow: 0 20px 44px rgba(8, 0, 32, 0.48);
}

.process-step span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(140, 220, 255, 0.75);
}

.testimonial {
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.92), rgba(102, 200, 255, 0.2));
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(120, 250, 255, 0.24);
    display: grid;
    gap: 26px;
    box-shadow: 0 26px 56px rgba(8, 0, 32, 0.5);
}

.testimonial blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(206, 186, 255, 0.8);
    text-shadow: 0 0 12px rgba(120, 250, 255, 0.2);
}

.testimonial cite {
    font-style: normal;
    color: #e4f6ff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-section {
    padding: 110px 0;
}

.cta-card {
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.92), rgba(102, 200, 255, 0.25));
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
    border: 1px solid rgba(140, 220, 255, 0.32);
    box-shadow: 0 28px 56px rgba(8, 0, 32, 0.55);
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-shadow: 0 0 18px rgba(102, 200, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cta-card p {
    color: rgba(206, 186, 255, 0.78);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.blog-post {
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.9), rgba(102, 200, 255, 0.2));
    border-radius: var(--radius-md);
    border: 1px solid rgba(120, 250, 255, 0.24);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 24px 50px rgba(8, 0, 32, 0.48);
}

.blog-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-content {
    padding: 28px;
    display: grid;
    gap: 12px;
}

.blog-post-content h3 a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.blog-post-meta {
    color: rgba(206, 186, 255, 0.75);
    font-size: 0.9rem;
    margin: 4px 0 8px;
}

.blog-post-content p {
    color: rgba(206, 186, 255, 0.78);
    line-height: 1.6;
}

.read-more {
    color: #78faff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.read-more:hover {
    color: #e4f6ff;
    text-shadow: 0 0 12px rgba(102, 200, 255, 0.3);
}

.post-meta {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(196, 204, 255, 0.65);
}

.blog-post-full {
    display: grid;
    gap: 22px;
    background: linear-gradient(150deg, rgba(12, 0, 40, 0.9), rgba(102, 200, 255, 0.2));
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(120, 250, 255, 0.26);
    box-shadow: 0 28px 56px rgba(8, 0, 32, 0.5);
}

.blog-post-full .post-summary {
    color: rgba(206, 186, 255, 0.78);
}

.blog-post-full .post-image {
    border-radius: var(--radius-md);
}

.blog-post-full .post-body {
    color: rgba(206, 186, 255, 0.78);
    line-height: 1.75;
}

.blog-post-full .post-body h2,
.blog-post-full .post-body h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 12px;
    text-shadow: 0 0 14px rgba(102, 200, 255, 0.3);
}

.blog-post-full .post-body ul {
    margin: 18px 0 18px 1.4rem;
    display: grid;
    gap: 10px;
    color: var(--text-muted);
}

/* Tables (admin) */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(17, 24, 48, 0.85);
    color: var(--text-primary);
}

.admin-table th,
.admin-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table th {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(183, 193, 255, 0.75);
}

.edit-btn,
.delete-btn {
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.edit-btn {
    background: rgba(139, 92, 246, 0.25);
    color: #dad8ff;
}

.delete-btn {
    background: rgba(244, 63, 94, 0.25);
    color: #ffccd3;
}

/* Forms */
form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: rgba(17, 24, 48, 0.85);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.form-message {
    font-size: 0.95rem;
    color: #6ee7b7;
}

.form-message.error {
    color: #fda4af;
}

.admin-login-form {
    background: rgba(17, 24, 48, 0.8);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tabs {
    display: inline-flex;
    gap: 10px;
    background: rgba(17, 24, 48, 0.7);
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.tab-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-link.active,
.tab-link:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Contact */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.contact-item {
    background: rgba(17, 24, 48, 0.78);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: grid;
    gap: 10px;
}

.contact-item i {
    font-size: 1.8rem;
    color: #a78bfa;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(140, 220, 255, 0.22);
    background: linear-gradient(180deg, rgba(12, 0, 40, 0.92), rgba(3, 0, 12, 0.95));
    text-align: center;
    box-shadow: 0 -12px 40px rgba(5, 0, 20, 0.55);
}

.footer p {
    color: rgba(206, 186, 255, 0.78);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

/* Reserve space and keep inline sizing for footer icons */
.footer img {
    width: 18px;
    height: 18px;
    display: inline-block;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(102, 200, 255, 0.45));
}

/* Chatbot widget */
#cloudpeakify-chatbot {
    position: fixed;
    bottom: 1.5rem; /* default pin bottom-right */
    right: 1.5rem;
    left: auto;
    top: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    pointer-events: auto; /* ensure toggle is always clickable */
}
/* when cookie banner is open, lift the widget above it */
body.cookie-open #cloudpeakify-chatbot{ bottom: calc(1.5rem + var(--cookie-banner-h, 0px)); }

#cloudpeakify-chatbot.chatbot--visible {
    pointer-events: auto;
}

.chatbot__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(99, 102, 241, 0.4);
}

.chatbot__toggle-icon {
    font-size: 1.25rem;
}

.chatbot__window {
    width: min(320px, calc(100vw - 2.5rem));
    background: rgba(5, 7, 15, 0.96);
    color: #f8fafc;
    border-radius: 18px;
    box-shadow: 0 32px 70px rgba(2, 6, 23, 0.55);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 1;
    transform: translateY(0);
}

.chatbot--hidden .chatbot__window {
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
}

.chatbot__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
}

.chatbot__header h2 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.chatbot__header p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.65);
}

.chatbot__close {
    background: transparent;
    color: rgba(226, 232, 240, 0.7);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

.chatbot__messages {
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 320px;
    overflow-y: auto;
}

.chatbot__message {
    display: flex;
}

.chatbot__message--user {
    justify-content: flex-end;
}

.chatbot__message--user .chatbot__bubble {
    background: rgba(99, 102, 241, 0.95);
    color: #fff;
    border-bottom-right-radius: 6px;
}

.chatbot__message--assistant .chatbot__bubble {
    background: rgba(148, 163, 184, 0.14);
    color: #e2e8f0;
    border-bottom-left-radius: 6px;
}

.chatbot__bubble {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    line-height: 1.45;
    max-width: 100%;
    font-size: 0.95rem;
    box-shadow: 0 18px 32px rgba(2, 6, 23, 0.45);
}

.chatbot__form {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chatbot__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
}

.chatbot__input-group {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.chatbot__input {
    flex: 1;
    resize: none;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 0.6rem 0.75rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: rgba(15, 23, 42, 0.68);
    color: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chatbot__input:focus {
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.3);
    outline: none;
}

.chatbot__send {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot__hint {
    margin: 0;
    font-size: 0.7rem;
    color: rgba(148, 163, 184, 0.6);
}

.chatbot__status {
    min-height: 1em;
    margin: 0;
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.75);
}

@media (max-width: 640px) {
    #cloudpeakify-chatbot {
        bottom: 1rem;
        right: 1rem;
    }
    body.cookie-open #cloudpeakify-chatbot{ bottom: calc(1rem + var(--cookie-banner-h, 0px)); }

    .chatbot__window {
        width: min(100%, 360px);
    }

    .chatbot__toggle {
        padding: 0.55rem 0.85rem;
    }

    .success-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
    }

    .success-card {
        scroll-snap-align: start;
    }

    .newsletter-card {
        padding: 28px;
    }

    .why-grid {
        gap: 18px;
    }

    .why-card {
        padding: 24px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        padding: 120px 0 80px;
    }

    .highlight-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .slider-nav {
        display: none;
    }

    .highlight-slider-wrapper {
        padding: 28px 20px;
    }

    .highlight-slider {
        margin: 0;
    }

    .highlight-slide {
        flex: 0 0 280px;
        padding: 24px;
    }

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

    body.js-nav-ready .nav-links {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;
        background: linear-gradient(160deg, rgba(12, 0, 40, 0.96), rgba(102, 200, 255, 0.22));
        border: 1px solid rgba(120, 250, 255, 0.28);
        border-radius: 18px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        min-width: min(300px, 88vw);
        box-shadow: 0 26px 48px rgba(8, 0, 32, 0.55);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 120;
        pointer-events: none;
        display: none;
    }

    body.js-nav-ready .nav-links li {
        width: 100%;
    }

    body.js-nav-ready .nav-links a {
        display: block;
        width: 100%;
    }

    .nav-mega {
        width: 100%;
    }

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

    .nav-mega__panel {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        margin-top: 12px;
        padding: 22px;
        border-radius: 16px;
        box-shadow: none;
        background: rgba(12, 0, 40, 0.92);
    }

    .nav-links .nav-cta {
        margin-left: 0;
    }

    .nav-links .nav-btn {
        width: 100%;
        box-shadow: none;
    }

    body.js-nav-ready .nav-links.is-open {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .section {
        padding: 90px 0;
    }
}

/* Cookie banner */
.cookie-banner{position:fixed;left:0;right:0;bottom:0;z-index:9999;background:rgba(5,7,15,0.9);backdrop-filter:blur(10px);border-top:1px solid rgba(255,255,255,0.1)}
.cookie-banner__content{width:var(--container-width);margin:0 auto;display:flex;gap:16px;align-items:center;justify-content:space-between;padding:14px 0}
.cookie-banner__text{color:#c6cae4;font-size:0.95rem}
.cookie-banner__actions{display:flex;gap:10px}
.cookie-btn{background:rgba(255,255,255,0.1);color:#fff;border:1px solid rgba(255,255,255,0.2);border-radius:999px;padding:8px 14px;cursor:pointer}
.cookie-btn--primary{background:var(--gradient-accent);border:none}
@media(max-width:680px){.cookie-banner__content{flex-direction:column;align-items:flex-start;padding:12px 14px}.cookie-banner__actions{width:100%;justify-content:flex-end}}

/* Prevent footer content being hidden behind the cookie banner */
/* Avoid layout shifts: do not push page when cookie banner shows */
body.cookie-open{padding-bottom:0}

/* Scrollspy (section indicator) */
.scrollspy{position:fixed;left:16px;top:50%;transform:translateY(-50%);z-index:1400;display:flex;flex-direction:column;gap:10px;pointer-events:none}
.scrollspy__item{display:flex;align-items:center;gap:8px}
.scrollspy__dot{width:10px;height:10px;border-radius:999px;border:2px solid rgba(255,255,255,0.6);background:transparent;transition:all .2s ease;pointer-events:auto;cursor:pointer}
.scrollspy__item.active .scrollspy__dot{background:#fff;border-color:#fff;transform:scale(1.15)}
.scrollspy__label{color:#c6cae4;background:rgba(5,7,15,0.75);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,0.12);padding:4px 8px;border-radius:999px;font-size:12px;opacity:0;transform:translateX(-6px);transition:all .2s ease;white-space:nowrap;pointer-events:none}
.scrollspy__item:hover .scrollspy__label,.scrollspy__item.active .scrollspy__label{opacity:1;transform:translateX(0)}
@media(max-width: 900px){.scrollspy{display:none}}

@media (max-width: 640px) {
    .hero-actions {
        width: 100%;
    }

    .topics-grid {
        gap: 18px;
    }

    .topic-card {
        padding: 22px;
    }

    .case-grid {
        gap: 18px;
    }

    .resource-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .category-grid,
    .resource-callouts {
        gap: 18px;
    }

    .category-card,
    .callout-card {
        padding: 24px;
    }

    .achievement-card {
        padding: 24px;
    }

    .card,
    .highlight-panel,
    .testimonial,
    .blog-post-full,
    .cta-card {
        padding: 24px;
    }

    body.js-nav-ready .nav-links a {
        padding: 10px 14px;
    }

    .profile-card {
        padding: 28px;
    }

    .profile-intro {
        align-items: flex-start;
        gap: 16px;
    }

    .profile-contact {
        text-align: left;
    }

    .faq-category {
        padding: 26px;
    }

    details.faq-item summary {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
}
