/* Custom overrides reset. Using base Bootstrap styles for now. */

.navbar {
    background: #000000;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: sticky;
    top: 0;
    z-index: 1030;
    margin-top: 0;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #f7f1ea;
    font-weight: 600;
}

.navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar-brand__logo {
    display: block;
    border-radius: 6px;
}

.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus,
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #ffffff;
}

.navbar .navbar-toggler {
    border: 4px solid #ffffff;
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-theme-toggle {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #f7f1ea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-theme-toggle svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.nav-theme-toggle:hover,
.nav-theme-toggle:focus-visible {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 36, 84, 0.25);
    outline: none;
}

html,
body {
    margin: 0;
    padding: 0;
}

:root {
    --noise-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
    --noise-texture-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

html {
    font-size: 20px;
}

body {
    background-color: #050505;
    background-image: radial-gradient(circle at 12% 8%, rgba(255, 36, 84, 0.32), transparent 30%),
        radial-gradient(circle at 85% 5%, rgba(255, 36, 84, 0.2), transparent 26%),
        radial-gradient(circle at 50% 92%, rgba(255, 36, 84, 0.3), transparent 35%),
        var(--noise-texture);
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, auto, auto, 160px 160px;
    color: #f7f1ea;
    font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
    font-size-adjust: 0.5;
}

.home-page {
    background-color: #050505;
    background-image: radial-gradient(circle at 12% 8%, rgba(255, 36, 84, 0.18), transparent 13%),
        radial-gradient(circle at 85% 5%, rgba(255, 36, 84, 0.12), transparent 12%),
        radial-gradient(circle at 50% 92%, rgba(255, 36, 84, 0.18), transparent 16%),
        var(--noise-texture);
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, auto, auto, 160px 160px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0 2.5rem;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-glow {
    display: none;
}

.hero .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero .lead {
    max-width: 680px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size-adjust: 0.5;
}

.card {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
    color: #f7f1ea;
}

.site-banner {
    position: relative;
    z-index: 1;
}

.site-banner__alert {
    border-radius: 999px;
    border: 1px solid rgba(255, 36, 84, 0.45);
    background: linear-gradient(120deg, rgba(255, 36, 84, 0.18), rgba(0, 0, 0, 0.7) 70%);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    color: #f7f1ea;
    padding: 0.85rem 1.5rem;
}

.site-banner__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.site-banner__link:hover,
.site-banner__link:focus {
    color: #ffffff;
}

.site-banner__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    background: rgba(255, 36, 84, 0.2);
    border: 1px solid rgba(255, 36, 84, 0.6);
    color: #ffffff;
}

.site-banner__text {
    font-size: 0.95rem;
}

.site-banner__arrow {
    font-size: 1.1rem;
    color: #ff2454;
    transition: transform 0.2s ease;
}

.site-banner__link:hover .site-banner__arrow,
.site-banner__link:focus .site-banner__arrow {
    transform: translateX(3px);
    transition: transform 0.2s ease;
}

@media (max-width: 575.98px) {
    .site-banner {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .site-banner + .hero {
        padding-top: 0.25rem;
    }

    .site-banner + .hero .container > .mt-4,
    .site-banner + .hero .container > .row.mt-4 {
        margin-top: 0.5rem !important;
    }

    .site-banner__alert {
        border-radius: 1.25rem;
        padding: 0.85rem 1rem;
    }

    .site-banner__link {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .site-banner__arrow {
        display: none;
    }
}

.card .text-body-secondary {
    color: rgba(247, 241, 234, 0.85) !important;
}

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    font-weight: 600;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f7f1ea' d='M6.2 12.4 2.5 8.7l1.2-1.2 2.5 2.5 6.1-6.1 1.2 1.2-7.3 7.3z'/%3E%3C/svg%3E");
}

.hero .text-body-secondary {
    color: rgba(247, 241, 234, 0.92) !important;
}

.hero .alert-light {
    background: rgba(0, 0, 0, 0.35);
    color: #f7f1ea;
    border-color: rgba(255, 255, 255, 0.2);
}

.dropdown-menu.mega-menu {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f7f1ea;
    padding: 2rem;
    width: min(1200px, calc(100vw - 2rem));
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-menu.nav-dropdown {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f7f1ea;
    padding: 0.5rem;
    min-width: 220px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    margin-top: 11px;
}

.dropdown-menu.nav-dropdown .dropdown-item {
    color: #f7f1ea;
    border-radius: 0.5rem;
    padding: 0.5rem 0.85rem;
}

.dropdown-menu.nav-dropdown .dropdown-item:hover,
.dropdown-menu.nav-dropdown .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.mega-title {
    color: #f7f1ea;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.mega-summary {
    color: rgba(247, 241, 234, 0.75);
}

.dropdown-menu.mega-menu .text-primary {
    color: #f7f1ea !important;
}

.dropdown-menu.mega-menu .dropdown-item {
    color: #f7f1ea;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem;
}

.dropdown-menu.mega-menu .dropdown-item:hover,
.dropdown-menu.mega-menu .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #f7f1ea;
}

.mega-icon {
    width: 0.85rem;
    height: 0.85rem;
    color: #f7f1ea;
    display: inline-flex;
}

.mega-icon svg {
    width: 100%;
    height: 100%;
}

.dropdown-menu.mega-menu .btn-outline-light {
    border-color: rgba(247, 241, 234, 0.5);
    color: #f7f1ea;
}

.dropdown-menu.mega-menu .btn-outline-light:hover,
.dropdown-menu.mega-menu .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #f7f1ea;
}

.alert {
    border-radius: 0.5rem;
}

.alert-light {
    background: rgba(255, 255, 255, 0.08);
    color: #f7f1ea;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: #ff2454;
    border-color: #ff2454;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #ff4069;
    border-color: #ff4069;
    color: #ffffff;
}

.btn-outline-light {
    border-color: rgba(247, 241, 234, 0.6);
    color: #f7f1ea;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.text-primary {
    color: #f7f1ea !important;
}

.text-body-secondary {
    color: rgba(247, 241, 234, 0.86) !important;
}

.serpentine {
    position: relative;
    display: grid;
    gap: 2.5rem;
    padding: 0.5rem 0;
}

.serpentine-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.serpentine-line path {
    stroke: rgba(255, 36, 84, 0.7);
    stroke-width: 2;
    fill: none;
    stroke-linecap: square;
    stroke-linejoin: miter;
    vector-effect: non-scaling-stroke;
    shape-rendering: crispEdges;
}

.resource-hero .lead {
    max-width: 760px;
}

.resource-hero__media {
    max-width: 880px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

.resource-hero__media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.resource-post__media {
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.25rem;
}

.resource-post__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.resource-featured .resource-post__media img {
    height: 280px;
}

.resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: rgba(247, 241, 234, 0.86);
}

.resource-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 36, 84, 0.35);
    background: rgba(0, 0, 0, 0.4);
}

