:root {
    /* Enhanced Color Palette */
    --primary-950: #0A1628;
    --primary-900: #1a2845;
    --primary-800: #293d5f;
    --primary-700: #3d5578;
    --primary-600: #527099;
    --primary-500: #6B8BB5;
    --primary-400: #85A5CB;
    --primary-300: #A4BCE0;
    --primary-200: #C5D7F0;
    --primary-100: #E3ECF8;
    --primary-50: #F4F8FD;

    --accent-600: #4F7CAD;
    --accent-500: #6A94C7;
    --accent-400: #88AED8;
    --accent-300: #A8C5E8;
    --accent-200: #C9DDF5;
    --accent-100: #E6F1FB;

    --surface-glass: rgba(255, 255, 255, 0.72);
    --surface-glass-hover: rgba(255, 255, 255, 0.88);
    --surface-glass-strong: rgba(255, 255, 255, 0.95);
    --surface-overlay: rgba(10, 22, 40, 0.03);

    --text-primary: #0F1A2E;
    --text-secondary: #3d5578;
    --text-muted: #6B8BB5;
    --text-dim: #A4BCE0;

    /* Sophisticated Gradients */
    --gradient-hero: linear-gradient(135deg, #6B8BB5 0%, #4F7CAD 45%, #3d5578 100%);
    --gradient-accent: linear-gradient(120deg, #88AED8 0%, #6A94C7 50%, #527099 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(107, 139, 181, 0.1) 0%, rgba(79, 124, 173, 0.05) 100%);
    --gradient-mesh:
        radial-gradient(at 0% 0%, rgba(164, 188, 224, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(138, 174, 216, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(107, 139, 181, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(164, 188, 224, 0.08) 0px, transparent 50%);

    /* Elevated Shadows */
    --shadow-xs: 0 1px 2px rgba(15, 26, 46, 0.04);
    --shadow-sm: 0 2px 8px rgba(15, 26, 46, 0.06), 0 1px 3px rgba(15, 26, 46, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 26, 46, 0.08), 0 2px 6px rgba(15, 26, 46, 0.04);
    --shadow-lg: 0 12px 40px rgba(15, 26, 46, 0.12), 0 4px 16px rgba(15, 26, 46, 0.06);
    --shadow-xl: 0 20px 60px rgba(15, 26, 46, 0.16), 0 8px 24px rgba(15, 26, 46, 0.08);
    --shadow-glow: 0 8px 32px rgba(107, 139, 181, 0.2);
    --shadow-glow-strong: 0 16px 48px rgba(107, 139, 181, 0.3);

    /* Refined Borders */
    --border-subtle: rgba(107, 139, 181, 0.15);
    --border-medium: rgba(107, 139, 181, 0.25);
    --border-strong: rgba(107, 139, 181, 0.4);
    --border-glass: rgba(255, 255, 255, 0.7);

    /* Modern Radiuses */
    --radius-2xl: 32px;
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;

    --container: 1240px;
    --nav-height: 72px;

    /* Refined Transitions */
    --transition-smooth: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 20px);
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background: linear-gradient(180deg,
        rgba(244, 248, 253, 1) 0%,
        rgba(255, 255, 255, 1) 45%,
        rgba(250, 252, 254, 1) 100%);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    font-feature-settings: 'ss01', 'ss02', 'cv05', 'cv11';
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--gradient-mesh);
    z-index: -1;
    opacity: 1;
    animation: meshMove 25s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% {
        opacity: 0.85;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) rotate(2deg);
    }
}

body::after {
    content: '';
    position: fixed;
    top: -20%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(
        circle at center,
        rgba(164, 188, 224, 0.12) 0%,
        rgba(138, 174, 216, 0.06) 35%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    animation: floatOrb 40s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(-120px, 150px) scale(1.15);
        opacity: 0.8;
    }
    66% {
        transform: translate(80px, -100px) scale(0.95);
        opacity: 0.7;
    }
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

* {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
}

main {
    padding-top: var(--nav-height);
}

.container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
}

.skip-link {
    display: none;
}

/* Navigation */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.88) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(107, 139, 181, 0.3) 50%,
        transparent 100%);
    opacity: 0.6;
}

.navbar.scrolled {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.94) 100%);
    border-bottom-color: var(--border-medium);
    box-shadow: var(--shadow-md),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.nav-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    height: var(--nav-height);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    opacity: 1;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 8px rgba(136, 189, 242, 0.2));
}

.logo-container:hover {
    opacity: 0.85;
    filter: drop-shadow(0 4px 12px rgba(136, 189, 242, 0.3));
    transform: translateY(-1px);
}

.logo {
    height: 36px;
    width: auto;
    transition: var(--transition-fast);
}

.logo--text {
    height: 36px;
    max-width: min(260px, 50vw);
}

.nav-badge {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 6px;
    box-shadow: 0 4px 24px rgba(136, 189, 242, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0;
    position: relative;
    padding: 10px 20px;
    border-radius: 100px;
    transition: var(--transition-fast);
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(136, 189, 242, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: var(--transition-fast);
}

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

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    color: var(--stormy-dark);
    font-weight: 600;
}

.nav-link.active::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(136, 189, 242, 0.2) 0%, rgba(189, 221, 252, 0.15) 100%);
}

.cta-button {
    padding: 13px 30px;
    border-radius: 100px;
    background: var(--gradient-hero);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 0.96rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%);
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: 100px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(43, 108, 176, 0.15);
    box-shadow:
        0 2px 8px rgba(43, 108, 176, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #2259D8;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.mobile-menu-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 4px 12px rgba(43, 108, 176, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #2259D8;
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 17px 36px;
    border-radius: 100px;
    font-size: 1.02rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-smooth);
    white-space: nowrap;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-hero);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg),
                0 0 0 0 rgba(107, 139, 181, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: 100px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl),
                0 0 0 6px rgba(107, 139, 181, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--surface-glass-strong);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--primary-700);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-md),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: 100px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    color: var(--primary-900);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: transparent;
    width: 100%;
    max-width: 100%;
}

.hero--home {
    padding: clamp(72px, 10vh, 110px) 0 clamp(90px, 12vh, 130px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-height: 56vh;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(120deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.72) 45%, rgba(20, 66, 82, 0.62) 70%),
        linear-gradient(180deg, rgba(148, 198, 208, 0.28) 0%, rgba(148, 198, 208, 0.08) 70%),
        url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    isolation: isolate;
    color: #ffffff;
    /* Performance optimizations */
    contain: layout style paint;
    content-visibility: auto;
    /* Parallax scroll optimization */
    will-change: background-position;
}

