:root {
    --bg-dark: #0a0a0a;
    --bg-panel: #141414;
    --text-main: #e0e0e0;
    --text-muted: #666;
    --accent: #D4AF37;
    --accent-dim: rgba(212, 175, 55, 0.1);
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Space Grotesk', sans-serif;
    --cursor-size: 20px;
}

/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none; /* Hide default cursor for custom one */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

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

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor__circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cursor__text {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
}

body:hover .cursor__circle {
    opacity: 1;
}

/* Hover states for cursor */
.cursor.hovered .cursor__circle {
    transform: scale(2.5);
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

.cursor.hovered .cursor__text {
    opacity: 1;
}

/* BACKGROUND EFFECTS */
.cinema-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatLight 10s infinite alternate;
}

.light-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #2a2a2a, transparent);
}

.light-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
    animation-delay: -2s;
}

.light-3 {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(50, 50, 80, 0.1), transparent);
    animation-delay: -5s;
}

@keyframes floatLight {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 40px) scale(1.1); }
}

.floating-subs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.float-word {
    position: absolute;
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(255,255,255,0.03);
    font-size: 2rem;
    white-space: nowrap;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Default state: Transparent & Blend */
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.navbar.scrolled {
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.6); /* Semi-transparent dark */
    backdrop-filter: blur(12px) saturate(180%); /* Liquid Glass Effect */
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    padding: 5px 0;
}

.nav-link::before {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}

.nav-link:hover::before {
    transform: translateY(-100%);
}

/* MAGNETIC BUTTON */
.btn-magnetic {
    display: inline-flex;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-text {
    position: relative;
    z-index: 2;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    mix-blend-mode: difference;
    color: #fff;
}

.btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 1;
}

.btn-magnetic:hover .btn-fill {
    transform: scaleY(1);
}

.btn-magnetic:hover {
    border-color: #fff;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 10vw 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 750px; /* Wider content */
    z-index: 10;
    position: relative;
}

.label-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-tag::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.glitch-title {
    font-family: 'Cinzel', serif; /* New cinematic font */
    font-size: clamp(3.5rem, 6vw, 7rem);
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.glitch-title .row {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.glitch-title .row:nth-child(1) { 
    animation-delay: 0.2s;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glitch-title .row:nth-child(2) { 
    animation-delay: 0.4s; 
}

.glitch-title .highlight {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.8);
    font-style: normal;
    position: relative;
    transition: all 0.5s ease;
}

/* Glow effect for highlight */
.glitch-title .highlight::after {
    content: 'Your Classroom.';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--accent);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s ease;
}

.glitch-title:hover .highlight {
    color: var(--accent);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.glitch-title:hover .highlight::after {
    opacity: 0.6;
}

.hero-desc {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
    margin-top: 20px;
    font-weight: 300;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 25px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px; /* Adjusted from 50px */
    left: 10vw;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
    z-index: 20;
}

/* ... existing styles ... */

/* HERO VISUAL (New) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Push to right */
    align-items: center;
    position: relative;
    height: 100%;
    z-index: 5;
    perspective: 1000px;
}

.cinema-core {
    position: relative;
    width: 500px;
    height: 400px;
    transform-style: preserve-3d;
    animation: floatCore 6s ease-in-out infinite;
}

.layer {
    position: absolute;
    width: 100%;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.layer-1 {
    top: 20%;
    right: 0;
    transform: translateZ(50px) rotateY(-10deg) rotateX(5deg);
    z-index: 3;
    border-left: 2px solid var(--accent);
}

.layer-2 {
    top: 45%;
    right: 40px;
    transform: translateZ(20px) rotateY(-10deg) rotateX(5deg);
    z-index: 2;
    opacity: 0.7;
}

.layer-3 {
    top: 70%;
    right: 80px;
    transform: translateZ(-10px) rotateY(-10deg) rotateX(5deg);
    z-index: 1;
    opacity: 0.4;
}

.time-code {
    display: block;
    font-family: var(--font-sans); /* Monospace feel */
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.sub-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    font-style: italic;
}

/* Scan Line Effect */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    opacity: 0;
    animation: scan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.scan-line.delay {
    animation-delay: 2s;
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Abstract Glows */
.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
}

@keyframes floatCore {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes rotateRing {
    0% { transform: translate(-50%, -50%) rotateX(60deg) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(60deg) rotate(360deg); }
}

@media (max-width: 1024px) {
    .hero { flex-direction: column; justify-content: center; padding-top: 120px; text-align: center; }
    .hero-content { margin-bottom: 60px; max-width: 100%; }
    .hero-visual { display: none; /* Hide on smaller screens or adjust */ }
    .scroll-indicator { left: 50%; transform: translateX(-50%); bottom: 20px; }
}

.scroll-indicator .line {
    width: 50px;
    height: 1px;
    background: var(--text-muted);
}

/* LENS SECTION (Interactive) */
.lens-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #0e0e0e;
}

.section-label {
    position: absolute;
    top: 40px;
    left: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.lens-instruction {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--accent);
    opacity: 0.7;
}

.lens-target-wrapper {
    position: relative;
    cursor: crosshair; /* Only if JS fails */
}

.lens-target {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

.blur-layer {
    color: #333;
    filter: blur(8px);
    transition: filter 0.3s;
}

.clear-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    /* Clip path will be handled by JS */
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.1s linear;
}

.lens-context {
    margin-top: 50px;
    text-align: center;
    opacity: 0.5;
}

.context-original {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 10px;
}

.context-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SHOWCASE GRID */
.showcase {
    padding: 150px 50px;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.text-col h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
}

.text-col p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
}

.f-item {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-top-color: #222;
    padding: 25px;
    transition: all 0.3s;
    border-radius: 12px;
}

.f-item:hover {
    border-color: var(--accent);
}

.f-item .num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.detail strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.detail p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* NEURAL INTERFACE (New Visual) */
.neural-interface {
    width: 100%;
    height: 500px; /* Fixed height for stability */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.neural-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
    animation: spinRing linear infinite;
}

.neural-ring.outer {
    width: 450px;
    height: 450px;
    border-color: rgba(255, 255, 255, 0.05);
    animation-duration: 20s;
}

.neural-ring.inner {
    width: 300px;
    height: 300px;
    border-style: solid;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: var(--accent);
    border-right-color: var(--accent);
    opacity: 0.3;
    animation-duration: 10s;
    animation-direction: reverse;
}

.neural-core {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(20, 20, 20, 0.9), #000);
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.core-content {
    text-align: center;
    z-index: 2;
}

.core-state {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.core-state.active {
    display: flex;
}

.core-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px var(--accent));
}

.core-label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.core-data {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
}

.scan-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: scanDown 3s linear infinite;
    z-index: 1;
}

