:root {
    --cyan: #00e5ff;
    --cyan-dim: rgba(0,229,255,0.12);
    --purple: #8b5cf6;
    --pink: #ff006e;
    --bg: #07080d;
    --bg2: #0c0d16;
    --surface: rgba(255,255,255,0.035);
    --border: rgba(255,255,255,0.07);
    --border-accent: rgba(0,229,255,0.25);
    --text: #dde1ed;
    --text-muted: rgba(221,225,237,0.45);
    --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
}

/* Grain texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    pointer-events: none;
    z-index: 9998;
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.08; }

.label {
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cyan);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.label::before { display: none; }
.label.center { justify-content: center; }
.label.center::before { display: none; }

.section-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 5%;
    transition: background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}
nav.scrolled {
    background: rgba(7,8,13,0.88);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    border-bottom-color: var(--border);
}
.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    flex: 1;
}
.nav-logo em { color: var(--cyan); font-style: normal; }
.nav-logo-img { height: 50px; width: auto; display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--cyan);
    transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-btn {
    margin-left: 1.5rem;
    padding: 8px 22px;
    background: var(--cyan);
    color: #000 !important;
    border-radius: 4px;
    font-weight: 700 !important;
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-btn:hover { background: #fff; transform: translateY(-1px); }
.nav-btn::after { display: none !important; }

.hamburger {
    display: none;
    position: relative;
    width: 28px;
    height: 18px;
    cursor: pointer;
    padding: 6px;
    box-sizing: content-box;
}
.hamburger span {
    position: absolute;
    left: 6px;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 0;
    transition: transform 0.3s ease, opacity 0.15s ease;
}
.hamburger span:nth-child(1) { top: 6px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(7,8,13,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
}
.mobile-menu.open { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu a {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--cyan); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 40px) 5% 80px;
    overflow: hidden;
}

#canvas-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
    background-size: 70px 70px;
    z-index: 0;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black, transparent);
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
.glow-1 {
    width: 700px; height: 700px;
    top: -10%; left: -5%;
    background: radial-gradient(ellipse, rgba(0,229,255,0.07) 0%, transparent 65%);
}
.glow-2 {
    width: 500px; height: 500px;
    bottom: 5%; right: 0;
    background: radial-gradient(ellipse, rgba(139,92,246,0.09) 0%, transparent 65%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 950px;
}

.hero-eyebrow {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: slideUp 0.8s 0.15s forwards;
}
.hero-eyebrow::before { display: none; }

.hero-h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 10vw, 7.5rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 0.95;
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: slideUp 0.9s 0.3s forwards;
}
.grad-text {
    background: linear-gradient(135deg, #00e5ff 0%, #a78bfa 45%, #ff006e 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradMove 5s ease-in-out infinite;
}
@keyframes gradMove {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.18em;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 0.9s 0.5s forwards;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.9s 0.7s forwards;
}

.btn-solid {
    padding: 14px 34px;
    background: var(--cyan);
    color: #000;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 0 35px rgba(0,229,255,0.3);
}
.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 55px rgba(0,229,255,0.5);
    background: #fff;
}

.btn-outline {
    padding: 14px 34px;
    background: transparent;
    color: var(--text);
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
}
.scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-chevron {
    width: 18px;
    height: 18px;
    border-right: 1.5px solid var(--cyan);
    border-bottom: 1.5px solid var(--cyan);
    transform: rotate(45deg);
    animation: chevronBounce 2s ease-in-out infinite;
}
@keyframes chevronBounce {
    0%,100% { transform: rotate(45deg) translate(0,0); opacity:1; }
    50%      { transform: rotate(45deg) translate(3px,3px); opacity:0.5; }
}
@keyframes slideUp {
    from { opacity:0; transform: translateY(28px); }
    to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ─── SECTIONS ─── */
section {
    padding: 120px 5%;
    position: relative;
}
@media (max-width: 768px) {
    section { padding: 72px 5%; }
}

.sec-header { margin-bottom: 56px; }
.sec-header.center { text-align: center; }

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.vis { opacity:1; transform: translateY(0); }

/* ─── STORE ─── */
#store { background: var(--bg2); }

.promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0,229,255,0.12), rgba(139,92,246,0.12));
    border: 1px solid var(--border-accent);
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-top: 8px;
}
.promo-pill::before { content: '★'; font-size: 0.65rem; }

.player-shell {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-accent);
    box-shadow:
        0 0 80px rgba(0,229,255,0.08),
        0 0 160px rgba(0,229,255,0.04),
        inset 0 0 40px rgba(0,229,255,0.015);
}
.player-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,229,255,0.04) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
    border-radius: 14px;
}
.player-shell iframe {
    display: block;
    width: 100%;
    min-height: 800px;
    border: none;
}
@media (max-width: 600px) {
    .player-shell iframe { min-height: 450px; }
}

/* ─── LICENCES ─── */
.lic-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 1100px) { .lic-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .lic-grid { grid-template-columns: 1fr; } }

.lic-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.lic-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: 0 24px 70px rgba(0,0,0,0.45), 0 0 30px rgba(0,229,255,0.04);
}
.lic-card.hot {
    border-color: var(--cyan);
    background: rgba(0,229,255,0.035);
    box-shadow: 0 0 50px rgba(0,229,255,0.1);
}
.hot-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: #000;
    font-family: 'Syne', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.lic-tier {
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.lic-price {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.lic-price sup { font-size: 1.3rem; color: var(--text-muted); vertical-align: super; }
.lic-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}
.lic-features li {
    font-size: 0.83rem;
    color: var(--text-muted);
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.lic-features li::before {
    content: '→';
    color: var(--cyan);
    font-size: 0.7rem;
    flex-shrink: 0;
}
.btn-lic {
    padding: 10px 18px;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: transparent;
    display: block;
}
.btn-lic:hover { border-color: var(--cyan); color: var(--cyan); }
.hot .btn-lic { background: var(--cyan); color: #000; border-color: var(--cyan); }
.hot .btn-lic:hover { background: #fff; border-color: #fff; }
.lic-note {
    text-align: center;
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* ─── VIDEOS ─── */
#videos { background: var(--bg2); }

.vid-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .vid-grid { grid-template-columns: 1fr; } }

.vid-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
}
.vid-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.vid-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.vid-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.vid-label {
    padding: 0.7rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--surface);
}

/* ─── SERVICES ─── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.svc-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 40px rgba(0,229,255,0.04);
}
.svc-icon { font-size: 2.4rem; display: block; margin-bottom: 1.4rem; }
.svc-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.svc-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ─── ABOUT ─── */
#about { background: var(--bg2); }

.about-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 70px;
    align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-img {
    aspect-ratio: 1/1;
    border: 1px solid var(--border-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
    background: var(--surface);
}
.about-img span { position: relative; z-index: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

.about-p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}
.about-p strong { color: #fff; font-weight: 600; }

.stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.stat { border-left: 2px solid var(--cyan); padding-left: 1rem; }
.stat-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    display: block;
}
.stat-lbl { font-size: 0.73rem; color: var(--text-muted); letter-spacing: 0.07em; }

/* ─── FAQ ─── */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.4rem 0;
    font-family: 'Syne', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--cyan); }
.faq-ico {
    width: 26px; height: 26px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    color: transparent;
    font-size: 0;
    position: relative;
    transition: transform 0.3s, border-color 0.2s, background 0.2s;
}
.faq-ico::before,
.faq-ico::after {
    content: '';
    position: absolute;
    background: var(--cyan);
    border-radius: 1px;
    transition: background 0.2s;
}
.faq-ico::before { width: 10px; height: 1.5px; }
.faq-ico::after  { width: 1.5px; height: 10px; }
.faq-item.open .faq-ico {
    transform: rotate(45deg);
    border-color: var(--cyan);
    background: var(--cyan);
}
.faq-item.open .faq-ico::before,
.faq-item.open .faq-ico::after { background: #07080d; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    padding-bottom: 1.4rem;
}
.faq-more {
    margin-top: 2rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}
.faq-more a { color: var(--cyan); text-decoration: none; }
.faq-more a:hover { opacity: 0.7; }

/* ─── CONTACT ─── */
#contact { background: var(--bg2); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 90px;
    align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }

.contact-info p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.8rem;
}
.contact-mail {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cyan);
    text-decoration: none;
    display: block;
    margin-bottom: 2.2rem;
    transition: opacity 0.2s;
}
.contact-mail:hover { opacity: 0.65; }

.socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.soc-btn {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.soc-btn:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }
.soc-btn svg { width: 17px; height: 17px; }

.cf { display: flex; flex-direction: column; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: 0.45rem; }
.fg label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.fg input, .fg textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 11px 15px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.18); }
.fg input:focus, .fg textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,229,255,0.09);
}
.fg textarea { min-height: 130px; resize: vertical; }
.cf-turnstile { margin-bottom: 0.25rem; }
.btn-send {
    padding: 13px 30px;
    background: var(--cyan);
    color: #000;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 0 30px rgba(0,229,255,0.3);
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,229,255,0.45); background: #fff; }

/* ─── FOOTER ─── */
footer {
    padding: 36px 5%;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.foot-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.foot-logo em { color: var(--cyan); font-style: normal; }
.foot-logo-img { height: 40px; width: auto; display: block; }
.foot-copy {
    font-size: 0.74rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 3px;
}
.sym-c, .sym-p  { display: inline-flex; align-items: center; }
.sym-c svg, .sym-p svg { width: 11px; height: 11px; }
.foot-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.foot-links a {
    font-size: 0.74rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    padding: 10px 10px;
    margin: -10px -10px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.foot-links a:hover { color: var(--cyan); }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(160px);
    z-index: 9000;
    width: calc(100% - 3rem);
    max-width: 760px;
    background: rgba(10,11,18,0.95);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    box-shadow: 0 24px 70px rgba(0,0,0,0.7), 0 0 50px rgba(0,229,255,0.06);
    transition: transform 0.55s cubic-bezier(0.34,1.4,0.64,1), opacity 0.4s;
    opacity: 0;
}
#cookie-banner.visible { transform: translateX(-50%) translateY(0); opacity: 1; }
#cookie-banner.hidden  { transform: translateX(-50%) translateY(160px); opacity: 0; pointer-events: none; }

.cookie-top {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.4rem;
}
.cookie-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.cookie-text a { color: var(--cyan); text-decoration: none; }
.cookie-text a:hover { opacity: 0.7; }

.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
}

/* shared cookie btn base */
.cbtn {
    padding: 9px 18px;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
    white-space: nowrap;
}
.cbtn-accept {
    background: var(--cyan);
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(0,229,255,0.25);
}
.cbtn-accept:hover { background: #fff; transform: translateY(-1px); }
.cbtn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.cbtn-decline:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }
.cbtn-settings {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--border-accent);
}
.cbtn-settings:hover { background: var(--cyan-dim); }

/* categories */
.cookie-cats {
    display: none;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    gap: 0.75rem;
    flex-direction: column;
}
.cookie-cats.open { display: flex; }

.cookie-cat {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s;
}
.cookie-cat:hover { border-color: rgba(255,255,255,0.1); }
.cat-info { flex: 1; }
.cat-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}
.cat-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* toggle switch */
.toggle-wrap { flex-shrink: 0; display: flex; align-items: center; gap: 0.5rem; }
.toggle-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; }
.toggle {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-track {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}
.toggle input:checked ~ .toggle-track { background: var(--cyan); border-color: var(--cyan); }
.toggle input:disabled ~ .toggle-track { cursor: not-allowed; opacity: 0.5; }
.toggle-thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 14px; height: 14px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.34,1.5,0.64,1);
}
.toggle input:checked ~ .toggle-thumb { transform: translateX(18px); }

.cookie-save-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.75rem;
}

@media (max-width: 600px) {
    #cookie-banner { padding: 1.25rem; }
    .cookie-top { gap: 1rem; }
    .cookie-actions { width: 100%; }
    .cbtn { flex: 1; text-align: center; }
    .cookie-cat { flex-direction: column; gap: 0.75rem; }
    .toggle-wrap { align-self: flex-end; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
    .scroll-chevron { animation: none !important; }
    .grad-text {
        background-size: 100% 100% !important;
        animation: none !important;
    }
    #canvas-bg { display: none !important; }
}

/* Tap-target safety on iOS for buttons */
button, .btn-solid, .btn-outline, .btn-lic, .btn-send, .cbtn { -webkit-tap-highlight-color: transparent; }
img, picture { max-width: 100%; }