.hero--home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 20% 25%, rgba(255, 255, 255, 0.12), transparent 48%),
                radial-gradient(110% 90% at 78% 18%, rgba(148, 198, 208, 0.25), transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.hero-shell {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-copy-card {
    position: relative;
    padding: 48px;
    display: flex;
    overflow: visible;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 580px;
    width: 100%;
    color: #ffffff;
    margin: 0;
    text-align: left;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 24px 80px rgba(5, 10, 20, 0.45),
        0 10px 30px rgba(10, 26, 46, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    box-sizing: border-box;
}

.hero-copy-card::before {
    display: none;
}

.hero-copy-card h1 {
    line-height: 1.05;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    width: 100%;
}

.hero-copy-card .subtitle {
    margin-bottom: 0;
    max-width: 48ch;
    line-height: 1.58;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}


@keyframes etherealDrift {
    0%, 100% {
        background-position: 0 0, 0% 0%, 100% 0%, 50% 50%, 0% 100%;
    }
    25% {
        background-position: 0 0, 5% 8%, 95% 5%, 48% 55%, 3% 95%;
    }
    50% {
        background-position: 0 0, 10% 15%, 90% 10%, 52% 48%, 5% 90%;
    }
    75% {
        background-position: 0 0, 5% 8%, 95% 5%, 48% 52%, 2% 95%;
    }
}

.hero--compact {
    padding: 50px 0 80px;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 32px);
    position: relative;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.hero--compact .hero-content {
    text-align: center;
    transform: scale(0.8);
    transform-origin: center top;
}

.hero--compact .subtitle,
.hero--compact p {
    margin-left: auto;
    margin-right: auto;
}

.hero--compact .hero-buttons {
    justify-content: center;
}

.hero--home .hero-content {
    text-align: center;
    transform: scale(1) !important;
    transform-origin: center;
    margin: 0;
    padding: 0;
    max-width: 820px;
}

.hero-grid {
    display: grid;
    gap: 36px;
}

.hero-grid--split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.hero-grid--balanced {
    display: grid;
    gap: 32px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 100px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(248, 250, 251, 0.7) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    color: var(--stormy-blue);
    font-weight: 650;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
    margin-bottom: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 16px rgba(136, 189, 242, 0.15);
    position: relative;
}

.eyebrow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(135deg,
        var(--sky-light) 0%,
        var(--sky-medium) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.hero h1 {
    font-size: clamp(2.9rem, 5vw, 4.9rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-top: 0;
    margin-bottom: 28px;
    font-weight: 820;
    background: linear-gradient(
        125deg,
        var(--primary-950) 0%,
        var(--primary-700) 25%,
        var(--primary-600) 50%,
        var(--primary-500) 75%,
        var(--primary-400) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleGradientShift 15s ease-in-out infinite;
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    filter: drop-shadow(0 4px 24px rgba(107, 139, 181, 0.15));
}

@keyframes titleGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero--home h1 {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    font-size: clamp(2.3rem, 4.6vw, 3.5rem);
    background: none;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
    max-width: 18ch;
    filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.25));
    margin: 0;
}

.hero .subtitle {
    font-size: 1.28rem;
    color: var(--text-secondary);
    max-width: 52ch;
    font-weight: 440;
    line-height: 1.72;
    margin: 0 auto 36px;
    letter-spacing: -0.015em;
    position: relative;
    opacity: 0;
    animation: subtitleFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero--home .subtitle {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    font-size: clamp(1.02rem, 2.2vw, 1.22rem);
    margin: 0;
}

.hero--home .subtitle,
.hero--home .hero-lede,
.hero--home p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 48ch;
    line-height: 1.7;
}

.hero--home p {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.22rem);
}

.hero.hero--home .subtitle,
.hero.hero--home .hero-lede {
    margin-bottom: 0;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    margin-top: 0;
    color: var(--text-muted);
    max-width: 55ch;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.hero-lede {
    color: var(--text-muted);
    font-weight: 400;
}

.hero-checklist {
    display: grid;
    gap: 16px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero--compact .hero-checklist {
    text-align: left;
}

.hero-check {
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.hero-check:hover {
    border-color: var(--border-glow);
    background: var(--surface-glass-hover);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(244, 248, 253, 0.9) 100%);
    border: 1px solid var(--border-medium);
    color: var(--primary-700);
    font-weight: 640;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-sm);
}

.hero-pill-row {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-pill-row--tight {
    margin-bottom: 4px;
}

.pill--soft {
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-weight: 620;
    padding: 8px 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), var(--shadow-xs);
}

.pill--ghost {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(107, 139, 181, 0.25);
    color: var(--primary-700);
    font-weight: 600;
    padding: 8px 14px;
    box-shadow: var(--shadow-xs);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    border-radius: 100px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 252, 255, 0.92) 50%,
        rgba(244, 248, 253, 0.95) 100%);
    border: 1.5px solid rgba(107, 139, 181, 0.3);
    color: var(--primary-700);
    font-weight: 620;
    font-size: 0.92rem;
    margin-bottom: 36px;
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    box-shadow:
        0 4px 24px rgba(107, 139, 181, 0.15),
        0 2px 8px rgba(107, 139, 181, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(107, 139, 181, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.015em;
    opacity: 0;
    animation: badgeEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    transition: all var(--transition-smooth);
}

@keyframes badgeEntrance {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 32px rgba(107, 139, 181, 0.2),
        0 4px 12px rgba(107, 139, 181, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(107, 139, 181, 0.12);
    border-color: rgba(107, 139, 181, 0.4);
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(135deg,
        rgba(164, 188, 224, 0.6) 0%,
        rgba(138, 174, 216, 0.4) 50%,
        rgba(107, 139, 181, 0.5) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    animation: badgeGlow 4s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        opacity: 0.4;
        filter: blur(0px);
    }
    50% {
        opacity: 0.8;
        filter: blur(1px);
    }
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%);
    animation: badgeShimmer 6s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    40%, 60% {
        left: 100%;
        opacity: 0.6;
    }
}

.hero-badge svg {
    width: 15px;
    height: 15px;
    color: var(--primary-600);
    animation: badgePulse 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(107, 139, 181, 0.3));
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

@keyframes waveDrift {
    0% {
        transform: translateX(-12px) scale(1);
    }
    100% {
        transform: translateX(22px) scale(1.05);
    }
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 18px;
}

.hero-wave {
    position: relative;
    border-radius: var(--radius-2xl);
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(107, 139, 181, 0.08) 60%,
        rgba(79, 124, 173, 0.18) 100%);
    border: 1px solid rgba(107, 139, 181, 0.22);
    min-height: 360px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
    -webkit-clip-path: path('M0 0 H100% V78% C75% 98% 25% 98% 0 78% Z');
    clip-path: path('M0 0 H100% V78% C75% 98% 25% 98% 0 78% Z');
}

.wave-layer {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 180px;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.75;
    animation: waveDrift 12s ease-in-out infinite alternate;
}

.wave-layer--one {
    top: 18%;
    background: linear-gradient(90deg, rgba(107, 139, 181, 0.35), rgba(136, 174, 216, 0.22));
    animation-duration: 14s;
}

.wave-layer--two {
    top: 42%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(138, 174, 216, 0.18));
    animation-duration: 12s;
    animation-delay: 1s;
}

.wave-layer--three {
    top: 65%;
    background: linear-gradient(90deg, rgba(107, 139, 181, 0.2), rgba(255, 255, 255, 0.85));
    animation-duration: 16s;
    animation-delay: 0.5s;
}

.hero-floating {
    position: absolute;
    padding: 18px 20px;
    border-radius: var(--radius-xl);
    background: var(--surface-glass-strong);
    border: 1px solid rgba(107, 139, 181, 0.25);
    box-shadow: var(--shadow-md);
    width: min(320px, 88%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: floatSoft 6s ease-in-out infinite;
}

.hero-floating p {
    margin-top: 8px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-floating--primary {
    top: 12%;
    left: 8%;
}

.hero-floating--secondary {
    bottom: 10%;
    right: 8%;
    animation-delay: 1s;
}

.hero-bubble {
    position: absolute;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(107, 139, 181, 0.18);
    box-shadow: var(--shadow-sm);
    max-width: 240px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: floatSoft 7s ease-in-out infinite alternate;
}

.hero-bubble .bubble-title {
    font-weight: 700;
    color: var(--primary-800);
    letter-spacing: -0.01em;
}

.hero-bubble .bubble-sub {
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
    font-size: 0.96rem;
}

.hero-bubble--left {
    bottom: 38%;
    left: 6%;
}

.hero-bubble--right {
    top: 44%;
    right: 6%;
    animation-delay: 0.8s;
}

.hero-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(107, 139, 181, 0.18);
    box-shadow: var(--shadow-md);
}

.hero-strip-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(107, 139, 181, 0.16);
}

.strip-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-accent);
    box-shadow: 0 0 0 6px rgba(107, 139, 181, 0.12);
    margin-top: 4px;
}