.resource-article .article-content {
    max-width: 760px;
}

.article-content p {
    line-height: 1.85;
    margin-top: 1rem;
    color: rgba(247, 241, 234, 0.92);
}

.article-content h2 {
    margin-top: 2.5rem;
    font-size: 2rem;
}

.article-content h3 {
    margin-top: 1.75rem;
    font-size: 1.35rem;
}

.article-content ul,
.article-content ol {
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content a {
    color: #f7f1ea;
    text-decoration: underline;
}

.article-section {
    margin-bottom: 2.5rem;
}

.article-toc {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
}

.article-toc a {
    color: rgba(247, 241, 234, 0.9);
    text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.article-callout {
    border-left: 3px solid #ff2454;
    background: rgba(0, 0, 0, 0.45);
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
}

.article-callout h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.article-cta {
    overflow: hidden;
}

.article-cta .resource-post__media {
    margin-bottom: 0;
    border-radius: 0.9rem 0.9rem 0 0;
    box-shadow: none;
}

.gallery-lightbox-trigger {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.gallery-card-media {
    height: 220px;
    overflow: hidden;
}

.gallery-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-lightbox-trigger img {
    display: block;
    width: 100%;
}

.module-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 36, 84, 0.45);
    background: rgba(0, 0, 0, 0.45);
    color: #ff2454;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.module-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lightbox-modal .modal-dialog {
    max-width: 600px;
}

.lightbox-modal.lightbox-modal--wide .modal-dialog {
    max-width: 800px;
}

.lightbox-modal .modal-content {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-modal .modal-body {
    position: relative;
}

.lightbox-modal .btn-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    filter: invert(1);
    z-index: 2;
}

.lightbox-modal img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.feature-carousel {
    max-width: 980px;
    margin: 0 auto;
}

.feature-carousel .carousel-inner {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}

.feature-carousel .carousel-item {
    aspect-ratio: 16 / 9;
    background: #050505;
}

.feature-carousel .carousel-item picture,
.feature-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.feature-carousel .carousel-item img.carousel-img--cover {
    object-fit: cover;
}

.feature-carousel .carousel-control-prev,
.feature-carousel .carousel-control-next {
    width: 4rem;
}

.feature-carousel .carousel-control-prev-icon,
.feature-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 1.2rem 1.2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(255, 36, 84, 0.4);
}

