/* ═══════════════════════════════════════
   Cybxron — Minimal. Glass. Monochrome.
   ═══════════════════════════════════════ */

/* Privacy / Terms modal */
.modal-backdrop{
    position:fixed;inset:0;z-index:1000;
    background:rgba(15,15,18,.55);
    backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
    display:flex;align-items:center;justify-content:center;
    padding:24px;
    opacity:0;pointer-events:none;
    transition:opacity .28s ease;
}
.modal-backdrop.open{opacity:1;pointer-events:auto}
.modal{
    background:var(--modal-bg);
    border-radius:20px;
    padding:40px 36px 32px;
    max-width:480px;width:100%;
    box-shadow:0 24px 80px rgba(0,0,0,.25);
    position:relative;
    transform:translateY(10px) scale(.97);
    transition:transform .28s cubic-bezier(.2,.8,.2,1);
}
.modal-backdrop.open .modal{transform:translateY(0) scale(1)}
.modal-close{
    position:absolute;top:14px;right:14px;
    width:36px;height:36px;border-radius:50%;
    background:transparent;border:0;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    color:var(--text-2);transition:background .2s,color .2s;
}
.modal-close:hover{background:var(--modal-close-hover);color:var(--modal-close-hover-text)}
.modal-badge{
    display:inline-flex;align-items:center;gap:8px;
    padding:7px 14px 7px 11px;
    background:#0a0a0c;color:#fff;
    border-radius:999px;
    font-size:13px;font-weight:700;letter-spacing:.2px;
    margin-bottom:18px;
}
.modal-title{
    font-size:22px;font-weight:700;letter-spacing:-.3px;
    color:var(--text);margin-bottom:12px;
}
.modal-body{
    font-size:14.5px;line-height:1.65;color:var(--text-2);
    margin-bottom:24px;
}
.modal-ok{width:100%;justify-content:center}

:root {
    --bg: #FAFAFC;
    --bg-alt: transparent;
    --surface: #ffffff;
    --surface-2: rgba(255,255,255,0.6);
    --text: #111111;
    --text-2: #555555;
    --text-3: #999999;
    --border: rgba(0,0,0,0.08);
    --border-2: rgba(0,0,0,0.05);

    --glass-grad-from: rgba(255,255,255,0.55);
    --glass-grad-to: rgba(255,255,255,0.25);
    --glass-border: rgba(255,255,255,0.6);
    --glass-shadow: 0 20px 60px rgba(17,17,17,0.10), 0 4px 12px rgba(17,17,17,0.05);
    --glass-top-hl: rgba(255,255,255,0.75);
    --glass-bot-hl: rgba(255,255,255,0.20);

    --accent: #111111;
    --on-accent: #ffffff;
    --accent-soft: rgba(17,17,17,0.06);

    --nav-scrolled-bg: rgba(250,250,250,0.72);
    --mobile-nav-bg: rgba(250,250,250,0.96);
    --modal-bg: #ffffff;
    --modal-close-hover: #f1f1f3;
    --modal-close-hover-text: #000;
    --selection: rgba(0,0,0,0.08);
    --focus-ring: rgba(0,0,0,0.04);
    --logo-filter: none;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    --max-w: 1200px;
    --nav-h: 64px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-2: 'DM Sans', sans-serif;

    --ease: cubic-bezier(.4, 0, .2, 1);
    --spring: cubic-bezier(.34, 1.56, .64, 1);

}

/* ── Dark theme ── */
[data-theme="dark"] {
    --bg: #0a0a0e;
    --surface: #17171b;
    --surface-2: rgba(255,255,255,0.05);
    --text: #f3f3f5;
    --text-2: #a8a8b0;
    --text-3: #6a6a74;
    --border: rgba(255,255,255,0.08);
    --border-2: rgba(255,255,255,0.05);

    --glass-grad-from: rgba(255,255,255,0.07);
    --glass-grad-to: rgba(255,255,255,0.02);
    --glass-border: rgba(255,255,255,0.12);
    --glass-shadow: 0 24px 70px rgba(0,0,0,0.50), 0 4px 12px rgba(0,0,0,0.35);
    --glass-top-hl: rgba(255,255,255,0.14);
    --glass-bot-hl: rgba(0,0,0,0.25);

    --accent: #ffffff;
    --on-accent: #0a0a0e;
    --accent-soft: rgba(255,255,255,0.08);

    --nav-scrolled-bg: rgba(12,12,16,0.72);
    --mobile-nav-bg: rgba(12,12,16,0.96);
    --modal-bg: #17171b;
    --modal-close-hover: rgba(255,255,255,0.08);
    --modal-close-hover-text: #fff;
    --selection: rgba(255,255,255,0.14);
    --focus-ring: rgba(255,255,255,0.08);
    --logo-filter: invert(1) brightness(1.2);
}
[data-theme="dark"] .blob{opacity:.45}

/* ── Reset ── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--nav-h) + 24px)}
html{overflow-x:hidden}
body{font-family:var(--font);background:var(--bg);color:var(--text);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased;transition:background .4s ease,color .4s ease}
::selection{background:var(--selection)}
a{text-decoration:none;color:inherit}
button{font-family:var(--font);cursor:pointer}
img{display:block;max-width:100%}

.container{max-width:var(--max-w);margin:0 auto;padding:0 24px;width:100%}

/* ── Loader ── */
#loader{
    position:fixed;inset:0;z-index:9999;
    background:var(--bg);
    display:flex;align-items:center;justify-content:center;
    transition:opacity .6s ease,visibility .6s ease;
}
#loader.done{opacity:0;visibility:hidden;pointer-events:none}
.loader-inner{display:flex;flex-direction:column;align-items:center;gap:16px}
.loader-img{
    width:56px;height:56px;object-fit:contain;
    animation:fadeUp .6s var(--ease) both;
    filter:var(--logo-filter);
}
.loader-logo{
    font-family:var(--font);font-size:22px;font-weight:700;
    letter-spacing:-.5px;color:var(--text);
    animation:fadeUp .8s var(--ease) .15s both;
}
@keyframes fadeUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}

