/* ============================================================
   FOTON SOFTWARE — DESIGN SYSTEM v3 (Soft Luxe · 2026)
   Instrument Serif · Geist · gradient blue · glassmorphism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
    --brand: #0072BA;
    --brand-1: #3B9EFF;
    --brand-2: #0050A0;
    --brand-3: #84C5FF;
    --brand-deep: #021F44;

    --bg: #F6F4EE;
    --bg-warm: #FAF7F0;
    --bg-cool: #EEF3FB;
    --surface: #FFFFFF;
    --surface-2: #F1EEE6;
    --glass: rgba(255, 255, 255, 0.62);
    --glass-strong: rgba(255, 255, 255, 0.82);
    --glass-edge: rgba(255, 255, 255, 0.65);

    --ink: #0B1220;
    --ink-1: #1B2738;
    --ink-2: #475569;
    --ink-3: #7B8A9C;
    --ink-4: #B4C0CE;

    --line: rgba(11, 18, 32, 0.07);
    --line-2: rgba(11, 18, 32, 0.13);
    --line-3: rgba(11, 18, 32, 0.22);

    --grad-aurora: radial-gradient(circle at 30% 20%, rgba(132, 197, 255, 0.55), transparent 55%),
                   radial-gradient(circle at 80% 10%, rgba(59, 158, 255, 0.35), transparent 60%),
                   radial-gradient(circle at 50% 90%, rgba(0, 114, 186, 0.18), transparent 60%);
    --grad-soft:  linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 40%, var(--bg-cool) 100%);
    --grad-ink:   linear-gradient(135deg, #0B1220 0%, #11203A 50%, #021F44 100%);
    --grad-brand: linear-gradient(135deg, #3B9EFF 0%, #0072BA 50%, #0050A0 100%);
    --grad-italic:linear-gradient(135deg, #0072BA 0%, #3B9EFF 100%);

    --shadow-xs: 0 1px 2px rgba(11, 18, 32, 0.05);
    --shadow-sm: 0 4px 12px rgba(11, 18, 32, 0.06), 0 1px 3px rgba(11, 18, 32, 0.04);
    --shadow-md: 0 12px 36px rgba(11, 18, 32, 0.08), 0 4px 12px rgba(11, 18, 32, 0.05);
    --shadow-lg: 0 24px 60px rgba(11, 18, 32, 0.10), 0 8px 24px rgba(11, 18, 32, 0.06);
    --shadow-xl: 0 36px 90px rgba(11, 18, 32, 0.14), 0 12px 36px rgba(11, 18, 32, 0.08);
    --shadow-brand: 0 16px 40px rgba(0, 114, 186, 0.25), 0 6px 16px rgba(0, 114, 186, 0.18);

    --font-display: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
    --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-1);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
img, picture, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease-out); }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.ambient-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: var(--grad-aurora);
    opacity: 0.65;
    filter: blur(40px);
}
main, .site-header, .site-footer, .scroll-up, .nav-overlay, .cookie-banner { position: relative; z-index: 1; }

.wrap { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.wrap-tight { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 8vw, 7.5rem); position: relative; }
.section-tight { padding-block: clamp(2rem, 4vw, 4rem); position: relative; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-2);
}
.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--brand);
    display: inline-block;
}
em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    background: var(--grad-italic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.005em;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1rem 0;
    z-index: 100;
    transition: all .35s var(--ease-out);
}
.site-header.scrolled { padding: 0.55rem 0; }
.site-header.scrolled .site-header__inner {
    background: var(--glass-strong);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-color: var(--line);
    box-shadow: var(--shadow-md);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.7rem 1.1rem 0.7rem 1rem;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    transition: all .35s var(--ease-out);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink);
}
.brand__logo {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 114, 186, 0.25);
}
.brand__logo img { width: 100%; height: 100%; }
.brand__textwrap { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand__name {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand__tag {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
}

.nav-primary { display: flex; align-items: center; gap: 0.3rem; }
.nav-primary > a, .nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    font-size: 0.92rem;
    color: var(--ink-1);
    border-radius: var(--r-pill);
    transition: all .25s var(--ease-out);
}
.nav-primary > a:hover, .nav-item > a:hover { background: rgba(11, 18, 32, 0.05); color: var(--ink); }
.nav-item { position: relative; }
.nav-item__caret { font-size: 0.6rem; opacity: 0.55; transform: translateY(1px); }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 240px;
    padding: 0.55rem;
    background: var(--glass-strong);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all .25s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-dropdown a {
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--ink-1);
    white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(0, 114, 186, 0.08); color: var(--brand); }
.nav-sub-title {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-3);
    padding: 0.6rem 0.85rem 0.3rem;
}
.nav-sub-title:not(:first-child) { border-top: 1px solid var(--line); margin-top: 0.3rem; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.1rem;
    background: var(--ink);
    color: #fff !important;
    border-radius: var(--r-pill);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all .25s var(--ease-out);
    box-shadow: var(--shadow-sm);
}
.cta-link:hover { background: var(--brand); transform: translateY(-1px); box-shadow: var(--shadow-brand); }
.cta-link__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #5BFFB8;
    box-shadow: 0 0 0 3px rgba(91, 255, 184, 0.25);
    animation: pulse 2.5s var(--ease-soft) infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.45;} }

.menu-toggle { display: none; }
@media (max-width: 980px) {
    .nav-primary { display: none; }
    .menu-toggle {
        display: inline-flex;
        width: 44px; height: 44px;
        align-items: center; justify-content: center;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 50%;
        box-shadow: var(--shadow-sm);
    }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
        display: block; content: '';
        width: 18px; height: 1.5px;
        background: var(--ink);
        position: relative;
    }
    .menu-toggle span::before { position: absolute; top: -6px; left: 0; right: 0; }
    .menu-toggle span::after { position: absolute; top: 6px; left: 0; right: 0; }
}

/* NAV OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--grad-ink);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease-out);
    overflow: auto;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-overlay::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(59, 158, 255, 0.25), transparent 60%);
    pointer-events: none;
}
.nav-overlay__close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}
.nav-overlay__close::before, .nav-overlay__close::after {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 16px; height: 1.5px;
    background: #fff;
    transform-origin: center;
}
.nav-overlay__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav-overlay__close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.nav-overlay__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 2rem 4rem;
    color: #fff;
}
.nav-overlay__list { display: flex; flex-direction: column; gap: 0.2rem; }
.nav-overlay__list > li > a, .nav-overlay__list summary {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.05;
    color: #fff;
    padding: 0.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    list-style: none;
}
.nav-overlay__list summary::-webkit-details-marker { display: none; }
.nav-num { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; opacity: 0.5; }
.nav-overlay__sub { padding: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.nav-overlay__sub a { font-size: 1.05rem; color: rgba(255,255,255,0.7); padding: 0.4rem 0; }
.nav-overlay__sub a:hover { color: var(--brand-1); }
.nav-overlay__sub h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-1);
    margin-top: 0.8rem;
}
.nav-overlay__meta {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem; padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-overlay__meta h5 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-1);
    margin-bottom: 0.6rem;
}
.nav-overlay__meta p { color: rgba(255,255,255,0.7); line-height: 1.7; font-size: 0.92rem; }
.nav-overlay__meta a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.25); }

/* HERO */
.hero {
    position: relative;
    padding: clamp(7rem, 10vw, 9rem) 0 clamp(2rem, 4vw, 3.5rem);
    overflow: hidden;
}
.hero__ambient { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: float-orb 18s var(--ease-soft) infinite;
}
.hero__orb.o1 { width: 480px; height: 480px; background: #84C5FF; top: -120px; left: -60px; }
.hero__orb.o2 { width: 380px; height: 380px; background: #3B9EFF; top: 30%; right: -120px; animation-delay: -6s; opacity: 0.4; }
.hero__orb.o3 { width: 320px; height: 320px; background: #FFD8B0; bottom: -100px; left: 30%; animation-delay: -12s; opacity: 0.35; }
@keyframes float-orb {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px,-30px) scale(1.05); }
    66% { transform: translate(-30px,40px) scale(0.95); }
}
.hero__grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.hero__meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
}
.hero__sub {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 640px;
    margin: 0 auto;
}
.hero__cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__chip-row {
    display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center;
    margin-top: 1.5rem;
}
.hero__chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    background: var(--glass-strong);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.82rem;
    color: var(--ink-1);
    box-shadow: var(--shadow-xs);
    transition: all .25s var(--ease-out);
}
.hero__chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(0,114,186,0.25); }
.hero__chip strong { color: var(--brand); font-weight: 600; }