.strip-title {
    font-weight: 680;
    color: var(--primary-800);
    letter-spacing: -0.01em;
}

.strip-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.hero-card {
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-subtle);
    background: var(--surface-glass-strong);
    padding: 28px 30px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.hero-card--primary {
    background: linear-gradient(145deg,
        rgba(107, 139, 181, 0.12) 0%,
        rgba(79, 124, 173, 0.08) 50%,
        rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(107, 139, 181, 0.3);
}

.hero-card--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(138, 174, 216, 0.3) 0%, transparent 35%),
        radial-gradient(circle at 50% 70%, rgba(107, 139, 181, 0.18) 0%, transparent 50%);
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

.hero-card--secondary {
    background: linear-gradient(160deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(244, 248, 253, 0.9) 100%);
    border: 1px solid rgba(107, 139, 181, 0.22);
    box-shadow: var(--shadow-md);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(107, 139, 181, 0.25);
    color: var(--primary-700);
    font-weight: 650;
    font-size: 0.92rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), var(--shadow-xs);
}

.hero-chip--ghost {
    background: rgba(255, 255, 255, 0.65);
    border-style: dashed;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(107, 139, 181, 0.12);
    color: var(--primary-700);
    font-weight: 650;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B8BB5 0%, #4F7CAD 100%);
    box-shadow: 0 0 0 6px rgba(107, 139, 181, 0.15);
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.hero-card-lede {
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
}

.hero-card-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 12px;
}

.hero-card-metric {
    padding: 14px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(107, 139, 181, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-card-metric .metric-value {
    font-size: 1.9rem;
    font-weight: 780;
    color: var(--primary-800);
    letter-spacing: -0.03em;
}

.hero-card-metric .metric-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 6px;
}

.hero-card-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(107, 139, 181, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero-step .step-title {
    font-weight: 650;
    color: var(--primary-800);
    letter-spacing: -0.01em;
}

.hero-step .step-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-accent);
    box-shadow: 0 0 0 6px rgba(107, 139, 181, 0.18);
}

.step-pill {
    margin-left: auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(107, 139, 181, 0.12);
    color: var(--primary-800);
    font-weight: 650;
    border: 1px solid rgba(107, 139, 181, 0.25);
}

.hero-mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.hero-mini-status {
    color: var(--primary-600);
    font-weight: 620;
}

.hero-mini-tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (min-width: 1025px) {
    .hero-card--secondary {
        max-width: 360px;
        justify-self: end;
        margin-right: 10px;
        margin-top: -6px;
    }

    .hero-visual {
        gap: 22px;
        align-self: stretch;
    }
}

/* Hero Decorative Elements */
.hero-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.hero-decorations::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'%3E%3Cpath fill='%23A4BCE0' fill-opacity='0.06' d='M0,80L48,85.3C96,91,192,101,288,106.7C384,112,480,112,576,101.3C672,91,768,69,864,69.3C960,69,1056,91,1152,101.3C1248,112,1344,112,1392,112L1440,112L1440,200L1392,200C1344,200,1248,200,1152,200C1056,200,960,200,864,200C768,200,672,200,576,200C480,200,384,200,288,200C192,200,96,200,48,200L0,200L0,155C96,148,192,133,288,133.3C384,133,480,149,576,154.7C672,160,768,155,864,149.3C960,144,1056,139,1152,144C1248,149,1344,165,1392,173.3L1440,181L1440,200L1392,200C1344,200,1248,200,1152,200C1056,200,960,200,864,200C768,200,672,200,576,200C480,200,384,200,288,200C192,200,96,200,48,200L0,200Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 220% 100%;
    animation: waveFlow2 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes waveFlow2 {
    0%, 100% {
        background-position: 0% bottom;
        transform: translateX(0) scaleY(1);
    }
    50% {
        background-position: 100% bottom;
        transform: translateX(8px) scaleY(1.02);
    }
}

.hero-decorations::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 160px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='%2388AED8' fill-opacity='0.05' d='M0,72L48,77.3C96,83,192,93,288,93.3C384,93,480,83,576,80C672,77,768,83,864,90.7C960,99,1056,107,1152,106.7C1248,107,1344,99,1392,93.3L1440,88L1440,160L1392,160C1344,160,1248,160,1152,160C1056,160,960,160,864,160C768,160,672,160,576,160C480,160,384,160,288,160C192,160,96,160,48,160L0,160L0,120C96,115,192,107,288,112C384,117,480,139,576,144C672,149,768,139,864,128C960,117,1056,107,1152,106.7C1248,107,1344,117,1392,122.7L1440,128L1440,160L1392,160C1344,160,1248,160,1152,160C1056,160,960,160,864,160C768,160,672,160,576,160C480,160,384,160,288,160C192,160,96,160,48,160L0,160Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 280% 100%;
    animation: waveFlow3 35s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes waveFlow3 {
    0%, 100% {
        background-position: 100% bottom;
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        background-position: 0% bottom;
        transform: translateX(-10px);
        opacity: 1;
    }
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.04"/></svg>'),
        radial-gradient(ellipse 120% 90% at 30% 40%, rgba(164, 188, 224, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse 110% 85% at 75% 35%, rgba(138, 174, 216, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 60%, rgba(107, 139, 181, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 130% 95% at 20% 70%, rgba(164, 188, 224, 0.1) 0%, transparent 48%);
    background-size: 200px 200px, 800px 800px, 900px 900px, 700px 700px, 850px 850px;
    background-position: 0 0, 0% 0%, 100% 0%, 50% 50%, 0% 100%;
    animation: etherealDrift 30s ease-in-out infinite;
    mask-image: radial-gradient(
        ellipse 85% 65% at 50% 42%,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 75%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 85% 65% at 50% 42%,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 75%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: gridFadeIn 2s ease-out 0.5s forwards;
}

@keyframes gridFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0;
    pointer-events: none;
    animation-fill-mode: forwards;
}

.hero-orb--1 {
    top: 8%;
    left: 12%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle,
        rgba(164, 188, 224, 0.35) 0%,
        rgba(138, 174, 216, 0.22) 40%,
        transparent 75%);
    animation:
        orbFloat1 22s ease-in-out infinite,
        orbFadeIn 2s ease-out 0.2s forwards;
}

.hero-orb--2 {
    top: 45%;
    right: 8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
        rgba(138, 174, 216, 0.32) 0%,
        rgba(107, 139, 181, 0.20) 40%,
        transparent 75%);
    animation:
        orbFloat2 26s ease-in-out infinite,
        orbFadeIn 2s ease-out 0.4s forwards;
}

.hero-orb--3 {
    bottom: 18%;
    left: 48%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle,
        rgba(107, 139, 181, 0.28) 0%,
        rgba(164, 188, 224, 0.18) 40%,
        transparent 75%);
    animation:
        orbFloat3 32s ease-in-out infinite,
        orbFadeIn 2s ease-out 0.6s forwards;
}

@keyframes orbFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 0.5;
        transform: scale(1);
    }
}

