:root {
    --bg: #050505;
    --text: #e6e6e6;
    --text-soft: #c2c2c2;
    --muted: #8a8a8a;
    --accent: #7000FF;
    --accent-glow: #9F55FF;
    --mono: 'Share Tech Mono', monospace;
    --display: 'Clash Display', sans-serif;
    --plume: 'Italianno', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
body { background: var(--bg); color: var(--text); font-family: var(--mono); overflow-x: hidden; }

/* ACCESSIBILITÉ : mode réduit / curseur natif */
html.accessibility-mode body { cursor: auto; }
html.accessibility-mode .cursor,
html.accessibility-mode .cursor-follower { display: none !important; }
html.accessibility-mode * { scroll-behavior: auto; }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* OVERLAYS */
.scanlines { position: fixed; inset: 0; pointer-events: none; z-index: 9000; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1)); background-size: 100% 4px; opacity: 0.3; }
.noise { position: fixed; inset: 0; pointer-events: none; z-index: 9001; opacity: 0.03; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); }

/* CURSOR */
@media (min-width: 992px) {
    .cursor { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; position: fixed; pointer-events: none; z-index: 10001; transform: translate(-50%, -50%); mix-blend-mode: difference; }
    .cursor-follower { width: 40px; height: 40px; border: 1px solid var(--accent); border-radius: 50%; position: fixed; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: transform 0.1s; mix-blend-mode: difference; }
}
@media (max-width: 991px) { .cursor, .cursor-follower { display: none; } body { cursor: auto; } }

/* LOADER */
.intro-overlay { position: fixed; inset: 0; background: black; z-index: 20000; display: flex; align-items: center; justify-content: center; }
.loader-content { position: absolute; }
.count { font-family: var(--display); font-size: 5rem; color: var(--accent); }
.splash-screen { opacity: 0; visibility: hidden; }
.splash-logo { font-family: var(--display); font-size: 8vw; color: white; }
.blink { animation: blink 0.2s infinite; color: var(--accent); }
@keyframes blink { 50% { opacity: 0; } }

