/* =====================================================
   RELAY EXPRESS — Premium Design System v3.0
   Inspired by: Stripe, Linear, Vercel, Apple
   ===================================================== */

/* --- Custom Properties (Design Tokens) --- */
:root {
    --primary: #000a23;
    --primary-hover: #0a1a3f;
    --secondary: #006e1a;
    --accent: #00ff9d;
    --accent-soft: #00e88d;
    --surface: #faf9fd;
    --surface-alt: #f4f3f7;
    --on-surface: #1a1b1f;
    --muted: #64748b;
    --border: rgba(0, 10, 35, 0.06);
    --border-hover: rgba(0, 10, 35, 0.12);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-solid: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(0, 10, 35, 0.06);

    /* Glow / Neon */
    --neon-glow: 0 0 30px rgba(0, 255, 157, 0.25);
    --primary-glow: 0 0 40px rgba(0, 10, 35, 0.15);

    /* Timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-base: 0.4s var(--ease-out-expo);

    /* Radius */
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --radius-xl: 3rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--surface);
    color: var(--on-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* --- Glassmorphism Cards --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
}

.glass-card:hover {
    box-shadow: 0 16px 48px rgba(0, 10, 35, 0.1);
    border-color: rgba(0, 10, 35, 0.08);
}

.glass-card-solid {
    background: var(--glass-bg-solid);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* --- Premium Buttons --- */
.btn-premium {
    background: linear-gradient(135deg, #00204e 0%, #000a23 50%, #001538 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 4px 15px rgba(0, 10, 35, 0.3);
    isolation: isolate;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s var(--ease-out-expo);
    z-index: 1;
}

.btn-premium::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.3), transparent 40%, transparent 60%, rgba(0, 255, 157, 0.2));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.btn-premium:not(.magnetic-btn):hover {
    transform: translateY(-3px);
}

.btn-premium:hover {
    box-shadow: 0 12px 35px rgba(0, 10, 35, 0.4);
}

.btn-premium:hover::before {
    transform: translateX(100%);
}

.btn-premium:hover::after {
    opacity: 1;
}

.btn-premium:not(.magnetic-btn):active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--glass-bg-solid);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    color: var(--primary);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* --- Secondary Button States --- */
.btn-secondary:not(.magnetic-btn):hover {
    transform: translateY(-2px);
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 25px rgba(0, 10, 35, 0.08);
}

.btn-secondary:not(.magnetic-btn):active {
    transform: translateY(0) scale(0.98);
}

/* --- Navigation --- */
.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .site-nav {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        column-gap: 1rem;
    }
}

@media (min-width: 1280px) {
    .site-nav {
        column-gap: 1.5rem;
    }
}

.site-nav-logo {
    flex-shrink: 0;
    margin-right: 0.25rem;
}

.site-nav-logo img {
    height: 2.5rem;
    width: auto;
}

@media (min-width: 1280px) {
    .site-nav-logo img {
        height: 3rem;
    }
}

.site-nav-menu {
    display: none;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 1.2vw, 1.25rem);
    min-width: 0;
}

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

.site-nav-menu .nav-link {
    white-space: nowrap;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding: 0.125rem 0;
}

@media (min-width: 1280px) {
    .site-nav-menu .nav-link {
        font-size: 0.8125rem;
        letter-spacing: 0.14em;
    }
}

.site-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 0.625rem;
}

@media (min-width: 1280px) {
    .site-nav-actions {
        gap: 0.875rem;
    }
}

.site-nav-track {
    display: none;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    transition: color 0.3s var(--ease-out-expo);
}

.site-nav-track:hover {
    color: var(--secondary);
}

@media (min-width: 1024px) {
    .site-nav-track {
        display: inline-flex;
    }
}

.site-nav-track .material-symbols-outlined {
    font-size: 1.125rem;
}

.site-nav-track-label-short {
    display: inline;
}

.site-nav-track-label-full {
    display: none;
}

@media (min-width: 1280px) {
    .site-nav-track-label-short {
        display: none;
    }

    .site-nav-track-label-full {
        display: inline;
    }
}

