@font-face {
    font-family: "Helvetica Regular";
    src: url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.eot");
    src: url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.eot?#iefix") format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.woff2") format("woff2"),
        url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.woff") format("woff"),
        url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.ttf") format("truetype"),
        url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.svg#Helvetica Regular") format("svg");
}

.page-home {
    --hero-navy: rgba(30, 50, 90, 0.9);
    --hero-navy-soft: rgba(30, 50, 90, 0.8);
    --hero-navy-muted: rgba(30, 50, 90, 0.6);
    --hero-text: #ffffff;
    --hero-text-muted: rgba(255, 255, 255, 0.85);
    --hero-bg: #f0f0f0;
    font-family: "Helvetica Regular", ui-sans-serif, system-ui, sans-serif;
    background-color: var(--hero-bg);
    overflow-x: hidden;
}

.page-home main {
    min-height: 100vh;
    background-color: var(--hero-bg);
}

/* Hero shell */
.hero-glass {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

@media (min-width: 768px) {
    .hero-glass {
        padding: 20px;
    }
}

.hero-glass-inner {
    position: relative;
    width: 100%;
    max-width: 1536px;
    min-height: calc(100vh - 24px);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .hero-glass-inner {
        min-height: calc(100vh - 40px);
        border-radius: 3rem;
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    z-index: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 50%, #1a4a7a 100%);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.hero-video.is-playing {
    opacity: 1;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none;
}

.hero-video::-moz-media-controls {
    display: none !important;
}

@media (min-width: 1024px) {
    .hero-video {
        object-position: center;
    }
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.hero-glass-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero navbar */
.hero-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 16px 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-nav {
        padding: 24px 32px 0;
    }
}

.hero-nav-glass {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    padding: 10px 14px;
    border-radius: 9999px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.08) 42%,
        rgba(255, 255, 255, 0.14) 100%
    );
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.25) inset,
        0 -1px 0 rgba(0, 0, 0, 0.08) inset,
        inset 0 0 20px rgba(255, 255, 255, 0.06);
    overflow: hidden;
    isolation: isolate;
}

@media (min-width: 768px) {
    .hero-nav-glass {
        padding: 12px 20px 12px 28px;
    }
}

.hero-nav-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.15) 35%,
        rgba(255, 255, 255, 0.05) 55%,
        rgba(255, 255, 255, 0.35) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.hero-nav-glass-shine {
    position: absolute;
    top: -40%;
    left: -10%;
    width: 55%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.08) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    transform: rotate(-8deg);
}

.hero-nav-glass > *:not(.hero-nav-glass-shine) {
    position: relative;
    z-index: 1;
}

.hero-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
}

.hero-nav-logo--desktop {
    display: none;
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .hero-nav-logo--desktop {
        display: flex;
    }
}

.hero-nav-logo--mobile {
    display: flex;
    min-width: 0;
}

@media (min-width: 768px) {
    .hero-nav-logo--mobile {
        display: none;
    }
}

.hero-nav-menu {
    display: none;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
}

@media (min-width: 768px) {
    .hero-nav-menu {
        display: flex;
    }
}

.hero-nav-menu a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.hero-nav-menu a:hover {
    opacity: 0.75;
    color: #fff;
}

.hero-nav-menu .icon-chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.hero-nav-menu a:hover .icon-chevron {
    transform: translateX(2px);
}

.hero-nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.hero-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .hero-nav-toggle {
        display: none;
    }
}

.hero-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(
        145deg,
        rgba(30, 50, 90, 0.88) 0%,
        rgba(20, 35, 65, 0.95) 100%
    );
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 6px 16px 6px 8px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .hero-cta-btn {
        gap: 12px;
        padding: 8px 24px 8px 8px;
        font-size: 0.875rem;
    }
}

.hero-cta-btn .cta-text {
    display: none;
}

@media (min-width: 480px) {
    .hero-cta-btn .cta-text {
        display: inline;
    }
}

.hero-cta-btn:hover {
    background: rgba(30, 50, 90, 1);
    color: #fff;
    transform: scale(1.02);
}

.hero-cta-btn:active {
    transform: scale(0.98);
}

.hero-cta-btn .icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-cta-btn .icon-wrap {
        padding: 6px;
    }
}