/* NAV */
.main-nav { position: fixed; top: 0; left: 0; width: 100%; padding: 30px 50px; z-index: 1000; display: flex; justify-content: space-between; align-items: center; mix-blend-mode: difference; }
.logo { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: white; text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.language-switcher { display: flex; gap: 8px; background: rgba(255,255,255,0.1); padding: 4px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2); transition: opacity 0.3s ease, transform 0.3s ease; }
.nav-language-switcher.collapsed { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.lang-btn { background: transparent; border: none; color: rgba(255,255,255,0.5); padding: 8px 16px; border-radius: 50px; font-family: var(--mono); font-size: 0.85rem; font-weight: 600; cursor: none; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.lang-btn:hover { color: rgba(255,255,255,0.8); }
.lang-btn.active { background: var(--accent); color: white; box-shadow: 0 0 15px rgba(112,0,255,0.5); }
.header-cta { background: var(--accent); border: none; color: white; padding: 12px 24px; border-radius: 50px; font-family: var(--mono); font-weight: 700; cursor: none; transition: 0.3s; }
.header-cta:hover { background: white; color: black; }
.header-cta.hidden { opacity: 0; pointer-events: none; transform: translateY(-20px); }
.status-badge { display: none; } /* Caché sur le bouton Nav */
.menu-trigger { 
    width: 50px; 
    height: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: none; 
    opacity: 0; 
    pointer-events: none; 
    transition: 0.3s; 
    background: transparent; 
    border: none; 
    padding: 0; 
}
.menu-trigger.visible { opacity: 1; pointer-events: auto; }
.burger-lines { width: 30px; height: 10px; display: flex; flex-direction: column; justify-content: space-between; }
.line { width: 100%; height: 2px; background: white; }

/* SIDE MENU */
.side-menu { position: fixed; inset: 0; width: 100vw; height: 100vh; background: #050505; z-index: 950; transform: translateX(100%); transition: 0.5s cubic-bezier(0.7,0,0.3,1); display: flex; justify-content: flex-end; }
.side-menu.active { transform: translateX(0); }
.menu-content { width: min(420px, 90vw); height: 100%; background: #0a0a0a; border-left: 1px solid var(--accent); padding: 80px 40px; display: flex; flex-direction: column; gap: 40px; box-shadow: -20px 0 40px rgba(0,0,0,0.4); }
.menu-links { display: flex; flex-direction: column; gap: 30px; }
.menu-link { font-family: var(--display); font-size: 3rem; color: #444; text-decoration: none; transition: 0.3s; }
.menu-link:hover { color: var(--accent); padding-left: 10px; }
.menu-language { margin-top: auto; border-top: 1px solid #222; padding-top: 30px; display: flex; flex-direction: column; gap: 10px; }
.menu-language-label { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: #666; }
.menu-language-switcher { background: rgba(112,0,255,0.1); border-color: rgba(112,0,255,0.2); }
.menu-footer { font-size: 0.8rem; color: #555; border-top: 1px solid #222; padding-top: 20px; }
.menu-footer p { margin: 0; }

body.menu-open { overflow: hidden; }

/* HERO */
.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 60px; position: relative; }
.hero-container { position: relative; z-index: 1; }
.hero-title { font-family: var(--display); font-size: clamp(4rem, 12vw, 10rem); line-height: 0.9; text-transform: uppercase; color: white; margin-bottom: 30px; }
.line-wrap { display: block; overflow: hidden; }
.word { display: inline-block; } 
.highlight { color: var(--accent); }
.impact-word { position: relative; display: inline-block; }
.impact-border {
    color: transparent;
    -webkit-text-stroke: 3px white;
    display: inline-block;
    position: relative;
    z-index: 2;
}
.impact-fill {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent);
    text-shadow: 0 0 40px rgba(112,0,255,0.5);
    display: inline-block;
    overflow: hidden;
    clip-path: inset(100% 0 0 0);
    z-index: 1;
    transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-sub-wrapper { opacity: 1; transform: translateY(0); }
.hero-desc { font-family: var(--mono); font-size: clamp(1.25rem, 2.6vw, 2.3rem); color: var(--text-soft); max-width: 900px; margin: 0 auto; line-height: 1.5; font-weight: 500; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: var(--accent); font-size: 0.8rem; font-family: var(--mono); animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* STORYTELLING */
.story { height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; background: var(--bg); }
.story-wrapper { overflow: hidden; width: 100%; }
.story-track { display: flex; gap: 40vw; align-items: center; width: max-content; }
.track-spacer { width: 50vw; } 
.story-panel { 
    min-width: 60vw; margin-right: 15vw; padding: 40px; 
    border-left: 4px solid #222; 
    opacity: 0.2; filter: blur(2px); transform: scale(0.9);
    transition: all 0.5s ease-out; 
}
.story-panel.active { opacity: 1 !important; filter: blur(0) !important; transform: scale(1.1) !important; border-color: var(--accent); }
.story-panel.active h2 { color: white !important; text-shadow: 0 0 30px rgba(255,255,255,0.2); }

.big-num { font-family: var(--display); font-size: 4rem; color: var(--accent); margin-bottom: 10px; display: block; }
.story-panel h2 { font-family: var(--display); font-size: 6rem; color: #444; margin-bottom: 20px; line-height: 1; transition: color 0.5s; }
.sub-violet { font-size: 2rem; color: var(--accent-glow); font-weight: bold; }

/* PHILOSOPHIE */
.philosophy { padding: 200px 0; background: #e0e0e0; position: relative; }
.fade-overlay { position: absolute; left: 0; width: 100%; height: 300px; pointer-events: none; }
.fade-overlay.top { top: 0; background: linear-gradient(to bottom, var(--bg), transparent); }
.fade-overlay.bottom { bottom: 0; background: linear-gradient(to top, var(--bg), transparent); }
.philo-content { max-width: 1000px; margin: 0 auto; padding: 0 40px; text-align: center; }
.label-tech { color: #666; letter-spacing: 3px; margin-bottom: 40px; }
.philo-text { 
    font-family: var(--display); font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.4; color: #111; 
    text-transform: uppercase; font-weight: 600; text-wrap: balance; 
}
.highlight-fill { background: linear-gradient(to right, black 50%, transparent 50%); background-size: 200% 100%; background-position: 100%; transition: background-position 0.8s ease-out; color: black; display: inline; padding: 0 10px; }
.philosophy.active .highlight-fill { background-position: 0%; color: white; }

/* STATS */
.stats-section { padding: 150px 0; border-top: 1px solid #222; }
.stats-grid { display: flex; justify-content: space-around; text-align: center; margin-bottom: 80px; flex-wrap: wrap; gap: 30px; }
.stat-val { font-family: var(--display); font-size: 5rem; color: #7000FF !important; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-item p { 
    color: #7000FF !important; 
    font-size: 0.9rem !important; 
    margin-top: 15px !important; 
    font-family: var(--mono) !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    line-height: 1.4 !important;
}
.spots-remaining { 
    color: #7000FF !important; 
    font-size: 0.8rem !important; 
    margin-top: 10px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* TECH STACK */
.tech-stack { padding: 100px 0; border-bottom: 1px solid #222; }
.label-tech.centered { text-align: center; margin-bottom: 60px; color: #666; letter-spacing: 3px; display: block; width: 100%; }
.tech-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 1000px; margin: 0 auto; }
.tech-item { padding: 15px 35px; border: 1px solid #333; border-radius: 50px; color: #aaa; font-family: var(--mono); font-size: 1.1rem; transition: 0.3s; cursor: default; background: rgba(255,255,255,0.01); }
.tech-item:hover { border-color: var(--accent); color: white; box-shadow: 0 0 20px rgba(112,0,255,0.3); transform: translateY(-3px) scale(1.05); background: rgba(112,0,255,0.1); }

/* SOCIAL PROOF */
.social-proof { padding: 100px 0; border-top: 1px solid #222; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-family: var(--display); font-size: 4rem; margin: 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.review-card { background: rgba(255,255,255,0.02); border: 1px solid #333; padding: 30px; transition: 0.3s; }
.review-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.review-header { display: flex; justify-content: space-between; margin-bottom: 20px; border-bottom: 1px solid #222; padding-bottom: 10px; }
.client-name { font-weight: bold; color: var(--accent-glow); }
.stars { color: var(--accent); }
.review-text { color: #aaa; font-style: italic; line-height: 1.5; }

/* PROCESS */
.process { padding: 100px 0; }
.process-list { display: grid; gap: 80px; max-width: 900px; margin: 0 auto; }
.process-step { display: flex; gap: 30px; align-items: flex-start; opacity: 0; transform: translateY(30px); transition: 0.4s; }
.process-step.visible { opacity: 1; transform: translateY(0); }
.step-id { font-family: var(--display); font-size: 3rem; color: var(--accent); font-weight: bold; min-width: 80px; }
.step-info h3 { font-family: var(--display); font-size: 2rem; color: white; margin-bottom: 10px; }
.step-info p { color: var(--text-soft); line-height: 1.6; font-size: 1rem; }

/* PRICING */
.pricing { padding: 150px 0; background: var(--bg); }
.container.full-width { width: 100%; padding: 0 40px; max-width: 1400px; margin: 0 auto; }
.pricing-card { 
    background: #0a0a0a; 
    border: 2px solid rgba(112,0,255,0.2); 
    border-radius: 24px; 
    padding: 70px 60px; 
    display: flex; 
    flex-direction: column; 
    gap: 50px;
    box-shadow: 0 0 0 rgba(112,0,255,0), inset 0 0 60px rgba(112,0,255,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.pricing-card:hover::before {
    opacity: 1;
}
.pricing-card:hover {
    border-color: rgba(112,0,255,0.4);
    box-shadow: 0 0 0 rgba(112,0,255,0), inset 0 0 80px rgba(112,0,255,0.08);
    transform: translateY(-2px);
}

.pricing-header { 
    text-align: center; 
    padding-bottom: 50px; 
    border-bottom: 2px solid rgba(112,0,255,0.15);
    position: relative;
}
.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent);
    opacity: 0.5;
}
.pricing-title { 
    font-family: var(--display); 
    font-size: clamp(2.5rem, 5vw, 5rem); 
    font-weight: 700; 
    color: white; 
    margin-bottom: 40px; 
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(112,0,255,0.2);
}
.price-wrapper { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 20px; 
}
.price-container {
    display: flex;
    align-items: baseline;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.price-from {
    font-family: var(--mono);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #666;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.price-from.hidden {
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.price-main { 
    font-family: var(--display); 
    font-size: clamp(3rem, 7vw, 5.5rem); 
    color: var(--accent); 
    font-weight: 700; 
    line-height: 1;
    text-shadow: 0 0 30px rgba(112,0,255,0.4);
    letter-spacing: -1px;
}
.price-note { 
    color: var(--muted); 
    font-size: 0.9rem; 
    font-family: var(--mono); 
    letter-spacing: 1.5px; 
    margin: 0;
    text-transform: uppercase;
}

.pages-selector-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 35px 0;
    background: rgba(112,0,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(112,0,255,0.15);
    flex-wrap: wrap;
}
.pages-label {
    font-family: var(--mono);
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}
.pages-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(112,0,255,0.25);
    border-radius: 10px;
    padding: 14px 30px;
    color: white;
    font-family: var(--mono);
    font-size: 1rem;
    font-weight: 500;
    cursor: none;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
}
.pages-select:hover {
    border-color: rgba(112,0,255,0.5);
    background: rgba(112,0,255,0.1);
    transform: translateY(-1px);
}
.pages-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(112,0,255,0.3);
    background: rgba(112,0,255,0.15);
}

.pricing-options { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 12px; 
}
.calc-option { 
    background: rgba(255,255,255,0.01); 
    border: 1px solid rgba(255,255,255,0.08); 
    border-radius: 10px; 
    padding: 0; 
    transition: all 0.25s ease;
    overflow: hidden;
    position: relative;
}
.calc-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(112,0,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}
.calc-option:hover {
    border-color: rgba(112,0,255,0.4);
    background: rgba(112,0,255,0.08);
    transform: translateY(-1px);
}
.calc-option:hover::before {
    opacity: 1;
}
.calc-option input[type="checkbox"]:checked ~ .option-name,
.calc-option:has(input[type="checkbox"]:checked) {
    border-color: rgba(112,0,255,0.6);
    background: rgba(112,0,255,0.12);
}
.calc-option label { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 16px 18px; 
    cursor: none; 
    width: 100%;
    position: relative;
    z-index: 1;
}
.calc-option input[type="checkbox"] { 
    width: 18px; 
    height: 18px; 
    accent-color: var(--accent);
    cursor: none;
    margin-right: 12px;
    flex-shrink: 0;
}
.calc-option input[type="checkbox"]:checked + .option-name {
    color: var(--accent);
    font-weight: 600;
}
.option-name { 
    flex: 1; 
    color: #bbb; 
    font-family: var(--mono); 
    font-size: 0.95rem; 
    font-weight: 500;
    transition: all 0.25s;
}
.option-price { 
    color: var(--accent); 
    font-family: var(--mono); 
    font-size: 0.9rem; 
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-features { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    flex-wrap: wrap;
    padding: 35px 0;
    background: rgba(112,0,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(112,0,255,0.1);
}
.pricing-features span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.pricing-features span:nth-child(2n) {
    color: #555;
    font-size: 0.7rem;
}

.pricing-cta { 
    padding: 22px 70px; 
    background: var(--accent); 
    border: none; 
    color: white; 
    font-family: var(--mono); 
    font-size: 1.1rem; 
    font-weight: 700; 
    cursor: none; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    align-self: center;
    box-shadow: 0 8px 25px rgba(112,0,255,0.25);
    position: relative;
    overflow: hidden;
}
.pricing-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.pricing-cta:hover::before {
    width: 300px;
    height: 300px;
}
.pricing-cta:hover { 
    background: white; 
    color: black; 
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(112,0,255,0.4);
    letter-spacing: 4px;
}
.pricing-cta:active {
    transform: translateY(0);
}

/* FAQ */
.faq { padding: 100px 0; max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #333; padding: 30px 0; cursor: none; }
.q { font-size: 1.6rem; color: white; margin-bottom: 10px; transition: 0.3s; }
.faq-item:hover .q { color: var(--accent); padding-left: 10px; }
.a { max-height: 0; overflow: hidden; color: var(--text-soft); transition: 0.5s; line-height: 1.7; font-size: 1rem; }

/* FOCUS visible pour accessibilité */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.faq-item.open .a { max-height: 200px; margin-top: 10px; }

/* MARQUEE */
.marquee-diagonal { overflow: hidden; transform: rotate(-3deg); background: var(--accent); padding: 15px 0; margin: 80px 0; width: 110%; margin-left: -5%; }
.track-diag { white-space: nowrap; font-family: var(--display); font-size: 3rem; color: black; animation: scroll 15s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FOOTER FINAL */
.footer-end { background: #000; overflow: hidden; position: relative; }
.spacer-void { height: 30vh; }
.footer-cta-wrapper { height: 60vh; display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.fusion-box { position: relative; text-align: center; }
.bg-word { font-family: var(--display); font-size: 8rem; color: white; position: relative; z-index: 1; transition: 0.3s; }
.hover-reveal-cta { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; opacity: 0; transition: 0.4s ease; }
.fg-word { font-family: var(--plume); font-size: 10rem; color: var(--accent); white-space: nowrap; text-shadow: 0 0 30px var(--accent); }
.fusion-box:hover .bg-word { opacity: 0.1; filter: blur(5px); }
.fusion-box:hover .hover-reveal-cta { opacity: 1; transform: translate(-50%, -50%) scale(1.2) rotate(-5deg); }
.footer-bot { text-align: center; padding-bottom: 50px; }
.huge-logo-bot { font-family: var(--display); font-size: 10vw; color: var(--accent); font-weight: bold; margin-bottom: 20px; opacity: 0; transform: translateY(50px); }
.bot-infos { color: #555; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.legal-links a { color: #555; margin: 0 10px; text-decoration: none; font-size: 0.8rem; }
.legal-links a:hover { color: white; }

/* WIDGETS */
.time-widget { position: fixed; bottom: 30px; left: 30px; display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.8rem; z-index: 900; mix-blend-mode: exclusion; color: white; }
.led { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 1s infinite; }
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { width: 90%; max-width: 500px; background: #111; border: 1px solid var(--accent); }
.modal-bar { background: var(--accent); padding: 10px 20px; display: flex; justify-content: space-between; font-weight: bold; color: black; }
.close-modal { cursor: none; font-weight: bold; }
.modal-content { padding: 30px; }
.input-group { margin-bottom: 15px; }
input, select, textarea { width: 100%; background: #050505; border: 1px solid #333; padding: 15px; color: white; font-family: var(--mono); }
.submit-btn { width: 100%; padding: 15px; background: white; border: none; font-weight: bold; cursor: none; margin-top: 10px; }
.submit-btn:hover { background: var(--accent); color: white; }
.modal-alt { margin-top: 20px; text-align: center; border-top: 1px solid #222; padding-top: 15px; }
.modal-alt p { color: #666; font-size: 0.8rem; margin-bottom: 10px; }
.calendly-link { color: var(--accent); text-decoration: underline; font-weight: bold; }
.calendly-link-btn { background: transparent; border: 2px solid var(--accent); color: var(--accent); padding: 12px 30px; border-radius: 50px; font-family: var(--mono); font-weight: 700; cursor: none; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.calendly-link-btn:hover { background: var(--accent); color: white; box-shadow: 0 0 20px rgba(112,0,255,0.5); }

/* CALENDLY OVERLAY */
.calendly-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 10001; display: none; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s; }
.calendly-overlay.active { display: flex; opacity: 1; visibility: visible; }
.calendly-modal-box { width: 90%; max-width: 900px; height: 85vh; max-height: 800px; background: #111; border: 1px solid var(--accent); display: flex; flex-direction: column; }
.calendly-modal-bar { background: var(--accent); padding: 15px 25px; display: flex; justify-content: space-between; align-items: center; font-weight: bold; color: black; font-family: var(--mono); }
.close-calendly { cursor: none; font-weight: bold; font-size: 1.2rem; transition: 0.3s; }
.close-calendly:hover { transform: rotate(90deg); }
#calendly-widget-container { flex: 1; width: 100%; overflow: hidden; padding: 20px; }
.calendly-inline-widget { width: 100%; height: 100%; min-height: 600px; }

@media(max-width: 991px) {
    .main-nav { padding: 20px 20px; }
    .hero { padding-top: 40px; height: auto; min-height: 100vh; }
    .hero-title { font-size: 2.4rem; }
    .hero-desc { font-size: 1.1rem; padding: 0 20px; line-height: 1.6; }
    .stats-section { padding: 90px 0 80px; }
    .stats-grid { gap: 24px; margin-bottom: 40px; }
    .stat-val { font-size: 3rem; }
    .stat-item p { font-size: 0.8rem !important; }
    .tech-stack { padding: 70px 0; }
    .process { padding: 70px 0; }
    .pricing { padding: 90px 0; }
    .pricing-options { grid-template-columns: repeat(2, 1fr); }
    .container.full-width { padding: 0 20px; }
    .pricing-card { padding: 40px 26px; gap: 32px; }
    .faq { padding: 70px 0; }
    .q { font-size: 1.3rem; }
    .a { font-size: 0.95rem; }
    .marquee-diagonal { margin: 50px 0; }
    .footer-end .spacer-void { height: 18vh; }
}

@media(max-width: 768px) {
    .hero { padding-top: 30px; }
    .hero-title { font-size: 2.1rem; }
    .hero-desc { font-size: 1.05rem; padding: 0 18px; }
    .scroll-indicator { bottom: 24px; font-size: 0.7rem; }
    .bg-word { font-size: 12vw; }
    .fg-word { font-size: 15vw; }
    .story-panel { min-width: 90vw; }
    .story { height: auto; padding: 60px 0; overflow: visible; }
    .story-wrapper { overflow: visible; }
    .story-track { display: flex; flex-direction: column; gap: 32px; width: 100%; align-items: stretch; }
    .track-spacer { display: none; }
    .story-panel { 
        min-width: 100%; 
        margin: 0 20px; 
        padding: 28px 20px; 
        transform: scale(1); 
        filter: none; 
        opacity: 1;
    }
    .story-panel h2 { font-size: 2.2rem; }
    .big-num { font-size: 2.4rem; }
    .sub-violet { font-size: 1.2rem; }
    .pricing-card { padding: 32px 20px; gap: 28px; }
    .pricing-options { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .pricing-title { font-size: 2.5rem; letter-spacing: 2px; }
    .price-main { font-size: 3rem; }
    .pages-selector-wrapper { flex-direction: column; gap: 15px; padding: 25px 20px; }
    .pages-select { min-width: 100%; }
    .pricing-cta { padding: 18px 50px; font-size: 1rem; }
    .feature-grid.clean { grid-template-columns: 1fr; }
    .time-widget { bottom: 15px; left: 15px; font-size: 0.7rem; }
}
