:root {
    /* Colors */
    --bg-color: #020205;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --cyan-300: #67e8f9;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --slate-900: #0f172a;
    --card-bg: #0F1014;

    /* Gradients */
    --gradient-urgency: linear-gradient(to right, var(--cyan-600), var(--blue-700), var(--cyan-600));
    --gradient-text: linear-gradient(to right, var(--cyan-400), #bfdbfe, #ffffff);

    /* Shadows */
    --shadow-glow: 0 0 50px rgba(34, 211, 238, 0.2);
    --shadow-btn: 0 20px 50px rgba(34, 211, 238, 0.3);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.5;
}

::selection {
    background-color: var(--cyan-400);
    color: black;
}

/* Utilities */
.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Layout & Spacing */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.shrink-0 {
    flex-shrink: 0;
}

.gap-1 {
    gap: .25rem
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.gap-12 {
    gap: 3rem
}

.gap-16 {
    gap: 4rem
}

.space-y-4>*+* {
    margin-top: 1rem
}

.space-y-6>*+* {
    margin-top: 1.5rem
}

.space-y-8>*+* {
    margin-top: 2rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.mb-12 {
    margin-bottom: 3rem
}

.mb-16 {
    margin-bottom: 4rem
}

.mb-24 {
    margin-bottom: 6rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-12 {
    margin-top: 3rem
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Typography Utilities */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-2xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-3xl {
    font-size: 2rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-8xl {
    font-size: 6rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .md\:text-2xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md\:text-3xl {
        font-size: 3rem;
        line-height: 1.2;
    }

    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .md\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }
}

/* Typography */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.not-italic {
    font-style: normal;
}

.font-light {
    font-weight: 300;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-\[0\.2em\] {
    letter-spacing: 0.2em;
}

.tracking-\[0\.3em\] {
    letter-spacing: 0.3em;
}

.tracking-\[0\.5em\] {
    letter-spacing: 0.5em;
}

.underline {
    text-decoration: underline;
}

.line-through {
    text-decoration: line-through;
}

/* Colors */
.text-transparent {
    color: transparent;
}

.text-white {
    color: var(--text-white);
}

.text-black {
    color: #000;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-800 {
    color: #1f2937;
}

.text-cyan-400 {
    color: var(--cyan-400);
}

.text-cyan-600 {
    color: var(--cyan-600);
}

.text-slate-600 {
    color: #475569;
}

.text-slate-800 {
    color: #1e293b;
}

.bg-black {
    background-color: #000;
}

.bg-white {
    background-color: #fff;
}

.bg-slate-900 {
    background-color: var(--slate-900);
}

.bg-cyan-400 {
    background-color: var(--cyan-400);
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-pure-black {
    background-color: #000000;
}

.bg-dark-gray {
    background-color: #1c1c1c;
}

/* Positioning & Z-Index */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.-inset-1 {
    top: -0.25rem;
    right: -0.25rem;
    bottom: -0.25rem;
    left: -0.25rem;
}

.-inset-10 {
    top: -2.5rem;
    right: -2.5rem;
    bottom: -2.5rem;
    left: -2.5rem;
}

.z-10 {
    z-index: 10;
}

.z-\[100\] {
    z-index: 100;
}

.overflow-hidden {
    overflow: hidden;
}

/* Effects */
.blur {
    filter: blur(8px);
}

.blur-\[100px\] {
    filter: blur(100px);
}

.blur-\[120px\] {
    filter: blur(120px);
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-\[2\.5rem\] {
    border-radius: 2.5rem;
}

/* Borders */
.border {
    border-width: 1px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-cyan-500\/40 {
    border-color: rgba(6, 182, 212, 0.4);
}

.hidden {
    display: none;
}

/* Animations */
@keyframes gradient-x {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

@keyframes pulse-custom {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.animate-gradient-x {
    background-size: 200% auto;
    animation: gradient-x 15s ease infinite;
}

.animate-pulse {
    animation: pulse-custom 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Components */
.urgency-bar {
    background: var(--gradient-urgency);
    background-size: 200% auto;
    padding: 0.625rem;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .urgency-bar {
        font-size: 0.875rem;
    }
}

.hero-section {
    padding: 1rem 1rem 2rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    width: 1400px;
    height: 800px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 9999px;
    filter: blur(80px);
    /* Reduced blur for performance */
    pointer-events: none;
    opacity: 0.5;
    will-change: transform;
}

.method-badge {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.gradient-text-clip {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradient-x 15s ease infinite;
    display: inline;
    padding: 0 0.25em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    padding-right: 0.1em;
    /* Space for italics */
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-desc {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 56rem;
    margin: 0 auto 3rem;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.375rem;
    }
}

/* VSL Container */
.vsl-container {
    position: relative;
    max-width: 56rem;
    margin: 0 auto 4rem;
}

.vsl-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, var(--cyan-500), var(--blue-600));
    border-radius: 2.5rem;
    filter: blur(8px);
    opacity: 0.25;
    transition: opacity 1s;
}

.vsl-container:hover .vsl-glow {
    opacity: 0.5;
}

.vsl-frame {
    position: relative;
    background: #0F1014;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.play-btn {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

@media (min-width: 768px) {
    .play-btn {
        width: 7rem;
        height: 7rem;
    }
}

.play-btn:hover {
    background: var(--cyan-400);
    transform: scale(1.1);
}

/* CTA Button */
.btn-cta {
    display: inline-block;
    background: var(--cyan-400);
    color: black;
    font-weight: 900;
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: var(--shadow-btn);
    border: none;
    cursor: pointer;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-cta {
        width: auto;
        font-size: 1.875rem;
        padding: 2rem 5rem;
    }
}

.btn-cta:hover {
    background: var(--cyan-300);
    transform: translateY(-8px);
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-12deg);
}

.btn-cta:hover .shine-effect {
    animation: shine 0.75s;
}

/* Cards */
.step-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 2.5rem;
    text-align: center;
    transition: 0.5s;
}

.step-card:hover {
    border-color: rgba(34, 211, 238, 0.5);
}

.icon-box {
    display: inline-flex;
    padding: 1.25rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    color: var(--cyan-400);
    transition: transform 0.3s;
}

.step-card:hover .icon-box {
    transform: scale(1.1);
}

/* Grid Layouts */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 1rem;
}

@media (min-width: 768px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md-grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg-flex-row {
        flex-direction: row;
    }

    .lg-w-half {
        width: 50%;
    }
}


/* Carousel Utilities */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Missing utility classes for Carousel */
.overflow-x-auto {
    overflow-x: auto;
}

.snap-start {
    scroll-snap-align: start;
}

.w-\[60vw\] {
    width: 60vw;
}

.aspect-\[3\/4\] {
    aspect-ratio: 3/4;
}

@media (min-width: 768px) {
    .md\:w-\[260px\] {
        width: 260px;
    }
}

.snap-x {
    scroll-snap-type: x mandatory;
}

/* Carousel Navigation */


.snap-center {
    scroll-snap-align: center;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.w-\[200px\] {
    width: 200px;
}

.md\:w-\[240px\] {
    width: 240px;
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.-translate-x-4 {
    transform: translateX(-1rem);
}

.translate-x-4 {
    transform: translateX(1rem);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.group:hover .group-hover\:block {
    display: block;
}

.-left-4 {
    left: -1rem;
}

.-right-4 {
    right: -1rem;
}

.left-2 {
    left: 0.5rem;
}

.right-2 {
    right: 0.5rem;
}

.z-20 {
    z-index: 20;
}

.cursor-grab {
    cursor: grab;
}

.active\:cursor-grabbing:active {
    cursor: grabbing;
}

.cursor-grabbing {
    cursor: grabbing;
}

.select-none {
    user-select: none;
    -webkit-user-select: none;
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.hover\:bg-white:hover {
    background-color: #ffffff;
}

@media (min-width: 768px) {
    .md\:-left-16 {
        left: -4rem;
    }

    .md\:-right-16 {
        right: -4rem;
    }

    .md\:flex {
        display: flex;
    }
}


/* Specific Sections */
.section-padding {
    padding: 6rem 1rem;
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

.student-photo {
    aspect-ratio: 9/16;
    background: black;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Pricing Card */
.pricing-card {
    background: #0A0A0E;
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 3rem;
    padding: 2rem;
    box-shadow: 0 0 100px rgba(6, 182, 212, 0.15);
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 5rem;
    }
}

.price-strike {
    text-decoration: line-through;
    color: #4b5563;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-main {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}


@media (min-width: 768px) {
    .price-main {
        font-size: 9rem;
        /* Reduced slightly from 11rem to fit better */
    }
}

/* Footer */
footer {
    padding: 3rem 0;
    background: black;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Objection Card */
.objection-card {
    background: #0F1014;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 2rem;
    transition: 0.3s;
}

.objection-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
}

/* Utility for Lucide Icons alignment */
.lucide {
    vertical-align: middle;
}

/* Carousel */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}