@keyframes orbFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translate(60px, -50px) scale(1.15) rotate(5deg);
        opacity: 0.65;
    }
    66% {
        transform: translate(-40px, 45px) scale(0.92) rotate(-3deg);
        opacity: 0.55;
    }
}

@keyframes orbFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translate(-50px, 40px) scale(1.08) rotate(-4deg);
        opacity: 0.6;
    }
    66% {
        transform: translate(35px, -35px) scale(0.95) rotate(3deg);
        opacity: 0.58;
    }
}

@keyframes orbFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translate(45px, 35px) scale(1.12) rotate(6deg);
        opacity: 0.62;
    }
    66% {
        transform: translate(-38px, -28px) scale(0.94) rotate(-5deg);
        opacity: 0.52;
    }
}

.hero-shape {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    animation: shapeFadeIn 2s ease-out 0.8s forwards;
}

@keyframes shapeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 0.1;
        transform: scale(1);
    }
}

.hero-shape--1 {
    top: 18%;
    right: 22%;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg,
        var(--primary-400) 0%,
        var(--primary-500) 50%,
        var(--primary-600) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation:
        shapeRotate1 45s linear infinite,
        shapeFadeIn 2s ease-out 0.8s forwards;
    filter: blur(3px);
}

.hero-shape--2 {
    bottom: 28%;
    left: 18%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg,
        var(--accent-400) 0%,
        var(--accent-500) 50%,
        var(--accent-600) 100%);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation:
        shapeRotate2 38s linear infinite reverse,
        shapeFadeIn 2s ease-out 1s forwards;
    filter: blur(3px);
}

@keyframes shapeRotate1 {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.08);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes shapeRotate2 {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(-180deg) scale(1.05);
    }
    100% {
        transform: rotate(-360deg) scale(1);
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: -10% 0 0 0;
    overflow: hidden;
    pointer-events: none;
    filter: saturate(120%);
}

.particle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center,
        rgba(164, 188, 224, 0.04) 0%,
        rgba(138, 174, 216, 0.02) 40%,
        transparent 80%);
    border-radius: 50%;
    opacity: 0;
    filter: blur(60px);
    animation: subtleGlow 30s ease-in-out infinite;
    pointer-events: none;
}

.particle:nth-child(1) {
    top: 10%;
    left: 8%;
    animation-duration: 28s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 35%;
    right: 10%;
    animation-duration: 32s;
    animation-delay: 5s;
}

.particle:nth-child(3) {
    top: 20%;
    left: 50%;
    animation-duration: 30s;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    bottom: 15%;
    left: 15%;
    animation-duration: 34s;
    animation-delay: 8s;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 12%;
    animation-duration: 29s;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    top: 50%;
    left: 35%;
    animation-duration: 31s;
    animation-delay: 10s;
}

@keyframes subtleGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 0.2;
        transform: translate(15px, -15px) scale(1.05);
    }
    50% {
        opacity: 0.3;
        transform: translate(-10px, 10px) scale(1.08);
    }
    75% {
        opacity: 0.2;
        transform: translate(12px, -8px) scale(1.03);
    }
}

/* Hero Stats */
.hero-stats {
    margin-top: 90px;
    display: flex;
    gap: 56px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 42px 56px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(251, 253, 255, 0.92) 40%,
        rgba(248, 252, 255, 0.88) 100%);
    border: 1.5px solid rgba(107, 139, 181, 0.25);
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    box-shadow:
        0 8px 40px rgba(107, 139, 181, 0.12),
        0 4px 20px rgba(107, 139, 181, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(107, 139, 181, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: statsEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    transition: all var(--transition-smooth);
}

@keyframes statsEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats:hover {
    box-shadow:
        0 12px 48px rgba(107, 139, 181, 0.15),
        0 6px 24px rgba(107, 139, 181, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(107, 139, 181, 0.1);
    transform: translateY(-2px);
    border-color: rgba(107, 139, 181, 0.3);
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(138, 174, 216, 0.3) 10%,
        rgba(107, 139, 181, 0.5) 25%,
        rgba(107, 139, 181, 0.7) 50%,
        rgba(107, 139, 181, 0.5) 75%,
        rgba(138, 174, 216, 0.3) 90%,
        transparent 100%);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    animation: statsLineGlow 4s ease-in-out infinite;
}

@keyframes statsLineGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.hero-stats::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%,
        rgba(164, 188, 224, 0.08) 0%,
        transparent 70%);
    pointer-events: none;
}

.hero-stat {
    text-align: center;
    position: relative;
    padding: 0 8px;
    transition: all var(--transition-smooth);
}

.hero-stat:hover {
    transform: translateY(-4px);
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 56px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(107, 139, 181, 0.15) 10%,
        rgba(107, 139, 181, 0.35) 50%,
        rgba(107, 139, 181, 0.15) 90%,
        transparent 100%);
    border-radius: 2px;
}

.hero-stat-value {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    background: linear-gradient(135deg,
        var(--primary-900) 0%,
        var(--primary-700) 35%,
        var(--primary-600) 65%,
        var(--primary-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    line-height: 1.15;
    margin-bottom: 10px;
    position: relative;
    filter: drop-shadow(0 2px 12px rgba(107, 139, 181, 0.2));
    animation: statValueGlow 8s ease-in-out infinite;
}

@keyframes statValueGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-stat-label {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 520;
    letter-spacing: -0.015em;
    line-height: 1.4;
    max-width: 140px;
    margin: 0 auto;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    opacity: 1;
    animation: none;
    position: relative;
}

.hero-buttons::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(107, 139, 181, 0.12) 25%,
        rgba(107, 139, 181, 0.2) 50%,
        rgba(107, 139, 181, 0.12) 75%,
        transparent 100%);
    animation: lineGlow 4s ease-in-out infinite;
    opacity: 0;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}

@keyframes lineGlow {
    0% {
        opacity: 0;
        width: 280px;
    }
    10%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
        width: 320px;
    }
}

.hero--home .hero-buttons {
    justify-content: flex-start;
    gap: 16px;
    margin-top: 12px;
}

.hero--home .hero-buttons::before {
    display: none;
}

/* Hero Glass Card - Glassmorphism Container */
.hero-glass-card {
    position: relative;
    max-width: 620px;
    margin: 0;
    padding: 52px 48px;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    text-align: left;
    animation: glassCardEntrance 0.8s ease-out;
    /* Scroll animation optimization */
    will-change: transform, opacity, filter;
    transform-origin: center top;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    border-radius: 1px;
}

.hero-glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 40%
    );
    pointer-events: none;
}

.hero-glass-card h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #ffffff !important;
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    /* Scroll animation optimization */
    will-change: transform, opacity;
}

.hero-glass-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.7;
    color: #ffffff !important;
    max-width: 540px;
    margin: 0 0 52px 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    /* Scroll animation optimization */
    will-change: transform, opacity;
}

.hero-glass-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 16px;
    /* Scroll animation optimization */
    will-change: transform, opacity;
}

.hero-glass-buttons .btn-primary {
    padding: 16px 32px;
    font-size: 1rem;
}

.hero-glass-buttons .btn-secondary {
    padding: 16px 32px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.hero-glass-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@keyframes glassCardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* About Page Hero Glass Card */
.hero--about {
    background-image:
        linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(20, 40, 60, 0.85) 50%, rgba(30, 60, 80, 0.78) 100%),
        linear-gradient(180deg, rgba(107, 139, 181, 0.15) 0%, rgba(107, 139, 181, 0.05) 100%);
    background-color: #0a1628;
    /* Parallax scroll optimization */
    will-change: background-position;
}