.hero-cta-btn svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .hero-cta-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile menu drawer */
.hero-mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 1.25rem;
    padding: 12px;
    z-index: 20;
    flex-direction: column;
    gap: 4px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-mobile-menu.open {
    display: flex;
}

.hero-mobile-menu a {
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.hero-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Light nav theme (products & inner pages) */
.hero-nav--light .hero-nav-menu a {
    color: rgb(45, 45, 45);
}

.hero-nav--light .hero-nav-menu a:hover {
    color: rgb(45, 45, 45);
}

.hero-nav--light .hero-nav-menu a.is-active {
    color: rgba(30, 50, 90, 0.95);
    font-weight: 500;
}

.hero-nav--light .hero-nav-toggle span {
    background: var(--hero-navy);
}

.hero-nav--light .hero-mobile-menu {
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.88) 100%
    );
}

.hero-nav--light .hero-mobile-menu a {
    color: rgb(45, 45, 45);
}

.hero-nav--light .hero-mobile-menu a:hover {
    background: rgba(30, 50, 90, 0.08);
    color: rgb(45, 45, 45);
}

.hero-nav--dark .hero-nav-menu a.is-active {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}

/* Hero text */
.hero-text-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px 0;
    text-align: center;
    max-width: 56rem;
}

.hero-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    line-height: 0;
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.6s ease-out 0.05s forwards;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
}

.hero-brand-logo .site-logo {
    object-position: center center;
}

@media (min-width: 768px) {
    .hero-brand-logo {
        display: none;
    }
}

.hero-badge-glass {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin: 0 auto 12px;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.6s ease-out forwards;
}

.hero-badge-glass svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.hero-badge-glass span {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.hero-title-glass {
    font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(2.25rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--hero-text);
    margin: 0 0 8px;
    letter-spacing: -0.03em;
    line-height: 1.05;
    opacity: 0;
    transform: scale(0.98);
    animation: heroTitleIn 0.8s ease 0.2s forwards;
}

.hero-title-rotator {
    display: grid;
}

.hero-title-rotator__slide {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    pointer-events: none;
}

.hero-title-rotator__slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-title-rotator__slide[aria-hidden="true"] {
    user-select: none;
}

.hero-subtitle-glass {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    color: var(--hero-text-muted);
    opacity: 0;
    line-height: 1.6;
    max-width: 36rem;
    font-weight: 400;
    margin: 0;
    animation: heroSubtitleIn 0.8s ease 0.4s forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroSubtitleIn {
    to {
        opacity: 1;
    }
}

/* Bottom left card */
.hero-bottom-card {
    position: absolute;
    bottom: 7rem;
    right: 16px;
    left: auto;
    padding: 12px;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
    width: fit-content;
    opacity: 0;
    transform: translateX(-20px);
    animation: heroCardLeft 0.8s ease 0.2s forwards;
}

@media (min-width: 768px) {
    .hero-bottom-card {
        bottom: 24px;
        left: 24px;
        right: auto;
        padding: 16px;
        border-radius: 1.5rem;
        gap: 12px;
        min-width: 150px;
    }
}

@media (min-width: 1024px) {
    .hero-bottom-card {
        bottom: 40px;
        left: 40px;
        padding: 20px;
        border-radius: 2.2rem;
        gap: 12px;
        min-width: 180px;
    }
}

@keyframes heroCardLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-bottom-card .stat-big {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
    .hero-bottom-card .stat-big {
        font-size: 1.875rem;
    }
}

.hero-bottom-card .stat-label {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (min-width: 768px) {
    .hero-bottom-card .stat-label {
        font-size: 12px;
    }
}

.hero-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: none;
    border-radius: 9999px;
    padding: 6px 20px 6px 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: var(--hero-navy);
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s ease, transform 0.15s ease;
}

.hero-card-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--hero-navy);
    transform: scale(1.02);
}

.hero-card-btn:active {
    transform: scale(0.98);
}

.hero-card-btn .icon-wrap {
    background: rgba(30, 50, 90, 0.1);
    padding: 4px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-btn svg {
    width: 16px;
    height: 16px;
    color: var(--hero-navy);
}

/* Bottom right corner */
.hero-bottom-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 12px 12px 12px 32px;
    padding-top: 20px;
    background: var(--hero-bg);
    border-top-left-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroCornerIn 0.8s ease 0.4s forwards;
}