.resource-index-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-index .pagination {
    --bs-pagination-bg: rgba(0, 0, 0, 0.45);
    --bs-pagination-border-color: rgba(255, 255, 255, 0.2);
    --bs-pagination-hover-bg: rgba(255, 255, 255, 0.08);
    --bs-pagination-hover-border-color: rgba(255, 255, 255, 0.35);
    --bs-pagination-active-bg: #ff2454;
    --bs-pagination-active-border-color: #ff2454;
    --bs-pagination-disabled-bg: rgba(0, 0, 0, 0.25);
    --bs-pagination-disabled-border-color: rgba(255, 255, 255, 0.15);
}

.resource-index .page-link {
    color: #f7f1ea;
    border-width: 1px;
    font-weight: 600;
}

.resource-index .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 36, 84, 0.25);
}

.resource-index .page-item.disabled .page-link {
    color: rgba(247, 241, 234, 0.4);
}

.resource-post {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.resource-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.resource-post__meta {
    font-size: 0.9rem;
    color: rgba(247, 241, 234, 0.75);
    margin-bottom: 0.6rem;
}

.resource-post__title {
    margin-bottom: 0.75rem;
    font-size: 1.9rem;
}

.resource-post__title a {
    color: #f7f1ea;
    text-decoration: none;
}

.resource-post__title a:hover,
.resource-post__title a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.resource-post__desc {
    color: rgba(247, 241, 234, 0.88);
    margin-bottom: 1rem;
}

.resource-post__link {
    color: #f7f1ea;
    font-weight: 600;
    text-decoration: none;
}

.resource-post__link:hover,
.resource-post__link:focus {
    text-decoration: underline;
}

.resource-featured h2 a {
    color: #f7f1ea;
    text-decoration: none;
}

.resource-featured h2 a:hover,
.resource-featured h2 a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.resource-cta-logo {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.resource-cta-logo img {
    width: 2.25rem;
    height: 2.25rem;
    display: block;
}

.resource-table {
    color: #f7f1ea;
    border-color: rgba(255, 255, 255, 0.2);
}

.resource-table thead th {
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.resource-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}

.resource-table td,
.resource-table th {
    vertical-align: top;
}

.serpentine-row {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 84px;
    z-index: 1;
}

.serpentine-left {
    justify-content: flex-start;
    padding-right: 22%;
}

.serpentine-right {
    justify-content: flex-end;
    padding-left: 22%;
}

.serpentine-card {
    max-width: 420px;
    width: 100%;
    background: #050505;
}

.serpentine-node {
    position: static;
    transform: none;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: 2px solid #ff2454;
    background: #050505;
    color: #ff2454;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.step-circle {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    border-radius: 999px;
    border: 1px solid #ff2454;
    color: #ff2454;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2rem;
    line-height: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-item h3 {
    font-size: 1.15rem;
}

.section {
    padding: 1.5rem 0;
}

h2.section-title {
    font-size: 2.667rem;
}

main .row {
    --bs-gutter-x: 2.25rem;
    --bs-gutter-y: 2rem;
}

@media (max-width: 991.98px) {
    .section {
        padding: 1.5rem 0;
    }

    main .row {
        --bs-gutter-x: 1.75rem;
        --bs-gutter-y: 1.75rem;
    }
}

.site-footer {
    position: relative;
}

.badge-alert {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #f7f1ea;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
}

.feature-strike {
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff2454, transparent);
    position: relative;
    margin: 1rem auto 0;
}

.feature-strike::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #ff2454;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.who-for-panel {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.25rem;
    background: rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.who-for-panel::before {
    content: "";
    position: absolute;
    inset: -30% -10% auto;
    height: 140%;
    background: radial-gradient(circle at 20% 40%, rgba(255, 36, 84, 0.25), transparent 55%);
    pointer-events: none;
}

.who-for-panel > * {
    position: relative;
    z-index: 1;
}

.who-strike {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #ff2454, transparent);
    margin-top: 0.75rem;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
}

.who-chip {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 36, 84, 0.45);
    background: rgba(0, 0, 0, 0.4);
    color: #f7f1ea;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
    max-width: 100%;
}

.who-chip::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #ff2454;
    box-shadow: 0 0 10px rgba(255, 36, 84, 0.6);
    display: inline-block;
    margin-top: 0.35rem;
}

.about-strike {
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, #ff2454, transparent);
    margin-top: 0.75rem;
}

.about-section .lead {
    max-width: 520px;
    color: rgba(247, 241, 234, 0.88);
}

.card-solid {
    background: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.about-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 36, 84, 0.35);
}

.about-card::before {
    content: "";
    position: absolute;
    inset: -40% -10% auto;
    height: 170%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 36, 84, 0.22), transparent 60%);
    pointer-events: none;
}

.about-card > * {
    position: relative;
    z-index: 1;
}

.card-accent {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 36, 84, 0.4);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.coming-card {
    position: relative;
    overflow: hidden;
}

.coming-card::before {
    content: "";
    position: absolute;
    inset: -40% -10% auto;
    height: 170%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 36, 84, 0.35), transparent 60%);
    pointer-events: none;
}