.site-nav-cta {
    white-space: nowrap;
    font-size: 0.625rem !important;
    letter-spacing: 0.16em !important;
    padding: 0.625rem 1rem !important;
}

@media (min-width: 1280px) {
    .site-nav-cta {
        font-size: 0.6875rem !important;
        letter-spacing: 0.2em !important;
        padding: 1rem 1.75rem !important;
    }
}

.nav-link {
    position: relative;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    transition: color 0.3s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: all 0.4s var(--ease-out-expo);
    transform: translateX(-50%);
    border-radius: 999px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary) !important;
}

/* Header scroll state */
.header-scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 1px 0 rgba(0, 10, 35, 0.06), 0 4px 20px rgba(0, 10, 35, 0.04) !important;
    height: 4.5rem !important;
}

/* Header Transitions & Mobile Menu Open States */
#main-header a {
    transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

#main-header.mobile-menu-open a {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Keep hamburger always visible and clickable even when menu is open */
#main-header.mobile-menu-open #hamburger {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* --- Mobile Menu --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 10, 35, 0.4);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-expo);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100dvh;
    max-height: 100dvh;
    background: #ffffff;
    z-index: 95;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.45s var(--ease-out-expo), visibility 0.45s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -12px 0 48px rgba(0, 10, 35, 0.12);
    box-sizing: border-box;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: max(1rem, env(safe-area-inset-top, 0px)) 3.5rem 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.mobile-menu-nav {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1.25rem;
}

.mobile-nav-link {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0.875rem 0;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    padding-left: 0.375rem;
}

.mobile-menu-footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem 1.25rem max(1.25rem, env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    background: #fafbfc;
}

.mobile-menu-btn {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu-btn--secondary {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--primary);
}

.mobile-menu-btn--secondary:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 10, 35, 0.06);
}

.mobile-menu-btn--primary {
    background: linear-gradient(135deg, #00204e 0%, #000a23 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 10, 35, 0.2);
}

.mobile-menu-btn--primary:hover {
    box-shadow: 0 6px 18px rgba(0, 10, 35, 0.28);
    transform: translateY(-1px);
}

/* Prevent mobile menu and overlay from rendering on desktop viewports */
@media (min-width: 1025px) {

    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Hamburger Animation */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 110;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out-expo);
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* --- Scroll Reveal --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.95);
}

/* --- Hero Mesh Background --- */
.hero-mesh {
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 255, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 32, 78, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 110, 26, 0.03) 0%, transparent 70%);
}

/* --- Hero Landing --- */
.hero-gradient-mask {
    background:
        linear-gradient(108deg,
            #ffffff 0%,
            #ffffff 38%,
            rgba(255, 255, 255, 0.94) 50%,
            rgba(255, 255, 255, 0.55) 68%,
            rgba(255, 255, 255, 0.15) 85%,
            transparent 100%),
        linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0.85) 12%, transparent 38%);
}

.hero-gradient-mask--compact {
    background:
        linear-gradient(105deg,
            #ffffff 0%,
            #ffffff 42%,
            rgba(255, 255, 255, 0.92) 52%,
            rgba(255, 255, 255, 0.72) 62%,
            rgba(255, 255, 255, 0.35) 78%,
            transparent 100%),
        linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0.9) 8%, transparent 28%);
}

/* --- Compact Hero (Home) --- */
.hero-section--compact {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-section--compact {
        padding-top: 7rem;
        padding-bottom: 3.5rem;
    }
}

.hero-inner {
    animation: heroFadeIn 0.9s var(--ease-out-expo) both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem 3rem;
    }
}

.hero-grid--solo {
    grid-template-columns: 1fr;
    max-width: 40rem;
}

@media (min-width: 1024px) {
    .hero-grid--solo {
        max-width: 44rem;
    }
}

.hero-copy {
    max-width: 36rem;
}

.hero-grid--solo .hero-copy {
    max-width: none;
}

