/* ===========================================
   BAM.ai - 11/10 Luxury Website
   Beyond RepeatMD: Atmospheric Depth + Asymmetry
   =========================================== */

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

:root {
    /* Colors - Refined Luxury Palette */
    --white: #ffffff;
    --off-white: #fefefe;
    --black: #050505;
    --charcoal: #0f0f0f;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #ebebeb;
    --gray-300: #d6d6d6;
    --gray-400: #a1a1a1;
    --gray-500: #6b6b6b;
    --gray-600: #525252;
    --gray-muted: #8b8b9e;

    /* Brand - Distinctive Luxury Identity */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-muted: #818cf8;
    --accent: #f97066;
    --accent-light: #fca5a1;
    --violet: #8b5cf6;
    --violet-muted: #a78bfa;

    /* Gradients - Atmospheric */
    --gradient-brand: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-warm: linear-gradient(135deg, #f97066 0%, #fb7185 100%);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);

    /* Typography - Luxury Scale */
    --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - Generous Luxury */
    --section-padding: 200px;
    --container: 1280px;
    --banner-height: 48px;

    /* Animation - Buttery Smooth */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.5s;
    --duration-slow: 0.8s;

    /* Shadows - Levitating */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 120px rgba(99, 102, 241, 0.2);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-500);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.has-banner .navbar {
    top: calc(var(--banner-height) + 24px);
}

body.has-banner .hero {
    padding-top: calc(160px + var(--banner-height));
}

/* ===========================================
   Announcement Banner
   =========================================== */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--banner-height);
    background: var(--charcoal);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(99, 102, 241, 0.3) 25%,
            rgba(139, 92, 246, 0.3) 50%,
            rgba(168, 85, 247, 0.3) 75%,
            transparent 100%);
    animation: banner-shimmer 3s ease-in-out infinite;
}

@keyframes banner-shimmer {

    0%,
    100% {
        transform: translateX(-100%);
    }

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

.banner-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 60px;
}

.banner-badge {
    background: var(--gradient-brand);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.banner-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.banner-cta {
    color: var(--primary-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.banner-cta:hover {
    color: var(--white);
}

.banner-close {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s var(--ease-out);
}

.banner-close:hover {
    color: white;
}

/* ===========================================
   Typography - Extreme Luxury Scale
   =========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -0.045em;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    font-weight: 700;
}

p {
    line-height: 1.85;
    color: var(--gray-muted);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7, #f97066, #6366f1);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease infinite;
}

@keyframes gradient-flow {

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

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

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

/* ===========================================
   Layout
   =========================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 64px;
    }
}

/* ===========================================
   Navigation - Floating Island Glassmorphism
   =========================================== */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1100px;
    transition: all 0.6s var(--ease-out);
}

.navbar.scrolled {
    top: 16px;
}

body.has-banner .navbar.scrolled {
    top: calc(var(--banner-height) + 16px);
}

.nav-container {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-ai {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
}

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

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--duration) var(--ease-out);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.btn):hover {
    color: var(--charcoal);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
}

/* ===========================================
   Buttons - Luxury Feel
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

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

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.magnetic-btn {
    transition: all 0.15s ease-out;
}

.btn-gradient {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.35);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.45);
}

.glow-btn {
    position: relative;
}

.glow-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-brand);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s var(--ease-out);
}

.glow-btn:hover::after {
    opacity: 0.6;
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--gray-200);
}

.btn-ghost:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--charcoal);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-icon {
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Play button in ghost button */
.play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 4px;
}

.play-icon svg {
    margin-left: 2px;
}

/* ===========================================
   Hero - Asymmetric Luxury Layout
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    padding: 160px 24px 120px;
}

@media (min-width: 768px) {
    .hero {
        padding: 160px 48px 120px;
    }
}

/* Atmospheric Blob Layer */
.hero-atmosphere {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.atmo-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    animation: atmo-float 20s ease-in-out infinite;
}

.atmo-blob-1 {
    width: 800px;
    height: 800px;
    background: var(--primary);
    opacity: 0.35;
    top: -200px;
    left: -200px;
}