.coming-card > * {
    position: relative;
    z-index: 1;
}

.coming-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(255, 36, 84, 0.18));
    pointer-events: none;
}

.coming-card .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.coming-card .eyebrow::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #ff2454;
    box-shadow: 0 0 12px rgba(255, 36, 84, 0.7);
    display: inline-block;
}

.badge-outline {
    border: 1px solid rgba(255, 36, 84, 0.5);
    color: #f7f1ea;
    background: rgba(0, 0, 0, 0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
}

.badge-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 36, 84, 0.5);
    background: rgba(0, 0, 0, 0.4);
    color: #f7f1ea;
}

.faq-card {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.faq-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 36, 84, 0.9), transparent 75%);
}

.faq-card h3 {
    font-size: 1.25rem;
}

.faq-card .lead {
    color: rgba(247, 241, 234, 0.85);
}

.faq-nav {
    position: sticky;
    top: 6.5rem;
    border-left: 2px solid rgba(255, 36, 84, 0.6);
    padding-left: 1.5rem;
}

.faq-nav a {
    color: rgba(247, 241, 234, 0.8);
    text-decoration: none;
}

.faq-nav a:hover,
.faq-nav a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.faq-group {
    padding: 1.5rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-group:first-child {
    border-top: none;
}

.faq-list {
    margin-top: 1.5rem;
}

.faq-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.55rem;
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 1.05rem;
    color: rgba(247, 241, 234, 0.9);
    margin-bottom: 0;
}

.proof-card {
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 36, 84, 0.9), transparent 75%);
}

.cta-card {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 36, 84, 0.35);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: -30% -10% auto;
    height: 160%;
    background: radial-gradient(circle at 18% 30%, rgba(255, 36, 84, 0.25), transparent 60%);
    pointer-events: none;
}

.cta-card > * {
    position: relative;
    z-index: 1;
}

.cta-card .form-control {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f7f1ea;
}

.cta-card .form-control::placeholder {
    color: rgba(247, 241, 234, 0.6);
}

.cta-card .form-control:focus {
    border-color: rgba(255, 36, 84, 0.7);
    box-shadow: 0 0 0 0.2rem rgba(255, 36, 84, 0.2);
    color: #f7f1ea;
}

.cta-card .text-body-secondary {
    color: rgba(247, 241, 234, 0.75) !important;
}

.site-footer {
    background: #000000;
    color: #f7f1ea;
    padding: 3.5rem 0 2rem;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 36, 84, 0.9), transparent);
}

.footer-brand {
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #f7f1ea;
    text-decoration: none;
}

.footer-brand:hover,
.footer-brand:focus {
    color: #ffffff;
}

.footer-tagline {
    color: rgba(247, 241, 234, 0.78);
    max-width: 320px;
}

.footer-title {
    color: #f7f1ea;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(247, 241, 234, 0.78);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ff2454;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(247, 241, 234, 0.75);
    font-size: 0.9rem;
}

.footer-note {
    color: rgba(247, 241, 234, 0.65);
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    border-top: 1px solid rgba(255, 36, 84, 0.6);
    color: #f7f1ea;
    padding: 1rem 0;
    z-index: 1050;
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(247, 241, 234, 0.78);
}

.cookie-banner__text a {
    color: #ff2454;
    text-decoration: none;
}

.cookie-banner__text a:hover,
.cookie-banner__text a:focus {
    color: #ff4069;
}

.cookie-banner__button {
    padding: 0.35rem 1.25rem;
    font-size: 0.9rem;
}

.feature-hero .section-title {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
}

.feature-hero .lead {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.feature-pillar-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 36, 84, 0.45);
}

.feature-pillar-card .btn-outline-light.btn-sm {
    font-weight: 700;
    border-width: 2px;
    letter-spacing: 0.01em;
}

.feature-focus {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.feature-focus::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-color, #ff2454);
    border-radius: 1rem 0 0 1rem;
}