.hero__showcase {
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    position: relative;
    max-width: 880px;
    border-radius: var(--r-xl);
    background: var(--glass-strong);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--glass-edge);
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.6);
    padding: 0.6rem;
    overflow: hidden;
}
.hero__showcase-img {
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 360px;
    border-radius: calc(var(--r-xl) - 8px);
    overflow: hidden;
    background: var(--ink);
}
.hero__showcase-img img { width: 100%; height: 100%; object-fit: cover; }

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.6rem;
    background: var(--grad-brand);
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--r-pill);
    transition: all .3s var(--ease-out);
    box-shadow: var(--shadow-brand);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(0, 114, 186, 0.35), 0 8px 20px rgba(0, 114, 186, 0.22); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary .arrow { transition: transform .3s var(--ease-out); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.6rem;
    background: var(--glass-strong);
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all .3s var(--ease-out);
    box-shadow: var(--shadow-xs);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* SECTION HEAD */
.sec-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    max-width: 920px;
}
.sec-head__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.sec-head__lead {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 640px;
    margin-top: 0.6rem;
}

/* PAGE HEAD */
.page-head {
    padding: clamp(7rem, 12vw, 10rem) 0 clamp(2rem, 4vw, 3.5rem);
    position: relative;
    overflow: hidden;
}
.page-head::before {
    content: '';
    position: absolute;
    top: -200px; left: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(132, 197, 255, 0.45) 0%, transparent 65%);
    filter: blur(60px);
    z-index: -1;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 1.8rem;
}
.breadcrumb a { color: var(--ink-2); transition: color .2s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb__sep { opacity: 0.4; }
.page-head__eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1.2rem;
}
.page-head__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 900px;
}
.page-head__lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 680px;
    margin-top: 1.5rem;
}

