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

:root {
    --bg-primary: #06070A;
    --bg-secondary: #0d0f14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent-yellow: #facc15;
    --accent-orange: #e8873a;
    --accent-pink: #d06a9c;
    --accent-purple: #8b3fb8;
    --accent-indigo: #5b21b6;

    --gradient-primary: linear-gradient(135deg, #facc15 0%, #e8873a 35%, #d06a9c 60%, #8b3fb8 100%);
    --gradient-cta: linear-gradient(135deg, #e8873a 0%, #8b3fb8 100%);
    --gradient-warm: linear-gradient(135deg, #facc15 0%, #e8873a 100%);
    --gradient-mesh: radial-gradient(ellipse at 20% 50%, rgba(232, 135, 58, 0.12) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 20%, rgba(139, 63, 184, 0.10) 0%, transparent 50%),
                     radial-gradient(ellipse at 50% 80%, rgba(250, 204, 21, 0.06) 0%, transparent 50%);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-glow: 0 0 60px rgba(139, 63, 184, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-display: swap;
}

/* ============================
   UTILITY & LAYOUT
   ============================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-cta);
    color: #fff;
    box-shadow: 0 0 30px rgba(139, 63, 184, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(139, 63, 184, 0.4), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.btn-secondary {
    background: rgba(13, 15, 20, 0.9);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(6, 7, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}

.nav-logo-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.nav-logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-top: 2px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(232, 135, 58, 0.15);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(139, 63, 184, 0.14);
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(250, 204, 21, 0.10);
    top: 30%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-pyramids {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(170px, 22vw, 290px);
    z-index: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-pyramid {
    width: 100%;
    opacity: 0.25;
    filter: blur(0.5px);
}

.hero-pyramid-top {
    animation: pyramid-float-top 14s ease-in-out infinite;
    margin-bottom: -10%;
}

.hero-pyramid-bottom {
    animation: pyramid-float-bottom 16s ease-in-out infinite;
}

@keyframes pyramid-float-top {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(10px) rotate(1.5deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
    75% { transform: translateY(6px) rotate(0.5deg); }
}

@keyframes pyramid-float-bottom {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-1.5deg); }
    50% { transform: translateY(10px) rotate(1deg); }
    75% { transform: translateY(-6px) rotate(-0.5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero h1 {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-glow-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-purple) 50%, transparent 100%);
    opacity: 0.5;
}

/* ============================
   VALUE PROP BAR
   ============================ */
.value-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    position: relative;
}

.value-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.value-item {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.value-icon {
    margin-bottom: 12px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    stroke: var(--accent-orange);
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-desc {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================
   SECTION HEADERS
   ============================ */
.how-it-works .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================
   HOW IT WORKS - STEPS
   ============================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 16.6%;
    right: 16.6%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange), var(--accent-purple));
    opacity: 0.2;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    background: rgba(13, 15, 20, 0.6);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    will-change: transform;
}

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

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(139, 63, 184, 0.25);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================
   WHO IT'S FOR
   ============================ */
.who-section {
    background: var(--bg-secondary);
    position: relative;
}

.who-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
}

.who-card {
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    background: rgba(13, 15, 20, 0.6);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.who-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.who-card:hover::before {
    opacity: 0.6;
}

.who-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(139, 63, 184, 0.12);
    box-shadow: 0 0 20px rgba(139, 63, 184, 0.1);
}

.who-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-purple);
}

.who-card:first-child .who-icon {
    background: rgba(232, 135, 58, 0.12);
    box-shadow: 0 0 20px rgba(232, 135, 58, 0.1);
}

.who-card:first-child .who-icon svg {
    stroke: var(--accent-orange);
}

.who-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.who-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.who-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.who-perks li {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.who-perks li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-cta);
    flex-shrink: 0;
}

/* ============================
   PRICING
   ============================ */
.pricing-section {
    position: relative;
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px;
    border-radius: var(--radius-xl);
    background: rgba(13, 15, 20, 0.7);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), var(--accent-purple), transparent);
    opacity: 0.5;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pricing-check {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(139, 63, 184, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-check svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-purple);
}

.pricing-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.pricing-item-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================
   FINAL CTA
   ============================ */
.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(139, 63, 184, 0.08) 0%, transparent 60%);
}

.cta-card {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 64px 48px;
    border-radius: var(--radius-xl);
    background: rgba(13, 15, 20, 0.7);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), var(--accent-purple), transparent);
    opacity: 0.5;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(139, 63, 184, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-copy {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================
   GRADIENT BORDER EFFECT
   ============================ */
.gradient-border {
    position: relative;
}

.gradient-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(232, 135, 58, 0.3), transparent 50%, rgba(139, 63, 184, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.gradient-border:hover::after {
    opacity: 1;
}

/* ============================
   BUTTON SHIMMER
   ============================ */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: none;
    animation: btn-shimmer 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes btn-shimmer {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

/* ============================
   ANIMATED GRADIENT TEXT
   ============================ */
.gradient-text-animated {
    background: linear-gradient(270deg, #facc15, #e8873a, #d06a9c, #8b3fb8, #e8873a, #facc15);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================
   FLOATING PARTICLES
   ============================ */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-orange);
    opacity: 0;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.6; transform: scale(1); }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100vh) scale(0.5); }
}

/* ============================
   PULSING GLOW RING
   ============================ */
.step-number::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    opacity: 0;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.3; transform: scale(1.15); }
}

.step-card:nth-child(2) .step-number::before { animation-delay: 1s; }
.step-card:nth-child(3) .step-number::before { animation-delay: 2s; }

/* ============================
   LOGO SHIMMER
   ============================ */
.nav-logo-text span {
    background: linear-gradient(90deg, #facc15, #e8873a, #d06a9c, #8b3fb8, #e8873a, #facc15);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logo-shimmer 4s linear infinite;
}

@keyframes logo-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ============================
   GLOW DIVIDER
   ============================ */
.glow-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), var(--accent-orange), var(--accent-purple), transparent);
    opacity: 0.3;
    border: none;
}

/* ============================
   CUSTOM SCROLLBAR
   ============================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-pyramids {
        width: 140px;
    }

    .hero-pyramid {
        opacity: 0.12;
    }

    .section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps-grid::before {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .who-card {
        padding: 36px 28px;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

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

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

/* ============================
   FORMS / PILOT ONBOARDING
   ============================ */
.early-access-form {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.form-grid,
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.input-field {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    padding: 16px 18px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.input-field:focus {
    border-color: rgba(232, 135, 58, 0.8);
    box-shadow: 0 0 0 4px rgba(232, 135, 58, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.input-field::placeholder {
    color: var(--text-muted);
}

.input-textarea {
    resize: vertical;
    min-height: 130px;
}

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

.form-meta,
.form-status {
    color: var(--text-secondary);
    font-size: 14px;
}

.form-status[data-state="success"] {
    color: #86efac;
}

.form-status[data-state="error"] {
    color: #fca5a5;
}

.form-status[data-state="pending"] {
    color: #fcd34d;
}

.checklist-box,
.terms-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.checklist-box h3,
.terms-card h2 {
    margin-bottom: 12px;
}

.checklist-box ul,
.terms-card ul {
    padding-left: 20px;
    color: var(--text-secondary);
}

.terms-card {
    max-width: 860px;
    margin: 0 auto;
}

.terms-card p,
.terms-card li {
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.terms-wrap {
    max-width: 980px;
}

@media (max-width: 768px) {
    .form-grid,
    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
