
        /* #region Preloader */
        .lp-preloader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: #081628;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .lp-preloader.is-done {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .lp-preloader__content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .lp-preloader__logo {
            height: 3.5rem;
            width: auto;
            animation: preloaderPulse 1.8s ease-in-out infinite;
        }

        .lp-preloader__bar {
            width: 10rem;
            height: 0.1875rem;
            background: rgba(255,255,255,0.1);
            border-radius: 0.25rem;
            overflow: hidden;
        }

        .lp-preloader__bar-fill {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #3aaee3, #2196cc);
            border-radius: 0.25rem;
            transition: width 0.3s ease;
        }

        @keyframes preloaderPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        /* #endregion */

        /* #region Scroll Reveal Animations */
        .lp-reveal {
            opacity: 0;
            transform: translateY(1.75rem);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .lp-reveal--left {
            transform: translateX(-1.5rem);
        }

        .lp-reveal--scale {
            transform: scale(0.95);
        }

        .lp-reveal.is-visible {
            opacity: 1;
            transform: translateY(0) translateX(0) scale(1);
        }

        .lp-hero-reveal {
            opacity: 0;
            transform: translateY(1.5rem);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .lp-hero-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .lp-reveal,
            .lp-hero-reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }
        /* #endregion */

        /* #region Financial Post Article Modal */
        .fp-article-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            z-index: 3500;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }

        .fp-article-modal.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .fp-article-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(4, 16, 34, 0.82);
            backdrop-filter: blur(0.375rem);
            -webkit-backdrop-filter: blur(0.375rem);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .fp-article-modal.is-visible .fp-article-modal__backdrop {
            opacity: 1;
        }

        .fp-article-modal__dialog {
            position: relative;
            background: #0d1f3c;
            border: 0.0625rem solid rgba(58, 174, 227, 0.2);
            border-radius: 1.25rem;
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.6), 0 0 0 0.0625rem rgba(58, 174, 227, 0.1);
            max-width: 28rem;
            width: 100%;
            overflow: hidden;
            transform: scale(0.94) translateY(1.25rem);
            opacity: 0;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
        }

        .fp-article-modal.is-visible .fp-article-modal__dialog {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .fp-article-modal__close {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            z-index: 2;
            background: rgba(0, 0, 0, 0.45);
            border: 0.0625rem solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.25rem;
            line-height: 1;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .fp-article-modal__close:hover {
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
        }

        .fp-article-modal__media {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #081628;
        }

        .fp-article-modal__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .fp-article-modal__body {
            padding: 2rem 2.25rem 2.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .fp-article-modal__body h3 {
            font-size: 1.0625rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            letter-spacing: -0.01em;
            margin: 0;
        }

        .fp-article-modal__body p {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin: 0;
        }

        .fp-article-modal__cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #3aaee3, #2196cc);
            color: #fff;
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 0.25rem 1rem rgba(33, 150, 204, 0.35);
            margin-top: 0.25rem;
            align-self: flex-start;
        }

        .fp-article-modal__cta:hover {
            filter: brightness(1.1);
            transform: translateY(-0.125rem);
            box-shadow: 0 0.5rem 1.5rem rgba(33, 150, 204, 0.45);
        }

        .fp-article-modal__cta svg {
            flex-shrink: 0;
        }

        @media (max-width: 37.5rem) {
            .fp-article-modal {
                padding: 1rem;
            }

            .fp-article-modal__dialog {
                max-width: 100%;
            }

            .fp-article-modal__cta {
                align-self: stretch;
                justify-content: center;
            }
        }
        /* #endregion */

        /* #region Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            height: 100%;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            min-height: 100dvh;
            overflow-y: auto;
            background: #081628;
            color: #fff;
        }

        body.has-modal,
        body.lp-loading {
            overflow: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        /* #endregion */

        /* #region Layout */
        .page {
            display: flex;
            flex-direction: column;
            min-height: 100dvh;
        }

        .inner {
            width: 100%;
            max-width: 87.5rem;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        /* #endregion */

        /* #region Subheader */
        .subheader {
            background: #0a1a2e;
            border-bottom: 0.0625rem solid rgba(255,255,255,0.07);
            flex-shrink: 0;
        }

        .subheader .inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            gap: 1rem;
            flex-wrap: wrap;
        }

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

        .subheader__stocks-icon {
            display: flex;
            align-items: center;
            color: #3aaee3;
        }

        .subheader__stocks-icon svg {
            width: 1rem;
            height: 1rem;
        }

        .subheader__symbol {
            font-size: 0.75rem;
            font-weight: 700;
            color: rgba(255,255,255,0.55);
            letter-spacing: 0.04em;
        }

        .subheader__symbol b {
            color: #fff;
        }

        .subheader__divider {
            width: 0.0625rem;
            height: 0.75rem;
            background: rgba(255,255,255,0.2);
        }

        .subheader__contact {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .subheader__contact-label {
            font-size: 0.625rem;
            font-weight: 800;
            color: rgba(255,255,255,0.55);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            white-space: nowrap;
            padding-right: 0.25rem;
        }

        .subheader__contact-link {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.75rem;
            font-weight: 700;
            color: #fff;
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        .subheader__contact-link:hover {
            color: #3aaee3;
        }

        .subheader__contact-link svg {
            width: 0.875rem;
            height: 0.875rem;
            color: #3aaee3;
            flex-shrink: 0;
        }

        @media (max-width: 47.9375rem) {
            .subheader__contact {
                gap: 0.375rem;
            }

            .subheader__symbol {
                font-size: 0.6875rem;
            }

            .subheader__contact-link {
                font-size: 0.6875rem;
            }
        }

        @media (max-width: 26.875rem) {
            .subheader .inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
                padding-top: 0.25rem;
                padding-bottom: 0.25rem;
            }

            .subheader__stocks {
                gap: 0.375rem;
            }

            .subheader__stocks-icon svg {
                width: 0.75rem;
                height: 0.75rem;
            }

            .subheader__symbol {
                font-size: 0.625rem;
            }

            .subheader__divider {
                height: 0.625rem;
            }

            .subheader__contact {
                gap: 0.625rem;
            }

            .subheader__contact-link {
                font-size: 0.625rem;
            }

            .subheader__contact-label {
                display: none;
            }
        }
        /* #endregion */

        /* #region Main Header */
        .main-header {
            background: rgba(13,31,60,0.92);
            backdrop-filter: blur(0.75rem);
            -webkit-backdrop-filter: blur(0.75rem);
            border-bottom: 0.0625rem solid rgba(255,255,255,0.06);
            flex-shrink: 0;
        }

        .main-header .inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
            gap: 1rem;
        }

        .header-logo {
            display: flex;
            align-items: center;
        }

        .header-logo__img {
            height: 3.75rem;
            width: auto;
            display: block;
        }

        @media (max-width: 63.9375rem) {
            .header-logo__img {
                height: 3rem;
            }
        }

        @media (max-width: 26.875rem) {
            .header-logo__img {
                height: 2.25rem;
            }
        }

        /* #region Header Nav */
        .header-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .header-nav__link {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.5rem 1rem;
            color: #fff;
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            border-radius: 2rem;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
        }

        .header-nav__link:hover {
            color: #fff;
            background: rgba(255,255,255,0.08);
        }

        .header-nav__link--news .header-nav__dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background: #c53030;
            flex-shrink: 0;
            animation: newsDotPulse 2s ease-in-out infinite;
        }

        @keyframes newsDotPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }

        .header-menu-btn {
            display: none;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: 0.0625rem solid rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.8);
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .header-menu-btn:hover {
            background: rgba(255,255,255,0.14);
        }

        .header-menu-btn svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .header-nav-mobile {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(8,22,40,0.97);
            backdrop-filter: blur(1.5rem);
            -webkit-backdrop-filter: blur(1.5rem);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .header-nav-mobile.is-open {
            opacity: 1;
            visibility: visible;
        }

        .header-nav-mobile__inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .header-nav-mobile__link {
            display: block;
            padding: 1rem 2rem;
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            opacity: 0;
            transform: translateY(1.5rem);
            transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                        color 0.2s ease;
        }

        .header-nav-mobile.is-open .header-nav-mobile__link {
            opacity: 1;
            transform: translateY(0);
        }

        .header-nav-mobile.is-open .header-nav-mobile__link:nth-child(1) { transition-delay: 0.1s; }
        .header-nav-mobile.is-open .header-nav-mobile__link:nth-child(2) { transition-delay: 0.18s; }
        .header-nav-mobile.is-open .header-nav-mobile__link:nth-child(3) { transition-delay: 0.26s; }
        .header-nav-mobile.is-open .header-nav-mobile__link:nth-child(4) { transition-delay: 0.34s; }

        .header-nav-mobile__link:hover {
            color: #3aaee3;
        }

        body.mobile-nav-open .sticky-header {
            visibility: hidden;
            pointer-events: none;
        }

        .header-nav-mobile__close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            background: rgba(255,255,255,0.08);
            border: 0.0625rem solid rgba(255,255,255,0.15);
            border-radius: 50%;
            width: 2.75rem;
            height: 2.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            cursor: pointer;
            transition: background 0.2s ease;
            z-index: 1;
        }

        .header-nav-mobile__close:hover {
            background: rgba(255,255,255,0.15);
        }

        @media (max-width: 56.25rem) {
            .header-nav {
                display: none;
            }

            .header-menu-btn {
                display: flex;
            }
        }
        /* #endregion */

        /* #region Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Shared pill button base */
        .header-news-btn,
        .header-join-btn {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 0.25rem;
            padding-right: 1.25rem;
            background: #fff;
            border-radius: 3rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
            text-decoration: none;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .header-news-btn:hover,
        .header-join-btn:hover {
            transform: translateY(-0.125rem);
            box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.3);
        }

        .header-news-btn__icon,
        .header-join-btn__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            color: #fff;
            margin-right: 0.5rem;
            flex-shrink: 0;
        }

        .header-news-btn__icon svg,
        .header-join-btn__icon svg {
            width: 1rem;
            height: 1rem;
        }

        /* News btn — red */
        .header-news-btn { color: #c53030; }
        .header-news-btn:focus { outline: none; box-shadow: 0 0 0 0.25rem rgba(197,48,48,0.4); }
        .header-news-btn__icon { background: #c53030; }

        .header-news-btn__echo {
            position: absolute;
            inset: 0;
            border-radius: 3rem;
            pointer-events: none;
        }

        .header-news-btn__echo::before,
        .header-news-btn__echo::after,
        .header-news-btn__echo span {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 3rem;
            border: 0.125rem solid #c53030;
            opacity: 0;
        }

        .header-news-btn__echo::before { animation: header-news-echo 4s ease-out 2s infinite; }
        .header-news-btn__echo::after  { animation: header-news-echo 4s ease-out 2.2s infinite; }
        .header-news-btn__echo span    { animation: header-news-echo 4s ease-out 2.4s infinite; }

        @keyframes header-news-echo {
            0%      { transform: scale(1); opacity: 0.6; }
            15%     { transform: scale(1.25); opacity: 0; }
            15.01%, 100% { transform: scale(1); opacity: 0; }
        }

        /* Join btn — blue */
        .header-join-btn { color: #1278b0; }
        .header-join-btn:focus { outline: none; box-shadow: 0 0 0 0.25rem rgba(18,120,176,0.4); }
        .header-join-btn__icon { background: #1278b0; }

        .header-join-btn__echo {
            position: absolute;
            inset: 0;
            border-radius: 3rem;
            pointer-events: none;
        }

        .header-join-btn__echo::before,
        .header-join-btn__echo::after,
        .header-join-btn__echo span {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 3rem;
            border: 0.125rem solid #1278b0;
            opacity: 0;
        }

        .header-join-btn__echo::before { animation: header-echo 4s ease-out infinite; }
        .header-join-btn__echo::after  { animation: header-echo 4s ease-out 0.2s infinite; }
        .header-join-btn__echo span    { animation: header-echo 4s ease-out 0.4s infinite; }

        @media (max-width: 40.625rem) {
            .header-news-btn,
            .header-join-btn {
                padding: 0.25rem;
                border-radius: 50%;
                width: 2.5rem;
                height: 2.5rem;
                justify-content: center;
            }

            .header-news-btn span.header-news-btn__text,
            .header-join-btn span.header-join-btn__text {
                display: none;
            }

            .header-news-btn__icon,
            .header-join-btn__icon {
                margin-right: 0;
            }
        }
        /* #endregion */

        /* #region Sticky Header Group */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 110;
        }
        /* #endregion */

        /* #region Hero */
        .hero {
            flex: 1;
            min-height: 0;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #0d1f3c;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('hero_bg3.jpg') center / cover no-repeat;
            opacity: 0.28;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(155deg, rgba(8,22,40,0.55) 0%, transparent 60%),
                radial-gradient(ellipse 80% 60% at 65% 50%, rgba(18,120,176,0.14) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero .inner {
            position: relative;
            z-index: 1;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .hero__content {
            flex: 1;
            min-width: 0;
        }

        .hero__image-col {
            flex-shrink: 0;
            width: 42%;
            max-width: 36rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero__image-col img {
            width: 100%;
            height: auto;
            border-radius: 1.25rem;
            box-shadow: 0 1rem 3rem rgba(0,0,0,0.5);
            display: block;
        }

        /* #region Site Footer */
        .site-footer {
            display: block;
            background: #0a1a2e;
            border-top: 0.0625rem solid rgba(255,255,255,0.07);
            flex-shrink: 0;
        }

        .site-footer__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
        }

        .site-footer__left {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .site-footer__logo {
            height: 1.75rem;
            width: auto;
            display: block;
            opacity: 0.85;
        }

        .site-footer__tickers {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.6875rem;
            font-weight: 700;
            color: rgba(255,255,255,0.45);
        }

        .site-footer__tickers b { color: rgba(255,255,255,0.75); }
        .site-footer__tickers .divider { width: 0.0625rem; height: 0.75rem; background: rgba(255,255,255,0.2); }

        .site-footer__right {
            font-size: 0.6875rem;
            color: rgba(255,255,255,0.35);
            font-weight: 600;
        }

        .site-footer__link {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .site-footer__link:hover {
            color: rgba(255,255,255,0.75);
        }

        @media (max-width: 37.5rem) {
            .site-footer__inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
        }
        /* #endregion */

        @media (max-width: 56.25rem) {
            .hero {
                flex: none;
                overflow: visible;
            }

            .hero .inner {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
            }

            .hero__image-col {
                display: block;
                width: 100%;
                max-width: 37.5rem;
                margin: 0 auto;
                order: -1;
            }

            .hero__image-col img {
                border-radius: 0.75rem;
                box-shadow: none;
                width: 100%;
                height: auto;
                display: block;
            }

            .hero__content {
                padding-top: 1.5rem;
                padding-bottom: 2rem;
            }
        }

        /* #region Animations */
        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(1.25rem); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeSlideDown {
            from { opacity: 0; transform: translateY(-0.75rem); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeSlideLeft {
            from { opacity: 0; transform: translateX(-1rem); }
            to   { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeSlideRight {
            from { opacity: 0; transform: translateX(1rem); }
            to   { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeScaleIn {
            from { opacity: 0; transform: scale(0.96); }
            to   { opacity: 1; transform: scale(1); }
        }

        /* Base: elements start invisible */
        .anim {
            opacity: 0;
            animation-fill-mode: forwards;
            animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
            animation-duration: 0.65s;
        }

        .anim--fade-down  { animation-name: fadeSlideDown; }
        .anim--fade-up    { animation-name: fadeSlideUp; }
        .anim--fade-left  { animation-name: fadeSlideLeft; }
        .anim--fade-right { animation-name: fadeSlideRight; }
        .anim--scale      { animation-name: fadeScaleIn; }

        .anim--d0   { animation-delay: 0s; }
        .anim--d1   { animation-delay: 0.1s; }
        .anim--d2   { animation-delay: 0.2s; }
        .anim--d3   { animation-delay: 0.3s; }
        .anim--d4   { animation-delay: 0.45s; }
        .anim--d5   { animation-delay: 0.6s; }
        .anim--d6   { animation-delay: 0.75s; }
        .anim--d7   { animation-delay: 0.95s; }
        .anim--d8   { animation-delay: 1.15s; }

        @media (prefers-reduced-motion: reduce) {
            .anim {
                animation: none;
                opacity: 1;
            }
        }
        /* #endregion */

        .hero__construction {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(245,158,11,0.15);
            border: 0.0625rem solid rgba(245,158,11,0.4);
            color: #fbbf24;
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.375rem 0.75rem;
            border-radius: 2rem;
            margin-bottom: 1.25rem;
        }

        .hero__construction svg {
            width: 0.875rem;
            height: 0.875rem;
        }

        .hero__heading {
            font-size: clamp(1.75rem, 4.5vw, 3.25rem);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            max-width: 50rem;
        }

        .hero__heading .accent {
            color: #3aaee3;
        }

        .hero__body {
            font-size: clamp(0.8125rem, 1.3vw, 1rem);
            font-weight: 400;
            line-height: 1.65;
            color: rgba(255,255,255,0.82);
            max-width: 36rem;
            margin-bottom: 2rem;
        }

        .hero__body p {
            margin-bottom: 0.625rem;
        }

        .hero__body p:last-child {
            margin-bottom: 0;
        }

        .hero__body b {
            color: #fff;
            font-weight: 700;
        }

        .hero__buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #3aaee3, #2196cc);
            color: #fff;
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0.875rem 1.75rem;
            border-radius: 2rem;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
            box-shadow: 0 0.25rem 1.25rem rgba(33,150,204,0.35);
        }

        .btn-primary:hover {
            transform: translateY(-0.125rem);
            filter: brightness(1.08);
            box-shadow: 0 0.5rem 1.75rem rgba(33,150,204,0.45);
        }

        .btn-primary svg {
            width: 1rem;
            height: 1rem;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: #fff;
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0.875rem 1.75rem;
            border-radius: 2rem;
            border: 0.125rem solid rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.8);
            transform: translateY(-0.125rem);
        }

        .btn-outline svg {
            width: 1rem;
            height: 1rem;
        }

        @media (max-width: 26.875rem) {
            .hero__buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary,
            .btn-outline {
                justify-content: center;
            }
        }

        @media (max-width: 30rem) {
            .hero .inner {
                padding-top: 0;
                padding-bottom: 0;
            }

            .hero__content {
                padding-top: 1rem;
                padding-bottom: 1.5rem;
            }

            .hero__construction {
                margin-bottom: 0.75rem;
                font-size: 0.625rem;
                padding: 0.25rem 0.625rem;
            }

            .hero__heading {
                font-size: clamp(1.5rem, 7vw, 2rem);
                margin-bottom: 0.625rem;
            }

            .hero__body {
                font-size: 0.75rem;
                line-height: 1.55;
                margin-bottom: 1rem;
            }

            .hero__body p:last-child {
                display: none;
            }

            .hero__buttons {
                gap: 0.5rem;
            }

            .btn-primary,
            .btn-outline {
                padding: 0.75rem 1.5rem;
                font-size: 0.75rem;
            }
        }
        /* #endregion */

        /* #region Subscribe Modal */
        .subscribe-form-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            z-index: 4000;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .subscribe-form-modal.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .subscribe-form-modal__backdrop {
            position: absolute;
            inset: 0;
            background-color: rgba(2,48,71,0.8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .subscribe-form-modal.is-visible .subscribe-form-modal__backdrop {
            opacity: 1;
        }

        .subscribe-form-modal__dialog {
            position: relative;
            background-color: #fff;
            color: #111;
            padding: 2rem;
            border-radius: 1.25rem;
            box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.24);
            max-width: 32rem;
            width: 100%;
            transform: scale(0.96) translateY(1rem);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            max-height: calc(100dvh - 3rem);
            overflow-y: auto;
        }

        .subscribe-form-modal.is-visible .subscribe-form-modal__dialog {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

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

        .subscribe-form-modal__logo {
            max-width: 10rem;
            height: auto;
            margin-bottom: 0.25rem;
        }

        .subscribe-form-modal__body h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111;
            margin: 0;
        }

        .subscribe-form-modal__intro {
            font-size: 1rem;
            color: #3c3c3c;
            margin: 0;
        }

        .subscribe-form-modal__close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: 0;
            color: #666;
            font-size: 1.75rem;
            line-height: 1;
            cursor: pointer;
            padding: 0.25rem;
            transition: color 0.2s ease;
        }

        .subscribe-form-modal__close:hover {
            color: #111;
        }

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

        .subscribe-form-modal__field {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .subscribe-form-modal__label {
            font-size: 0.875rem;
            font-weight: 600;
            color: #1f1f1f;
        }

        .field-note {
            font-size: 0.75rem;
            text-transform: uppercase;
            margin-left: 0.25rem;
        }

        .field-note--required { color: #a83232; }
        .field-note--optional { color: #1f7a50; }

        .subscribe-form-modal__input {
            width: 100%;
            background-color: #f2f6fa;
            border: 0.125rem solid rgba(17,17,17,0.12);
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .subscribe-form-modal__input[type="email"] {
            background-color: #fff8e6;
            border-color: rgba(180,140,50,0.25);
        }

        .subscribe-form-modal__input:focus {
            outline: none;
            border-color: #1a88c2;
            box-shadow: 0 0 0 0.25rem rgba(26,136,194,0.2);
            background-color: #fff;
        }

        .subscribe-form-modal__input[type="email"]:focus {
            background-color: #fffdf5;
        }

        .subscribe-form-modal__consent {
            margin-top: 0.5rem;
        }

        .subscribe-form-modal__checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.75rem;
            line-height: 1.5;
            color: #3c3c3c;
            cursor: pointer;
        }

        .subscribe-form-modal__checkbox input {
            width: 1.25rem;
            height: 1.25rem;
            border: 0.125rem solid rgba(17,17,17,0.3);
            border-radius: 0.25rem;
            background-color: #fff;
            accent-color: #1a88c2;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .subscribe-form-modal__checkbox input:focus {
            outline: none;
            box-shadow: 0 0 0 0.25rem rgba(26,136,194,0.25);
            border-color: #1a88c2;
        }

        .consent-disclaimer {
            display: block;
            font-size: 0.75rem;
            line-height: 1.25;
            color: #1f1f1f;
        }

        .subscribe-form-modal__submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #3aaee3, #2196cc);
            color: #fff;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 700;
            padding: 0.875rem 2rem;
            border-radius: 2rem;
            border: none;
            cursor: pointer;
            margin-top: 0.5rem;
            transition: filter 0.2s ease;
            width: 100%;
        }

        .subscribe-form-modal__submit:hover {
            filter: brightness(1.08);
        }

        .subscribe-form-modal__checkbox.needcheck input {
            border-color: #a83232;
            animation: needcheck 1s ease-in-out infinite;
        }

        .subscribe-form-modal__checkbox.needcheck {
            color: #a83232;
        }

        @keyframes needcheck {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @media (max-width: 37.5rem) {
            .subscribe-form-modal {
                padding: 1rem;
            }

            .subscribe-form-modal__dialog {
                padding: 1.5rem;
            }

            .subscribe-form-modal__body h3 {
                font-size: 1.25rem;
                padding-right: 1.5rem;
            }
        }
        /* #endregion */

        /* #region SUBSCRIBE SUCCESS MODAL */
        .sub-success-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            z-index: 4100;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .sub-success-modal.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .sub-success-modal__backdrop {
            position: absolute;
            inset: 0;
            background-color: rgba(2,48,71,0.8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sub-success-modal.is-visible .sub-success-modal__backdrop {
            opacity: 1;
        }

        .sub-success-modal__dialog {
            position: relative;
            background-color: #fff;
            color: #111;
            padding: 2.5rem 2rem;
            border-radius: 1.25rem;
            box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.24);
            max-width: 26rem;
            width: 100%;
            transform: scale(0.96) translateY(1rem);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            text-align: center;
        }

        .sub-success-modal.is-visible .sub-success-modal__dialog {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .sub-success-modal__close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: 0;
            color: #666;
            font-size: 1.75rem;
            line-height: 1;
            cursor: pointer;
            padding: 0.25rem;
            transition: color 0.2s ease;
        }

        .sub-success-modal__close:hover { color: #111; }

        .sub-success-modal__icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a7a46, #27c069);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            color: #fff;
            font-size: 1.75rem;
            font-weight: 700;
            line-height: 1;
        }

        .sub-success-modal__dialog h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111;
            margin: 0 0 0.75rem;
        }

        .sub-success-modal__dialog p {
            font-size: 1rem;
            color: #3c3c3c;
            margin: 0 0 1.5rem;
            line-height: 1.55;
        }

        .sub-success-modal__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #3aaee3, #2196cc);
            color: #fff;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 700;
            padding: 0.75rem 2.5rem;
            border-radius: 2rem;
            border: none;
            cursor: pointer;
            transition: filter 0.2s ease;
        }

        .sub-success-modal__btn:hover { filter: brightness(1.08); }

        .subscribe-form-modal__error {
            display: none;
            font-size: 0.875rem;
            color: #a83232;
            background: #fdf2f2;
            border: 0.0625rem solid rgba(168,50,50,0.25);
            border-radius: 0.5rem;
            padding: 0.625rem 0.875rem;
        }
        /* #endregion */

        /* #region LANDING PAGE - Hero */
        .lp-above-fold {
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 64.0625rem) {
            .lp-above-fold {
                min-height: calc(100dvh - var(--header-h, 6.5rem));
            }
        }

        .lp-hero {
            position: relative;
            background: #0d1f3c;
            overflow: hidden;
            padding: 6rem 0 5rem;
            display: flex;
            align-items: center;
            flex: 1;
        }

        .lp-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('hero_bg3.jpg') center / cover no-repeat;
            opacity: 0.28;
            pointer-events: none;
        }

        .lp-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(160deg, rgba(8,22,40,0.6) 0%, transparent 50%),
                radial-gradient(ellipse 70% 50% at 70% 40%, rgba(58,174,227,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

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

        .lp-hero__split {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .lp-hero__content {
            flex: 1 1 50%;
            min-width: 0;
        }

        .lp-hero__media {
            flex: 1 1 50%;
            min-width: 0;
        }

        .lp-hero__media img {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            box-shadow: 0 1rem 3rem rgba(0,0,0,0.4);
        }

        @media (max-width: 64rem) {
            .lp-hero__split {
                flex-direction: column;
            }

            .lp-hero__media {
                flex: none;
                width: 100%;
                max-width: 28rem;
                order: -1;
            }
        }

        .lp-hero__heading {
            font-size: clamp(2rem, 4.5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #fff;
            margin-bottom: 1.75rem;
        }

        .lp-hero__heading .accent,
        .lp-hero__subhead .accent {
            color: #3aaee3;
        }

        h3.lp-hero__subhead {
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #fff;
            margin-bottom: 1.25rem;
            max-width: 50rem;
        }

        p.lp-hero__subhead {
            font-size: clamp(1.125rem, 1.6vw, 1.25rem);
            font-weight: 500;
            line-height: 1.4;
            color: #fff;
            margin-bottom: 2.5rem;
            max-width: 50rem;
        }

        .lp-hero__cta {
            background: linear-gradient(135deg, rgba(10,26,46,0.85) 0%, rgba(13,31,60,0.9) 100%);
            border: 0.125rem solid rgba(58,174,227,0.45);
            border-radius: 0.75rem;
            padding: 1rem 1.5rem;
            box-shadow:
                0 0 1.5rem rgba(58,174,227,0.15),
                0 0.5rem 2.5rem rgba(0,0,0,0.4);
            position: relative;
            margin-top: 2rem;
        }

        .lp-hero__cta.wp-attention {
            animation: wpPulse 2s ease-in-out infinite;
        }

        @keyframes wpPulse {
            0%, 100% {
                border-color: rgba(58,174,227,0.45);
                box-shadow: 0 0 1.5rem rgba(58,174,227,0.15), 0 0.5rem 2.5rem rgba(0,0,0,0.4);
            }
            50% {
                border-color: rgba(58,174,227,0.9);
                box-shadow: 0 0 2.5rem rgba(58,174,227,0.4), 0 0.5rem 2.5rem rgba(0,0,0,0.4);
            }
        }

        .lp-hero__cta-columns {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .lp-hero__cta-text {
            flex: 1 1 50%;
            min-width: 0;
        }

        .lp-hero__cta-columns .lp-hero__form {
            flex: 1 1 50%;
            min-width: 0;
        }

        .lp-hero__cta-columns .lp-hero__cta-sublabel {
            margin-bottom: 0;
        }

        @media (max-width: 48rem) {
            .lp-hero__cta-columns {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }

            .lp-hero__cta-columns .lp-hero__form {
                width: 100%;
            }

            .lp-hero__cta-columns .lp-hero__cta-sublabel {
                margin-bottom: 1rem;
            }
        }

        .lp-hero__cta-badge {
            display: inline-block;
            font-size: 0.625rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #3aaee3;
            background: rgba(58,174,227,0.12);
            border: 0.0625rem solid rgba(58,174,227,0.3);
            border-radius: 2rem;
            padding: 0.1875rem 0.75rem;
            margin-bottom: 0.5rem;
        }

        .lp-hero__cta-label {
            font-size: 0.9375rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.125rem;
            line-height: 1.35;
        }

        .lp-hero__cta-sublabel {
            font-size: 0.8125rem;
            font-weight: 400;
            color: rgba(255,255,255,0.6);
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .lp-hero__form {
            display: flex;
            gap: 0.75rem;
        }

        .lp-hero__form input[type="email"] {
            flex: 1;
            min-width: 0;
            padding: 0.75rem 1.25rem;
            border-radius: 2rem;
            border: 0.125rem solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.06);
            color: #fff;
            font-family: inherit;
            font-size: 0.9375rem;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .lp-hero__form input[type="email"]::placeholder {
            color: rgba(255,255,255,0.35);
        }

        .lp-hero__form input[type="email"]:focus {
            outline: none;
            border-color: #3aaee3;
            background: rgba(255,255,255,0.1);
        }

        .lp-hero__form button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #3aaee3, #2196cc);
            color: #fff;
            font-family: inherit;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 0.75rem 1.75rem;
            border-radius: 2rem;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: filter 0.2s ease, transform 0.2s ease;
            box-shadow: 0 0.25rem 1rem rgba(33,150,204,0.35);
        }

        .lp-hero__form button:hover {
            filter: brightness(1.1);
            transform: translateY(-0.125rem);
        }

        .lp-hero__form button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .lp-hero__form button svg,
        .lp-hero__form button i {
            width: 1rem;
            height: 1rem;
        }

        .lp-form-success {
            font-size: 0.9375rem;
            font-weight: 600;
            color: #34d399;
            line-height: 1.6;
            padding: 1rem 0 0;
        }

        @media (max-width: 37.5rem) {
            .lp-hero {
                padding: 4rem 0 3rem;
            }

            .lp-hero__cta {
                padding: 1rem 1rem;
            }

            .lp-hero__form {
                flex-direction: column;
            }

            .lp-hero__form button {
                justify-content: center;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Section Nav */
        .lp-nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10,26,46,0.95);
            backdrop-filter: blur(0.75rem);
            -webkit-backdrop-filter: blur(0.75rem);
            border-bottom: 0.0625rem solid rgba(255,255,255,0.07);
        }

        .lp-nav .inner {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .lp-nav .inner::-webkit-scrollbar {
            display: none;
        }

        .lp-nav__links {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 0;
        }

        .lp-nav__link {
            display: block;
            padding: 0.75rem 1.25rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #fff;
            text-decoration: none;
            position: relative;
            transition: color 0.25s ease;
            text-align: center;
            line-height: 1.4;
            white-space: normal;
        }

        .lp-nav__link:hover {
            color: #fff;
        }

        .lp-nav__link.is-active {
            color: #3aaee3;
        }

        .lp-nav__link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: calc(100% - 1.5rem);
            height: 0.125rem;
            background: #3aaee3;
            transition: transform 0.25s ease;
        }

        .lp-nav__link.is-active::after {
            transform: translateX(-50%) scaleX(1);
        }

        .lp-nav__progress {
            height: 0.1875rem;
            background: rgba(255,255,255,0.06);
            position: relative;
        }

        .lp-nav__progress-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #3aaee3, #2196cc);
            transition: width 0.1s linear;
        }

        /* #region Section Nav — Toggle (hidden on desktop) */
        .lp-nav__toggle {
            display: none;
        }

        .lp-nav__toggle-label {
            display: inline-block;
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .lp-nav__toggle-label.is-exiting {
            opacity: 0;
            transform: translateY(-0.375rem);
        }

        .lp-nav__toggle-label.is-entering {
            opacity: 0;
            transform: translateY(0.375rem);
        }
        /* #endregion */

        @media (max-width: 64rem) and (min-width: 62.5625rem) {
            .lp-nav__links {
                justify-content: flex-start;
            }

            .lp-nav__link {
                padding: 0.875rem 1.25rem;
                font-size: 0.6875rem;
            }
        }

        /* #region Section Nav — Dropdown (below 1000px) */
        @media (max-width: 62.5rem) {
            .lp-nav .inner {
                overflow: visible;
                position: relative;
            }

            .lp-nav__toggle {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 0.75rem 0;
                background: none;
                border: none;
                color: #3aaee3;
                font-family: inherit;
                font-size: 0.75rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                cursor: pointer;
                transition: color 0.2s ease;
            }

            .lp-nav__toggle:hover {
                color: #5ec4f0;
            }

            .lp-nav__toggle-arrow {
                transition: transform 0.3s ease;
                opacity: 0.6;
                flex-shrink: 0;
            }

            .lp-nav.is-open .lp-nav__toggle-arrow {
                transform: rotate(180deg);
                opacity: 1;
            }

            .lp-nav__links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10,26,46,0.98);
                backdrop-filter: blur(0.75rem);
                -webkit-backdrop-filter: blur(0.75rem);
                border-top: 0.0625rem solid rgba(58,174,227,0.15);
                box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.4);
                z-index: 10;
                white-space: normal;
            }

            .lp-nav.is-open .lp-nav__links {
                display: flex;
            }

            .lp-nav__link {
                padding: 0.875rem 1.25rem;
                font-size: 0.75rem;
                border-bottom: 0.0625rem solid rgba(255,255,255,0.05);
                text-align: left;
            }

            .lp-nav__link:last-child {
                border-bottom: none;
            }

            .lp-nav__link::after {
                display: none;
            }

            .lp-nav__link.is-active {
                background: rgba(58,174,227,0.08);
            }
        }
        /* #endregion */
        /* #endregion */

        /* #region LANDING PAGE - Stats Strip */
        .lp-strip {
            background: #0a1a2e;
            border-top: 0.0625rem solid rgba(58,174,227,0.15);
            border-bottom: 0.0625rem solid rgba(58,174,227,0.15);
            padding: 2.5rem 0;
        }

        .lp-strip__grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0;
        }

        .lp-strip__tile {
            text-align: center;
            padding: 1.25rem 1rem;
            position: relative;
        }

        .lp-strip__tile:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 15%;
            height: 70%;
            width: 0.0625rem;
            background: rgba(255,255,255,0.1);
        }

        .lp-strip__value {
            display: block;
            font-size: clamp(1.125rem, 1.6vw, 1.5rem);
            font-weight: 800;
            color: #3aaee3;
            letter-spacing: -0.01em;
            margin-bottom: 0.5rem;
        }

        .lp-strip__label {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255,255,255,0.55);
            line-height: 1.5;
        }

        @media (max-width: 64rem) {
            .lp-strip__grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .lp-strip__tile:nth-child(3)::after {
                display: none;
            }
        }

        @media (max-width: 37.5rem) {
            .lp-strip__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .lp-strip__tile:nth-child(even)::after {
                display: none;
            }

            .lp-strip__tile {
                padding: 1rem 0.75rem;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Sections */
        .lp-section {
            padding: 5rem 0;
        }

        .lp-section--1 { background: #ffffff; }
        .lp-section--2 { background: #f1f4f8; }
        .lp-section--3 { background: #081628; }
        .lp-section--4 { background: #ffffff; }
        .lp-section--5 { background: #f1f4f8; }
        .lp-section--6 { background: #ffffff; }
        .lp-section--7 {
            background: linear-gradient(180deg, #0d1f3c 0%, #0a2540 100%);
        }

        .lp-section__body {
            max-width: 50rem;
            margin: 0 auto;
        }

        .lp-section__body:has(.lp-section__split) {
            max-width: none;
        }

        .lp-section__body:has(.lp-section__split) > :not(.lp-section__split):not(.lp-section__heading) {
            max-width: 50rem;
            margin-left: auto;
            margin-right: auto;
        }

        .lp-section__heading {
            font-size: clamp(2rem, 4.5vw, 3.25rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.015em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 1rem;
            max-width: 75rem;
            text-align: left;
            margin-left: 0;
            margin-right: auto;
        }

        .lp-section__heading-sub {
            font-size: clamp(1.5rem, 3.5vw, 2.25rem);
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #3aaee3;
            margin-bottom: 2rem;
            max-width: 75rem;
            text-align: left;
            margin-left: 0;
            margin-right: auto;
        }

        .lp-section__heading .accent {
            color: #3aaee3;
        }

        .lp-br--600 { display: none; }
        @media (min-width: 37.5rem) {
            .lp-br--600 { display: inline; }
        }

        .lp-section__subheading {
            font-size: 1.25rem;
            font-weight: 700;
            color: #3aaee3;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.02em;
        }

        .lp-section__body p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.78);
            margin-bottom: 1.5rem;
        }

        .lp-section__body p:last-child {
            margin-bottom: 0;
        }

        .lp-section__body em {
            font-style: italic;
        }

        .lp-section__strong {
            font-size: clamp(1.25rem, 2.25vw, 1.875rem) !important;
            font-weight: 700 !important;
            line-height: 1.35 !important;
            letter-spacing: -0.01em;
            color: #fff !important;
            margin-top: 0.5rem;
            margin-bottom: 1.75rem !important;
        }

        .lp-section--light .lp-section__strong {
            color: #0a1a2e !important;
        }

        .lp-section__emphasis {
            font-size: 1.25rem !important;
            font-weight: 700 !important;
            color: #fff !important;
            text-align: center;
            margin-top: 1rem;
        }

        @media (max-width: 48rem) {
            .lp-section {
                padding: 3.5rem 0;
            }

            .lp-section__heading {
                margin-bottom: 0.75rem;
            }

            .lp-section__heading-sub {
                margin-bottom: 1.5rem;
            }

            .lp-section__body p {
                font-size: 1rem;
                line-height: 1.7;
                margin-bottom: 1.25rem;
            }

            .lp-section__strong {
                font-size: clamp(1.125rem, 4vw, 1.5rem) !important;
                margin-bottom: 1.25rem !important;
            }
        }

        /* #region Light Section Overrides */
        .lp-section--light .lp-section__heading {
            color: #0a1a2e;
        }

        .lp-section--light .lp-section__heading-sub {
            color: #1a8abf;
        }

        .lp-section--light .lp-section__heading .accent {
            color: #1a8abf;
        }

        .lp-section--light .lp-section__subheading {
            color: #1a8abf;
        }

        .lp-section--light .lp-section__body p {
            color: #3a4a5c;
        }

        .lp-section--light .lp-section__emphasis {
            color: #0a1a2e !important;
        }

        .lp-section--light .lp-quote {
            border-left-color: #1a8abf;
        }

        .lp-section--light .lp-ref {
            color: #1a8abf;
        }

        .lp-section--light .lp-ref:hover {
            color: #14749e;
        }

        .lp-section--light .lp-figure figcaption {
            color: #6b7d90;
        }

        .lp-section--light .lp-figure__img {
            box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
        }

        .lp-section--light .lp-section__image {
            box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
        }

        .lp-section--light .lp-section__split-media img {
            box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
        }

        .lp-section--light .lp-zones__card {
            background: rgba(10,26,46,0.03);
            border-color: rgba(10,26,46,0.1);
        }

        .lp-section--light .lp-zones__name {
            color: #1a8abf;
        }

        .lp-section--light .lp-zones__card p {
            color: #3a4a5c !important;
        }

        .lp-section--light .lp-image-group .lp-figure__img {
            box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
        }
        /* #endregion */
        /* #endregion */

        /* #region LANDING PAGE - Split (Two-Column) Layout */
        .lp-section__split {
            display: flex;
            gap: 3.5rem;
            align-items: flex-start;
            margin-bottom: 2.5rem;
        }

        .lp-section__split-text,
        .lp-section__split-media {
            flex: 1 1 0;
            min-width: 0;
        }

        .lp-section__split-text p:last-child {
            margin-bottom: 0;
        }

        .lp-section__split-media {
            display: flex;
            align-items: center;
        }

        .lp-section__split-media img {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.3);
            display: block;
        }

        @media (max-width: 48rem) {
            .lp-section__split {
                flex-direction: column;
                gap: 1.5rem;
            }

            .lp-section__split-text,
            .lp-section__split-media {
                flex: none;
                width: 100%;
            }

            .lp-section__split--media-first {
                flex-direction: column-reverse;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Blockquotes */
        .lp-quote {
            border-left: 0.1875rem solid #3aaee3;
            margin: 1.75rem 0;
            padding: 1.25rem 1.5rem 1.25rem 1.25rem;
            background: #f5f5f5;
            border-radius: 0.5rem;
        }

        .lp-quote--with-logo {
            display: grid;
            grid-template-columns: 1fr auto;
            grid-template-rows: auto auto;
            column-gap: 1.5rem;
            align-items: center;
        }

        .lp-quote--with-logo p {
            grid-column: 1 / 3;
            grid-row: 1;
        }

        .lp-quote--with-logo cite {
            grid-column: 1;
            grid-row: 2;
            align-self: center;
        }

        .lp-quote--with-logo .lp-quote__logo {
            grid-column: 2;
            grid-row: 2;
            align-self: center;
            width: auto;
            height: auto;
            max-height: 7rem;
            max-width: 12rem;
            opacity: 0.85;
        }

        .lp-quote p {
            font-size: 1.1875rem !important;
            font-style: italic;
            font-weight: 400;
            line-height: 1.55 !important;
            color: #1e2d3d !important;
            margin-bottom: 0.5rem !important;
        }

        .lp-quote cite {
            display: block;
            font-size: 0.6875rem;
            font-style: normal;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #5a6a7c;
            line-height: 1.5;
            margin-top: 0.5rem;
        }

        @media (max-width: 37.5rem) {
            .lp-quote {
                padding: 0.75rem 0 0.75rem 1rem;
                margin: 1.25rem 0;
            }

            .lp-quote--with-logo .lp-quote__logo {
                max-height: 3.5rem;
                max-width: 5rem;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Nickel Types */
        .lp-nickel-types {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .lp-nickel-types__card {
            border-radius: 1rem;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 0.0625rem solid rgba(255,255,255,0.08);
            transition: transform 0.2s ease;
        }

        .lp-nickel-types__card:hover {
            transform: translateY(-0.25rem);
        }

        .lp-nickel-types__card--laterite {
            background: linear-gradient(180deg, rgba(180,83,47,0.15) 0%, rgba(180,83,47,0.05) 100%);
            border-color: rgba(180,83,47,0.25);
        }

        .lp-nickel-types__card--sulfide {
            background: linear-gradient(180deg, rgba(204,160,52,0.15) 0%, rgba(204,160,52,0.05) 100%);
            border-color: rgba(204,160,52,0.25);
        }

        .lp-nickel-types__card--awaruite {
            background: linear-gradient(180deg, rgba(58,174,227,0.15) 0%, rgba(58,174,227,0.05) 100%);
            border-color: rgba(58,174,227,0.35);
            box-shadow: 0 0 1.5rem rgba(58,174,227,0.1);
        }

        .lp-nickel-types__grade {
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .lp-nickel-types__card--laterite .lp-nickel-types__grade { color: #e8956a; }
        .lp-nickel-types__card--sulfide .lp-nickel-types__grade { color: #e8c95a; }
        .lp-nickel-types__card--awaruite .lp-nickel-types__grade { color: #3aaee3; }

        .lp-nickel-types__name {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .lp-nickel-types__card p {
            font-size: 0.875rem !important;
            line-height: 1.65 !important;
            color: rgba(255,255,255,0.65) !important;
            margin-bottom: 0 !important;
        }

        @media (max-width: 48rem) {
            .lp-nickel-types {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .lp-nickel-types__card {
                display: grid;
                grid-template-columns: auto 1fr;
                grid-template-rows: auto auto;
                gap: 0 1.25rem;
                text-align: left;
                padding: 1.5rem;
            }

            .lp-nickel-types__grade {
                grid-row: 1 / 3;
                align-self: center;
                font-size: 2rem;
                margin-bottom: 0;
            }

            .lp-nickel-types__name {
                margin-bottom: 0.25rem;
                align-self: end;
            }

            .lp-nickel-types__card p {
                align-self: start;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Discovery Zones */
        .lp-zones {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin: 2rem 0 2.5rem;
        }

        .lp-zones__card {
            background: rgba(255,255,255,0.03);
            border: 0.0625rem solid rgba(255,255,255,0.08);
            border-radius: 0.75rem;
            padding: 1.5rem;
        }

        .lp-zones__name {
            font-size: 1rem;
            font-weight: 700;
            color: #3aaee3;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .lp-zones__card p {
            font-size: 0.9375rem !important;
            line-height: 1.65 !important;
            color: rgba(255,255,255,0.7) !important;
            margin-bottom: 0 !important;
        }

        @media (max-width: 37.5rem) {
            .lp-zones {
                grid-template-columns: 1fr;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Comparison List */
        .lp-comparison-list {
            padding-left: 1.5rem;
            margin: 1.25rem 0 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .lp-comparison-list li {
            font-size: 1.0625rem;
            line-height: 1.6;
            color: #36495e;
        }

        .lp-comparison-list li strong {
            color: #0a1a2e;
        }
        /* #endregion */

        /* #region LANDING PAGE - Checklist */
        .lp-checklist {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .lp-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.5;
            color: rgba(255,255,255,0.9);
        }

        .lp-checklist li i,
        .lp-checklist li svg {
            width: 1.5rem;
            height: 1.5rem;
            flex-shrink: 0;
            color: #34d399;
            margin-top: 0.125rem;
        }
        /* #endregion */

        /* #region LANDING PAGE - CTA Box */
        .lp-cta-box {
            background: rgba(58,174,227,0.06);
            border: 0.0625rem solid rgba(58,174,227,0.2);
            border-radius: 1rem;
            padding: 2rem 2.25rem;
            margin-top: 2rem;
        }

        .lp-cta-box__label {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .lp-cta-box__form {
            display: flex;
            gap: 0.75rem;
        }

        .lp-cta-box__form input[type="email"] {
            flex: 1;
            min-width: 0;
            padding: 0.75rem 1.25rem;
            border-radius: 2rem;
            border: 0.125rem solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.06);
            color: #fff;
            font-family: inherit;
            font-size: 0.9375rem;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .lp-cta-box__form input[type="email"]::placeholder {
            color: rgba(255,255,255,0.35);
        }

        .lp-cta-box__form input[type="email"]:focus {
            outline: none;
            border-color: #3aaee3;
            background: rgba(255,255,255,0.1);
        }

        .lp-cta-box__form button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #3aaee3, #2196cc);
            color: #fff;
            font-family: inherit;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 0.75rem 1.75rem;
            border-radius: 2rem;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: filter 0.2s ease, transform 0.2s ease;
            box-shadow: 0 0.25rem 1rem rgba(33,150,204,0.35);
        }

        .lp-cta-box__form button:hover {
            filter: brightness(1.1);
            transform: translateY(-0.125rem);
        }

        .lp-cta-box__form button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .lp-cta-box__form button svg,
        .lp-cta-box__form button i {
            width: 1rem;
            height: 1rem;
        }

        @media (max-width: 37.5rem) {
            .lp-cta-box {
                padding: 1.5rem 1.25rem;
            }

            .lp-cta-box__form {
                flex-direction: column;
            }

            .lp-cta-box__form button {
                justify-content: center;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Section Images */
        .lp-section__image {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            margin: 1.5rem 0 2rem;
            display: block;
            box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.3);
        }

        .lp-image-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin: 2rem 0;
        }

        .lp-figure {
            margin: 0;
        }

        .lp-figure--full {
            margin: 2rem 0;
        }

        .lp-figure__img {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            display: block;
            box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.3);
        }

        .lp-figure figcaption {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.45);
            margin-top: 0.625rem;
            line-height: 1.5;
            text-align: center;
        }

        @media (max-width: 37.5rem) {
            .lp-image-group {
                grid-template-columns: 1fr;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Quote Logos */
        .lp-quote__logo {
            object-fit: contain;
        }
        /* #endregion */

        /* #region LANDING PAGE - USGS Block */
        .lp-usgs-block {
            display: flex;
            gap: 2rem;
            align-items: center;
            margin: 2rem 0;
        }

        .lp-usgs-block__img {
            width: 16rem;
            flex-shrink: 0;
            border-radius: 0.75rem;
            box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.3);
        }

        .lp-usgs-block .lp-quote {
            flex: 1;
            margin: 0;
        }

        @media (max-width: 48rem) {
            .lp-usgs-block {
                flex-direction: column;
            }

            .lp-usgs-block__img {
                width: 100%;
                max-width: 20rem;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Footnote Refs */
        .lp-ref {
            color: #3aaee3;
            text-decoration: none;
            font-size: 0.75em;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .lp-ref:hover {
            color: #5ec4f0;
            text-decoration: underline;
        }
        /* #endregion */

        /* #region LANDING PAGE - Chart/Visual Placeholder */
        .lp-placeholder {
            margin: 2rem 0;
            border: 0.125rem dashed rgba(58,174,227,0.3);
            border-radius: 1rem;
            background: rgba(58,174,227,0.04);
            padding: 3rem 2rem;
        }

        .lp-placeholder__inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 0.875rem;
            font-weight: 500;
            line-height: 1.5;
        }

        .lp-placeholder__inner i,
        .lp-placeholder__inner svg {
            width: 2.5rem;
            height: 2.5rem;
            color: rgba(58,174,227,0.4);
        }
        /* #endregion */

        /* #region LANDING PAGE - About Us / Team */
        .lp-section--about {
            background: linear-gradient(180deg, #0a1e38 0%, #0d1f3c 100%);
        }

        .lp-team__group-title {
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.45);
            margin-bottom: 2rem;
            padding-bottom: 0.75rem;
            border-bottom: 0.0625rem solid rgba(255,255,255,0.08);
        }

        .lp-team__sub-title {
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #3aaee3;
            margin-bottom: 1.25rem;
            margin-top: 0.5rem;
        }

        .lp-team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .lp-team-card {
            background: rgba(255,255,255,0.04);
            border: 0.0625rem solid rgba(255,255,255,0.08);
            border-radius: 1rem;
            overflow: visible;
            text-align: left;
            padding: 1.5rem;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .lp-team-card__header {
            display: flex;
            align-items: start;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .lp-team-card:hover {
            border-color: rgba(58,174,227,0.25);
            background: rgba(255,255,255,0.06);
        }

        .lp-team-card__portrait {
            width: 7rem;
            height: 7rem;
            border-radius: 50%;
            overflow: hidden;
            border: 0.1875rem solid rgba(58,174,227,0.3);
            flex-shrink: 0;
            background: #0d1f3c;
        }

        .lp-team-card__portrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .lp-team-card__info {
            min-width: 0;
            align-self: start;
            padding-top: 0.25rem;
        }

        .lp-team-card__name {
            font-size: 1.125rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.125rem;
            line-height: 1.3;
        }

        .lp-team-card__titles {
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255,255,255,0.45);
        }

        .lp-team-card__position {
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #3aaee3;
            margin-bottom: 0.75rem;
        }

        .lp-team-card__bio {
            font-size: 0.9375rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.65);
        }

        .lp-team-card__bio p {
            font-size: inherit;
            line-height: inherit;
            color: inherit;
            margin-bottom: 0.75rem;
        }

        .lp-team-card__bio p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 48rem) {
            .lp-team-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 26.5rem) {
            .lp-team-card {
                padding: 1.5rem 1.25rem;
            }

            .lp-team-card__header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .lp-team-card__portrait {
                width: 5.5rem;
                height: 5.5rem;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Stock Info */
        .lp-section--stock {
            background: #ffffff;
        }

        .lp-symbol-tabs {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .lp-symbol-tab {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 2rem;
            border: 0.125rem solid #d0d5dd;
            border-radius: 0.5rem;
            background: #fff;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease;
            min-width: 7.5rem;
        }

        .lp-symbol-tab:hover {
            border-color: #1a8abf;
            background: rgba(26,138,191,0.03);
        }

        .lp-symbol-tab.is-active {
            border-color: #1a8abf;
            border-left: 0.25rem solid #1a8abf;
            background: rgba(26,138,191,0.05);
        }

        .lp-symbol-tab__exchange {
            font-size: 0.6875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #6b7280;
        }

        .lp-symbol-tab__ticker {
            font-size: 1.75rem;
            font-weight: 700;
            line-height: 1.2;
            color: #0a1a2e;
        }

        .lp-symbol-tab.is-active .lp-symbol-tab__ticker {
            color: #1a8abf;
        }

        @media (max-width: 37.5rem) {
            .lp-symbol-tabs {
                gap: 0.5rem;
            }

            .lp-symbol-tab {
                padding: 0.5rem 1rem;
                min-width: 5.5rem;
            }

            .lp-symbol-tab__ticker {
                font-size: 1.25rem;
            }
        }

        .lp-stock-chart {
            width: 100%;
            max-width: 50rem;
            margin-left: auto;
            margin-right: auto;
            height: 28rem;
            border-radius: 0.75rem;
            overflow: hidden;
            margin-bottom: 2.5rem;
            border: 0.0625rem solid rgba(0,0,0,0.08);
        }

        .lp-stock-chart .tradingview-widget-container,
        .lp-stock-chart .tradingview-widget-container > div {
            width: 100%;
            height: 100%;
        }

        .lp-brokers {
            max-width: 50rem;
            margin: 0 auto;
        }

        .lp-brokers__divider {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2.5rem 0 1.5rem;
        }

        .lp-brokers__divider:first-child {
            margin-top: 0;
        }

        .lp-brokers__line {
            flex: 1;
            height: 0.125rem;
            background: #1a8abf;
        }

        .lp-brokers__flag {
            width: 3rem;
            height: auto;
            object-fit: contain;
            flex-shrink: 0;
        }

        .lp-brokers__label {
            text-align: center;
            font-size: 0.8125rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #3a4a5c;
            margin-bottom: 1.5rem;
        }

        .lp-brokers__label strong {
            color: #0a1a2e;
        }

        .lp-brokers__logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .lp-brokers__logos a {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .lp-brokers__logos a:hover {
            transform: scale(1.08);
        }

        .lp-brokers__logos img {
            height: 4rem;
            width: auto;
            max-width: 8rem;
            object-fit: contain;
            border-radius: 0.5rem;
        }

        .lp-brokers__ext-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #1a8abf;
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .lp-brokers__ext-link:hover {
            color: #14749e;
        }

        .lp-brokers__ext-link svg {
            width: 1rem;
            height: 1rem;
        }

        .lp-stock-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 2.5rem;
        }

        .lp-stock-links__link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: transparent;
            border: 0.0625rem solid rgba(10,26,46,0.15);
            border-radius: 2rem;
            color: #3a4a5c;
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 600;
            transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .lp-stock-links__link:hover {
            color: #1a8abf;
            border-color: #1a8abf;
            background: rgba(26,138,191,0.04);
        }

        .lp-stock-links__link svg {
            width: 1rem;
            height: 1rem;
        }

        /* #region Corporate Contact */
        .lp-corporate-contact {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 0.0625rem solid rgba(0,0,0,0.08);
        }

        .lp-corporate-contact__name {
            font-size: 1rem;
            font-weight: 800;
            color: #0a1a2e;
            margin-bottom: 0.5rem;
        }

        .lp-corporate-contact__detail {
            font-size: 0.875rem;
            color: #5a6a7c;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .lp-corporate-contact__links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .lp-corporate-contact__link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #1a8abf;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .lp-corporate-contact__link:hover {
            color: #14749e;
        }

        .lp-corporate-contact__link svg {
            width: 1rem;
            height: 1rem;
        }
        /* #endregion */

        @media (max-width: 48rem) {
            .lp-stock-chart {
                height: 20rem;
            }

            .lp-brokers__logos img {
                height: 3.25rem;
                max-width: 6.5rem;
            }
        }

        @media (max-width: 37.5rem) {
            .lp-brokers__logos {
                gap: 1rem;
            }

            .lp-brokers__logos img {
                height: 2.75rem;
                max-width: 5.5rem;
            }

            .lp-stock-links {
                flex-direction: column;
                align-items: stretch;
            }

            .lp-stock-links__link {
                justify-content: center;
            }
        }
        /* #endregion */

        /* #region LANDING PAGE - Footnotes */
        .lp-footnotes {
            background: #060f1d;
            padding: 3rem 0;
            border-top: 0.0625rem solid rgba(255,255,255,0.06);
        }

        .lp-footnotes__heading {
            font-size: 0.875rem;
            font-weight: 700;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .lp-footnotes__list {
            padding-left: 1.75rem;
            columns: 2;
            column-gap: 2.5rem;
        }

        .lp-footnotes__list li {
            break-inside: avoid;
            margin-bottom: 0.125rem;
            font-size: 0.75rem;
            line-height: 1.5;
            color: rgba(255,255,255,0.35);
        }

        .lp-footnotes__list li::marker {
            color: rgba(255,255,255,0.25);
        }

        .lp-footnotes__list a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            transition: color 0.2s ease;
            word-break: break-word;
        }

        .lp-footnotes__list a:hover {
            color: #3aaee3;
            text-decoration: underline;
        }

        @media (max-width: 37.5rem) {
            .lp-footnotes__list {
                columns: 1;
            }
        }

        .lp-footnotes .lp-disclaimer {
            margin-top: 1.5rem;
            padding-top: 1.25rem;
            border-top: 0.0625rem solid rgba(255,255,255,0.06);
            max-width: none;
        }

        .lp-footnotes .lp-disclaimer__heading {
            font-size: 0.8125rem;
            font-weight: 700;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .lp-footnotes .lp-disclaimer p {
            font-size: 0.75rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.35);
            margin-bottom: 0.5rem;
        }

        .lp-footnotes .lp-disclaimer p:last-child {
            margin-bottom: 0;
        }

        .lp-footnotes .lp-disclaimer a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .lp-footnotes .lp-disclaimer a:hover {
            color: #3aaee3;
            text-decoration: underline;
        }
        /* #endregion */

/* #region PAGE TRANSITION */
#page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: opacity 0.25s ease;
}
/* #endregion */

/* #region PAGE: NEWS */
.news-main {
    flex: 1;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    background: #fff;
    color: #111;
}

#news-content {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.news-main .header-home-btn {
    border-color: rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.04);
    color: rgba(0,0,0,0.6);
}

.news-main .header-home-btn:hover {
    background: rgba(0,0,0,0.08);
    color: #111;
    border-color: rgba(0,0,0,0.35);
}
/* #endregion */

/* #region CARDS — NEWS */
.archive-header {
    padding-bottom: 1.5rem;
    border-bottom: 0.0625rem solid rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.archive-title {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #3aaee3;
}

.year-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.year-tab {
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    border: 0.0625rem solid rgba(0,0,0,0.2);
    color: rgba(0,0,0,0.5);
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    background: transparent;
}

.year-tab:hover:not(.active) {
    border-color: rgba(0,0,0,0.45);
    color: #111;
}

.year-tab.active {
    background: #1278b0;
    border-color: #1278b0;
    color: #fff;
    pointer-events: none;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.news-card {
    background: #f7f9fb;
    border: 0.0625rem solid rgba(0,0,0,0.08);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.news-card:hover {
    background: #eef4f9;
    border-color: rgba(58,174,227,0.45);
    transform: translateY(-0.125rem);
}

.news-card__date {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #3aaee3;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.news-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.5;
    color: #111;
    flex: 1;
}

.news-card__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.news-card__read {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(18,120,176,0.18);
    color: #3aaee3;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
}

.news-card__read svg { width: 0.875rem; height: 0.875rem; }
.news-card:hover .news-card__read { background: rgba(18,120,176,0.2); }

.news-card__pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(0,0,0,0.4);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    border: 0.0625rem solid rgba(0,0,0,0.15);
    font-size: 0.75rem;
    font-weight: 700;
    transition: color 0.2s, border-color 0.2s;
}

.news-card__pdf svg { width: 0.875rem; height: 0.875rem; }
.news-card__pdf:hover { color: #111; border-color: rgba(0,0,0,0.35); }
.news-card__pdf.disabled { pointer-events: none; opacity: 0.2; }

.no-results {
    grid-column: 1 / -1;
    padding: 2rem;
    border: 0.0625rem dashed rgba(0,0,0,0.15);
    border-radius: 1rem;
    color: rgba(0,0,0,0.5);
    font-size: 0.9375rem;
    font-weight: 600;
}

.no-results a { color: #3aaee3; }

@media (max-width: 47.9375rem) {
    .archive-grid { grid-template-columns: 1fr; }
}
/* #endregion */

/* #region RELEASE BODY */
.release-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0,0,0,0.5);
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0.04em;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}

.release-back svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.release-back:hover { color: #3aaee3; }
.release-back:hover svg { transform: translateX(-0.25rem); }

.release-back-bottom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f7f9fb;
    color: rgba(0,0,0,0.7);
    border: 0.0625rem solid rgba(0,0,0,0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.release-back-bottom:hover {
    background: #eef4f9;
    border-color: rgba(0,0,0,0.3);
    transform: translateY(-0.125rem);
}

.release-back-bottom svg { width: 1rem; height: 1rem; }

.release-header { margin-bottom: 2rem; }

.release-date {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #3aaee3;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.release-title {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 50rem;
    color: #3aaee3;
}

.release-body {
    max-width: 52rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #222;
    border-top: 0.0625rem solid rgba(0,0,0,0.1);
    padding-top: 1.5rem;
}

.release-body p { margin-bottom: 1rem; color: #222; }
.release-body h2, .release-body h3, .release-body h4 { color: #111; margin: 1.5rem 0 0.75rem; font-weight: 800; }
.release-body a { color: #3aaee3; }
.release-body b, .release-body strong { color: #111; }
.release-body ul, .release-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.release-body li { margin-bottom: 0.375rem; }
.release-body__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.5rem; }
.release-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.9rem; min-width: 28rem; }
.release-body table td, .release-body table th { padding: 0.625rem 0.75rem; border: 0.0625rem solid rgba(0,0,0,0.1); }
.release-body table th { background: #f2f6fa; font-weight: 700; color: #111; }
.release-body img { max-width: 100% !important; height: auto !important; border-radius: 0.75rem; margin: 1rem 0; }
.release-body hr { border: none; border-top: 0.0625rem solid rgba(0,0,0,0.1); margin: 1.5rem 0; }

.release-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.0625rem solid rgba(0,0,0,0.1);
    max-width: 52rem;
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(45deg, #3aaee3, #2196cc);
    color: #fff; font-family: inherit; font-size: 0.8125rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.875rem 1.75rem; border-radius: 2rem; border: none; cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    box-shadow: 0 0.25rem 1.25rem rgba(33,150,204,0.35);
}

.btn-primary:hover { transform: translateY(-0.125rem); filter: brightness(1.08); }
.btn-primary svg { width: 1rem; height: 1rem; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: #111; font-family: inherit; font-size: 0.8125rem;
    font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.875rem 1.75rem; border-radius: 2rem;
    border: 0.125rem solid rgba(0,0,0,0.3); cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.5); transform: translateY(-0.125rem); }
.btn-outline svg { width: 1rem; height: 1rem; }

.btn-callback {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(45deg, #1278b0, #0e5f8a);
    color: #fff; font-family: inherit; font-size: 0.8125rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.875rem 1.75rem; border-radius: 2rem; border: none; cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    box-shadow: 0 0.25rem 1.25rem rgba(18, 120, 176, 0.3);
}

.btn-callback:hover { transform: translateY(-0.125rem); filter: brightness(1.1); }
.btn-callback svg { width: 1rem; height: 1rem; }
/* #endregion */

/* #region CALLBACK MODAL */
.callback-modal {
    position: fixed; inset: 0; z-index: 5000;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem; opacity: 0; visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.callback-modal.is-visible { opacity: 1; visibility: visible; }

.callback-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(10, 30, 50, 0.55); cursor: pointer;
}

.callback-modal__dialog {
    position: relative; z-index: 1;
    background: #fff; border-radius: 1rem;
    box-shadow: 0 1.75rem 3.5rem rgba(18, 120, 176, 0.18);
    border: 0.125rem solid rgba(18, 120, 176, 0.12);
    padding: 2rem; width: 100%; max-width: 26rem;
    max-height: 90vh; overflow-y: auto;
    transform: translateY(1rem); transition: transform 0.25s ease;
}

.callback-modal.is-visible .callback-modal__dialog { transform: translateY(0); }

.callback-modal__close {
    position: absolute; top: 1rem; right: 1rem;
    width: 2rem; height: 2rem; background: none; border: none;
    font-size: 1.5rem; line-height: 1; color: #999; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: background 0.15s ease, color 0.15s ease; padding: 0;
}

.callback-modal__close:hover { background: rgba(18, 120, 176, 0.08); color: #1a88c2; }

.callback-modal__title {
    font-size: 1.125rem; font-weight: 700; color: #111;
    margin-bottom: 0.5rem; padding-right: 2rem;
}

.callback-modal__intro {
    font-size: 0.875rem; color: #555;
    margin-bottom: 1.25rem; line-height: 1.5;
}

.callback-modal__form { display: flex; flex-direction: column; gap: 1rem; }

.callback-modal__time-options { display: flex; gap: 0.75rem; }

.callback-modal__time-option { flex: 1; cursor: pointer; }
.callback-modal__time-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.callback-modal__time-option span {
    display: flex; align-items: center; justify-content: center; gap: 0.375rem;
    padding: 0.625rem 0.75rem; background: #f2f6fa;
    border: 0.0625rem solid rgba(17, 17, 17, 0.08); border-radius: 0.75rem;
    font-family: inherit; font-size: 0.875rem; font-weight: 600; color: #555;
    transition: all 0.15s ease; user-select: none;
}

.callback-modal__time-option input[type="radio"]:checked + span {
    background: rgba(26, 136, 194, 0.1); border-color: #1a88c2; color: #1278b0;
}

.callback-modal__time-option span:hover {
    border-color: #1a88c2; background: rgba(26, 136, 194, 0.06);
}

.callback-modal__error {
    background: rgba(235, 87, 87, 0.08);
    border: 0.0625rem solid rgba(235, 87, 87, 0.3);
    border-radius: 0.5rem; padding: 0.625rem 0.875rem;
    font-family: inherit; font-size: 0.8125rem; font-weight: 600; color: #c0392b;
}

.callback-modal__form .callback-modal__submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: linear-gradient(45deg, #3aaee3, #2196cc); color: #fff;
    font-family: inherit; font-size: 1rem; font-weight: 700;
    padding: 0.875rem 2rem; border-radius: 2rem; border: none; cursor: pointer;
    margin-top: 0.25rem; width: 100%; transition: filter 0.2s ease;
}

.callback-modal__form .callback-modal__submit:hover { filter: brightness(1.08); }
#callback-submit-btn[disabled] { opacity: 0.65; cursor: not-allowed; pointer-events: none; }

.callback-modal__success { text-align: center; padding: 1rem 0; }

.callback-modal__success-icon {
    width: 3.5rem; height: 3.5rem;
    background: linear-gradient(135deg, #1a88c2, #1278b0);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; color: #fff;
}

.callback-modal__success h4 { font-size: 1.125rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; }
.callback-modal__success p { font-size: 0.9rem; color: #555; margin-bottom: 1.25rem; }

.callback-modal__success .callback-modal__submit {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(45deg, #3aaee3, #2196cc); color: #fff;
    font-family: inherit; font-size: 1rem; font-weight: 700;
    padding: 0.875rem 2rem; border-radius: 2rem; border: none; cursor: pointer;
    width: 100%; transition: filter 0.2s ease;
}

.callback-modal__success .callback-modal__submit:hover { filter: brightness(1.08); }

.grecaptcha-badge { visibility: hidden !important; }

@media (max-width: 37.5rem) {
    .release-actions {
        flex-direction: column;
    }

    .release-actions .btn-primary,
    .release-actions .btn-outline,
    .release-actions .btn-callback {
        justify-content: center;
        width: 100%;
    }

    .callback-modal { padding: 1rem; }
    .callback-modal__dialog { max-width: 100%; padding: 1.5rem; }
    .callback-modal__title { font-size: 1rem; }
}
/* #endregion */

/* #region DISCLAIMER PAGE */
.lp-disclaimer-wrap {
    background: #ffffff;
    flex: 1;
}

.lp-disclaimer {
    max-width: 50rem;
    margin: 0 auto;
    padding: 3rem 0;
}

.lp-disclaimer__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0a1a2e;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.lp-disclaimer__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.lp-disclaimer p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #3a4a5c;
    margin-bottom: 1.25rem;
}

.lp-disclaimer p:last-child {
    margin-bottom: 0;
}

.lp-disclaimer a {
    color: #1a8abf;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-disclaimer a:hover {
    color: #14749e;
    text-decoration: underline;
}
/* #endregion */