.atmo-blob-2 {
    width: 600px;
    height: 600px;
    background: var(--violet);
    opacity: 0.3;
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

.atmo-blob-3 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes atmo-float {

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

    25% {
        transform: translate(40px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 40px) scale(0.95);
    }

    75% {
        transform: translate(30px, 20px) scale(1.02);
    }
}

/* Hero 3D Visual - Fade to Void */
.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 750px;
    pointer-events: none;
}

@media (max-width: 1023px) {
    .hero-visual {
        position: absolute;
        right: 50%;
        transform: translate(50%, -50%);
        width: 90%;
        opacity: 0.4;
    }
}

.hero-visual img {
    width: 100%;
    height: auto;
    animation: hero-float 15s ease-in-out infinite;
    /* Gradient mask to fade edges */
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
}

@keyframes hero-float {

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

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Hero Content - Left Aligned */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
}

@media (min-width: 1024px) {
    .hero-content {
        padding-left: 32px;
    }
}

/* Hero Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.eyebrow-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--black);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero h1,
.hero-title {
    color: var(--white);
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    line-height: 1.9;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.375rem;
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta .btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.video-trigger {
    padding-left: 8px;
}

/* ===========================================
   Video Modal
   =========================================== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s var(--ease-out);
}

.video-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s var(--ease-out);
}

.modal-close:hover {
    transform: scale(1.1);
}

.video-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--charcoal);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.play-button-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5);
}

.play-button-large svg {
    margin-left: 8px;
}

.video-overlay p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* ===========================================
   Big Stats Bar
   =========================================== */
.big-stats {
    background: var(--white);
    padding: 80px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.big-stats-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.big-stat-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .big-stat-value {
        font-size: 5rem;
    }
}

.big-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-muted);
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--gray-200);
}

@media (max-width: 767px) {
    .stat-divider {
        display: none;
    }

    .big-stats-container {
        gap: 40px;
    }
}

/* ===========================================
   Trusted By - Subtle
   =========================================== */
.marquee {
    background: var(--gray-50);
    padding: 64px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.marquee-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.marquee-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

.logo-placeholder {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-300);
    padding: 12px 24px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all var(--duration) var(--ease-out);
}

.logo-placeholder:hover {
    color: var(--gray-500);
    border-color: var(--gray-300);
    transform: translateY(-2px);
}

/* ===========================================
   Stats - Impactful Numbers
   =========================================== */
.stats {
    background: var(--white);
    padding: 120px 24px;
    position: relative;
}

/* Atmospheric section glow */
.stats::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: var(--gradient-glow);
    pointer-events: none;
}

.stats-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    position: relative;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 64px;
    }
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 4.5rem;
    }
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* ===========================================
   Sections - Luxury Rhythm
   =========================================== */
.section {
    padding: var(--section-padding) 24px;
    position: relative;
}

@media (min-width: 768px) {
    .section {
        padding: var(--section-padding) 48px;
    }
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--charcoal);
    color: var(--white);
}

/* Section atmospheric glow overlay */
.section-glow {
    position: absolute;
    width: 100%;
    height: 400px;
    top: -200px;
    left: 0;
    background: var(--gradient-glow);
    pointer-events: none;
    opacity: 0.5;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 120px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 24px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-muted);
    line-height: 1.9;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.section-dark .section-tag {
    color: var(--primary-muted);
}

/* ===========================================
   Features - Levitating Borderless Cards
   =========================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: var(--container);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 56px 48px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

/* Subtle top-light effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
    z-index: -1;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.1;
}

.feature-icon svg {
    color: var(--primary);
    stroke-width: 1.5;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.375rem;
}

.feature-card p {
    color: var(--gray-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===========================================
   How It Works - Asymmetric Flow
   =========================================== */
.steps {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 180px;
}

.step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .step {
        grid-template-columns: 1fr 1fr;
        gap: 120px;
    }

    .step:nth-child(even) {
        direction: rtl;
    }

    .step:nth-child(even)>* {
        direction: ltr;
    }
}

.step-number {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 32px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .step-number {
        font-size: 10rem;
    }
}

.step-content h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

@media (min-width: 768px) {
    .step-content h3 {
        font-size: 3rem;
    }
}