/* ── Ambient blobs ── */
.ambient{position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden;max-width:100vw}
.blob{position:absolute;border-radius:50%;filter:blur(110px);opacity:.55;will-change:transform}
.blob-1{width:620px;height:620px;background:radial-gradient(circle,rgba(80,140,255,.65),transparent 70%);top:-12%;left:-10%;animation:drift1 70s ease-in-out infinite alternate}
.blob-2{width:540px;height:540px;background:radial-gradient(circle,rgba(200,100,240,.55),transparent 70%);bottom:-8%;right:-10%;animation:drift2 80s ease-in-out infinite alternate}
.blob-3{width:460px;height:460px;background:radial-gradient(circle,rgba(100,220,180,.55),transparent 70%);top:38%;left:48%;animation:drift3 65s ease-in-out infinite alternate}
.blob-4{width:420px;height:420px;background:radial-gradient(circle,rgba(255,170,120,.45),transparent 70%);top:18%;right:22%;animation:drift4 75s ease-in-out infinite alternate}
@keyframes drift1{
    0%  {transform:translate(0,0)}
    25% {transform:translate(500px,200px)}
    50% {transform:translate(700px,450px)}
    75% {transform:translate(300px,600px)}
    100%{transform:translate(-100px,400px)}
}
@keyframes drift2{
    0%  {transform:translate(0,0)}
    25% {transform:translate(-400px,-150px)}
    50% {transform:translate(-650px,-400px)}
    75% {transform:translate(-250px,-550px)}
    100%{transform:translate(300px,-300px)}
}
@keyframes drift3{
    0%  {transform:translate(0,0)}
    25% {transform:translate(400px,-300px)}
    50% {transform:translate(-450px,-180px)}
    75% {transform:translate(-350px,400px)}
    100%{transform:translate(450px,250px)}
}
@keyframes drift4{
    0%  {transform:translate(0,0)}
    25% {transform:translate(-500px,300px)}
    50% {transform:translate(-200px,600px)}
    75% {transform:translate(450px,450px)}
    100%{transform:translate(350px,-200px)}
}
@media (prefers-reduced-motion: reduce) {
    .blob{animation:none !important}
}

/* ── Scroll progress bar ── */
.scroll-progress{
    position:fixed;top:0;left:0;
    width:0;height:2.5px;
    background:linear-gradient(90deg,var(--accent),color-mix(in srgb,var(--accent) 60%,transparent));
    z-index:101;
    transition:width .05s linear;
    pointer-events:none;
}

/* ── Nav ── */
#nav{
    position:fixed;top:0;left:0;right:0;height:var(--nav-h);z-index:100;
    transition:background .35s ease,box-shadow .35s ease,backdrop-filter .35s ease;
}
#nav.scrolled{
    background:var(--nav-scrolled-bg);
    backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
    box-shadow:0 1px 0 var(--border);
}
.nav-inner{
    max-width:var(--max-w);margin:0 auto;padding:0 24px;
    height:100%;display:flex;align-items:center;justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:10px;z-index:10}
.brand-logo{
    width:34px;height:34px;
    object-fit:contain;
    transition:transform .3s var(--spring);
    filter:var(--logo-filter);
}
.brand:hover .brand-logo{transform:scale(1.08)}
.brand-name{font-size:17px;font-weight:700;letter-spacing:-.3px}

.nav-right{display:flex;align-items:center;gap:10px}
.nav-links{display:flex;gap:6px}
.nav-links a{
    padding:7px 14px;font-size:14px;font-weight:500;
    color:var(--text-2);border-radius:var(--radius-xs);
    transition:color .25s,background .25s;
    position:relative;
}
.nav-links a::after{
    content:'';position:absolute;bottom:2px;left:14px;right:14px;
    height:2px;background:var(--accent);border-radius:2px;
    transform:scaleX(0);transition:transform .3s var(--spring);
    transform-origin:center;
}
.nav-links a:hover{color:var(--text);background:var(--accent-soft)}
.nav-links a.active{color:var(--text)}
.nav-links a.active::after{transform:scaleX(1)}

/* Language switcher */
.lang-switcher{display:flex;gap:3px}
.lang-btn{
    padding:5px 10px;font-size:11px;font-weight:700;
    letter-spacing:.5px;
    border:1px solid var(--border);border-radius:var(--radius-xs);
    background:transparent;color:var(--text-3);cursor:pointer;
    font-family:var(--font);
    transition:all .2s ease;
}
.lang-btn:hover{background:var(--accent-soft);color:var(--text)}
.lang-btn.active{background:var(--accent);color:var(--on-accent);border-color:var(--accent)}
.lang-mobile{margin:8px 0}

/* Theme toggle */
.theme-toggle{
    width:34px;height:34px;border-radius:50%;
    background:transparent;border:1px solid var(--border);
    color:var(--text);cursor:pointer;
    display:inline-flex;align-items:center;justify-content:center;
    transition:background .2s,border-color .2s,transform .2s var(--spring);
    margin:0 4px;
}
.theme-toggle:hover{background:var(--accent-soft);border-color:var(--text-3);transform:rotate(15deg)}
.theme-toggle svg{width:16px;height:16px}
.theme-sun{display:none}
[data-theme="dark"] .theme-sun{display:block}
[data-theme="dark"] .theme-moon{display:none}

.nav-btn{
    padding:8px 20px;font-size:13px;font-weight:600;
    color:var(--on-accent);background:var(--accent);border-radius:var(--radius);
    transition:opacity .25s,transform .25s var(--spring);
}
.nav-btn:hover{opacity:.85;transform:translateY(-1px)}

