*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #ffffff;
    --text: #111111;
    --lime: #58CC02;
    --dim: rgba(17,17,17,0.45);
    --dimmer: rgba(17,17,17,0.45);
    --border: rgba(17,17,17,0.1);
    --font: 'Space Grotesk', -apple-system, sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--lime);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible outlines for keyboard nav */
:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 2px;
}

/* ===== FOUT PREVENTION ===== */
body {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
}

/* ===== GRAIN ===== */
.grain {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
}

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

.nav-logo span { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.5px; line-height: 1; }

.nav-cta {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    color: #ffffff;
    background: #111111;
    padding: 8px 18px;
    border-radius: 100px;
    transition: all 0.3s;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--lime); color: #ffffff; }

/* ===== FLOATING SERVICE WORDS ===== */
.word-cloud {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.float-word {
    position: absolute;
    font-family: var(--font);
    font-weight: 600;
    color: rgba(17,17,17,0.12);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0;
    animation:
        fadeIn 0.8s ease forwards var(--delay),
        floatWord var(--dur) ease-in-out infinite calc(var(--delay) + 0.8s);
}


/* ===== SCROLL TEASE ===== */
.scroll-tease {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 4s;
    pointer-events: none;
}
.scroll-tease span {
    font-size: 0.6rem; font-weight: 500;
    color: rgba(17,17,17,0.1);
    letter-spacing: 1px; text-transform: uppercase;
}
.scroll-tease svg { animation: bounceDown 1.5s ease-in-out infinite; }

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    position: relative;
    text-align: center;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-bottom: 48px;
}

/* ===== TEXT LINES ===== */
.line-sarcasm {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 400;
    color: rgba(17,17,17,0.7);
    line-height: 1.4;
}

.quoted {
    font-family: var(--serif);
    font-style: italic;
    color: #58CC02;
}

.inline-yawn, .inline-hand {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    position: relative;
    top: -2px;
}
.inline-hand {
    animation: handWave 1.5s ease-in-out infinite;
    transform-origin: bottom center;
}
.inline-yawn {
    animation: yawnBob 2s ease-in-out infinite;
}
@keyframes yawnBob {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.spacer { height: 36px; }
.spacer-sm { height: 20px; }

.line-bold {
    font-size: clamp(1.8rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text);
    will-change: opacity, transform; /* LCP hint */
}

.line-bold .italic {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--lime);
}

.line-sub {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: rgba(17,17,17,0.65);
    line-height: 1.7;
}

/* ===== STAGGERED ANIMS ===== */
.anim {
    opacity: 0;
    transform: translateY(18px);
}
.anim-1 { animation: fadeUp 0.6s ease forwards 0.3s; }
.anim-2 { animation: fadeUp 0.6s ease forwards 0.6s; }
.anim-3 { animation: fadeUp 0.6s ease forwards 1.0s; }
.anim-4 { animation: fadeUp 0.6s ease forwards 1.3s; }
.anim-5 { animation: fadeUp 0.6s ease forwards 1.6s; }

/* ===== THE INPUT ===== */
.input-section {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
}

.input-area {
    position: relative;
    display: flex;
    align-items: center;
}

.input-naked {
    width: 100%;
    padding: 14px 52px 14px 2px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    resize: none;
    min-height: 48px;
    max-height: 140px;
    position: relative;
    z-index: 2;
}
.input-naked::placeholder { color: transparent; }

.input-placeholder {
    position: absolute;
    top: 0; left: 2px; right: 52px; bottom: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 1;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dimmer);
}

.blink-cursor {
    color: var(--lime);
    font-weight: 300;
    animation: blink 0.9s step-end infinite;
    font-size: 1.3em;
    line-height: 1;
    margin-left: 2px;
}

.input-line {
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.input-section.focused .input-line {
    background: var(--lime);
    box-shadow: 0 2px 20px rgba(88,204,2,0.25);
}

.input-go {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 3;
    transition: all 0.3s;
    opacity: 0;
    scale: 0.8;
}
.input-section.has-text .input-go { opacity: 1; scale: 1; }
.input-go:hover, .input-go:focus-visible {
    background: var(--lime);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(88,204,2,0.25);
}

/* ===== CHAT CONTAINER ===== */
.chat-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}
.chat-container.active {
    display: flex;
    animation: fadeUp 0.5s ease forwards;
}
.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 50vh;
    overflow-y: auto;
    padding: 8px 4px;
    margin-bottom: 16px;
    scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Chat bubbles */