/* LEAD IMAGE */
.lead-image {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--surface);
    padding: 0.7rem;
    border: 1px solid var(--glass-edge);
}
.lead-image img, .lead-image picture { width: 100%; height: 100%; }
.lead-image > picture > img, .lead-image > img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: calc(var(--r-xl) - 10px);
}

/* MARQUEE */
.marquee {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: var(--bg-warm);
    position: relative;
}
.marquee__head {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.marquee__sub { font-size: 0.95rem; color: var(--ink-2); }
.marquee__track {
    display: flex;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    animation: marquee 60s linear infinite;
    width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-tile {
    flex: 0 0 auto;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    filter: grayscale(1);
    opacity: 0.45;
    transition: all .3s var(--ease-out);
}
.logo-tile:hover { filter: grayscale(0); opacity: 1; }
.logo-tile img, .logo-tile picture { max-height: 38px; max-width: 130px; width: auto; height: auto; object-fit: contain; }

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}
.stat {
    background: var(--surface);
    padding: clamp(1.8rem, 3vw, 2.5rem);
    position: relative;
    transition: background .3s;
}
.stat:hover { background: var(--bg-warm); }
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 0.2em;
    margin-bottom: 0.8rem;
}
.stat__num .suffix {
    font-size: 0.5em;
    color: var(--brand);
    font-style: italic;
}
.stat__label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 0.6rem;
}
.stat__desc { font-size: 0.92rem; line-height: 1.55; color: var(--ink-3); }