/* Burger */
.burger{
    display:none;width:32px;height:32px;
    background:none;border:none;
    position:relative;z-index:10;
    flex-direction:column;justify-content:center;align-items:center;gap:6px;
}
.burger span{display:block;width:20px;height:1.5px;background:var(--text);border-radius:2px;transition:all .3s ease}
.burger.open span:first-child{transform:rotate(45deg) translate(3px,3px)}
.burger.open span:last-child{transform:rotate(-45deg) translate(3px,-3px)}

/* Mobile nav */
.mobile-nav{
    position:fixed;inset:0;z-index:99;
    background:var(--mobile-nav-bg);
    backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
    display:flex;align-items:center;justify-content:center;
    opacity:0;visibility:hidden;transition:all .35s ease;
}
.mobile-nav.open{opacity:1;visibility:visible}
.mobile-nav nav{display:flex;flex-direction:column;align-items:center;gap:20px}
.mobile-nav nav a{font-size:22px;font-weight:600;color:var(--text-2);transition:color .2s}
.mobile-nav nav a:hover{color:var(--text)}
.mn-btn{
    margin-top:12px;padding:14px 32px;font-size:15px;
    font-weight:600;color:var(--on-accent);background:var(--accent);border-radius:var(--radius);
}

/* ── Hero ── */
.hero{
    position:relative;z-index:2;
    min-height:100vh;
    display:flex;align-items:center;
    padding:calc(var(--nav-h) + 20px) 24px 32px;
    max-width:var(--max-w);margin:0 auto;
}
.hero-row{
    display:grid;grid-template-columns:1fr 1fr;
    gap:40px;align-items:center;width:100%;
}
.hero-left{max-width:560px}

.hero-h{
    font-size:clamp(34px,4.2vw,56px);
    font-weight:800;line-height:1.12;letter-spacing:-1.2px;
    margin-bottom:20px;
}
.hero-h em{
    font-style:italic;font-family:var(--font-2);font-weight:700;
}

.hero-sub{
    font-size:16px;color:var(--text-2);
    line-height:1.7;margin-bottom:24px;
    max-width:480px;
}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px}

.btn-primary{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:14px 28px;font-size:15px;font-weight:600;
    color:var(--on-accent);background:var(--accent);border:none;
    border-radius:var(--radius);
    transition:opacity .25s,transform .25s var(--spring),box-shadow .25s;
    box-shadow:0 2px 12px rgba(0,0,0,0.12);
}
.btn-primary svg{transition:transform .25s var(--spring)}
.btn-primary:hover{opacity:.88;transform:translateY(-2px);box-shadow:0 6px 24px rgba(0,0,0,0.15)}
.btn-primary:hover svg{transform:translateX(3px)}
.btn-full{width:100%}

.btn-ghost{
    display:inline-flex;align-items:center;
    padding:14px 28px;font-size:15px;font-weight:600;
    color:var(--text-2);background:transparent;
    border:1px solid var(--border);border-radius:var(--radius);
    transition:all .25s;
}
.btn-ghost:hover{border-color:var(--text);color:var(--text)}

/* Hero stats */
.hero-stats{
    display:flex;gap:36px;
}
.h-stat{
    display:flex;flex-direction:column;
}
.h-stat-row{
    display:flex;align-items:baseline;
    white-space:nowrap;line-height:1;
}
.h-stat-num{
    font-size:32px;font-weight:800;letter-spacing:-1.5px;
    color:var(--text);
}
.h-stat-suffix{
    font-size:22px;font-weight:700;color:var(--text-3);
    margin-left:1px;
}
.h-stat-label{
    font-size:12px;color:var(--text-3);margin-top:5px;
    font-weight:500;white-space:nowrap;
}