.feature-focus__media {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-cta {
    border: 1px solid rgba(255, 36, 84, 0.35);
}

.feature-table {
    margin-bottom: 0;
    border-color: rgba(255, 255, 255, 0.15);
    color: #f7f1ea;
    background-color: transparent;
    --bs-table-bg: transparent;
    --bs-table-color: #f7f1ea;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.35);
    --bs-table-striped-color: #f7f1ea;
    --bs-table-hover-bg: rgba(255, 36, 84, 0.08);
    --bs-table-hover-color: #f7f1ea;
}

.feature-table-wrap {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.feature-table thead th {
    background: rgba(0, 0, 0, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(247, 241, 234, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-table tbody td {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(247, 241, 234, 0.82);
    padding: 1.1rem 1rem;
    vertical-align: top;
    background-color: transparent;
}

.feature-table__title {
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.05rem;
    color: #f7f1ea;
    white-space: nowrap;
}

.feature-table tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.35);
}

.feature-table tbody tr:hover {
    background: rgba(255, 36, 84, 0.08);
}

.barber-page .btn-primary {
    background: #e50914;
    border-color: #e50914;
}

.barber-page {
    background-color: #050505;
    background-image: radial-gradient(circle at 12% 8%, rgba(229, 9, 20, 0.32), transparent 30%),
        radial-gradient(circle at 85% 5%, rgba(229, 9, 20, 0.2), transparent 26%),
        radial-gradient(circle at 50% 92%, rgba(229, 9, 20, 0.3), transparent 35%),
        var(--noise-texture);
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, auto, auto, 160px 160px;
}

.barber-page .btn-primary:hover,
.barber-page .btn-primary:focus {
    background: #f40612;
    border-color: #f40612;
}

.barber-page .badge-outline,
.barber-page .badge-eyebrow {
    border-color: rgba(229, 9, 20, 0.6);
}

.barber-page .proof-card::before {
    background: linear-gradient(180deg, rgba(229, 9, 20, 0.9), transparent 75%);
}

.barber-page .site-footer::before {
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.9), transparent);
}

.barber-page .footer-links a:hover,
.barber-page .footer-links a:focus {
    color: #e50914;
}

.barber-page .cookie-banner {
    border-top-color: rgba(229, 9, 20, 0.6);
}

.barber-page .cookie-banner__text a {
    color: #e50914;
}

.barber-page .cookie-banner__text a:hover,
.barber-page .cookie-banner__text a:focus {
    color: #f40612;
}

.barber-page .feature-strike {
    background: linear-gradient(90deg, transparent, #e50914, transparent);
}

.barber-page .feature-strike::after {
    background: #e50914;
}

@media (min-width: 768px) {
    .cookie-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.segment-section {
    position: relative;
}

.segment-mark {
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff2454);
    margin-left: auto;
}

.segment-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.segment-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 36, 84, 0.5);
    background: rgba(0, 0, 0, 0.55);
    color: #ff2454;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.segment-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.segment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 36, 84, 0.2);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.segment-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 36, 84, 0.5);
}