.step-content p {
    font-size: 1.15rem;
    max-width: 500px;
    line-height: 1.9;
}

.step-visual {
    background: var(--white);
    border-radius: 36px;
    padding: 80px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.step-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
}

/* Inner glow */
.step-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
}

.step-visual-icon {
    color: var(--primary-muted);
    opacity: 0.6;
}

.step-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
    animation: step-float 8s ease-in-out infinite;
}

/* ===========================================
   Testimonials - Minimal Showcase
   =========================================== */
.testimonials-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-showcase {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.testimonial-main {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 48px 40px;
    width: 100%;
    transition: all 0.4s var(--ease-out);
    animation: testimonial-fade 0.5s ease-out;
}

@keyframes testimonial-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.quote-icon {
    color: var(--primary);
    opacity: 0.25;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

@media (max-width: 640px) {
    .testimonial-quote {
        font-size: 1.0625rem;
    }

    .testimonial-main {
        padding: 32px 24px;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.author-info span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Navigation Dots */
.testimonial-nav {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Pill Selectors */
.testimonial-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonial-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.testimonial-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-pill.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.25);
}

.pill-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
}

.testimonial-pill.active .pill-avatar {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

.pill-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: left;
}

.pill-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: white;
}

.pill-company {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
    .testimonial-pills {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-pill {
        width: 100%;
        max-width: 280px;
    }
}


/* ===========================================
   Pricing - Premium Cards
   =========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1140px;
        gap: 24px;
        align-items: center;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: 32px;
    padding: 56px 44px;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all var(--duration) var(--ease-out);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: var(--charcoal);
    color: var(--white);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.2), 0 30px 80px rgba(99, 102, 241, 0.2);
}

@media (min-width: 1024px) {
    .pricing-card.featured {
        padding: 72px 44px;
        transform: scale(1.02);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: white;
    padding: 10px 28px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.pricing-card h3 {
    font-size: 1.375rem;
    margin-bottom: 8px;
}

.pricing-card.featured h3 {
    color: var(--white);
}

.price {
    margin: 28px 0;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1;
    letter-spacing: -0.04em;
}

.pricing-card.featured .price-amount {
    color: var(--white);
}

.price-currency {
    font-size: 1.75rem;
    font-weight: 700;
    vertical-align: top;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-muted);
    margin-left: 4px;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--gray-muted);
    margin-bottom: 36px;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.08);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features svg {
    color: var(--accent-light);
}

.btn-block {
    width: 100%;
}

/* ===========================================
   CTA - Atmospheric Impact
   =========================================== */
.cta {
    position: relative;
    background: var(--charcoal);
    color: var(--white);
    padding: 200px 24px;
    text-align: center;
    overflow: hidden;
}

.cta-atmosphere {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
}

.cta-blob-1 {
    width: 1000px;
    height: 1000px;
    background: var(--violet);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-blob-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.2;
    bottom: -150px;
    right: 5%;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 28px;
}

.cta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    margin-bottom: 56px;
    line-height: 1.8;
}

/* ===========================================
   Footer - Refined
   =========================================== */
.footer {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 120px 24px 56px;
}

@media (min-width: 768px) {
    .footer {
        padding: 120px 48px 56px;
    }
}

.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
        gap: 80px;
    }
}

.footer-brand p {
    margin-top: 24px;
    max-width: 300px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all var(--duration) var(--ease-out);
}

.social-links a:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
    color: var(--charcoal);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--gray-muted);
    transition: all var(--duration) var(--ease-out);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 56px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ===========================================
   Animations - Reveal & Slide
   =========================================== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.animate-fade-up {
    animation: fade-in-up 1s var(--ease-out) forwards;
    opacity: 0;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--duration-slow) var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grids */
.reveal-stagger {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--duration-slow) var(--ease-out);
}

.reveal-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes step-float {

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

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

/* ===========================================
   Responsive Adjustments
   =========================================== */
@media (max-width: 767px) {
    .banner-content {
        padding: 0 40px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .banner-text {
        font-size: 0.75rem;
    }

    .hero-eyebrow {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-trigger {
        width: 100%;
        justify-content: center;
    }
}