/* Hero right — illustration + morph overlay */
.hero-right{
    display:flex;justify-content:center;align-items:center;
}
.hero-visual-wrap{
    position:relative;width:100%;max-width:540px;
    overflow:hidden;
}
.hero-img{
    width:100%;height:auto;display:block;
    max-height:60vh;object-fit:contain;
}
.hero-img-dark{
    display:none;
    -webkit-mask-image:radial-gradient(ellipse 72% 70% at 50% 50%,#000 55%,transparent 100%);
    mask-image:radial-gradient(ellipse 72% 70% at 50% 50%,#000 55%,transparent 100%);
}
[data-theme="dark"] .hero-img-light{display:none}
[data-theme="dark"] .hero-img-dark{display:block}

/* Morphing text below the illustration */
.morph-overlay{
    position:relative;
    margin-top:12px;
    overflow:hidden;
}
.morph-filters{
    position:absolute;width:0;height:0;overflow:hidden;
}
.morph-container{
    position:relative;
    width:100%;height:52px;
    text-align:center;
    filter:url(#threshold) blur(0.4px);
}
.morph-text{
    position:absolute;inset:0;
    display:flex;align-items:center;justify-content:center;
    font-family:var(--font);
    font-size:clamp(16px, 2.4vw, 32px);
    font-weight:800;
    color:var(--text);
    letter-spacing:-.5px;
}

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

/* ── Section ── */
.section{position:relative;z-index:2;padding:80px 0}
.section-alt{background:var(--bg-alt)}

.section-intro{max-width:560px;margin-bottom:40px}
.overline{
    font-size:13px;font-weight:600;color:var(--text-3);
    text-transform:uppercase;letter-spacing:1.5px;
    margin-bottom:12px;
}
.section-intro h2{
    font-size:clamp(28px,3.8vw,44px);
    font-weight:800;line-height:1.15;letter-spacing:-.8px;
    margin-bottom:16px;
}
.section-p{font-size:16px;color:var(--text-2);line-height:1.7}

/* ── Glass cards ── */
.glass{
    background:linear-gradient(135deg,var(--glass-grad-from),var(--glass-grad-to));
    backdrop-filter:blur(28px) saturate(180%);-webkit-backdrop-filter:blur(28px) saturate(180%);
    border:1px solid var(--glass-border);
    box-shadow:
        inset 0 1px 0 var(--glass-top-hl),
        inset 0 -1px 0 var(--glass-bot-hl),
        var(--glass-shadow);
    border-radius:var(--radius);
}

.cards-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
}
.card{
    padding:32px 28px;
    transition:transform .35s var(--ease),box-shadow .35s ease;
    position:relative;
}
.card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 48px rgba(0,0,0,0.09);
}
.card-icon{
    width:44px;height:44px;
    display:flex;align-items:center;justify-content:center;
    background:var(--accent-soft);border-radius:var(--radius-sm);
    margin-bottom:18px;
}
.card-icon svg{width:22px;height:22px;color:var(--text)}
.card h3{font-size:17px;font-weight:700;margin-bottom:8px;letter-spacing:-.2px}
.card p{font-size:14px;color:var(--text-2);line-height:1.65;margin-bottom:16px}
.card-tags{display:flex;flex-wrap:wrap;gap:6px}
.card-tags span{
    padding:3px 10px;font-size:11px;font-weight:600;
    color:var(--text-2);background:var(--accent-soft);
    border-radius:20px;
}

.card.featured{
    background:var(--accent);color:var(--on-accent);
    border-color:transparent;
}
.card.featured .card-icon{background:rgba(255,255,255,0.12)}
.card.featured .card-icon svg{color:var(--on-accent)}
.card.featured p{color:color-mix(in srgb, var(--on-accent) 70%, transparent)}
.card.featured .card-tags span{color:color-mix(in srgb, var(--on-accent) 80%, transparent);background:color-mix(in srgb, var(--on-accent) 10%, transparent)}
/* Dark mode: featured card becomes glass like all others */
[data-theme="dark"] .card.featured{
    background:linear-gradient(135deg,var(--glass-grad-from),var(--glass-grad-to));
    border:1px solid var(--glass-border);
    color:var(--text);
}
[data-theme="dark"] .card.featured .card-icon{background:var(--accent-soft)}
[data-theme="dark"] .card.featured .card-icon svg{color:var(--text)}
[data-theme="dark"] .card.featured p{color:var(--text-2)}

.card-cta{
    display:flex;flex-direction:column;justify-content:center;
    border-style:dashed;border-color:var(--border);
    background:transparent;backdrop-filter:none;
}
.card-cta h3{font-size:17px}
.card-cta p{color:var(--text-3)}
.card-link{
    font-size:14px;font-weight:600;color:var(--text);
    margin-top:4px;transition:letter-spacing .3s ease;
}
.card-link:hover{letter-spacing:1.5px}

/* ── Process ── */
.process-header{max-width:560px;margin-bottom:36px}
.process-header h2{
    font-size:clamp(28px,3.8vw,44px);
    font-weight:800;line-height:1.15;letter-spacing:-.8px;
}
.process-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
}
.process-card{
    padding:32px 24px;position:relative;
    transition:transform .35s var(--ease),box-shadow .35s ease;
}
.process-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 48px rgba(0,0,0,0.09);
}
.pc-top{
    display:flex;align-items:center;justify-content:space-between;
    margin-bottom:20px;
}
.pc-num{
    font-size:13px;font-weight:700;color:var(--text-3);
    letter-spacing:1px;
}
.pc-icon{
    width:40px;height:40px;
    display:flex;align-items:center;justify-content:center;
    background:var(--accent-soft);border-radius:var(--radius-sm);
}
.pc-icon svg{width:20px;height:20px;color:var(--text)}
.process-card:hover .pc-icon{
    background:var(--accent);
}
.process-card:hover .pc-icon svg{color:var(--on-accent)}
.process-card h3{font-size:17px;font-weight:700;margin-bottom:8px;letter-spacing:-.2px}
.process-card p{font-size:13px;color:var(--text-2);line-height:1.65}