/* BENTO */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}
.bento-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: clamp(1.5rem, 2.5vw, 2.2rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
    transition: all .35s var(--ease-out);
    color: var(--ink);
    position: relative;
    overflow: hidden;
    min-height: 320px;
}
.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-brand);
    opacity: 0;
    transition: opacity .3s;
}
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(132, 197, 255, 0.18), transparent 50%);
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0,114,186,0.2); }
.bento-card:hover::before, .bento-card:hover::after { opacity: 1; }
.bento-card:nth-child(1), .bento-card:nth-child(2) { grid-column: span 3; }
.bento-card:nth-child(3), .bento-card:nth-child(4), .bento-card:nth-child(5) { grid-column: span 2; }
@media (max-width: 900px) {
    .bento { grid-template-columns: 1fr; }
    .bento-card, .bento-card:nth-child(n) { grid-column: span 1; }
}
.bento-card__icon {
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--bg-cool), var(--bg-warm));
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    box-shadow: var(--shadow-xs);
}
.bento-card__icon img, .bento-card__icon picture { width: 100%; height: 100%; object-fit: contain; }
.bento-card__num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.8rem;
}
.bento-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 0.8rem;
}
.bento-card__desc { font-size: 0.95rem; line-height: 1.6; color: var(--ink-2); }
.bento-card__foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}
.bento-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--ink-2);
    background: var(--bg-warm);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
}
.bento-card__arrow {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    transition: all .3s var(--ease-out);
}
.bento-card:hover .bento-card__arrow { background: var(--brand); transform: rotate(-45deg); }

/* CAPABILITIES */
.capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.capability {
    padding: clamp(1.5rem, 2.5vw, 2rem);
    background: var(--glass-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-edge);
    border-radius: var(--r-lg);
    transition: all .3s var(--ease-out);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.capability::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--grad-brand);
    transition: height .35s var(--ease-out);
}
.capability:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.capability:hover::before { height: 100%; }
.capability__num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--brand);
    margin-bottom: 1rem;
}
.capability__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 0.8rem;
}
.capability__desc { font-size: 0.95rem; line-height: 1.6; color: var(--ink-2); }

/* PROSE */
.prose {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ink-1);
    max-width: 720px;
}
.prose > * + * { margin-top: 1.5rem; }
.prose h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-top: 3rem;
}
.prose h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-top: 2.5rem;
}
.prose p { color: var(--ink-1); }
.prose ul { padding-left: 1.4rem; list-style: disc; color: var(--ink-1); }
.prose ul li::marker { color: var(--brand); }
.prose blockquote {
    margin: 2.5rem 0;
    padding: 1.8rem 2rem;
    border-left: 3px solid var(--brand);
    background: var(--glass-strong);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.4;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.prose a { color: var(--brand); border-bottom: 1px solid rgba(0,114,186,0.3); }
.prose a:hover { border-bottom-color: var(--brand); }

/* PULL QUOTE */
.pull-quote {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 4vw, 2.5rem);
    text-align: center;
    position: relative;
}
.pull-quote::before {
    content: '"';
    position: absolute;
    top: 1rem; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 14rem;
    line-height: 1;
    color: var(--brand);
    opacity: 0.18;
    pointer-events: none;
}
.pull-quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 3rem);
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
    position: relative;
}
.pull-quote__attr {
    margin-top: 2rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
}

/* PROCESS */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    position: relative;
}
.process-item {
    padding: clamp(1.6rem, 2.5vw, 2rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    position: relative;
    transition: all .3s var(--ease-out);
    box-shadow: var(--shadow-xs);
}
.process-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0,114,186,0.2); }
.process-item__num {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    background: linear-gradient(135deg, rgba(132,197,255,0.2), rgba(59,158,255,0.12));
    color: var(--brand);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--r-pill);
    margin-bottom: 1.2rem;
}
.process-item__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0.8rem;
}
.process-item__desc { font-size: 0.92rem; line-height: 1.6; color: var(--ink-2); }