@media (min-width: 640px) {
    .hero-bottom-corner {
        padding: 16px 16px 16px 40px;
        padding-top: 24px;
        border-top-left-radius: 2rem;
        gap: 16px;
    }
}

@media (min-width: 768px) {
    .hero-bottom-corner {
        padding: 24px 24px 24px 56px;
        padding-top: 32px;
        border-top-left-radius: 3.5rem;
        gap: 24px;
    }
}

@keyframes heroCornerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-corner-mask-top {
    position: absolute;
    top: -1.5rem;
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
}

@media (min-width: 640px) {
    .hero-corner-mask-top {
        top: -2rem;
        width: 2rem;
        height: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-corner-mask-top {
        top: -3.5rem;
        width: 3.5rem;
        height: 3.5rem;
    }
}

.hero-corner-mask-left {
    position: absolute;
    bottom: 0;
    left: -1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
}

@media (min-width: 640px) {
    .hero-corner-mask-left {
        left: -2rem;
        width: 2rem;
        height: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-corner-mask-left {
        left: -3.5rem;
        width: 3.5rem;
        height: 3.5rem;
    }
}

.hero-corner-icon {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(30, 50, 90, 0.05);
    border: 1px solid rgba(30, 50, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero-corner-icon {
        width: 56px;
        height: 56px;
    }
}

.hero-corner-icon svg {
    width: 20px;
    height: 20px;
    color: var(--hero-navy-soft);
}

.hero-corner-info h3 {
    font-size: 16px;
    font-weight: 400;
    color: rgba(30, 50, 90, 0.95);
    margin: 0 0 4px;
}

@media (min-width: 768px) {
    .hero-corner-info h3 {
        font-size: 20px;
    }
}

.hero-corner-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--hero-navy-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.hero-corner-link:hover {
    color: var(--hero-navy-soft);
}

.hero-corner-link span {
    font-size: 12px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-corner-link span {
        font-size: 15px;
    }
}

.hero-corner-link svg {
    width: 16px;
    height: 16px;
}

/* Transition into dark content */
.home-content-bridge {
    background: linear-gradient(180deg, var(--hero-bg) 0%, var(--bg) 120px);
    margin-top: -1px;
}

/* Premium marquees */
.marquee-section {
    overflow: hidden;
    width: 100%;
}

.marquee-section--light {
    background: var(--hero-bg);
    padding: 8px 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-section--dark {
    background: var(--bg);
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-section--accent {
    background: linear-gradient(90deg, #1e325a 0%, #2563eb 50%, #1e325a 100%);
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-section--exclusive {
    background: linear-gradient(90deg, #060a14 0%, #0f1d3d 50%, #060a14 100%);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-section--exclusive .marquee__content {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.marquee--centered .marquee__track {
    animation: none;
    width: 100%;
    justify-content: center;
}

.marquee--centered .marquee__content[aria-hidden="true"] {
    display: none;
}

.marquee--centered {
    mask-image: none;
    -webkit-mask-image: none;
}

.marquee--centered .marquee__content {
    padding-right: 0;
    justify-content: center;
}

.marquee-section--accent .marquee__content {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
}

.marquee {
    overflow: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__inner {
    display: flex;
    width: 100%;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll var(--marquee-duration, 90s) linear infinite;
    will-change: transform;
}

.marquee--reverse .marquee__track {
    animation-direction: reverse;
}

.marquee__content {
    display: inline-flex;
    align-items: center;
    padding-right: 3rem;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.marquee-section--light .marquee__content {
    color: rgba(30, 50, 90, 0.38);
}

.marquee-section--dark .marquee__content {
    color: rgba(255, 255, 255, 0.22);
}

.marquee-dot {
    display: inline-block;
    margin: 0 0.15em;
    opacity: 0.5;
    font-weight: 300;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 0.5rem 1.5rem;
        padding: 0 1rem;
    }

    .marquee__content[aria-hidden="true"] {
        display: none;
    }

    .marquee__content {
        white-space: normal;
        padding-right: 0;
        text-align: center;
    }

    .marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (min-width: 768px) {
    .marquee__content {
        font-size: 0.75rem;
        letter-spacing: 0.26em;
    }
}