/* ── About ── */
.about-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;
}
.about-p{font-size:16px;color:var(--text-2);line-height:1.75;margin-top:16px}
.about-list{
    margin-top:28px;list-style:none;
    display:flex;flex-direction:column;gap:10px;
}
.about-list li{
    display:flex;align-items:center;gap:10px;
    font-size:14px;font-weight:500;color:var(--text);
}
.about-list li::before{
    content:'';width:6px;height:6px;
    border-radius:50%;background:var(--text);
    flex-shrink:0;
}
/* Terminal-style about visual */
.terminal-window{
    background:#0e0e10;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 24px 60px rgba(0,0,0,0.18),0 4px 14px rgba(0,0,0,0.06);
    border:1px solid #1f1f22;
    font-family:"SF Mono","JetBrains Mono",Menlo,Consolas,monospace;
}
.term-bar{
    display:flex;align-items:center;gap:8px;
    padding:11px 14px;
    background:#1a1a1c;
    border-bottom:1px solid #262629;
}
.term-dot{
    width:11px;height:11px;border-radius:50%;
    display:inline-block;
}
.term-dot.red{background:#ff5f57}
.term-dot.yellow{background:#febc2e}
.term-dot.green{background:#28c840}
.term-title{
    margin-left:auto;margin-right:auto;
    color:#888;font-size:12px;
    letter-spacing:.3px;
}
.term-body{
    padding:22px 24px;
    color:#d4d4d8;font-size:13.5px;line-height:1.95;
    min-height:240px;
}
.term-line{
    display:flex;align-items:center;gap:10px;
    opacity:0;
    animation:termIn .4s ease forwards;
}
.term-line:nth-child(1){animation-delay:.2s}
.term-line:nth-child(2){animation-delay:.55s}
.term-line:nth-child(3){animation-delay:.85s}
.term-line:nth-child(4){animation-delay:1.15s}
.term-line:nth-child(5){animation-delay:1.45s}
.term-line:nth-child(6){animation-delay:1.75s}
.term-line:nth-child(7){animation-delay:2.05s}
@keyframes termIn{
    from{opacity:0;transform:translateY(4px)}
    to{opacity:1;transform:translateY(0)}
}
.term-prompt{color:#7c7cff;font-weight:700}
.term-tag{
    display:inline-block;
    color:#34d399;font-weight:700;
    min-width:42px;
    font-size:12px;
}
.term-tag.info{color:#60a5fa}
.term-line.ok{color:#e7e7ea}
.term-line.info{color:#cfd1d4}
.term-cursor{
    display:inline-block;
    width:8px;height:15px;
    background:#d4d4d8;
    margin-left:8px;
    animation:blink 1s steps(1) infinite;
}
@keyframes blink{
    0%,50%{opacity:1}51%,100%{opacity:0}
}
.badges-row{
    display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
    margin-top:18px;
}
.badge-pill{
    background:var(--glass-bg);
    backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
    border:1px solid var(--glass-border);
    border-radius:var(--radius-sm);
    padding:16px 14px;
    text-align:center;
    transition:transform .3s var(--spring),box-shadow .3s ease;
}
.badge-pill:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}
.bp-num{
    display:block;
    font-size:24px;font-weight:800;
    letter-spacing:-.5px;
    color:var(--text);
}
.bp-lbl{
    display:block;
    font-size:11px;font-weight:600;
    color:var(--text-3);
    text-transform:uppercase;letter-spacing:.6px;
    margin-top:4px;
}

/* ── Products ── */
.products-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:16px;
}
.product-card{
    padding:36px 32px;position:relative;
    transition:transform .35s var(--ease),box-shadow .35s ease;
}
.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 48px rgba(0,0,0,0.09);
}
.pc-badge{
    display:inline-block;
    padding:4px 12px;
    font-size:11px;font-weight:700;
    color:var(--text-3);
    background:var(--accent-soft);
    border-radius:20px;
    letter-spacing:.5px;
    margin-bottom:20px;
}
.pc-icon-wrap{
    width:56px;height:56px;
    display:flex;align-items:center;justify-content:center;
    background:var(--accent-soft);
    border-radius:var(--radius-sm);
    margin-bottom:20px;
    color:var(--text);
}
.product-card h3{
    font-size:18px;font-weight:700;margin-bottom:8px;letter-spacing:-.2px;
}
.product-card p{
    font-size:14px;color:var(--text-2);line-height:1.65;margin-bottom:20px;
}
/* Product card centered variant */
.product-centered{
    display:flex;flex-direction:column;
    align-items:center;text-align:center;
}
.product-centered .pc-icon-wrap{
    width:64px;height:64px;border-radius:50%;
}
.product-centered .pc-stores{justify-content:center}

.pc-stores{display:flex;gap:10px;flex-wrap:wrap}
.store-badge{
    display:flex;align-items:center;gap:6px;
    padding:8px 16px;
    background:var(--accent);color:var(--on-accent);
    border-radius:var(--radius-sm);
    font-size:12px;font-weight:600;
    opacity:.35;cursor:default;
}

/* Notify card */
.product-cta{
    display:flex;flex-direction:column;
    align-items:center;text-align:center;
    justify-content:center;
}
.pc-notify-icon{
    width:64px;height:64px;
    display:flex;align-items:center;justify-content:center;
    background:var(--accent-soft);
    border-radius:50%;
    margin-bottom:20px;color:var(--text);
}
.notify-form{
    display:flex;gap:8px;width:100%;max-width:340px;
}
.notify-input{
    flex:1;padding:10px 14px;
    font-family:var(--font);font-size:14px;
    color:var(--text);
    background:var(--surface-2);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    outline:none;
    transition:border-color .25s;
}
.notify-input:focus{border-color:var(--text)}
.notify-input::placeholder{color:var(--text-3)}
.notify-btn{
    padding:10px 20px;
    font-family:var(--font);font-size:13px;font-weight:600;
    color:var(--on-accent);background:var(--accent);
    border:none;border-radius:var(--radius-sm);
    cursor:pointer;white-space:nowrap;
    transition:opacity .25s;
}
.notify-btn:hover{opacity:.85}

@media(max-width:768px){
    .products-grid{grid-template-columns:1fr}
    .product-card{padding:28px 24px}
    .notify-form{flex-direction:column}
}

/* ── Ideas / Startup ── */
.ideas-layout{
    display:grid;grid-template-columns:1fr 1fr;
    gap:48px;align-items:start;margin-bottom:36px;
}
.ideas-content h2{
    font-size:clamp(28px,3.8vw,44px);
    font-weight:800;line-height:1.15;letter-spacing:-.8px;
    margin-bottom:16px;
}
.ideas-content h2 em{
    font-style:italic;font-family:var(--font-2);font-weight:700;
}
.ideas-desc{
    font-size:16px;color:var(--text-2);line-height:1.75;
    margin-top:8px;
}
.ideas-steps{
    display:flex;flex-direction:column;gap:24px;
}
.idea-step{
    display:flex;gap:16px;align-items:flex-start;
}
.is-num{
    flex-shrink:0;width:36px;height:36px;
    display:flex;align-items:center;justify-content:center;
    font-size:13px;font-weight:800;color:var(--text-3);
    background:var(--accent-soft);border-radius:var(--radius-sm);
}
.idea-step h4{
    font-size:15px;font-weight:700;margin-bottom:4px;
    letter-spacing:-.2px;
}
.idea-step p{
    font-size:13px;color:var(--text-2);line-height:1.6;
}

.ideas-cta-card{
    display:flex;align-items:center;justify-content:space-between;
    gap:32px;padding:36px 40px;
    overflow:hidden;
}
.icc-left{max-width:560px}
.icc-left h3{
    font-size:20px;font-weight:800;letter-spacing:-.4px;
    margin-bottom:8px;
}
.icc-left p{
    font-size:14px;color:var(--text-2);line-height:1.65;
}

/* Handwritten circle */
.handwritten-block{
    margin-top:40px;
}
.hw-wrap{
    position:relative;
    max-width:720px;margin:0 auto;
    padding:72px 56px;
    text-align:center;
    overflow:hidden;
}
.hw-circle{
    position:absolute;
    top:0;left:0;
    width:100%;height:100%;
    color:var(--text);
    opacity:0.9;
}
.hw-path{
    stroke-dasharray:1500;
    stroke-dashoffset:1500;
}
.handwritten-block.visible .hw-path{
    animation:drawCircle 2.5s cubic-bezier(0.43,0.13,0.23,0.96) forwards;
}
@keyframes drawCircle{
    to{stroke-dashoffset:0}
}
.hw-text{
    position:relative;z-index:2;
}
.hw-title{
    font-family:var(--font-2);
    font-size:clamp(24px,3.5vw,40px);
    font-weight:700;font-style:italic;
    letter-spacing:-.5px;
    margin-bottom:8px;
    opacity:0;transform:translateY(12px);
}
.handwritten-block.visible .hw-title{
    animation:fadeUp .8s var(--ease) .6s forwards;
}
.hw-sub{
    font-size:15px;color:var(--text-2);
    line-height:1.6;max-width:400px;margin:0 auto;
    opacity:0;
}
.handwritten-block.visible .hw-sub{
    animation:fadeUp .8s var(--ease) 1s forwards;
}

@media(max-width:768px){
    .ideas-layout{grid-template-columns:1fr;gap:36px}
    .ideas-cta-card{flex-direction:column;text-align:center;padding:28px 24px}
    .ideas-cta-card .btn-primary{width:100%;justify-content:center}
    .handwritten-block{margin-top:40px}
    /* Expand the circle so it encloses text instead of cutting through it */
    .hw-wrap{overflow:visible;padding:64px 20px}
    .hw-circle{
        width:130%;left:-15%;
        height:135%;top:-17%;
    }
}

/* ── Contact ── */
.contact-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;
}
.contact-p{font-size:16px;color:var(--text-2);line-height:1.75;margin-top:12px}
.contact-meta{margin-top:28px;display:flex;flex-direction:column;gap:12px}
.cm-row{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text-2)}
.cm-row svg{color:var(--text-3);flex-shrink:0}
.cm-row a{color:var(--text);font-weight:500;transition:opacity .2s}
.cm-row a:hover{opacity:.7}

.social-row{display:flex;gap:10px;margin-top:24px}
.social-row a{
    width:40px;height:40px;border-radius:var(--radius-sm);
    display:flex;align-items:center;justify-content:center;
    color:var(--text-3);background:var(--accent-soft);
    transition:color .25s,background .25s;
}
.social-row a:hover{color:var(--text);background:var(--selection)}

/* Form */
.form{padding:36px}
.field{margin-bottom:20px}
.field label{
    display:block;font-size:13px;font-weight:600;
    color:var(--text-2);margin-bottom:6px;
}
.field input,.field select,.field textarea{
    width:100%;padding:12px 16px;
    font-family:var(--font);font-size:15px;
    color:var(--text);
    background:var(--surface-2);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    outline:none;
    transition:border-color .25s,box-shadow .25s;
}
.field input:focus,.field select:focus,.field textarea:focus{
    border-color:var(--text);
    box-shadow:0 0 0 3px var(--focus-ring);
}
.field input::placeholder,.field textarea::placeholder{color:var(--text-3)}
.field select{
    appearance:none;cursor:pointer;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;background-position:right 14px center;
}
.field select option{background:var(--surface);color:var(--text)}
.field textarea{resize:vertical;min-height:100px}

/* Custom select dropdown */
.custom-select{
    position:relative;
}
.cs-trigger{
    display:flex;align-items:center;justify-content:space-between;
    padding:12px 16px;
    background:var(--surface-2);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    cursor:pointer;
    transition:border-color .25s;
}
.cs-trigger:hover{border-color:var(--text-3)}
.custom-select.open .cs-trigger{
    border-color:var(--text);
    box-shadow:0 0 0 3px var(--focus-ring);
}
.cs-value{
    font-size:15px;color:var(--text);
}
.cs-value.placeholder{color:var(--text-3)}
.cs-arrow{
    color:var(--text-3);flex-shrink:0;
    transition:transform .25s var(--ease);
}
.custom-select.open .cs-arrow{transform:rotate(180deg)}
.cs-dropdown{
    position:absolute;top:calc(100% + 6px);left:0;right:0;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    box-shadow:0 12px 40px rgba(0,0,0,0.1);
    padding:6px;
    opacity:0;visibility:hidden;
    transform:translateY(-8px);
    transition:all .2s var(--ease);
    z-index:20;
    max-height:280px;overflow-y:auto;
}
.custom-select.open .cs-dropdown{
    opacity:1;visibility:visible;transform:none;
}
.cs-option{
    padding:10px 14px;
    font-size:14px;color:var(--text-2);
    border-radius:var(--radius-xs);
    cursor:pointer;
    transition:background .15s,color .15s;
}
.cs-option:hover{
    background:var(--accent-soft);color:var(--text);
}
.cs-option.selected{
    background:var(--accent);color:var(--on-accent);
}

.form-fine{font-size:12px;color:var(--text-3);text-align:center;margin-top:14px}

/* ── Footer ── */
.footer{
    position:relative;z-index:2;
    border-top:1px solid var(--border);
    padding:48px 0 0;
    background:var(--bg);
}
.footer-top{
    display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;padding-bottom:40px;
}
.footer-brand p{font-size:13px;color:var(--text-3);margin-top:12px}
.footer-col{display:flex;flex-direction:column;gap:8px}
.footer-col h4{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1.2px;color:var(--text);margin-bottom:4px}
.footer-col a{font-size:13px;color:var(--text-3);transition:color .2s}
.footer-col a:hover{color:var(--text)}
.footer-bottom{
    display:flex;justify-content:space-between;align-items:center;
    padding:20px 0;border-top:1px solid var(--border);
}
.footer-bottom span{font-size:12px;color:var(--text-3)}
.footer-bottom div{display:flex;gap:20px}
.footer-bottom a{font-size:12px;color:var(--text-3);transition:color .2s}
.footer-bottom a:hover{color:var(--text)}

/* ── FAQ ── */
.faq-layout{
    display:grid;grid-template-columns:1fr 1.4fr;
    gap:48px;align-items:start;
}
.faq-left h2{
    font-size:clamp(28px,3.8vw,44px);
    font-weight:800;line-height:1.15;letter-spacing:-.8px;
}
.faq-desc{
    font-size:15px;color:var(--text-2);line-height:1.7;margin-top:12px;
}
.faq-desc a{
    color:var(--text);font-weight:600;
    text-decoration:underline;text-underline-offset:3px;
}
.faq-list{
    display:flex;flex-direction:column;
}
.faq-item{
    border-bottom:1px solid var(--border);
}
.faq-trigger{
    width:100%;display:flex;align-items:center;justify-content:space-between;
    gap:16px;padding:20px 0;
    background:none;border:none;cursor:pointer;
    font-family:var(--font);font-size:15px;font-weight:600;
    color:var(--text);text-align:left;
    transition:color .2s;
}
.faq-trigger:hover{color:var(--text-2)}
.faq-chevron{
    flex-shrink:0;color:var(--text-3);
    transition:transform .3s var(--ease);
}
.faq-item.open .faq-chevron{transform:rotate(180deg)}
.faq-answer{
    max-height:0;overflow:hidden;
    transition:max-height .35s var(--ease),padding .35s var(--ease);
}
.faq-item.open .faq-answer{
    max-height:200px;
}
.faq-answer p{
    padding-bottom:20px;
    font-size:14px;color:var(--text-2);line-height:1.7;
}

@media(max-width:768px){
    .faq-layout{grid-template-columns:1fr;gap:28px}
    .faq-trigger{font-size:14px;padding:16px 0}
}

/* ── Chat Widget ── */
.chat-widget{
    position:fixed;bottom:24px;right:24px;z-index:999;
}
.chat-toggle{
    width:56px;height:56px;border-radius:50%;
    background:var(--accent);color:var(--on-accent);
    border:none;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 4px 20px rgba(0,0,0,0.15);
    transition:transform .3s var(--spring),box-shadow .3s;
}
.chat-toggle:hover{transform:scale(1.08);box-shadow:0 6px 28px rgba(0,0,0,0.2)}
.chat-icon-close{display:none}
.chat-widget.open .chat-icon-open{display:none}
.chat-widget.open .chat-icon-close{display:block}

.chat-window{
    position:absolute;bottom:72px;right:0;
    width:380px;max-height:520px;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
    display:flex;flex-direction:column;
    opacity:0;visibility:hidden;
    transform:translateY(12px) scale(0.95);
    transition:all .25s var(--ease);
    overflow:hidden;
}
.chat-widget.open .chat-window{
    opacity:1;visibility:visible;
    transform:none;
}

.chat-header{
    display:flex;align-items:center;justify-content:space-between;
    padding:16px 20px;
    border-bottom:1px solid var(--border);
    background:var(--bg);
}
.chat-header-left{display:flex;align-items:center;gap:10px}
.chat-logo{width:28px;height:28px;object-fit:contain;filter:var(--logo-filter)}
.chat-title{font-size:14px;font-weight:700;letter-spacing:-.2px}
.chat-status{display:flex;align-items:center;gap:5px;font-size:11px;color:var(--text-3)}
.chat-dot{width:6px;height:6px;border-radius:50%;background:#22c55e;flex-shrink:0}
.chat-close{
    background:none;border:none;cursor:pointer;
    color:var(--text-3);padding:4px;
    transition:color .2s;
}
.chat-close:hover{color:var(--text)}

.chat-messages{
    flex:1;overflow-y:auto;
    padding:20px;
    display:flex;flex-direction:column;gap:12px;
    min-height:280px;max-height:340px;
}
.chat-msg{
    max-width:85%;padding:12px 16px;
    font-size:14px;line-height:1.55;
    border-radius:var(--radius) var(--radius) var(--radius) 4px;
}
.chat-msg.bot{
    background:var(--accent-soft);color:var(--text);
    align-self:flex-start;
}
.chat-msg.user{
    background:var(--accent);color:var(--on-accent);
    align-self:flex-end;
    border-radius:var(--radius) var(--radius) 4px var(--radius);
}
.chat-msg.typing{
    background:var(--bg-alt);align-self:flex-start;
}
.typing-dots{display:flex;gap:4px;padding:4px 0}
.typing-dots span{
    width:6px;height:6px;border-radius:50%;
    background:var(--text-3);
    animation:dotBounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2){animation-delay:.2s}
.typing-dots span:nth-child(3){animation-delay:.4s}
@keyframes dotBounce{
    0%,80%,100%{transform:translateY(0)}
    40%{transform:translateY(-6px)}
}

.chat-input-wrap{
    display:flex;gap:8px;
    padding:12px 16px;
    border-top:1px solid var(--border);
    background:var(--bg);
}
.chat-input{
    flex:1;padding:10px 14px;
    font-family:var(--font);font-size:14px;
    color:var(--text);
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    outline:none;
    transition:border-color .25s;
}
.chat-input:focus{border-color:var(--text)}
.chat-input::placeholder{color:var(--text-3)}
.chat-send{
    width:40px;height:40px;
    display:flex;align-items:center;justify-content:center;
    background:var(--accent);color:var(--on-accent);
    border:none;border-radius:var(--radius-sm);
    cursor:pointer;flex-shrink:0;
    transition:opacity .2s;
}
.chat-send:hover{opacity:.85}

@media(max-width:480px){
    .chat-widget{bottom:16px;right:16px}
    .chat-window{
        width:calc(100vw - 32px);
        bottom:68px;right:0;
        max-height:70vh;
    }
}

/* ── Reveal animation ── */
[data-reveal]{
    opacity:0;transform:translateY(24px);
    transition:opacity .7s var(--ease),transform .7s var(--ease);
}
[data-reveal="left"]{transform:translateX(-40px)}
[data-reveal].visible{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
    [data-reveal]{opacity:1;transform:none;transition:none}
}

/* ── Responsive ── */

/* Tablet */
@media(max-width:1024px){
    .hero-row{grid-template-columns:1fr;gap:32px;text-align:center}
    .hero-left{max-width:100%;margin:0 auto}
    .hero-ctas{justify-content:center}
    .hero-stats{justify-content:center}
    .hero-visual-wrap{max-width:400px;margin:0 auto}
    .morph-container{height:44px}
    .cards-grid{grid-template-columns:repeat(2,1fr)}
    .process-grid{grid-template-columns:repeat(2,1fr)}
    .about-grid{grid-template-columns:1fr;gap:36px}
    .about-visual{order:-1}
    .orbit-diagram{max-width:360px}
    .contact-grid{grid-template-columns:1fr;gap:36px}
    .ideas-layout{grid-template-columns:1fr;gap:32px}
    .footer-top{grid-template-columns:1fr 1fr;gap:24px}
}

/* Mobile */
@media(max-width:768px){
    /* Nav */
    .nav-links,.nav-right .lang-switcher,.nav-right .nav-btn{display:none}
    .burger{display:flex}
    .nav-right{margin-left:auto;margin-right:8px;gap:0}

    /* Hero */
    .hero{padding:calc(var(--nav-h) + 24px) 16px 24px;min-height:auto}
    .hero-row{gap:24px}
    .hero-h{font-size:28px;letter-spacing:-.5px;margin-bottom:14px}
    .hero-sub{font-size:15px;margin-bottom:20px}
    .hero-ctas{margin-bottom:24px}
    .hero-stats{gap:20px}
    .h-stat-num{font-size:22px}
    .h-stat-suffix{font-size:15px}
    .hero-visual-wrap{max-width:320px}
    .morph-container{height:36px}
    .morph-text{font-size:18px;letter-spacing:-.3px}
    .morph-overlay{margin-top:10px}

    /* Sections */
    .section{padding:48px 0}
    .container{padding:0 16px}
    .section-intro{margin-bottom:28px}
    .section-intro h2{font-size:24px;letter-spacing:-.5px}

    /* Cards */
    .cards-grid{grid-template-columns:1fr;gap:12px}
    .card{padding:24px 20px}

    /* Process */
    .process-grid{grid-template-columns:1fr;gap:12px}
    .process-header h2{font-size:24px}
    .process-card{padding:24px 20px}

    /* About */
    .about-grid{gap:28px}
    .about-p{font-size:15px}
    .about-checks{grid-template-columns:1fr;gap:10px}
    .orbit-diagram{max-width:280px;margin:0 auto}
    .orbit-node{width:42px;height:42px}
    .orbit-node span{font-size:7px}
    .orbit-center-node{width:80px;height:80px}
    .orbit-center-node span{font-size:12px}
    .on-1{top:5%;left:50%}
    .on-2{top:12%;right:4%}
    .on-3{top:50%;right:-2%}
    .on-4{bottom:12%;right:4%}
    .on-5{bottom:5%;left:50%}
    .on-6{bottom:12%;left:4%}
    .on-7{top:50%;left:-2%}
    .on-8{top:12%;left:4%}

    /* Ideas */
    .ideas-content h2{font-size:24px}
    .ideas-cta-card{flex-direction:column;text-align:center;padding:24px 20px;gap:20px}
    .ideas-cta-card .btn-primary{width:100%;justify-content:center}
    .handwritten-block{margin-top:28px}
    .hw-wrap{padding:36px 16px}
    .hw-title{font-size:22px}

    /* Contact */
    .contact-text h2{font-size:24px}
    .form{padding:24px 20px}

    /* Footer */
    .footer{padding:36px 0 0}
    .footer-top{grid-template-columns:1fr;gap:24px;padding-bottom:24px;text-align:center}
    .footer-brand{display:flex;flex-direction:column;align-items:center}
    .footer-col{align-items:center}
    .footer-bottom{flex-direction:column;gap:10px;text-align:center}
}

/* Small phones */
@media(max-width:480px){
    .hero-h{font-size:24px;letter-spacing:-.4px}
    .hero-ctas{flex-direction:column;align-items:stretch}
    .btn-primary,.btn-ghost{width:100%;justify-content:center}
    .hero-stats{flex-direction:row;justify-content:center;gap:24px}
    .h-stat{align-items:center;text-align:center}
    .morph-text{font-size:15px}
    .orbit-diagram{max-width:240px}
    .orbit-node{width:36px;height:36px}
    .orbit-node span{font-size:6px}
    .orbit-center-node{width:68px;height:68px}
    .orbit-center-node span{font-size:10px}
    .icc-left h3{font-size:17px}
    .hw-title{font-size:20px}
}