.hero-glass-card--about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 56px;
}

.hero-glass-eyebrow {
    display: inline-block;
    padding: 10px 24px;
    margin-bottom: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg,
        rgba(107, 139, 181, 0.4) 0%,
        rgba(107, 139, 181, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.hero-glass-card--about h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 28px;
    line-height: 1.2;
    color: #ffffff !important;
    background: none;
    -webkit-text-fill-color: #ffffff;
    -webkit-background-clip: initial;
    background-clip: border-box;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-glass-card--about .hero-glass-subtitle {
    max-width: 680px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.hero-glass-card--about .hero-glass-subtitle:last-child {
    margin-bottom: 0;
}

/* Contact Page Styles */
.hero--contact {
    background-image:
        linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(20, 40, 60, 0.85) 50%, rgba(30, 60, 80, 0.78) 100%),
        linear-gradient(180deg, rgba(107, 139, 181, 0.15) 0%, rgba(107, 139, 181, 0.05) 100%);
    background-color: #0a1628;
}

.hero-glass-card--contact {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 52px;
}

.hero-glass-card--contact h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff !important;
    /* Override gradient text from .hero h1 */
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: initial !important;
    background-clip: border-box !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-glass-card--contact .hero-glass-subtitle {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.section--contact {
    padding: 100px 0 120px;
}

/* Contact Tabs */
.contact-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 28px;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-tab svg {
    transition: transform 0.3s ease;
}

.contact-tab:hover {
    border-color: rgba(107, 139, 181, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-tab.active {
    background: var(--gradient-hero);
    border-color: var(--primary-500);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(107, 139, 181, 0.3);
}

.contact-tab.active svg {
    transform: scale(1.1);
}

.contact-tab-content {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

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

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Highlight Box */
.contact-highlight {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(107, 139, 181, 0.08) 0%, rgba(107, 139, 181, 0.04) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-500);
}

.contact-highlight strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-highlight p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-glass-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact-glass-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.contact-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 139, 181, 0.12) 0%, rgba(107, 139, 181, 0.08) 100%);
    border-radius: 12px;
    color: var(--primary-600);
}

.contact-item-content {
    flex: 1;
}

.contact-item-content strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact-item-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-item-content a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item-content a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

/* Form Styles */
.contact-glass-card--form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-primary);
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(107, 139, 181, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.submit-btn {
    padding: 16px 32px;
    background: var(--gradient-hero);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 139, 181, 0.3);
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 139, 181, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
}

.form-status.success {
    color: #10b981;
}

.form-status.error {
    color: #ef4444;
}

/* Responsive for contact page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-glass-card--contact {
        padding: 44px 36px;
    }

    .contact-glass-card {
        padding: 36px 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .section--contact {
        padding: 60px 0 80px;
    }

    .contact-tabs {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .contact-tab {
        padding: 16px 24px;
        font-size: 0.95rem;
    }

    .hero-glass-card--contact {
        padding: 36px 28px;
    }

    .contact-glass-card {
        padding: 32px 24px;
    }

    .contact-card-title {
        font-size: 1.5rem;
    }

    .contact-item {
        padding: 16px 0;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Responsive adjustments for glass card */
@media (max-width: 768px) {
    .hero-glass-card {
        padding: 40px 28px;
        margin: 0 16px;
        border-radius: 24px;
    }

    .hero-glass-card h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 16px;
    }

    .hero-glass-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        margin-bottom: 28px;
    }

    .hero-glass-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-glass-buttons .btn-primary,
    .hero-glass-buttons .btn-secondary {
        width: 100%;
        padding: 14px 28px;
    }

    .hero-glass-card--about {
        padding: 40px 28px;
        margin: 0 auto;
    }

    .hero-glass-card--about h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 20px;
    }

    .hero-glass-eyebrow {
        padding: 8px 20px;
        font-size: 0.7rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-glass-card {
        padding: 32px 24px;
        margin: 0 12px;
        border-radius: 20px;
    }

    .hero-glass-card h1 {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
        margin-bottom: 14px;
    }

    .hero-glass-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-glass-card--about {
        padding: 32px 24px;
    }

    .hero-glass-card--about h1 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .hero-glass-card--about .hero-glass-subtitle {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
}

@keyframes buttonsEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.metric-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: var(--transition-smooth);
}

.metric-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

.metric-card strong {
    display: block;
    font-size: 3.5rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-card span {
    display: block;
    margin-top: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.hero-panel {
    display: block;
    margin-top: 60px;
    padding: 40px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.panel-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.panel-header p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.panel-kicker {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.panel-items {
    display: grid;
    gap: 20px;
    margin: 32px 0;
}

.panel-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.panel-item:hover {
    border-color: var(--border-glow);
    background: var(--surface-glass-hover);
}

.panel-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.panel-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin-top: 8px;
    box-shadow: 0 0 20px rgba(136, 189, 242, 0.5);
}

.panel-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Sections */
.section {
    padding: 140px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.section:nth-child(even) {
    position: relative;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(189, 221, 252, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 40s ease-in-out infinite;
}

.section:nth-child(odd)::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(136, 189, 242, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 35s ease-in-out infinite reverse;
}

.section-title {
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    text-align: center;
    margin-bottom: 28px;
    background: linear-gradient(
        130deg,
        var(--primary-950) 0%,
        var(--primary-700) 30%,
        var(--primary-600) 60%,
        var(--primary-500) 90%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(107, 139, 181, 0.3) 20%,
        rgba(107, 139, 181, 0.7) 50%,
        rgba(107, 139, 181, 0.3) 80%,
        transparent 100%);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.28rem;
    color: var(--text-muted);
    margin: 0 auto 68px;
    max-width: 58ch;
    line-height: 1.7;
    font-weight: 420;
    letter-spacing: -0.01em;
}

.pill-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(43, 108, 176, 0.08);
    border: 1px solid rgba(43, 108, 176, 0.2);
    color: #2B6CB0;
    font-weight: 550;
    font-size: 0.95rem;
}

/* Feature + Value Cards */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.value-card {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
        var(--primary-500) 0%,
        var(--primary-600) 100%);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card:hover::before {
    opacity: 1;
}

.value-label {
    display: inline-block;
    padding: 0;
    background: none;
    border: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-600);
    font-size: 0.7rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 32px 28px;
    }
}

.value-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.value-list li {
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.value-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(136, 189, 242, 0.6);
}

.features-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(251, 253, 255, 0.93) 100%);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border: 1.5px solid rgba(107, 139, 181, 0.2);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(107, 139, 181, 0.1),
        0 2px 8px rgba(107, 139, 181, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all var(--transition-smooth),
                transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: conic-gradient(from 45deg at 50% 50%,
        rgba(164, 188, 224, 0.08) 0deg,
        rgba(138, 174, 216, 0.12) 90deg,
        rgba(107, 139, 181, 0.06) 180deg,
        rgba(138, 174, 216, 0.1) 270deg,
        rgba(164, 188, 224, 0.08) 360deg);
    opacity: 0;
    transition: all var(--transition-slow);
    pointer-events: none;
    filter: blur(50px);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(164, 188, 224, 0.6) 0%,
        rgba(107, 139, 181, 0.8) 25%,
        rgba(79, 124, 173, 1) 50%,
        rgba(107, 139, 181, 0.8) 75%,
        rgba(164, 188, 224, 0.6) 100%);
    opacity: 0;
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
    transition: opacity var(--transition-fast);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -100% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    border-color: rgba(107, 139, 181, 0.35);
    box-shadow:
        0 16px 48px rgba(107, 139, 181, 0.16),
        0 6px 16px rgba(107, 139, 181, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-card:hover::before {
    opacity: 0.7;
    animation: rotateGlow 30s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.feature-card:hover::after {
    opacity: 0.8;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg,
        rgba(164, 188, 224, 0.15) 0%,
        rgba(107, 139, 181, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-700);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    box-shadow:
        0 4px 12px rgba(107, 139, 181, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(107, 139, 181, 0.2);
}

.feature-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-700);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 0;
    position: relative;
    z-index: 1;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.feature-list li {
    padding-left: 28px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        var(--primary-600) 0%,
        var(--primary-700) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(107, 139, 181, 0.25);
}

.feature-hero .hero-content {
    max-width: 900px;
}

.feature-hero .hero-checklist {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.step-card {
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-fast);
}

.step-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: var(--glow-primary);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.step-card h3 {
    margin: 0 0 12px;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.step-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA band */
.cta-band {
    padding: 140px 0;
    background: transparent;
    position: relative;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(136, 189, 242, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card {
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.88) 100%);
    backdrop-filter: blur(32px) saturate(150%);
    -webkit-backdrop-filter: blur(32px) saturate(150%);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-xl),
                inset 0 2px 0 rgba(255, 255, 255, 1),
                inset 0 0 60px rgba(164, 188, 224, 0.06);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-2xl);
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(164, 188, 224, 0.5) 0%,
        rgba(107, 139, 181, 0.6) 33%,
        rgba(79, 124, 173, 0.7) 66%,
        rgba(164, 188, 224, 0.5) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    background-size: 200% 200%;
    animation: borderShift 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes borderShift {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

.cta-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle at center,
        rgba(164, 188, 224, 0.12) 0%,
        rgba(138, 174, 216, 0.06) 40%,
        transparent 70%
    );
    animation: ctaPulse 8s ease-in-out infinite;
    pointer-events: none;
    filter: blur(60px);
}

@keyframes ctaPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.9;
    }
}