/* POSTS */
.posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.post { display: flex; flex-direction: column; gap: 1rem; }
.post__media {
    aspect-ratio: 4/3;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-cool);
    box-shadow: var(--shadow-sm);
    display: block;
}
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.post:hover .post__media img { transform: scale(1.05); }
.post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.post__meta a { color: var(--brand); }
.post__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.post__title a:hover { color: var(--brand); }
.post__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-2);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post__more {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--brand);
    padding-bottom: 2px;
    border-bottom: 1px solid var(--brand);
}
.post__more:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* CTA */
.cta-section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.cta-contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.cta-contact-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    transition: all .25s var(--ease-out);
    color: var(--ink);
}
.cta-contact-list a:hover { border-color: var(--brand); background: var(--bg-warm); transform: translateX(4px); }
.cta-contact-list .label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 0.25rem;
}
.cta-contact-list .value { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.cta-contact-list a svg { color: var(--brand); flex-shrink: 0; }

/* FORM */
.form-card {
    padding: clamp(1.8rem, 3vw, 2.5rem);
    background: var(--glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-edge);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.field input, .field textarea, .field select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--r-md);
    font: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    transition: all .2s;
    outline: none;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.field input:focus, .field textarea:focus {
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 114, 186, 0.12);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.6rem;
    background: var(--grad-brand);
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--r-pill);
    transition: all .3s var(--ease-out);
    box-shadow: var(--shadow-brand);
    margin-top: 0.5rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(0, 114, 186, 0.35); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-msg {
    padding: 0; max-height: 0; overflow: hidden;
    transition: all .35s var(--ease-out);
    font-size: 0.92rem; color: var(--brand);
}
.form-msg.show {
    padding: 0.9rem 1.1rem;
    max-height: 200px;
    background: rgba(0, 114, 186, 0.08);
    border: 1px solid rgba(0, 114, 186, 0.2);
    border-radius: var(--r-md);
    margin-bottom: 1rem;
}
.form-note { font-size: 0.78rem; color: var(--ink-3); margin-top: 1rem; line-height: 1.55; }

/* SERVICE TILES (HizmetlerCta partial) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}
.service-tile {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    color: var(--ink);
    transition: all .3s var(--ease-out);
}
.service-tile:hover {
    border-color: var(--brand);
    background: var(--bg-warm);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.service-tile.is-active {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-brand);
}
.service-tile__num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--brand);
    flex-shrink: 0;
}
.service-tile.is-active .service-tile__num { color: rgba(255,255,255,0.85); }
.service-tile__body { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.service-tile__label { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.15; }
.service-tile__desc { font-size: 0.78rem; color: var(--ink-3); }
.service-tile.is-active .service-tile__desc { color: rgba(255,255,255,0.78); }
.service-tile__arrow { margin-left: auto; color: var(--ink-3); transition: transform .3s var(--ease-out), color .3s; flex-shrink: 0; }
.service-tile:hover .service-tile__arrow { transform: translateX(4px); color: var(--brand); }
.service-tile__here {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    background: rgba(255,255,255,0.22);
    border-radius: var(--r-pill);
}

/* FOOTER */
.site-footer {
    background: var(--grad-ink);
    color: rgba(255,255,255,0.78);
    padding: clamp(4rem, 8vw, 7rem) 0 2rem;
    margin-top: clamp(4rem, 8vw, 8rem);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% -10%, rgba(59, 158, 255, 0.18), transparent 55%),
                radial-gradient(circle at 10% 110%, rgba(132, 197, 255, 0.12), transparent 55%);
    pointer-events: none;
}
.site-footer > .wrap { position: relative; }
.site-footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 980px) { .site-footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .site-footer__top { grid-template-columns: 1fr; } }
.site-footer__about .brand { color: #fff; }
.site-footer__about .brand__name { color: #fff; }
.site-footer__about .brand__tag { color: rgba(255,255,255,0.5); }
.site-footer__about p {
    margin: 1.2rem 0 1.6rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 380px;
}
.site-footer h4 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-1);
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.site-footer ul li { margin-bottom: 0.7rem; }
.site-footer ul li a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color .2s; }
.site-footer ul li a:hover { color: #fff; }

.site-footer__social {
    display: flex !important;
    gap: 0.5rem !important;
    flex-direction: row !important;
    margin-top: 1.6rem;
}
.site-footer__social li { margin: 0 !important; }
.site-footer__social a, ul.site-footer__social li a {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: all .25s var(--ease-out);
}
.site-footer__social svg { width: 16px; height: 16px; }
.site-footer__social a:hover {
    background: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #fff;
    transform: translateY(-2px);
}

.subscribe-mini form {
    display: flex;
    gap: 0.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-pill);
    padding: 0.3rem;
}
.subscribe-mini input {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 0.5rem 0.9rem;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}
.subscribe-mini input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-mini button {
    width: 36px; height: 36px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    transition: all .25s;
    font-size: 1.1rem;
}
.subscribe-mini button:hover { background: var(--brand-1); transform: translateX(2px); }