/* Hero track widget (card only, no image overlay) */
.hero-track-widget {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .hero-track-widget {
        max-width: none;
        margin-inline: 0;
        align-self: center;
    }
}

.hero-track-widget .hero-track-panel {
    padding: 1.5rem 1.625rem;
    border-radius: 1.5rem;
}

.hero-track-widget .hero-track-panel-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: 1rem;
}

.hero-track-heading--lg {
    font-size: 1.25rem;
}

.hero-track-desc--lg {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.hero-track-actions--stack {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.hero-track-actions--stack .hero-track-btn {
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
}

.hero-track-actions--stack .hero-track-btn .material-symbols-outlined {
    font-size: 1.125rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 110, 26, 0.18);
    color: var(--secondary);
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 10, 35, 0.04);
}

.hero-badge-dot {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
}

.hero-badge-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--secondary);
    animation: heroPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes heroPing {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    75%,
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(1.75rem, 4.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--primary);
    margin-bottom: 0.875rem;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--secondary) 0%, #00a844 55%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
    max-width: 32rem;
    margin-bottom: 1.25rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.hero-cta-primary,
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.4s var(--ease-out-expo);
}

.hero-cta-primary {
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 10, 35, 0.2);
}

.hero-cta-primary .material-symbols-outlined {
    font-size: 1rem;
}

.hero-cta-secondary {
    padding: 0.75rem 1.125rem;
}

.hero-cta-secondary .material-symbols-outlined {
    font-size: 1.125rem;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-metrics li {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    padding: 0 1rem;
    border-left: 1px solid rgba(0, 10, 35, 0.1);
}

.hero-metrics li:first-child {
    padding-left: 0;
    border-left: none;
}

.hero-metrics strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-metrics li:nth-child(2) strong {
    color: var(--secondary);
}

.hero-metrics span {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow--green {
    top: 12%;
    right: 8%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.12) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-glow--blue {
    bottom: 5%;
    left: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 10, 35, 0.06) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite reverse;
}

.hero-aside {
    width: 100%;
    max-width: 26rem;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .hero-aside {
        max-width: none;
        margin-inline: 0;
    }
}

.hero-aside-frame {
    position: relative;
}

.hero-aside-visual {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(0, 10, 35, 0.1);
}

.hero-aside-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 1.2s var(--ease-out-expo);
}

.hero-aside-frame:hover .hero-aside-img {
    transform: scale(1.06);
}

.hero-aside-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 35%, rgba(0, 10, 35, 0.25) 100%);
    pointer-events: none;
}

.hero-track-panel--compact {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: -1.25rem;
    padding: 1rem 1.125rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 16px 40px rgba(0, 10, 35, 0.12),
        0 0 0 1px rgba(0, 10, 35, 0.04);
}

@media (min-width: 1024px) {
    .hero-aside-visual {
        aspect-ratio: 4 / 3;
    }

    .hero-track-panel--compact {
        left: auto;
        right: -0.5rem;
        bottom: 1.25rem;
        width: min(100%, 17.5rem);
    }
}

.hero-track-panel-top {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.hero-track-eyebrow {
    font-size: 0.5625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary);
    line-height: 1.2;
}

.hero-track-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-track-desc {
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.hero-track-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.hero-track-panel--compact .hero-track-btn {
    padding: 0.625rem 0.5rem;
    border-radius: 0.625rem;
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
    gap: 0.35rem;
}

.hero-track-panel--compact .hero-track-btn .material-symbols-outlined {
    font-size: 0.9375rem;
}

.hero-track-btn--primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #008a20 100%);
    box-shadow: 0 6px 18px rgba(0, 110, 26, 0.28);
    color: #fff;
}

.hero-track-btn--primary:hover {
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 110, 26, 0.38);
}

.hero-track-btn--ghost {
    background: rgba(0, 10, 35, 0.04);
    color: var(--primary);
    border: 1px solid rgba(0, 10, 35, 0.08);
    box-shadow: none;
}