.segment-card:hover::after {
    opacity: 1;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar .navbar-nav {
        gap: 0.6rem;
        flex-wrap: nowrap;
    }

    .navbar .nav-link {
        font-size: 0.95rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        white-space: nowrap;
    }

    .navbar .btn {
        font-size: 0.95rem;
        padding: 0.4rem 0.9rem;
    }

    .navbar-brand__logo {
        width: 24px;
        height: 24px;
    }

    .nav-theme-toggle {
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 1199.98px) {
    .navbar .navbar-nav {
        gap: 0.5rem;
        padding-top: 0.5rem;
    }

    .navbar .nav-theme-toggle {
        margin: 0.35rem 0;
    }

    .dropdown-menu.mega-menu {
        width: 100%;
        left: 0;
        transform: none;
        position: static;
        margin-top: 0.75rem;
        max-height: 70vh;
        overflow-y: auto;
    }

    .dropdown-menu.mega-menu .row > [class^="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .dropdown-menu.mega-menu .mega-title {
        font-size: 1.25rem;
    }

    .dropdown-menu.mega-menu .mega-link {
        width: 100%;
    }

    .dropdown-menu.mega-menu .col-lg-4 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 1.5rem;
    }

    .serpentine-line {
        display: none;
    }

    .serpentine {
        gap: 1.5rem;
    }

    .serpentine-row {
        padding: 0;
        min-height: auto;
        justify-content: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .serpentine-left,
    .serpentine-right {
        padding: 0;
    }

    .serpentine-node {
        position: static;
        transform: none;
    }

    .serpentine-card {
        max-width: 100%;
        width: 100%;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .segment-mark {
        margin-top: 1rem;
        margin-left: 0;
    }
}

[data-theme="light"] body {
    background-color: #f8f6f4;
    background-image: radial-gradient(circle at 12% 8%, rgba(var(--bs-primary-rgb), 0.1), transparent 32%),
        radial-gradient(circle at 85% 6%, rgba(var(--bs-primary-rgb), 0.06), transparent 30%),
        radial-gradient(circle at 55% 92%, rgba(var(--bs-primary-rgb), 0.08), transparent 36%),
        var(--noise-texture-light);
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, auto, auto, 320px 320px;
    color: var(--bs-body-color);
}

[data-theme="light"] .home-page,
[data-theme="light"] .barber-page {
    background-color: #f8f6f4;
    background-image: radial-gradient(circle at 12% 8%, rgba(var(--bs-primary-rgb), 0.1), transparent 32%),
        radial-gradient(circle at 85% 6%, rgba(var(--bs-primary-rgb), 0.06), transparent 30%),
        radial-gradient(circle at 55% 92%, rgba(var(--bs-primary-rgb), 0.08), transparent 36%),
        var(--noise-texture-light);
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, auto, auto, 320px 320px;
}

[data-theme="light"] .section-alt {
    background: linear-gradient(180deg, #ffffff 0%, #f4f2ef 100%);
}

[data-theme="light"] .site-banner__alert {
    background: #ffffff;
    border-color: rgba(var(--bs-primary-rgb), 0.28);
    color: var(--bs-body-color);
    box-shadow: 0 16px 32px rgba(15, 15, 15, 0.12);
}

[data-theme="light"] .site-banner__link:hover,
[data-theme="light"] .site-banner__link:focus {
    color: var(--bs-body-color);
}

[data-theme="light"] .site-banner__badge {
    background: rgba(var(--bs-primary-rgb), 0.12);
    border-color: rgba(var(--bs-primary-rgb), 0.4);
    color: var(--bs-primary);
}

[data-theme="light"] .site-banner__arrow {
    color: var(--bs-primary);
}

[data-theme="light"] .hero {
    background: linear-gradient(180deg, #ffffff 0%, rgba(var(--bs-primary-rgb), 0.04) 100%);
    border-bottom: 1px solid var(--bs-border-color);
}

[data-theme="light"] .hero-glow {
    display: block;
    position: absolute;
    inset: -60% -20% auto;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, rgba(var(--bs-primary-rgb), 0.18), transparent 65%);
    opacity: 0.8;
    pointer-events: none;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 26px rgba(15, 15, 15, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

[data-theme="light"] .navbar .navbar-brand,
[data-theme="light"] .navbar .nav-link {
    color: var(--bs-body-color);
}

[data-theme="light"] .navbar .navbar-brand:hover,
[data-theme="light"] .navbar .navbar-brand:focus,
[data-theme="light"] .navbar .nav-link:hover,
[data-theme="light"] .navbar .nav-link:focus {
    color: var(--bs-link-color);
}

[data-theme="light"] .nav-theme-toggle {
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

[data-theme="light"] .nav-theme-toggle:hover,
[data-theme="light"] .nav-theme-toggle:focus-visible {
    border-color: var(--bs-primary);
    background: var(--bs-secondary-bg);
    color: var(--bs-body-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.2);
}

[data-theme="light"] .text-primary {
    color: var(--bs-primary) !important;
}

[data-theme="light"] .text-body-secondary,
[data-theme="light"] .hero .text-body-secondary {
    color: var(--bs-secondary-color) !important;
}

[data-theme="light"] .alert-light,
[data-theme="light"] .hero .alert-light {
    background: var(--bs-light-bg-subtle);
    color: var(--bs-body-color);
    border-color: var(--bs-border-color);
}

[data-theme="light"] .btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

[data-theme="light"] .btn-primary:hover,
[data-theme="light"] .btn-primary:focus {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    filter: brightness(0.95);
}

[data-theme="light"] .btn-outline-light {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

[data-theme="light"] .btn-outline-light:hover,
[data-theme="light"] .btn-outline-light:focus {
    background: var(--bs-primary);
    color: var(--bs-white);
}

[data-theme="light"] .dropdown-menu.mega-menu {
    background: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
    box-shadow: var(--bs-box-shadow);
}

[data-theme="light"] .dropdown-menu.nav-dropdown {
    background: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
    box-shadow: var(--bs-box-shadow);
}

[data-theme="light"] .dropdown-menu.nav-dropdown .dropdown-item {
    color: var(--bs-body-color);
}

[data-theme="light"] .dropdown-menu.nav-dropdown .dropdown-item:hover,
[data-theme="light"] .dropdown-menu.nav-dropdown .dropdown-item:focus {
    background: rgba(13, 110, 253, 0.08);
    color: var(--bs-body-color);
}

[data-theme="light"] .mega-title {
    color: var(--bs-body-color);
}

[data-theme="light"] .mega-summary {
    color: var(--bs-secondary-color);
}

[data-theme="light"] .dropdown-menu.mega-menu .text-primary {
    color: var(--bs-primary) !important;
}

[data-theme="light"] .dropdown-menu.mega-menu .dropdown-item {
    color: var(--bs-body-color);
}

[data-theme="light"] .dropdown-menu.mega-menu .dropdown-item:hover,
[data-theme="light"] .dropdown-menu.mega-menu .dropdown-item:focus {
    background: var(--bs-secondary-bg);
    color: var(--bs-body-color);
}

[data-theme="light"] .dropdown-menu.mega-menu .btn-outline-light {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

[data-theme="light"] .dropdown-menu.mega-menu .btn-outline-light:hover,
[data-theme="light"] .dropdown-menu.mega-menu .btn-outline-light:focus {
    background: var(--bs-primary);
    color: var(--bs-white);
}

[data-theme="light"] .card,
[data-theme="light"] .card-solid,
[data-theme="light"] .card-accent,
[data-theme="light"] .faq-card,
[data-theme="light"] .cta-card,
[data-theme="light"] .resource-post__media,
[data-theme="light"] .resource-hero__media,
[data-theme="light"] .article-toc,
[data-theme="light"] .article-callout,
[data-theme="light"] .feature-pillar-card,
[data-theme="light"] .feature-focus,
[data-theme="light"] .feature-table-wrap,
[data-theme="light"] .feature-carousel .carousel-inner,
[data-theme="light"] .who-for-panel,
[data-theme="light"] .segment-card,
[data-theme="light"] .serpentine-card {
    background: #ffffff;
    border-color: rgba(15, 15, 15, 0.08);
    color: var(--bs-body-color);
    box-shadow: 0 18px 40px rgba(15, 15, 15, 0.08);
}

[data-theme="light"] .card-solid {
    background: linear-gradient(180deg, #ffffff 0%, #f6f3f0 100%);
}

[data-theme="light"] .card-accent,
[data-theme="light"] .cta-card,
[data-theme="light"] .about-card,
[data-theme="light"] .coming-card,
[data-theme="light"] .who-for-panel {
    background: linear-gradient(135deg, #ffffff 0%, rgba(var(--bs-primary-rgb), 0.06) 100%);
    border-color: rgba(var(--bs-primary-rgb), 0.18);
    box-shadow: 0 20px 45px rgba(15, 15, 15, 0.1), 0 0 0 1px rgba(var(--bs-primary-rgb), 0.08);
}

[data-theme="light"] .card .text-body-secondary,
[data-theme="light"] .cta-card .text-body-secondary {
    color: var(--bs-secondary-color) !important;
}

[data-theme="light"] .resource-meta,
[data-theme="light"] .resource-post__meta,
[data-theme="light"] .resource-post__desc,
[data-theme="light"] .article-content p,
[data-theme="light"] .faq-card .lead,
[data-theme="light"] .faq-answer,
[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-bottom,
[data-theme="light"] .footer-note,
[data-theme="light"] .cookie-banner__text {
    color: var(--bs-secondary-color);
}

[data-theme="light"] .resource-post__title a,
[data-theme="light"] .resource-featured h2 a {
    color: var(--bs-body-color);
}

[data-theme="light"] .resource-post__title a:hover,
[data-theme="light"] .resource-post__title a:focus,
[data-theme="light"] .resource-featured h2 a:hover,
[data-theme="light"] .resource-featured h2 a:focus {
    color: var(--bs-link-color);
}

[data-theme="light"] .resource-post__link,
[data-theme="light"] .article-content a,
[data-theme="light"] .faq-nav a {
    color: var(--bs-link-color);
}

[data-theme="light"] .resource-post__link:hover,
[data-theme="light"] .resource-post__link:focus,
[data-theme="light"] .article-content a:hover,
[data-theme="light"] .article-content a:focus,
[data-theme="light"] .faq-nav a:hover,
[data-theme="light"] .faq-nav a:focus {
    color: var(--bs-link-hover-color);
}

[data-theme="light"] .resource-post {
    border-bottom-color: var(--bs-border-color);
}

[data-theme="light"] .resource-index .pagination {
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-hover-bg: rgba(13, 110, 253, 0.08);
    --bs-pagination-hover-border-color: rgba(13, 110, 253, 0.25);
    --bs-pagination-active-bg: var(--bs-primary);
    --bs-pagination-active-border-color: var(--bs-primary);
    --bs-pagination-disabled-bg: rgba(0, 0, 0, 0.04);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
}

[data-theme="light"] .resource-index .page-link {
    color: var(--bs-body-color);
}

[data-theme="light"] .resource-index .page-item.disabled .page-link {
    color: rgba(33, 37, 41, 0.45);
}

[data-theme="light"] .resource-cta-logo {
    border-color: var(--bs-border-color);
    background: var(--bs-secondary-bg);
}

[data-theme="light"] .resource-meta span,
[data-theme="light"] .badge-outline,
[data-theme="light"] .badge-eyebrow,
[data-theme="light"] .who-chip {
    border-color: var(--bs-primary-border-subtle);
    background: var(--bs-secondary-bg);
    color: var(--bs-body-color);
}

[data-theme="light"] .badge-alert {
    background: var(--bs-warning-bg-subtle);
    border-color: var(--bs-warning-border-subtle);
    color: var(--bs-warning-text-emphasis);
}

[data-theme="light"] .module-icon,
[data-theme="light"] .step-circle,
[data-theme="light"] .serpentine-node,
[data-theme="light"] .segment-icon {
    border-color: var(--bs-primary-border-subtle);
    background: var(--bs-secondary-bg);
    color: var(--bs-primary);
}

[data-theme="light"] .feature-strike,
[data-theme="light"] .about-strike,
[data-theme="light"] .who-strike,
[data-theme="light"] .segment-mark {
    background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
}

[data-theme="light"] .feature-strike::after {
    background: var(--bs-primary);
}

[data-theme="light"] .resource-table,
[data-theme="light"] .feature-table {
    color: var(--bs-body-color);
    border-color: var(--bs-border-color);
    --bs-table-color: var(--bs-body-color);
    --bs-table-striped-bg: var(--bs-secondary-bg);
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-hover-bg: var(--bs-secondary-bg);
    --bs-table-hover-color: var(--bs-body-color);
}

[data-theme="light"] .feature-table thead th {
    background: var(--bs-secondary-bg);
    border-bottom-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

[data-theme="light"] .feature-table tbody td {
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

[data-theme="light"] .feature-table__title {
    color: var(--bs-body-color);
}

[data-theme="light"] .feature-carousel .carousel-control-prev-icon,
[data-theme="light"] .feature-carousel .carousel-control-next-icon {
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    box-shadow: var(--bs-box-shadow-sm);
}

[data-theme="light"] .faq-nav {
    border-left-color: var(--bs-border-color);
}

[data-theme="light"] .faq-group {
    border-top-color: var(--bs-border-color);
}

[data-theme="light"] .faq-item {
    border-bottom-color: var(--bs-border-color);
}

[data-theme="light"] .about-section .lead {
    color: var(--bs-secondary-color);
}

[data-theme="light"] .article-toc a {
    color: var(--bs-body-color);
}

[data-theme="light"] .article-toc a:hover,
[data-theme="light"] .article-toc a:focus {
    color: var(--bs-link-color);
}

[data-theme="light"] .article-callout {
    border-left-color: var(--bs-primary);
}

[data-theme="light"] .proof-card::before {
    background: linear-gradient(180deg, var(--bs-primary), transparent 75%);
}

[data-theme="light"] .lightbox-modal .modal-content {
    background: var(--bs-body-bg);
    border-color: var(--bs-border-color);
}

[data-theme="light"] .lightbox-modal .btn-close {
    filter: none;
}

[data-theme="light"] .cta-card::before,
[data-theme="light"] .about-card::before,
[data-theme="light"] .coming-card::before,
[data-theme="light"] .coming-card::after,
[data-theme="light"] .who-for-panel::before {
    display: block;
}

[data-theme="light"] .cta-card::before {
    background: radial-gradient(circle at 18% 30%, rgba(var(--bs-primary-rgb), 0.16), transparent 65%);
}

[data-theme="light"] .about-card::before,
[data-theme="light"] .coming-card::before,
[data-theme="light"] .who-for-panel::before {
    background: radial-gradient(circle at 20% 35%, rgba(var(--bs-primary-rgb), 0.14), transparent 60%);
}

[data-theme="light"] .coming-card::after {
    background: linear-gradient(180deg, transparent, rgba(var(--bs-primary-rgb), 0.08));
}

[data-theme="light"] .site-footer {
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
}

[data-theme="light"] .site-footer::before {
    background: var(--bs-border-color);
}

[data-theme="light"] .footer-brand {
    color: var(--bs-body-color);
}

[data-theme="light"] .footer-links a {
    color: var(--bs-body-color);
}

[data-theme="light"] .footer-title {
    color: var(--bs-body-color);
}

[data-theme="light"] .footer-links a:hover,
[data-theme="light"] .footer-links a:focus {
    color: var(--bs-link-color);
}

[data-theme="light"] .cookie-banner {
    background: var(--bs-body-bg);
    border-top-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

[data-theme="light"] .cookie-banner__text a {
    color: var(--bs-link-color);
}

[data-theme="light"] .cookie-banner__text a:hover,
[data-theme="light"] .cookie-banner__text a:focus {
    color: var(--bs-link-hover-color);
}

.lp-body .hero {
    padding-top: 2.5rem;
}

.lp-nav {
    background: rgba(7, 8, 14, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-trust-row .badge-outline {
    border-color: rgba(255, 36, 84, 0.7);
}

.lp-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.lp-hero-media {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}

.lp-hero-media .carousel-item {
    aspect-ratio: 16 / 9;
    background: #050505;
}

.lp-hero-media .carousel-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.lp-compare-table th,
.lp-compare-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    padding: 0.75rem 1rem 1rem;
    background: rgba(7, 8, 14, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -12px 24px rgba(0, 0, 0, 0.4);
}

.lp-sticky-cta .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .lp-body {
        padding-bottom: 5rem;
    }
}