.floating-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.node {
    position: absolute;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
    animation: floatNode 4s ease-in-out infinite;
}

.node.n1 { top: 20%; left: 20%; animation-delay: 0s; }
.node.n2 { top: 30%; right: 15%; animation-delay: 1s; }
.node.n3 { bottom: 25%; left: 25%; animation-delay: 2s; }
.node.n4 { bottom: 15%; right: 30%; animation-delay: 3s; }

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

@keyframes scanDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes floatNode {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* PLATFORMS & LANGUAGES SECTIONS */
.platforms-section {
    padding: 100px 50px;
    border-top: 1px solid #222;
    position: relative;
}

.platforms-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: default;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.platform-logo svg {
    width: 40px;
    height: 40px;
}

.platform-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.platform-logo.youtube:hover { color: #ff0000; }
.platform-logo.netflix:hover { color: #e50914; }
.platform-logo.prime:hover { color: #00A8E1; }
.platform-logo.disney:hover { color: #fff; }
.platform-logo.blutv:hover { color: #00c0f5; }

.languages-section {
    padding: 100px 50px;
    border-top: 1px solid #222;
    position: relative;
    background: #0e0e0e;
}

.languages-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.languages-section h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 60px;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.lang-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.lang-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.lang-item .flag {
    font-size: 1.5rem;
}

/* CTA FOOTER */
.cta-footer {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
    border-top: 1px solid #222;
}

.big-cta {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 1;
    margin-bottom: 40px;
}

.big-cta em {
    color: var(--accent);
}

.large {
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
}

.footer-links {
    margin-top: 100px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sep {
    margin: 0 15px;
    opacity: 0.3;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #333;
}

/* ANIMATIONS */
@keyframes fadeIn {
    to { opacity: 1; }
}

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

@media (max-width: 768px) {
    .showcase-grid { grid-template-columns: 1fr; gap: 50px; }
    .navbar { padding: 20px; }
    .nav-right a:not(.btn-magnetic) { display: none; }
    .lens-target { font-size: 3rem; }
    .platforms-container { gap: 30px; }
    .lang-grid { grid-template-columns: 1fr 1fr; }
}
/* ... [Keep previous styles] ... */

/* --- NEW SECTIONS --- */

/* Demo Section (Video Simulator) */
.demo-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
    background: #0c0c0c;
}

.demo-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.demo-instruction {
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.step-badge {
    background: var(--accent);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.demo-instruction h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
}

.video-simulator {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.video-ui-top, .video-ui-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.video-ui-top { top: 0; text-align: left; }
.video-ui-bottom { bottom: 0; display: flex; flex-direction: column; gap: 10px; }

.ui-text {
    color: #e50914; /* Netflix Red */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.progress-fill {
    width: 60%;
    height: 100%;
    background: #e50914;
}

.controls {
    display: flex;
    gap: 15px;
    color: #fff;
    font-size: 1.2rem;
}

.subtitle-layer {
    position: absolute;
    bottom: 20%;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.sub-line {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    background: rgba(0,0,0,0.6);
    padding: 8px 16px;
    border-radius: 4px;
}

.sub-word {
    cursor: pointer;
    padding: 0 4px;
    border-radius: 4px;
    transition: all 0.2s;
}

.sub-word:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.sub-word.active {
    background: var(--accent);
    color: #000;
}

/* Popup */
.subglot-popup {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 260px;
    background: #1a1a1a;
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 16px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10;
}

.subglot-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.popup-word {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent);
}

.popup-type {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 4px;
}

.popup-def {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.popup-footer {
    margin-top: 12px;
    text-align: right;
}

.btn-save {
    background: transparent;
    border: 1px solid #444;
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-save:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Steps Section */
.steps-section {
    padding: 100px 20px;
    background: #0f0f0f;
    border-top: 1px solid #222;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto 0;
}

.step-card {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #333;
}

.step-card.highlight {
    border-color: var(--accent);
    background: linear-gradient(145deg, #161616, #1a1810);
}

.step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #222;
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-arrow {
    font-size: 2rem;
    color: #333;
    margin-top: 50px;
}

/* Comparison Section (Sticky Evolution) */
.evolution-section {
    background: #0a0a0a;
    position: relative;
}

.evolution-track {
    height: 350vh; /* Long scroll track */
    position: relative;
}

.evolution-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.evo-header {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.evo-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-top: 40px;
}

.evo-content-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evo-stage {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(50px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    filter: blur(10px);
}

.evo-stage.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    filter: blur(0);
    z-index: 5;
}

.evo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.evo-card {
    background: #161616;
    border: 1px solid #333;
    padding: 40px;
    width: 350px;
    height: 250px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evo-card.old {
    border-style: dashed;
    opacity: 0.6;
}

.evo-card.new {
    border-color: var(--accent);
    background: radial-gradient(circle at center, #1a1810, #161616);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
}

.evo-card.new .badge {
    background: var(--accent);
    color: #000;
    font-weight: bold;
}

.evo-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.evo-card p {
    font-size: 1.1rem;
    color: #aaa;
    font-style: italic;
}

.evo-center {
    font-size: 2rem;
    color: var(--text-muted);
}

.evo-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.evo-desc h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.evo-desc p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.evo-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.ind {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    transition: all 0.3s;
}

.ind.active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .evo-visual { flex-direction: column; gap: 20px; }
    .evo-arrow { transform: rotate(90deg); }
    .evo-card { width: 100%; height: auto; padding: 30px; }
    .evolution-track { height: 400vh; }
}

/* ... [Keep previous styles] ... */

.logo-svg-header {
    height: 32px;
    /* filter: brightness(0) invert(1); Removed to keep original colors */
    margin-right: 8px;
    transition: height 0.4s ease;
}

/* Make f-item clickable */
.f-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.f-item.active {
    border-color: var(--accent);
    background: rgba(255,255,255,0.03);
}

.f-item.active .num {
    color: var(--accent);
    opacity: 1;
}

.f-item.active strong {
    color: var(--accent);
}

/* 3D Card Dynamic Content */
.movie-scene {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
    position: relative;
    transition: opacity 0.3s;
}

.scene-content {
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.scene-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* ... [rest of styles] ... */

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: #0c0c0c;
    border-top: 1px solid #222;
    position: relative;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #141414;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #444;
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(145deg, #161616, #1a1810);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-sans);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.card-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

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

.pricing-card .features-list li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-card .features-list li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

/* Button Variants */
.btn-magnetic.outline {
    width: 100%;
    justify-content: center;
    border-color: #444;
}

.btn-magnetic.full {
    width: 100%;
    justify-content: center;
    background: var(--accent);
    border-color: var(--accent);
}

.btn-magnetic.full .btn-text {
    color: #000;
    mix-blend-mode: normal;
}

.btn-magnetic.full .btn-fill {
    background: #fff; /* Fill color on hover */
}

.btn-magnetic.full:hover .btn-text {
    color: #000; /* Keep black on hover */
}