.hero-track-btn--ghost:hover {
    background: #fff;
    color: var(--primary);
    border-color: rgba(0, 110, 26, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 10, 35, 0.08);
}

.hero-float-stat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 10, 35, 0.08);
    animation: float 5s ease-in-out infinite;
}

.hero-float-stat .material-symbols-outlined {
    font-size: 1.125rem;
    color: var(--secondary);
}

.hero-float-stat strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.hero-float-stat span {
    display: block;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    line-height: 1.2;
}

@media (max-width: 639px) {
    .hero-aside-frame {
        padding-bottom: 0.25rem;
    }

    .hero-aside-visual,
    .hero-float-stat {
        display: none;
    }

    .hero-track-panel--compact {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 0;
        width: 100%;
        padding: 1.125rem 1.25rem;
    }

    .hero-track-actions {
        grid-template-columns: 1fr 1fr;
    }

    .hero-float-stat {
        top: 0.5rem;
        left: 0.5rem;
    }
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 10, 35, 0.08);
    box-shadow: 0 8px 30px rgba(0, 10, 35, 0.06);
    transition: all 0.45s var(--ease-out-expo);
}

.hero-btn-outline:hover {
    background: #fff;
    border-color: rgba(0, 110, 26, 0.25);
    box-shadow: 0 14px 40px rgba(0, 10, 35, 0.1);
    transform: translateY(-2px);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    border-top: 1px solid rgba(0, 10, 35, 0.08);
}

.hero-trust-metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-trust-value {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.hero-trust-label {
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
}

.hero-track-panel {
    padding: 1.75rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 24px 60px rgba(0, 10, 35, 0.12),
        0 0 0 1px rgba(0, 10, 35, 0.04);
}

.hero-track-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-track-panel-icon {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, rgba(0, 110, 26, 0.12), rgba(0, 255, 157, 0.15));
    color: var(--secondary);
    font-size: 1.125rem;
}

.hero-track-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.875rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #00204e 0%, #000a23 50%, #001538 100%);
    box-shadow: 0 8px 24px rgba(0, 10, 35, 0.2);
    transition: all 0.45s var(--ease-out-expo);
}

.hero-track-btn--alt {
    background: linear-gradient(135deg, #006e1a 0%, #005a14 100%);
    box-shadow: 0 8px 24px rgba(0, 110, 26, 0.2);
}

.hero-track-btn--lg {
    padding: 1.25rem 1.5rem;
    font-size: 0.75rem;
    border-radius: 1rem;
}

.hero-track-btn:not(.magnetic-btn):hover {
    transform: translateY(-3px);
}

.hero-track-btn:hover {
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 10, 35, 0.35);
}

.hero-track-btn--alt:hover {
    box-shadow: 0 16px 40px rgba(0, 110, 26, 0.35);
}

.hero-track-banner {
    isolation: isolate;
}

.hero-track-banner-bg {
    position: absolute;
    inset: 0;
    transform: scale(1.05);
}

.hero-track-banner-bg img {
    filter: blur(3px);
}

.hero-track-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(0, 10, 35, 0.93) 0%, rgba(0, 40, 90, 0.85) 50%, rgba(0, 80, 30, 0.82) 100%);
}

/* Animated glow orb */
.track-banner-glow {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.14) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    animation: float 7s ease-in-out infinite;
}

/* Horizontal inner layout */
.track-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Left copy */
.track-banner-copy {
    flex: 1 1 0;
    min-width: 0;
}

.track-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(0, 255, 157, 0.85);
    margin-bottom: 0.5rem;
}

.track-banner-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff9d;
    flex-shrink: 0;
    animation: pulse-slow 2.5s ease-in-out infinite;
}

.track-banner-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.track-banner-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    line-height: 1.5;
    max-width: 38ch;
}

/* Right actions */
.track-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.track-banner-btn {
    white-space: nowrap;
    padding: 0.875rem 1.375rem !important;
    font-size: 0.6875rem !important;
    border-radius: 0.875rem !important;
}