.cta-card p {
    color: var(--text-muted);
    margin: 20px auto 0;
    max-width: 55ch;
    font-size: 1.3rem;
    line-height: 1.6;
}

.cta-actions {
    margin-top: 36px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Content Sections (About / Policies / Consent) */
.content-section {
    background: #FFFFFF;
    border: 1px solid rgba(43, 108, 176, 0.15);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.content-stack {
    display: grid;
    gap: 16px;
}

.content-section h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1A2B3D;
}

.content-section h3 {
    font-size: 1.15rem;
    margin-top: 18px;
    margin-bottom: 8px;
    color: #2D3748;
}

.content-section p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.content-section ul {
    margin-left: 18px;
    margin-top: 8px;
    color: var(--muted);
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.highlight-box {
    background: rgba(43, 108, 176, 0.04);
    border: 1px solid rgba(43, 108, 176, 0.15);
    border-radius: var(--radius-md);
    padding: 16px;
}

.highlight-box--quote {
    border-left: 3px solid #2B6CB0;
}

.highlight-box--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: #1A2B3D;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(43, 108, 176, 0.08);
    border: 1px solid rgba(43, 108, 176, 0.2);
    color: #2B6CB0;
    text-decoration: none;
    font-weight: 650;
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.pdf-link:hover {
    transform: translateY(-2px);
    background: rgba(43, 108, 176, 0.12);
    border-color: rgba(43, 108, 176, 0.35);
}

/* Team */
.team-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-fast);
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--glow-primary);
}

.team-member:hover::before {
    opacity: 1;
}

.team-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-glow);
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(136, 189, 242, 0.3);
    transition: var(--transition-smooth);
}

.team-member:hover .team-image {
    box-shadow: 0 12px 48px rgba(136, 189, 242, 0.4);
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.team-member p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 500;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--stormy-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-glass-hover);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(136, 189, 242, 0.1);
    transition: var(--transition-fast);
}

.linkedin-link:hover {
    color: var(--stormy-dark);
    border-color: var(--border-glow);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 24px rgba(136, 189, 242, 0.2);
    transform: translateY(-2px);
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.contact-info,
.contact-form {
    background: #FFFFFF;
    border: 1px solid rgba(43, 108, 176, 0.15);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.45rem;
    margin-bottom: 16px;
    color: #1A2B3D;
}

.contact-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(43, 108, 176, 0.1);
}

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

.contact-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(43, 108, 176, 0.08);
    border: 1px solid rgba(43, 108, 176, 0.15);
    flex: 0 0 auto;
}

.contact-item strong {
    display: inline-block;
    margin-bottom: 2px;
    color: #1A2B3D;
}

.contact-info a {
    color: #2B6CB0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(43, 108, 176, 0.08);
    border: 1px solid rgba(43, 108, 176, 0.2);
    color: #2B6CB0;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(43, 108, 176, 0.35);
    background: rgba(43, 108, 176, 0.12);
}

/* Form */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #2D3748;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(43, 108, 176, 0.25);
    background: #FFFFFF;
    color: #1A2B3D;
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    font-family: inherit;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2B6CB0;
    box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.1);
    background: #FFFFFF;
}

/* Footer */
.site-footer {
    margin-top: 0;
    padding: 90px 0 44px;

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);

    /* BORDER & SHADOW */
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 -10px 40px rgba(107, 139, 181, 0.1);

    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

/* Ambient Orb for glass visibility */
.site-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 120%, rgba(107, 139, 181, 0.4), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.footer-top {
    display: grid;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 48px 56px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow:
        0 16px 48px rgba(107, 139, 181, 0.25),
        0 8px 24px rgba(136, 189, 242, 0.15),
        0 1px 0 0 rgba(255, 255, 255, 1),
        inset 0 1px 0 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 0 rgba(107, 139, 181, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    transform: translateY(0);
}

.footer-cta:hover {
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 20px 64px rgba(107, 139, 181, 0.3),
        0 12px 32px rgba(136, 189, 242, 0.2),
        0 1px 0 0 rgba(255, 255, 255, 1),
        inset 0 1px 0 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 0 rgba(136, 189, 242, 0.15);
    transform: translateY(-2px);
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(189, 221, 252, 0.8) 0%,
        rgba(107, 139, 181, 0.9) 25%,
        rgba(136, 189, 242, 1) 50%,
        rgba(107, 139, 181, 0.9) 75%,
        rgba(189, 221, 252, 0.8) 100%);
    box-shadow: 0 2px 16px rgba(136, 189, 242, 0.5);
}

.footer-cta-kicker {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-cta h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
}

.footer-cta-sub {
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 60ch;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, minmax(180px, 1fr));
    gap: 60px 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.footer-brand {
    padding: 32px 12px;
    transition: var(--transition-smooth);
}

.footer-brand:hover {
    transform: translateY(-2px);
}

.footer-col {
    padding: 24px 12px;
    transition: var(--transition-smooth);
}

.footer-col:hover {
    transform: translateY(-2px);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    opacity: 1;
    transition: var(--transition-fast);
    filter: drop-shadow(0 0 15px rgba(189, 221, 252, 0.2));
}

.footer-logo:hover {
    opacity: 0.85;
    filter: drop-shadow(0 0 25px rgba(189, 221, 252, 0.35));
}

.footer-logo-img {
    height: 28px;
    width: auto;
    max-width: 220px;
    transition: var(--transition-fast);
}

.footer-tagline {
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
    line-height: 1.6;
}