.brand-mark { padding: 3rem 0 2rem; text-align: center; overflow: hidden; }
.brand-mark__wordmark {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(5rem, 16vw, 14rem);
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, rgba(132,197,255,0.45) 0%, rgba(132,197,255,0.04) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-mark__wordmark em {
    background: linear-gradient(180deg, var(--brand-1) 0%, rgba(0,114,186,0.2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-footer__bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.45);
}
.site-footer__legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.site-footer__legal a { color: rgba(255,255,255,0.6); }
.site-footer__legal a:hover { color: var(--brand-1); }

/* SCROLL UP */
.scroll-up {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    width: 48px; height: 48px;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s var(--ease-out);
    box-shadow: var(--shadow-lg);
    z-index: 50;
    pointer-events: none;
}
.scroll-up.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-up:hover { background: var(--brand); transform: translateY(-2px); }

/* COOKIE */
.cookie-banner {
    position: fixed;
    left: 1.5rem; right: 1.5rem;
    bottom: 1.5rem;
    max-width: 580px;
    padding: 1.1rem 1.3rem;
    background: var(--glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-edge);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xl);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 90;
    font-size: 0.88rem;
    color: var(--ink-1);
}
.cookie-banner.show { display: flex; animation: cookieIn .5s var(--ease-out); }
@keyframes cookieIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie-banner p { margin: 0; flex: 1; line-height: 1.5; }
.cookie-banner a { color: var(--brand); border-bottom: 1px solid; }
.cookie-banner button {
    padding: 0.55rem 1.1rem;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 0.85rem;
    transition: background .2s;
}
.cookie-banner button:hover { background: var(--brand); }

/* REVEAL */
[data-reveal].pre-reveal { opacity: 0; transform: translateY(24px); }
[data-reveal] { transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }
[data-reveal-delay="6"] { transition-delay: 0.48s; }

/* DEPRECATED / LEGACY VIEW SUPPORT */
.pinned { display: none !important; }
.hero__terminal, .hero__scroll-hint, .floating-line { display: none; }
/* Old view served a full-bleed .hero__image — constrain to compact showcase */
.hero__image {
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    max-width: 880px;
    border-radius: var(--r-xl);
    background: var(--glass-strong);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--glass-edge);
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.6);
    padding: 0.6rem;
    overflow: hidden;
    order: 99;
}
.hero__image picture, .hero__image > picture { display: block; width: 100%; }
.hero__image img {
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 340px;
    object-fit: cover;
    border-radius: calc(var(--r-xl) - 8px);
    display: block;
}
.hero { display: flex; flex-direction: column; }
.hero > .wrap { order: 1; }
.hero__ambient { order: 0; }

@media (max-width: 600px) {
    .hero__title { font-size: clamp(2.4rem, 12vw, 3.5rem); }
    .page-head__title { font-size: clamp(2rem, 9vw, 3rem); }
    .site-header__inner { padding: 0.5rem 0.7rem; }
    .brand__textwrap { display: none; }
}