/* Divider line between copy and actions on large screens */
@media (min-width: 768px) {
    .track-banner-inner::after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 12%;
        bottom: 12%;
        width: 1px;
        background: rgba(255, 255, 255, 0.08);
        pointer-events: none;
    }

    .track-banner-inner {
        position: relative;
    }
}

/* Mobile: stack vertically, centered */
@media (max-width: 639px) {
    .track-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .track-banner-actions {
        width: 100%;
    }

    .track-banner-btn {
        flex: 1;
        justify-content: center;
    }

    .track-banner-glow {
        display: none;
    }
}

.hero-showcase-glow {
    position: absolute;
    inset: -12%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.18) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.hero-showcase {
    position: relative;
    z-index: 1;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 30px 80px rgba(0, 10, 35, 0.14),
        0 0 0 1px rgba(0, 10, 35, 0.04);
}

.hero-showcase-img {
    display: block;
    transform: scale(1.02);
    transition: transform 1.2s var(--ease-out-expo);
}

.hero-showcase:hover .hero-showcase-img {
    transform: scale(1.06);
}

.hero-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 10, 35, 0.55) 0%, transparent 45%);
    pointer-events: none;
}

.hero-showcase-caption {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-float-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 40px rgba(0, 10, 35, 0.1);
    animation: float 5s ease-in-out infinite;
}

.hero-float-badge--top {
    top: 1.5rem;
    left: -0.5rem;
    animation-delay: 0.5s;
}

.hero-float-badge--bottom {
    bottom: 2.5rem;
    right: -0.25rem;
    animation-delay: 1.2s;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 10, 35, 0.08);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 10, 35, 0.08);
    animation: float 2.5s ease-in-out infinite;
    transition: background 0.3s var(--ease-out-expo);
}

.hero-scroll-hint:hover {
    background: #fff;
    color: var(--secondary);
}

/* --- Client Logo Marquee (Home Page) --- */
.logo-marquee {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    opacity: 0.85;
    transition: all 0.5s var(--ease-out-expo);
}

.logo-marquee-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-marquee-item img {
    height: 100%;
    width: auto;
    max-width: 8rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-marquee-item {
        height: 3.5rem;
    }

    .logo-marquee-item img {
        max-width: 10rem;
    }
}

/* --- Clients Page --- */
/* Client logo card with real logo image */
.client-logo-card-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 10, 35, 0.06);
    box-shadow: 0 8px 24px rgba(0, 10, 35, 0.04);
    transition: all 0.5s var(--ease-out-expo);
    min-height: 11rem;
}

.client-logo-card-img:hover {
    border-color: rgba(0, 110, 26, 0.2);
    box-shadow: 0 16px 40px rgba(0, 10, 35, 0.1);
    transform: translateY(-4px);
}

.client-logo-card-img .client-logo-img {
    height: 3.5rem;
    width: auto;
    display: block;
    max-width: 8rem;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.5s var(--ease-out-expo);
}

.client-logo-card-img:hover .client-logo-img {
    transform: scale(1.08);
}

.client-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.75rem 1.25rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 10, 35, 0.06);
    box-shadow: 0 8px 24px rgba(0, 10, 35, 0.04);
    transition: all 0.5s var(--ease-out-expo);
    min-height: 10.5rem;
}

.client-logo-card:hover {
    border-color: rgba(0, 110, 26, 0.2);
    box-shadow: 0 16px 40px rgba(0, 10, 35, 0.1);
    transform: translateY(-4px);
}

.client-logo-mark {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 110, 26, 0.08), rgba(0, 255, 157, 0.12));
    margin-bottom: 0.875rem;
    transition: all 0.45s var(--ease-out-expo);
}

.client-logo-card:hover .client-logo-mark {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
}

.client-logo-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 0.375rem;
}