.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeUp 0.3s ease forwards;
    word-wrap: break-word;
}
.chat-bubble a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.chat-user {
    align-self: flex-end;
    background: #111111;
    color: #ffffff;
    border-bottom-right-radius: 6px;
}
.chat-bot {
    align-self: flex-start;
    background: rgba(88, 204, 2, 0.08);
    color: var(--text);
    border-bottom-left-radius: 6px;
    border-left: 3px solid var(--lime);
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 20px;
    min-height: 0;
}
.typing-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(88, 204, 2, 0.5);
    animation: typingDot 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Email CTA (replaces sent-state) */
.email-cta {
    position: relative;
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    max-width: 440px;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    margin-top: 8px;
}
.email-cta.show { display: flex; animation: fadeUp 0.5s ease forwards; }
.email-cta p { font-size: 0.82rem; color: var(--dim); }

.email-form { display: flex; gap: 8px; width: 100%; margin-top: 4px; }

.email-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-bottom: 2px solid var(--border);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s;
}
.email-form input:focus { border-bottom-color: var(--lime); }
.email-form input::placeholder { color: var(--dimmer); }

.email-form button {
    padding: 14px 28px;
    background: var(--lime);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.email-form button:hover, .email-form button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(88,204,2,0.3);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes blink {
    50% { opacity: 0; }
}
@keyframes floatWord {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes floatInRight {
    from { opacity: 0; transform: translateX(40px) rotate(10deg); }
    to { opacity: 1; transform: translateX(0) rotate(-3deg); }
}
@keyframes floatInLeft {
    from { opacity: 0; transform: translateX(-40px) rotate(-10deg); }
    to { opacity: 1; transform: translateX(0) rotate(5deg); }
}
@keyframes yawnPulse {
    0%, 100% { ry: 12; rx: 10; }
    30% { ry: 16; rx: 12; }
    60% { ry: 8; rx: 8; }
}
@keyframes zzzFloat {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-8px); opacity: 0.5; }
}
@keyframes tearDrop {
    0%, 100% { opacity: 0; transform: translateY(0); }
    30% { opacity: 0.6; transform: translateY(0); }
    80% { opacity: 0; transform: translateY(8px); }
}
@keyframes handWave {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(12deg); }
    30% { transform: rotate(-8deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0.7; }
}
@keyframes idleFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes idleFloatHand {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

/* ===== HERO — lock to viewport ===== */
.hero { min-height: 100vh; position: relative; }

/* ===== "WE LIED" TRANSITION ===== */
.we-lied {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 32px;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 60vh;
}
.we-lied .reveal-line {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: rgba(17,17,17,0.35);
    margin-bottom: 16px;
}
.we-lied .reveal-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--text);
}
.we-lied .reveal-heading span {
    color: var(--lime);
}
.we-lied .reveal-sub {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    color: rgba(17,17,17,0.45);
    margin-top: 16px;
    max-width: 500px;
}