.footer-note {
    display: block;
    margin-top: 12px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 50ch;
    font-size: 0.95rem;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 100px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(189, 221, 252, 0.3) 100%);
    border: 1px solid rgba(136, 189, 242, 0.35);
    color: var(--stormy-blue);
    font-weight: 650;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 2px 8px rgba(136, 189, 242, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-badge:hover {
    border-color: rgba(136, 189, 242, 0.55);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(189, 221, 252, 0.4) 100%);
    box-shadow:
        0 4px 16px rgba(136, 189, 242, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.footer-title {
    margin: 0 0 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-900);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    padding-bottom: 14px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg,
        var(--sky-medium) 0%,
        var(--stormy-blue) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(136, 189, 242, 0.4);
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    font-weight: 450;
    font-size: 0.95rem;
    padding: 4px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.footer-links a:hover {
    color: var(--stormy-blue);
    transform: translateX(8px);
    text-shadow: 0 0 20px rgba(107, 139, 181, 0.4);
}

.footer-links a:hover::before {
    width: 35px;
    box-shadow: 0 0 12px rgba(136, 189, 242, 0.6);
}

.footer-address {
    font-style: normal;
    display: grid;
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-address-name {
    font-weight: 700;
    color: var(--text-primary);
}

.footer-address a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-address a:hover {
    color: var(--stormy-blue);
    text-decoration: none;
    text-shadow: 0 0 16px rgba(107, 139, 181, 0.35);
    transform: translateX(4px);
}

.footer-bottom {
    margin-top: 60px;
    padding: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(136, 189, 242, 0.4) 20%,
        rgba(189, 221, 252, 0.6) 50%,
        rgba(136, 189, 242, 0.4) 80%,
        transparent 100%);
    box-shadow: 0 0 16px rgba(136, 189, 242, 0.3);
}

.footer-bottom:hover {
    color: var(--text-secondary);
}

.footer-bottom a {
    color: var(--stormy-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 2px 6px;
    border-radius: 6px;
}

.footer-bottom a:hover {
    color: var(--stormy-dark);
    background: rgba(189, 221, 252, 0.25);
    text-decoration: none;
    text-shadow: 0 0 16px rgba(107, 139, 181, 0.3);
    box-shadow: 0 0 16px rgba(136, 189, 242, 0.2);
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 700ms ease, transform 700ms ease;
}

/* Animations */
@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --nav-height: 64px;
        --container: 100%;
    }

    .nav-container {
        padding: 0 24px;
    }

    .navbar {
        height: var(--nav-height);
    }

    .nav-badge {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid var(--border-subtle);
        cursor: pointer;
        transition: all var(--transition-fast);
        z-index: 1001;
        position: relative;
        padding: 0;
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.95);
        border-color: var(--primary-500);
        transform: scale(1.05);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    .mobile-menu-toggle span {
        display: block;
        width: 18px;
        height: 2.5px;
        background: var(--primary-700);
        border-radius: 2px;
        transition: all var(--transition-fast);
        margin: 3px 0;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: calc(var(--nav-height) + 10px);
        left: 16px;
        right: 16px;
        width: auto;
        max-width: 540px;
        margin: 0 auto;
        padding: 18px 16px 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background: linear-gradient(160deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 252, 255, 0.96) 100%);
        backdrop-filter: blur(32px) saturate(180%);
        -webkit-backdrop-filter: blur(32px) saturate(180%);
        border-radius: var(--radius-lg);
        transform: translateY(-14px) scale(0.98);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease, visibility 0.35s ease, box-shadow 0.35s ease;
        border: 1px solid rgba(107, 139, 181, 0.22);
        box-shadow: 0 16px 48px rgba(15, 26, 46, 0.14),
                    0 6px 18px rgba(15, 26, 46, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 0.95);
        z-index: 999;
        overflow-y: auto;
        max-height: calc(100vh - var(--nav-height) - 28px);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        box-shadow: 0 22px 60px rgba(15, 26, 46, 0.18),
                    0 10px 24px rgba(15, 26, 46, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        padding: 16px 16px;
        border-radius: 14px;
        border: 1.5px solid rgba(107, 139, 181, 0.15);
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(248, 252, 255, 0.92) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        font-size: 1.05rem;
        font-weight: 520;
        letter-spacing: -0.01em;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: var(--text-primary);
        text-align: left;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 2px 10px rgba(107, 139, 181, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(248, 252, 255, 1) 100%);
        border-color: var(--primary-500);
        color: var(--primary-700);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(107, 139, 181, 0.2),
                    0 2px 8px rgba(107, 139, 181, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .nav-link.active {
        font-weight: 600;
        border-color: var(--primary-600);
    }

    .nav-menu .cta-button {
        display: flex;
        align-items: center;
        width: 100%;
        text-align: center;
        justify-content: center;
        align-self: stretch;
        margin-top: 20px;
        margin-bottom: 6px;
        min-height: 56px;
        padding: 18px 24px;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: -0.01em;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: var(--gradient-hero);
        color: #ffffff;
        box-shadow: 0 6px 20px rgba(107, 139, 181, 0.3),
                    0 2px 8px rgba(107, 139, 181, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.25);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-menu .cta-button:hover {
        background: linear-gradient(135deg,
            var(--primary-600) 0%,
            var(--primary-700) 100%);
        border-color: rgba(255, 255, 255, 0.3);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(107, 139, 181, 0.35),
                    0 4px 12px rgba(107, 139, 181, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

    .hero--home {
        padding: 68px 0 96px;
        min-height: 58vh;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero--home .hero-content {
        padding: 0;
    }

    .hero-copy-card {
        padding: 40px;
        max-width: 92vw;
    }

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

    .hero-visual {
        order: 2;
        gap: 14px;
    }

    .hero-wave {
        min-height: auto;
        padding: 24px;
    }

    .wave-layer {
        display: none;
    }

    .hero-floating,
    .hero-bubble {
        position: relative;
        inset: auto;
        width: 100%;
        margin: 0 0 12px 0;
        animation: none;
    }

    .hero-bubble {
        max-width: 100%;
    }

    .hero-card {
        padding: 22px;
    }

    .hero-card-metrics {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .hero--home .hero-buttons {
        justify-content: flex-start;
        gap: 14px;
        width: 100%;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .hero-stats {
        gap: 32px;
        padding: 28px 24px;
        margin-top: 48px;
    }

    .hero-stat:not(:last-child)::after {
        display: none;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

    .hero-stat-label {
        font-size: 0.82rem;
    }

    .hero-orb--1,
    .hero-orb--2,
    .hero-orb--3 {
        width: 250px;
        height: 250px;
    }

    .hero-shape--1,
    .hero-shape--2 {
        display: none;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 60px;
    }

    .hero-panel {
        padding: 32px 24px;
    }

    .value-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .value-card {
        grid-column: 1 / -1;
    }

    .team-member {
        grid-column: 1 / -1;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 48px 32px;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
    }

    .footer-cta-actions {
        width: 100%;
    }

    .footer-cta-actions .btn-primary,
    .footer-cta-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand,
    .footer-col {
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-address {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-top: 40px;
    }

    .section {
        padding: 80px 0;
    }

    .container {
        padding: 0 24px;
    }
}

/* Tablet and Large Phone Landscape (768px and below) */
@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .nav-container {
        padding: 0 20px;
        gap: 24px;
    }

    .logo--text {
        height: 32px;
        max-width: min(220px, 45vw);
    }

    .hero--home h1,
    .hero--home .subtitle,
    .hero--home .hero-lede {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        max-width: 100%;
        line-height: 1.1;
    }

    .hero .subtitle,
    .hero-lede {
        font-size: clamp(1rem, 4vw, 1.15rem);
        line-height: 1.6;
    }

    .hero-copy-card {
        padding: 36px;
        max-width: 94vw;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 24px 20px;
        margin-top: 36px;
    }

    .hero-stat {
        text-align: center;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.15rem);
    }

    .cta-card {
        padding: 40px 28px;
    }

    .footer-cta {
        padding: 28px 24px;
    }

    .footer-grid {
        gap: 32px;
        text-align: center;
    }

    .footer-brand,
    .footer-col {
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-address {
        text-align: center;
    }
}

/* Large Phone Portrait and Small Tablet (640px and below) */
@media (max-width: 640px) {
    :root {
        --nav-height: 56px;
    }

    body {
        font-size: 15px;
    }

    .nav-container {
        padding: 0 16px;
        gap: 16px;
    }

    .logo--text {
        height: 28px;
        max-width: min(180px, 40vw);
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero--home {
        padding: 60px 0 60px;
    }

    .hero-copy-card {
        padding: 32px;
        max-width: 96vw;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem) !important;
        margin-bottom: 20px;
        letter-spacing: -0.03em;
    }

    .hero .subtitle,
    .hero-lede {
        font-size: clamp(0.95rem, 4.5vw, 1.1rem);
        margin-bottom: 28px;
    }

    .hero-buttons {
        gap: 10px;
        margin-top: 24px;
    }

    .hero--home .hero-buttons {
        margin-top: 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .hero-stats {
        gap: 20px;
        padding: 20px 16px;
        margin-top: 32px;
        border-radius: var(--radius-lg);
    }

    .hero-stat-value {
        font-size: 1.75rem;
    }

    .hero-stat-label {
        font-size: 0.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.05rem);
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 24px 20px;
    }

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

    .feature-card p {
        font-size: 0.95rem;
    }

    .feature-list {
        gap: 10px;
        margin-top: 18px;
    }

    .feature-list li {
        font-size: 0.9rem;
        padding: 8px 0 8px 32px;
        line-height: 1.65;
    }

    .feature-list li::before {
        width: 22px;
        height: 22px;
        font-size: 12px;
        top: 8px;
        left: 0;
    }

    .cta-card {
        padding: 36px 24px;
        border-radius: var(--radius-lg);
    }

    .cta-card h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .cta-card p {
        font-size: 0.95rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
    }

    .footer-cta {
        padding: 24px 20px;
    }

    .footer-cta h2 {
        font-size: 1.5rem;
    }

    .site-footer {
        padding: 40px 0 24px;
    }

    .container {
        padding: 0 20px;
    }
}

/* Medium Phone (480px and below) */
@media (max-width: 480px) {
    :root {
        --nav-height: 56px;
    }

    body {
        font-size: 14px;
        line-height: 1.6;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo--text {
        height: 26px;
        max-width: min(160px, 38vw);
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .mobile-menu-toggle span {
        width: 16px;
    }

    /* Ensure all touch targets are at least 44x44px */
    button,
    a.btn-primary,
    a.btn-secondary,
    .nav-link {
        min-height: 44px;
    }

    .hero--home {
        padding: 50px 0 50px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero--home .hero-content {
        padding: 0;
    }

    .hero-copy-card {
        padding: 28px;
        max-width: 95vw;
        gap: 16px;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 10vw, 2.2rem) !important;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }

    .hero .subtitle,
    .hero-lede {
        font-size: clamp(0.9rem, 4.8vw, 1.05rem);
        margin-bottom: 24px;
        line-height: 1.55;
    }

    .hero-buttons {
        gap: 8px;
        margin-top: 20px;
    }

    .hero--home .hero-buttons {
        margin-top: 6px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 13px 24px;
        font-size: 0.9rem;
        border-radius: 80px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .hero-stats {
        gap: 16px;
        padding: 18px 16px;
        margin-top: 28px;
    }

    .hero-stat-value {
        font-size: 1.6rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: clamp(1.4rem, 8vw, 2rem);
        margin-bottom: 14px;
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 4.2vw, 1rem);
        margin-bottom: 24px;
    }

    .features-grid {
        gap: 16px;
    }

    .feature-card {
        padding: 20px 18px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-label {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .feature-card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .feature-list {
        gap: 8px;
        margin-top: 16px;
    }

    .feature-list li {
        font-size: 0.85rem;
        padding: 6px 0 6px 30px;
        line-height: 1.6;
    }

    .feature-list li::before {
        width: 20px;
        height: 20px;
        font-size: 11px;
        top: 6px;
        left: 0;
    }

    .cta-band {
        padding: 40px 0;
    }

    .cta-card {
        padding: 32px 20px;
    }

    .cta-card h2 {
        font-size: clamp(1.35rem, 7vw, 1.8rem);
        margin-bottom: 14px;
    }

    .cta-card p {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .footer-top {
        padding: 32px 0;
    }

    .footer-cta {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }

    .footer-cta h2 {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }

    .footer-cta-sub {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-cta-actions {
        gap: 8px;
        margin-top: 20px;
    }

    .footer-grid {
        gap: 28px;
        padding-top: 32px;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 8px;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-address {
        text-align: center;
    }

    .footer-logo-img {
        height: 32px;
    }

    .footer-tagline {
        font-size: 1rem;
        margin-top: 12px;
    }

    .footer-note {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .footer-badges {
        gap: 8px;
        margin-top: 14px;
    }

    .footer-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-address {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 32px;
        font-size: 0.85rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* Small Phone (375px and below) */
@media (max-width: 375px) {
    body {
        font-size: 13px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .logo--text {
        height: 24px;
        max-width: min(140px, 35vw);
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }

    /* Maintain minimum touch target sizes */
    button,
    a.btn-primary,
    a.btn-secondary,
    .nav-link {
        min-height: 44px;
    }

    .hero--home {
        padding: 40px 0 40px;
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero--home .hero-content {
        padding: 0;
    }

    .hero-copy-card {
        padding: 24px;
        max-width: 96vw;
        gap: 14px;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 11vw, 2rem) !important;
        margin-bottom: 14px;
    }

    .hero .subtitle,
    .hero-lede {
        font-size: clamp(0.85rem, 5vw, 1rem);
        margin-bottom: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero--home .hero-buttons {
        margin-top: 6px;
    }

    .hero-badge {
        padding: 7px 14px;
        font-size: 0.75rem;
    }

    .hero-stats {
        padding: 16px 12px;
        gap: 14px;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(1.3rem, 9vw, 1.8rem);
    }

    .section-subtitle {
        font-size: clamp(0.85rem, 4.5vw, 0.95rem);
    }

    .feature-card {
        padding: 18px 16px;
    }

    .feature-card h3 {
        font-size: 1.05rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .feature-list {
        gap: 6px;
        margin-top: 14px;
    }

    .feature-list li {
        font-size: 0.8rem;
        padding: 5px 0 5px 28px;
        line-height: 1.55;
    }

    .feature-list li::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: 5px;
        left: 0;
    }

    .cta-card {
        padding: 28px 18px;
    }

    .cta-card h2 {
        font-size: clamp(1.25rem, 8vw, 1.6rem);
    }

    .footer-cta {
        padding: 18px 14px;
    }

    .footer-cta h2 {
        font-size: 1.25rem;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-brand,
    .footer-col {
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-address {
        text-align: center;
    }

    .container {
        padding: 0 12px;
    }
}