.client-logo-tag {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

@media (max-width: 1023px) {

    .hero-gradient-mask,
    .hero-gradient-mask--compact {
        background:
            linear-gradient(to bottom,
                #ffffff 0%,
                rgba(255, 255, 255, 0.98) 55%,
                rgba(255, 255, 255, 0.92) 100%),
            linear-gradient(to top, #ffffff 0%, transparent 20%);
    }

    .hero-track-panel:not(.hero-track-panel--compact) {
        max-width: 28rem;
        margin-inline: auto;
    }

    .hero-section--compact {
        padding-bottom: 2rem;
    }
}

/* --- Gradient Blobs --- */
.blob-green {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-blue {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 32, 78, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* --- Animated Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--accent), var(--secondary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* --- Floating Animation --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

/* --- Pulse Slow --- */
@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.95;
    }
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

/* --- Glow Pulse --- */
@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.15);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 157, 0.3);
    }
}

.animate-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* --- Particle Grid Background --- */
.particle-grid {
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0, 10, 35, 0.04) 1px, transparent 0);
    background-size: 40px 40px;
}

/* --- Section Divider --- */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* --- Premium Card Hover --- */
.card-hover {
    transition: all 0.5s var(--ease-out-expo);
    cursor: pointer;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 10, 35, 0.1);
}

/* --- Progress Bar Animation --- */
.progress-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 999px;
    transition: width 1.5s var(--ease-out-expo);
}

/* --- Custom Scrollbar --- */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 10, 35, 0.15);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 10, 35, 0.25);
}

/* --- Marquee / Ticker --- */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

/* --- Subtle Shine Effect --- */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.08) 45%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.08) 55%,
            transparent 60%);
    transform: translateX(-100%) rotate(0);
    transition: transform 0.8s var(--ease-out-expo);
}

.shine-effect:hover::after {
    transform: translateX(50%) rotate(0);
}

/* --- Counter Badge --- */
.counter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--primary);
    font-size: 0.625rem;
    font-weight: 800;
}

/* --- Responsive Typography Scale --- */
.text-hero {
    font-size: clamp(2.5rem, 7vw, 6.5rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.text-display {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.text-heading {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* --- Noise Texture Overlay --- */
.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* --- Timeline Section --- */
.timeline-line {
    background: linear-gradient(to bottom, transparent, var(--primary) 15%, var(--primary) 85%, transparent);
}

/* --- Tooltip --- */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 0.5rem 0.75rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

.tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* --- Focus Visible --- */
:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* --- Selection --- */
::selection {
    background: rgba(0, 255, 157, 0.2);
    color: var(--primary);
}

/* --- Page Transition --- */
.page-transition {
    animation: page-fade-in 0.6s var(--ease-out-expo) forwards;
}

@keyframes page-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* --- Responsive Utilities --- */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }

    .mobile-full {
        width: 100% !important;
    }

    .mobile-stack {
        flex-direction: column !important;
    }

    .mobile-text-center {
        text-align: center !important;
    }
}

@media (max-width: 1024px) {
    .tablet-hidden {
        display: none !important;
    }
}

/* --- Dark Section --- */
.section-dark {
    background: linear-gradient(135deg, #000a23 0%, #001538 50%, #000a23 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 157, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 110, 26, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* --- Material Symbols Config --- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* --- Loading Skeleton --- */
@keyframes skeleton-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

/* --- Orbit Animation (for decorative elements) --- */
@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

.animate-orbit {
    animation: orbit 20s linear infinite;
}

/* --- Form Inputs --- */
.input-premium {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    color: var(--on-surface);
    transition: all 0.3s var(--ease-out-expo);
    outline: none;
    width: 100%;
}

.input-premium:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0, 110, 26, 0.08);
}

.input-premium::placeholder {
    color: #94a3b8;
}

/* --- Tag/Badge --- */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tag-green {
    background: rgba(0, 110, 26, 0.08);
    color: var(--secondary);
    border: 1px solid rgba(0, 110, 26, 0.15);
}

.tag-primary {
    background: rgba(0, 10, 35, 0.05);
    color: var(--primary);
    border: 1px solid rgba(0, 10, 35, 0.1);
}

/* --- Cursor Glow --- */
#cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.06) 0%, rgba(0, 110, 26, 0.02) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
}