/* ===== PRODUCT SECTIONS ===== */
.product-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    border-top: 1px solid rgba(17,17,17,0.06);
    content-visibility: auto; /* Lazy render off-screen sections — improves FCP/LCP */
    contain-intrinsic-size: auto 100vh;
}
.product-section:nth-child(even) {
    flex-direction: row-reverse;
}
.product-inner {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}
.product-section:nth-child(even) .product-inner {
    flex-direction: row-reverse;
}
.product-text {
    flex: 1;
}
.product-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    background: rgba(88,204,2,0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.product-name {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--text);
}
.product-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: rgba(17,17,17,0.5);
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 480px;
}
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.product-features span {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(17,17,17,0.5);
    background: rgba(17,17,17,0.04);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(17,17,17,0.08);
}
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: #111111;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s;
}
.product-cta:hover, .product-cta:focus-visible {
    background: var(--lime);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(88,204,2,0.2);
}
.product-cta svg {
    width: 16px;
    height: 16px;
}
.product-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PHONE MOCKUP ===== */
.phone-mockup {
    width: 280px;
    height: 560px;
    border-radius: 36px;
    border: 6px solid #222;
    background: #111;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #222;
    border-radius: 0 0 18px 18px;
    z-index: 2;
}
.phone-mockup svg {
    border-radius: 30px;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 40px 60px;
    border-top: 1px solid rgba(17,17,17,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-footer .footer-brand span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.site-footer .footer-tagline {
    font-size: 0.7rem;
    color: rgba(17,17,17,0.3);
    letter-spacing: 1px;
}
.site-footer .footer-right {
    display: flex;
    gap: 24px;
}
.site-footer .footer-right a {
    font-size: 0.8rem;
    color: rgba(17,17,17,0.4);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.site-footer .footer-right a:hover {
    color: var(--lime);
}

/* ===== CHAT CLOSE BUTTON ===== */
.chat-close-btn {
    position: fixed;
    top: 26px;
    right: 220px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #dc2626;
    color: #ffffff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 101;
    transition: all 0.2s;
}
.chat-close-btn.visible {
    display: flex;
}
.chat-close-btn:hover {
    background: #b91c1c;
    color: #ffffff;
}

/* ===== CONFIRM CLOSE MODAL ===== */
.confirm-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.confirm-modal-overlay.show {
    display: flex;
    animation: fadeIn 0.25s ease forwards;
}
.confirm-modal-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    animation: fadeUp 0.3s ease forwards;
}
.confirm-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.confirm-modal-sub {
    font-size: 0.85rem;
    color: var(--dim);
    margin-bottom: 24px;
}
.confirm-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}
.confirm-modal-form input {
    padding: 14px 20px;
    border: none;
    border-bottom: 2px solid var(--border);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s;
    text-align: center;
}
.confirm-modal-form input:focus {
    border-bottom-color: var(--lime);
}
.confirm-modal-form input::placeholder {
    color: var(--dimmer);
}
.confirm-modal-send {
    padding: 14px 28px;
    background: var(--lime);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.confirm-modal-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(88,204,2,0.3);
}
.confirm-modal-just-close {
    background: none;
    border: none;
    color: var(--dim);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s;
}
.confirm-modal-just-close:hover {
    color: var(--text);
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
    --bg: #0a0a0a;
    --text: #f0f0f0;
    --dim: rgba(255,255,255,0.45);
    --dimmer: rgba(255,255,255,0.45);
    --border: rgba(255,255,255,0.1);
}

[data-theme="dark"] .nav-cta {
    background: var(--lime);
    color: #ffffff;
}

[data-theme="dark"] .float-word {
    color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .line-sarcasm {
    color: rgba(255,255,255,0.6);
}

[data-theme="dark"] .line-sub {
    color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .scroll-tease span {
    color: rgba(255,255,255,0.15);
}
[data-theme="dark"] .scroll-tease svg {
    stroke: rgba(255,255,255,0.15);
}

[data-theme="dark"] .input-go {
    background: var(--lime);
    color: #ffffff;
}

[data-theme="dark"] .chat-user {
    background: #f0f0f0;
    color: #111111;
}

[data-theme="dark"] .product-section {
    border-top-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .product-tagline {
    color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .product-features span {
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .product-cta {
    background: var(--lime);
    color: #ffffff;
}

[data-theme="dark"] .phone-mockup {
    border-color: #444;
    background: #1a1a1a;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

[data-theme="dark"] .we-lied .reveal-line {
    color: rgba(255,255,255,0.35);
}

[data-theme="dark"] .we-lied .reveal-sub {
    color: rgba(255,255,255,0.45);
}

[data-theme="dark"] .site-footer {
    border-top-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .site-footer .footer-tagline {
    color: rgba(255,255,255,0.3);
}
[data-theme="dark"] .site-footer .footer-right a {
    color: rgba(255,255,255,0.4);
}

[data-theme="dark"] .confirm-modal-overlay {
    background: rgba(0,0,0,0.85);
}

[data-theme="dark"] .confirm-modal-card {
    background: #1a1a1a;
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 150;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #111111;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

[data-theme="dark"] .theme-toggle {
    background: var(--lime);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(88,204,2,0.3);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav { padding: 16px 20px; }
    .hero { padding: 0 24px; }
    .line-bold { letter-spacing: -1px; }
    .scroll-tease { display: none; }
    .email-form { flex-direction: column; }
    .chat-messages { max-height: 45vh; }
    .chat-bubble { max-width: 90%; font-size: 0.9rem; }
    .nav-cta { font-size: 0.72rem; padding: 6px 14px; }
    .spacer { height: 24px; }
    .word-cloud { display: none; }
    .product-section { padding: 60px 24px; }
    .product-inner, .product-section:nth-child(even) .product-inner { flex-direction: column; gap: 40px; }
    .product-mockup { max-width: 300px; }
    .site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 30px 24px; }
    .site-footer .footer-right { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .line-bold { font-size: 1.5rem; letter-spacing: -0.5px; }
    .hero-content { margin-bottom: 32px; }
    .spacer { height: 20px; }
}
