/* ============================================================
   CLEOM OS — Gaming Creative OS · Phantom-style, LIGHT theme
   v5.2 — bigger type, 100vh headline moments, card carousel.
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { max-width: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { max-width: 100%; overflow-x: clip; background-color: var(--bg-0); color: var(--ink-0); font-family: var(--font-body); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
@supports not (overflow-x: clip) { body { overflow-x: hidden; } }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; }
::selection { background: var(--accent); color: #0A0A0A; }

/* ---- Tokens (LIGHT) ---- */
:root {
    --bg-0: #F4F5F0;          /* page */
    --bg-1: #FFFFFF;
    --bg-2: #EAEBE4;
    --ink-0: #0C0D0A;
    --ink-1: #5C5E55;
    --ink-2: #8A8C82;
    --line:  #E2E3DB;

    --accent: #9EFF00;
    --accent-deep: #3E7A00;
    --accent-ink: #0A0A0A;
    --glow: 0 10px 34px rgba(158, 255, 0, 0.40);

    --dark: #0C0D0A;
    --dark-1: #16170F;
    --on-dark-0: #F4F5EE;
    --on-dark-1: #A6A89B;
    --line-dark: #262922;

    --font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --maxw: 1280px;
    --px: 1.5rem;
    --nav-h: 84px;

    --r-sm: 10px; --r-md: 16px; --r-lg: 26px; --r-xl: 36px; --r-full: 999px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-1: 0 2px 10px rgba(12,13,10,0.05), 0 16px 44px -16px rgba(12,13,10,0.12);
    --shadow-2: 0 36px 90px -30px rgba(12,13,10,0.34);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--px); }
.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--px); }

/* ---- Type ---- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; color: var(--ink-0); }
.eyebrow { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-1); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: var(--glow); }
.lead { color: var(--ink-1); font-size: clamp(1.08rem, 1.4vw, 1.32rem); line-height: 1.5; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; font-family: var(--font-body); font-weight: 600; font-size: 1rem; padding: 0.95rem 1.7rem; border-radius: var(--r-full); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s; white-space: nowrap; }
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.btn-outline { background: transparent; color: var(--ink-0); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--ink-0); }
.btn-lg { padding: 1.15rem 2.3rem; font-size: 1.12rem; }

/* See more pill */
.see-more { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.75rem 1.5rem; border-radius: var(--r-full); background: var(--bg-1); border: 1px solid var(--line); box-shadow: var(--shadow-1); font-size: 0.95rem; font-weight: 600; color: var(--ink-0); transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.see-more:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.see-more svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.see-more:hover svg { transform: translate(2px,-2px); }
.on-dark .see-more { background: var(--dark-1); border-color: var(--line-dark); color: var(--on-dark-0); }

/* category chip (carousel bar) */
.cat-chip { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.65rem 1.25rem; border-radius: var(--r-full); background: var(--bg-1); border: 1px solid var(--line); box-shadow: var(--shadow-1); font-size: 0.95rem; font-weight: 600; color: var(--ink-0); }
.cat-chip svg { width: 17px; height: 17px; color: var(--accent-deep); }
.on-dark .cat-chip { background: var(--dark-1); border-color: var(--line-dark); color: var(--on-dark-0); }
.on-dark .cat-chip svg { color: var(--accent); }

/* inline logo glyph in headlines */
.os-logo-inline { height: 0.78em; width: auto; display: inline-block; vertical-align: -0.04em; margin: 0 0.18em; }

/* ============================================================
   NAVBAR — floating pill, NO scroll background
   ============================================================ */
.os-nav { position: sticky; top: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; background: transparent; }
.os-nav-inner { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--px); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.os-nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.os-logo-mark { height: 30px; width: auto; }
.logo-mobile { display: none; }

.os-nav-center { display: flex; align-items: center; gap: 0.1rem; padding: 0.32rem; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-full); box-shadow: var(--shadow-1); }
.os-nav-item { position: relative; }
.os-nav-link { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.55rem 0.95rem; border-radius: var(--r-full); font-size: 0.95rem; font-weight: 500; color: var(--ink-1); transition: color 0.2s, background 0.2s; }
.os-nav-link:hover, .os-nav-item:hover .os-nav-link { color: var(--ink-0); background: var(--bg-2); }
.os-nav-link.active { color: var(--ink-0); }
.os-nav-link .caret { width: 11px; height: 11px; opacity: 0.7; transition: transform 0.2s var(--ease); }
.os-nav-item:hover .os-nav-link .caret { transform: rotate(180deg); }

.os-dropdown { position: absolute; top: calc(100% + 0.6rem); left: 50%; transform: translateX(-50%) translateY(-8px); min-width: 230px; padding: 0.5rem; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-2); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s, transform 0.25s var(--ease), visibility 0.25s; }
.os-nav-item:hover .os-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.os-dropdown::before { content: ''; position: absolute; top: -0.6rem; left: 0; right: 0; height: 0.6rem; }
.os-dd-item { display: flex; align-items: center; gap: 0.6rem; width: 100%; padding: 0.62rem 0.7rem; border-radius: var(--r-sm); font-size: 0.92rem; font-weight: 500; color: var(--ink-1); transition: background 0.2s, color 0.2s; }
.os-dd-item:hover { background: var(--bg-2); color: var(--ink-0); }
.os-dd-item .dd-soon { margin-left: auto; font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-deep); border: 1px solid rgba(62,122,0,0.3); border-radius: var(--r-full); padding: 0.1rem 0.45rem; }

.os-nav-right { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; }
.os-signin { font-size: 0.95rem; font-weight: 500; color: var(--ink-1); padding: 0.55rem 0.7rem; transition: color 0.2s; }
.os-signin:hover { color: var(--ink-0); }
#navAuthLinks { display: flex; align-items: center; gap: 0.45rem; }

/* logged-in chrome */
.nav-credits { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.85rem; border-radius: var(--r-full); background: var(--bg-1); border: 1px solid var(--line); font-size: 0.88rem; font-weight: 600; color: var(--ink-0); }
.nav-credits .credit-icon { width: 14px; height: 14px; color: var(--accent-deep); }
.nav-credits-hidden { display: none !important; }
.nav-credits-add { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 5px; margin-left: 0.2rem; background: var(--accent); color: var(--accent-ink); }
#navUser { position: relative; }
.nav-user-btn { display: flex; align-items: center; gap: 0.45rem; padding: 0.35rem 0.7rem 0.35rem 0.35rem; border-radius: var(--r-full); background: var(--bg-1); border: 1px solid var(--line); }
.nav-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--ink-0); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; }
.nav-user-name { font-size: 0.85rem; font-weight: 500; color: var(--ink-0); max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-dropdown { position: absolute; top: calc(100% + 0.5rem); right: 0; min-width: 200px; padding: 0.4rem; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-2); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s var(--ease); }
.nav-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item { display: flex; align-items: center; gap: 0.6rem; width: 100%; padding: 0.6rem 0.7rem; border-radius: var(--r-sm); font-size: 0.88rem; color: var(--ink-1); text-align: left; }
.nav-dropdown-item:hover { background: var(--bg-2); color: var(--ink-0); }
.nav-dropdown-divider { height: 1px; background: var(--line); margin: 0.35rem 0; }

.os-nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--bg-1); border: 1px solid var(--line); color: var(--ink-0); align-items: center; justify-content: center; position: relative; z-index: 110; box-shadow: var(--shadow-1); }
.os-mobile-menu { display: none; }

/* ============================================================
   HERO — full-width dark card, BIG headline
   ============================================================ */
.os-hero { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; padding: 1rem 0 clamp(2rem, 5vw, 4rem); }
.os-hero .container-wide { width: 100%; }
.os-hero-card { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--dark); width: 100%; min-height: clamp(500px, 58vw, 700px); display: flex; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-2); }
.os-hero-bg { position: absolute; inset: 0; z-index: 0; }
.os-hero-bg video, .os-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.os-hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(158,255,0,0.16), transparent 60%), linear-gradient(180deg, rgba(12,13,10,0.35), rgba(12,13,10,0.62)); }
.os-hero-glow { position: absolute; width: 80%; height: 80%; left: 10%; top: 6%; z-index: 0; background: radial-gradient(circle at 50% 42%, rgba(158,255,0,0.22), transparent 58%); filter: blur(40px); animation: heroDrift 10s ease-in-out infinite alternate; }
@keyframes heroDrift { from { transform: translate(-4%, -2%) scale(1); } to { transform: translate(5%, 4%) scale(1.1); } }
.os-hero-inner { position: relative; z-index: 1; width: 100%; max-width: 1160px; margin: 0 auto; padding: clamp(2rem, 5vw, 3.5rem) var(--px); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.os-hero-tag { color: var(--accent); margin-bottom: 1.6rem; font-size: 0.86rem; }
.os-hero-tag .dot { box-shadow: 0 0 14px rgba(158,255,0,0.8); }
.os-hero h1 { color: #fff; font-weight: 600; font-size: clamp(2.5rem, 5.4vw, 4.8rem); line-height: 1.02; letter-spacing: -0.035em; margin-bottom: 1.85rem; }
.os-hero .lead { color: rgba(244,245,238,0.82); font-size: clamp(1.1rem, 1.6vw, 1.45rem); max-width: 620px; margin: 0 auto 2.25rem; }
.os-hero .btn-primary { box-shadow: var(--glow); }

/* ============================================================
   HEADLINE BLOCK — sticky moment, fades in/out with scroll
   ============================================================ */
.os-headline { position: relative; height: 130vh; }
.os-headline-pin { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem var(--px); will-change: opacity, transform, filter; }
.os-headline.on-dark .os-headline-pin::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 820px; height: 560px; background: radial-gradient(circle, rgba(158,255,0,0.13), transparent 60%); pointer-events: none; }
.os-section-title { font-size: clamp(3rem, 7.4vw, 6.2rem); font-weight: 600; letter-spacing: -0.04em; line-height: 0.98; max-width: 15ch; margin: 0 auto 2.25rem; position: relative; }
.os-headline.on-dark .os-section-title { color: var(--on-dark-0); }

/* ============================================================
   CARDS BLOCK + CAROUSEL
   ============================================================ */
.os-cards { padding: 0 0 clamp(4rem, 8vw, 7rem); }
.os-cards.on-dark { background: transparent; color: var(--on-dark-0); padding-top: 1rem; }
/* Features carousel container — aligns with the navbar (logo ↔ Sign Up) */
.container-cards { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--px); }
.os-carousel-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; }
.os-carousel-arrows { display: flex; gap: 0.6rem; }
.os-arrow { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-1); border: 1px solid var(--line); box-shadow: var(--shadow-1); display: flex; align-items: center; justify-content: center; color: var(--ink-0); transition: all 0.2s var(--ease); }
.os-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: translateY(-1px); }
.os-arrow svg { width: 18px; height: 18px; }
.on-dark .os-arrow { background: var(--dark-1); border-color: var(--line-dark); color: var(--on-dark-0); }
.on-dark .os-arrow:hover { background: var(--accent); color: var(--accent-ink); }

.os-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 0.5rem; scrollbar-width: none; cursor: grab; }
.os-track::-webkit-scrollbar { display: none; }
.os-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; user-select: none; }
.os-track.dragging .os-card { pointer-events: none; }

/* center grid (for non-carousel sections) */
.os-grid { display: grid; gap: 1.25rem; }
.os-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.os-card { position: relative; display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; text-align: left; transition: transform 0.55s var(--ease); will-change: transform; }
.os-track .os-card { flex: 0 0 clamp(340px, 30vw, 470px); scroll-snap-align: start; min-height: clamp(470px, 42vw, 580px); }
.os-grid .os-card { min-height: clamp(470px, 43vw, 600px); }
.os-card:hover { transform: translateY(-10px) scale(1.012); }
.os-card-head { position: relative; z-index: 2; padding: 2.3rem 2.3rem 0; }
.os-card h3 { font-size: clamp(1.65rem, 2.3vw, 2.25rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.08; }
.os-card-art { position: relative; flex: 1; margin-top: 1.6rem; min-height: 180px; overflow: hidden; }
.os-card-art video, .os-card-art img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.9s var(--ease); }
.os-card:hover .os-card-art video, .os-card:hover .os-card-art img { transform: scale(1.05); }

/* deck → spread entrance: cards start stacked on the first card, then fan out */
.os-track[data-deck] .os-card { transform: translateX(calc((-100% - 1.25rem) * var(--i, 0))) rotate(calc(var(--i, 0) * 1.5deg)) scale(calc(1 - var(--i, 0) * 0.03)); transition: none; z-index: calc(10 - var(--i, 0)); }
.os-track.spread .os-card { transform: none; transition: transform 1s var(--ease) calc(var(--i, 0) * 110ms); }
.os-track.spread .os-card:hover { transform: translateY(-10px) scale(1.012); transition: transform 0.55s var(--ease); }

.os-card.v-dark { background: var(--dark); color: var(--on-dark-0); }
.os-card.v-dark .os-card-art { background: radial-gradient(70% 70% at 50% 30%, rgba(158,255,0,0.18), transparent 70%), var(--dark-1); }
.os-card.v-light { background: var(--bg-1); color: var(--ink-0); border: 1px solid var(--line); }
.os-card.v-light .os-card-art { background: linear-gradient(160deg, #F1F3EA, #E4E8D6); }
.os-card.v-neon { background: linear-gradient(155deg, #E8FFBE 0%, #BFFB5E 55%, #9EFF00 100%); color: #16240A; }
.os-card.v-neon .os-card-art { background: radial-gradient(60% 60% at 50% 40%, rgba(255,255,255,0.5), transparent 70%); }
.os-card.v-ink { background: #11160D; color: var(--on-dark-0); border: 1px solid var(--line-dark); }
.os-card.v-ink .os-card-art { background: radial-gradient(70% 70% at 70% 30%, rgba(158,255,0,0.14), transparent 70%), #0B0F08; }

.os-card-arrow { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid currentColor; opacity: 0.45; transition: all 0.25s var(--ease); }
.os-card-arrow svg { width: 15px; height: 15px; }
.os-card:hover .os-card-arrow { opacity: 1; background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ---- FAQ ---- */
.container-narrow { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 var(--px); }
.os-faq-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.os-faq-head .eyebrow { margin-bottom: 1.25rem; }
.os-faq-head h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; letter-spacing: -0.035em; }
.os-faq { display: flex; flex-direction: column; gap: 0.75rem; }
.os-faq-item { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.os-faq-item.open { border-color: var(--line); box-shadow: var(--shadow-1); }
.os-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; padding: 1.4rem 1.6rem; text-align: left; font-family: var(--font-display); font-size: clamp(1.05rem, 1.7vw, 1.3rem); font-weight: 600; letter-spacing: -0.02em; color: var(--ink-0); }
.os-faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-2); display: flex; align-items: center; justify-content: center; transition: background 0.25s, transform 0.3s var(--ease); }
.os-faq-icon svg { width: 14px; height: 14px; color: var(--ink-0); transition: transform 0.3s var(--ease); }
.os-faq-item.open .os-faq-icon { background: var(--accent); }
.os-faq-item.open .os-faq-icon svg { transform: rotate(45deg); }
.os-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.os-faq-a-inner { overflow: hidden; min-height: 0; padding: 0 1.6rem; color: var(--ink-1); font-size: 1.02rem; line-height: 1.6; opacity: 0; transform: translateY(-6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.os-faq-item.open .os-faq-a { grid-template-rows: 1fr; }
.os-faq-item.open .os-faq-a-inner { opacity: 1; transform: none; padding-bottom: 1.5rem; }
.os-faq-a-inner { transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), padding-bottom 0.5s var(--ease); }

/* ---- Trusted-by ---- */
.os-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.os-trust { text-align: center; }
.os-trust-label { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-2); margin-bottom: 2rem; }
.os-trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); }
.os-trust-row span { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 2.2vw, 1.7rem); color: var(--ink-2); letter-spacing: -0.02em; transition: color 0.2s; }
.os-trust-row span:hover { color: var(--ink-0); }

/* ---- Final CTA ---- */
.os-cta { text-align: center; padding: clamp(5rem, 11vw, 10rem) 0; }
.os-cta h2 { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 600; letter-spacing: -0.045em; line-height: 0.98; margin-bottom: 1.5rem; }
.os-cta .lead { max-width: 520px; margin: 0 auto 2.5rem; }

/* ---- Newsletter + Footer ---- */
.os-news { background: var(--dark); color: var(--on-dark-0); padding: clamp(4rem, 8vw, 6.5rem) 0; text-align: center; }
.os-news .mark { width: auto; height: 40px; margin: 0 auto 1.75rem; }
.os-news h2 { color: var(--on-dark-0); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; margin-bottom: 0.85rem; }
.os-news p { color: var(--on-dark-1); margin-bottom: 2rem; font-size: 1.05rem; }
.os-news-form { display: flex; gap: 0.5rem; max-width: 480px; margin: 0 auto; }
.os-news-form input { flex: 1; min-width: 0; padding: 1rem 1.25rem; border-radius: var(--r-full); background: var(--dark-1); border: 1px solid var(--line-dark); color: var(--on-dark-0); font-size: 1rem; }
.os-news-form input::placeholder { color: var(--on-dark-1); }
.os-news-form input:focus { outline: none; border-color: var(--accent); }

.os-footer { background: var(--dark); border-top: 1px solid var(--line-dark); color: var(--on-dark-1); padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.os-footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.os-footer-brand .os-logo-mark { height: 30px; margin-bottom: 1rem; }
.os-footer-brand p { font-size: 0.92rem; color: var(--on-dark-1); max-width: 260px; line-height: 1.55; }
.os-footer-col h4 { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-2); margin-bottom: 1.1rem; font-weight: 500; }
.os-footer-col a { display: block; font-size: 0.92rem; color: var(--on-dark-1); margin-bottom: 0.7rem; transition: color 0.2s; }
.os-footer-col a:hover { color: var(--accent); }
.os-footer-col a .soon { font-family: var(--font-mono); font-size: 0.56rem; color: var(--ink-2); margin-left: 0.4rem; }
.os-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 2rem; font-size: 0.84rem; color: var(--ink-2); }
.os-footer-bottom .legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.os-footer-bottom a:hover { color: var(--on-dark-0); }

/* ============================================================
   AMBIENT WAVES — gentle moving background for the homepage
   ============================================================ */
.os-waves { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.os-waves span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; will-change: transform; }
.os-waves .w1 { width: 56vw; height: 56vw; left: -14vw; top: -18vw; background: radial-gradient(circle, rgba(158,255,0,0.16), transparent 65%); animation: waveDrift1 22s ease-in-out infinite alternate; }
.os-waves .w2 { width: 48vw; height: 48vw; right: -16vw; top: 22vh; background: radial-gradient(circle, rgba(62,122,0,0.10), transparent 65%); animation: waveDrift2 28s ease-in-out infinite alternate; }
.os-waves .w3 { width: 42vw; height: 42vw; left: 24vw; bottom: -24vw; background: radial-gradient(circle, rgba(158,255,0,0.10), transparent 65%); animation: waveDrift3 26s ease-in-out infinite alternate; }
@keyframes waveDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(9vw, 7vh) scale(1.18); } }
@keyframes waveDrift2 { from { transform: translate(0,0) scale(1.1); } to { transform: translate(-8vw, -6vh) scale(0.95); } }
@keyframes waveDrift3 { from { transform: translate(0,0) scale(0.95); } to { transform: translate(-6vw, -8vh) scale(1.15); } }

/* ============================================================
   COOKIE CONSENT — big, friendly bar
   ============================================================ */
.os-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; padding: 0 var(--px) 1.25rem; pointer-events: none; }
.os-cookie-card { pointer-events: auto; max-width: 1040px; margin: 0 auto; display: flex; align-items: center; gap: 1.25rem; padding: 1.35rem 1.6rem; background: var(--dark); color: var(--on-dark-0); border: 1px solid var(--line-dark); border-radius: var(--r-lg); box-shadow: var(--shadow-2); transform: translateY(calc(100% + 2rem)); opacity: 0; transition: transform 0.6s var(--ease), opacity 0.5s var(--ease); }
.os-cookie.show .os-cookie-card { transform: none; opacity: 1; }
.os-cookie-ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; background: rgba(158,255,0,0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.os-cookie-ico svg { width: 26px; height: 26px; }
.os-cookie-txt { flex: 1; min-width: 0; }
.os-cookie-txt h4 { color: var(--on-dark-0); font-size: 1.05rem; margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.os-cookie-txt p { font-size: 0.88rem; color: var(--on-dark-1); line-height: 1.45; }
.os-cookie-txt a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.os-cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.os-cookie-actions .btn { padding: 0.75rem 1.3rem; font-size: 0.92rem; }
.os-cookie-actions .btn-outline { color: var(--on-dark-0); border-color: var(--line-dark); }
.os-cookie-actions .btn-outline:hover { border-color: var(--on-dark-0); }
@media (max-width: 760px) {
    .os-cookie-card { flex-direction: column; align-items: flex-start; gap: 0.9rem; padding: 1.25rem; }
    .os-cookie-ico { display: none; }
    .os-cookie-actions { width: 100%; }
    .os-cookie-actions .btn { flex: 1; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.75s var(--ease), transform 0.95s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.os-card.reveal { transform: translateY(50px) scale(0.97); }
.os-card.reveal.in { transform: none; }
.reveal.d1 { transition-delay: 0.10s; }
.reveal.d2 { transition-delay: 0.20s; }
.reveal.d3 { transition-delay: 0.30s; }
.reveal.d4 { transition-delay: 0.40s; }
.reveal.d5 { transition-delay: 0.50s; }
.reveal.d6 { transition-delay: 0.60s; }

.os-hero-card { opacity: 0; transform: translateY(30px) scale(0.985); transition: opacity 0.95s var(--ease), transform 1.15s var(--ease); }
.os-hero-card.in { opacity: 1; transform: none; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 1080px) {
    :root { --px: 1.25rem; --nav-h: 72px; }
    .os-nav-center { display: none; }
    .os-nav-toggle { display: flex; }
    .logo-desktop { display: none; }
    .logo-mobile { display: block; height: 34px; }
    #navAuthLinks .os-signin { display: none; }
    /* signed-in chrome must fit next to the hamburger */
    .nav-user-name { display: none; }
    .nav-user-btn { padding: 0.3rem; }
    .nav-user-btn > svg { display: none; }
    .nav-credits { padding: 0.42rem 0.65rem; font-size: 0.8rem; gap: 0.3rem; }
    #navAppCta { padding: 0.6rem 1rem; font-size: 0.88rem; }
}
@media (max-width: 560px) {
    body.os-signed-in #navAppCta { display: none !important; } /* lives in the mobile menu instead */
    .nav-credits .credit-icon { display: none; }
}
@media (max-width: 1080px) {
    .os-mobile-menu { display: flex; position: fixed; inset: 0; z-index: 120; background: var(--bg-0); padding: 5.5rem var(--px) 2.5rem; overflow-y: auto; -webkit-overflow-scrolling: touch; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(-14px); transition: opacity 0.35s var(--ease), transform 0.45s var(--ease), visibility 0.45s; }
    .os-mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
    .os-mm-close { position: fixed; top: 1rem; right: var(--px); width: 46px; height: 46px; border-radius: 50%; background: var(--bg-1); border: 1px solid var(--line); box-shadow: var(--shadow-1); display: flex; align-items: center; justify-content: center; z-index: 122; }
    .os-mm-close svg { width: 20px; height: 20px; color: var(--ink-0); }
    .os-mm-group { border-bottom: 1px solid var(--line); }
    .os-mm-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.3rem 0.25rem; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--ink-0); letter-spacing: -0.02em; }
    .os-mm-trigger svg { width: 20px; height: 20px; color: var(--ink-2); transition: transform 0.35s var(--ease); }
    .os-mm-group.open .os-mm-trigger svg { transform: rotate(180deg); color: var(--accent-deep); }
    .os-mm-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
    .os-mm-sub-inner { overflow: hidden; min-height: 0; display: flex; flex-direction: column; padding: 0 0.25rem; opacity: 0; transform: translateY(-6px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), padding-bottom 0.45s var(--ease); }
    .os-mm-group.open .os-mm-sub { grid-template-rows: 1fr; }
    .os-mm-group.open .os-mm-sub-inner { opacity: 1; transform: none; padding-bottom: 1rem; }
    .os-mm-sub a { padding: 0.6rem 0; font-size: 1.15rem; color: var(--ink-1); }
    .os-mm-sub a:hover { color: var(--accent-deep); }
    .os-mm-cta { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
    .os-mm-cta .btn { width: 100%; padding: 1.1rem; font-size: 1.1rem; }

    .os-grid.cols-3 { grid-template-columns: 1fr; }
    .os-track .os-card { flex: 0 0 78%; }
    .os-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .os-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
    :root { --px: 1.1rem; }
    .os-hero-card { min-height: 70vh; }
    .os-track .os-card { flex: 0 0 86%; min-height: 480px; }
    .os-news-form { flex-direction: column; }
    .os-news-form .btn { width: 100%; }
    .os-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) { .os-footer-top { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    .reveal, .os-hero-card { opacity: 1 !important; transform: none !important; }
    .cleom-anim .reveal-words .rw { opacity: 1 !important; filter: none !important; transform: none !important; }
}

/* ============================================================
   HOMEPAGE 6.3 — premium creative-OS landing
   ============================================================ */

/* ---- tighter rhythm ---- */
.os-headline { height: 118vh; }
.os-section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.os-cta { padding: clamp(4rem, 9vw, 8rem) 0; }

/* ---- custom cursor + cursor-reactive glow ---- */
.os-cursor { display: none; }
.os-cursor-glow { position: absolute; width: 46vw; height: 46vw; border-radius: 50%; left: 0; top: 0; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(158,255,0,0.12), transparent 62%); pointer-events: none; opacity: 0; transition: opacity 0.5s; will-change: transform; }
@media (hover: hover) and (pointer: fine) {
    body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
    .os-cursor { display: block; position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); will-change: transform; }
    .oc-dot { position: absolute; left: 0; top: 0; transform: translate(-50%, -50%); width: 7px; height: 7px; border-radius: 50%; background: var(--ink-0); transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s; }
    .oc-halo { position: absolute; left: 0; top: 0; transform: translate(-50%, -50%); width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(158,255,0,0.8); box-shadow: 0 0 18px rgba(158,255,0,0.35); transition: width 0.28s var(--ease), height 0.28s var(--ease), border-color 0.2s, background 0.2s; }
    .os-cursor.hot .oc-halo { width: 56px; height: 56px; background: rgba(158,255,0,0.10); }
    .os-cursor.hot .oc-dot { width: 5px; height: 5px; background: var(--accent-deep); }
    .os-cursor.grab .oc-halo { width: 64px; height: 64px; border-style: dashed; }
}

/* ---- HERO ---- */
.os-hero { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; padding: 0.5rem 0 clamp(2rem, 5vw, 4rem); }
.os-hero-card { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--dark); width: 100%; min-height: clamp(540px, 62vw, 740px); display: flex; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-2); }
.os-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.92; z-index: 0; }
.os-hero-veil { position: absolute; inset: 0; z-index: 1; background: radial-gradient(70% 90% at 50% 38%, rgba(12,13,10,0.30), rgba(12,13,10,0.66)); }
.os-hero-card .os-hero-glow { z-index: 1; }
.os-hero-inner { position: relative; z-index: 3; }
.os-hero h1 { font-size: clamp(2.7rem, 6.6vw, 6.2rem); line-height: 0.98; letter-spacing: -0.045em; }
.os-hero .lead { max-width: 660px; }
.hero-cta { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn-hero-ghost { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(6px); }
.btn-hero-ghost:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }

/* floating hero chips */
.hero-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.95rem; background: rgba(20,22,15,0.55); border: 1px solid rgba(244,245,238,0.14); backdrop-filter: blur(10px); border-radius: var(--r-md); box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6); text-align: left; animation: chipFloat 6s ease-in-out infinite alternate; }
.hero-chip b { color: var(--on-dark-0); font-size: 0.82rem; font-weight: 600; display: block; line-height: 1.1; }
.hero-chip span { color: var(--on-dark-1); font-size: 0.72rem; }
.hc1 { left: 5%; top: 16%; }
.hc2 { right: 5%; top: 26%; animation-delay: 1.2s; }
.hc3 { left: 9%; bottom: 14%; animation-delay: 2.2s; }
@keyframes chipFloat { from { transform: translateY(0); } to { transform: translateY(-12px); } }
.hc-ring { position: relative; width: 36px; height: 36px; flex-shrink: 0; }
.hc-ring svg { width: 36px; height: 36px; transform: rotate(-90deg); }
.hc-ring .bg { fill: none; stroke: rgba(244,245,238,0.18); stroke-width: 3.5; }
.hc-ring .fg { fill: none; stroke: var(--accent); stroke-width: 3.5; stroke-linecap: round; }
.hc-ring b { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: #fff; }
.hc-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(158,255,0,0.6); animation: hcPulse 1.8s infinite; flex-shrink: 0; }
@keyframes hcPulse { 70% { box-shadow: 0 0 0 8px rgba(158,255,0,0); } 100% { box-shadow: 0 0 0 0 rgba(158,255,0,0); } }
.hc-bar { display: block; width: 96px; height: 6px; border-radius: 3px; background: rgba(244,245,238,0.15); margin-top: 0.3rem; overflow: hidden; }
.hc-bar i { display: block; height: 100%; background: var(--accent); border-radius: 3px; }
@media (max-width: 880px) { .hero-chip { display: none; } }

/* ---- spinning inline logo ---- */
.spin-logo { transition: transform 1.2s var(--ease); }
.os-headline.lit .spin-logo { animation: logoSpin 1.2s var(--ease); }
@keyframes logoSpin { from { transform: rotate(-180deg) scale(0.6); opacity: 0.4; } to { transform: none; opacity: 1; } }
.headline-sub { color: var(--ink-1); font-size: clamp(1rem, 1.5vw, 1.25rem); max-width: 40ch; margin: 1.25rem auto 0; }
.os-headline.on-dark .headline-sub { color: var(--on-dark-1); }

/* word-by-word reveal (only hidden when JS is live — see .cleom-anim) */
.cleom-anim .reveal-words .rw { display: inline-block; opacity: 0; filter: blur(8px); transform: translateY(0.35em) scale(0.96); transition: opacity 0.6s var(--ease), filter 0.6s var(--ease), transform 0.6s var(--ease); }
.cleom-anim .reveal-words.lit .rw { opacity: 1; filter: blur(0); transform: none; }

/* ---- BENTO ---- */
.bento-sec { padding-top: clamp(2rem, 4vw, 3rem); }
.bento-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.bento-head .cat-chip { margin-bottom: 1.1rem; }
.bento-head h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; letter-spacing: -0.04em; margin-bottom: 0.85rem; }
.bento-head .lead { max-width: 560px; margin: 0 auto; }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 168px; gap: 1rem; position: relative; }
.bento-card { position: relative; border-radius: var(--r-lg); padding: 1.5rem; overflow: hidden; cursor: grab; touch-action: pan-y; will-change: transform; transition: transform 0.5s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s; display: flex; flex-direction: column; }
.bento-card h3 { font-size: clamp(1.2rem, 1.7vw, 1.55rem); font-weight: 600; letter-spacing: -0.02em; }
.bento-card p { font-size: 0.88rem; line-height: 1.45; margin-top: 0.4rem; opacity: 0.78; }
.bento-ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; margin-bottom: auto; }
.bento-ic svg { width: 22px; height: 22px; }
.bento-card.v-dark { background: var(--dark); color: var(--on-dark-0); border: 1px solid var(--line-dark); }
.bento-card.v-ink { background: #11160D; color: var(--on-dark-0); border: 1px solid var(--line-dark); }
.bento-card.v-light { background: var(--bg-1); color: var(--ink-0); border: 1px solid var(--line); }
.bento-card.v-neon { background: linear-gradient(155deg, #C9FF6E, #9EFF00); color: #16240A; }
.bento-card.v-dark .bento-ic, .bento-card.v-ink .bento-ic { background: rgba(158,255,0,0.14); color: var(--accent); }
.bento-card.v-light .bento-ic { background: var(--accent-soft); color: var(--accent-deep); }
.bento-card.v-neon .bento-ic { background: rgba(12,13,10,0.12); color: #16240A; }
.bento-card::after { content: ''; position: absolute; right: -60px; bottom: -60px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(158,255,0,0.16), transparent 65%); opacity: 0; transition: opacity 0.3s; }
.bento-card.v-light::after { background: radial-gradient(circle, rgba(158,255,0,0.22), transparent 65%); }
.bento-card:hover { transform: translateY(-6px) scale(1.012); }
.bento-card:hover::after { opacity: 1; }
.bento-tag { position: absolute; top: 1.3rem; right: 1.3rem; font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.18rem 0.5rem; border-radius: var(--r-full); background: rgba(158,255,0,0.14); color: var(--accent); }
.bento-card.dragging { cursor: grabbing; z-index: 20; box-shadow: 0 30px 70px -20px rgba(12,13,10,0.5), 0 0 0 2px var(--accent); transition: box-shadow 0.2s; }
.bento.is-dragging { background-image: radial-gradient(var(--line) 1.2px, transparent 1.2px); background-size: 22px 22px; border-radius: var(--r-lg); }
/* bento spans */
.b-game { grid-column: span 2; grid-row: span 2; }
.b-steam { grid-column: span 2; }
.b-ads { grid-column: span 2; grid-row: span 2; }
.b-trailer { grid-column: span 2; }
.b-asset { grid-column: span 2; }
.b-insights { grid-column: span 2; }
.b-game p, .b-ads p { font-size: 0.95rem; }
.bento-hint { text-align: center; margin-top: 1.5rem; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-2); letter-spacing: 0.04em; }
@media (max-width: 920px) { .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .b-game, .b-steam, .b-ads, .b-trailer, .b-asset, .b-insights { grid-column: span 1; grid-row: span 1; } .b-game, .b-ads { grid-column: span 2; } .bento-card { cursor: default; } }

/* ---- FEATURE CARDS (with images) ---- */
.feat-card { background: var(--dark); color: var(--on-dark-0); border: 1px solid var(--line-dark); }
.feat-card .os-card-head { padding: 1.9rem 1.9rem 0; }
.feat-card h3 { color: var(--on-dark-0); font-size: clamp(1.4rem, 2vw, 1.95rem); }
.feat-card .os-card-head p { color: var(--on-dark-1); font-size: 0.92rem; margin-top: 0.5rem; line-height: 1.45; }
.feat-card .os-card-art { margin-top: 1.4rem; }
.feat-card .os-card-art img { transition: transform 0.6s var(--ease); }
.feat-card:hover .os-card-art img { transform: scale(1.04); }
.os-track .feat-card { min-height: clamp(460px, 40vw, 560px); }

/* ---- DEFINE ONCE node lines ---- */
.define-sec { position: relative; }
.os-node-lines { position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none; background-image: linear-gradient(rgba(62,122,0,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(62,122,0,0.06) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(60% 55% at 50% 45%, #000, transparent 75%); -webkit-mask-image: radial-gradient(60% 55% at 50% 45%, #000, transparent 75%); }

/* ---- THREE-STEP ---- */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.step-card { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--ink-0); }
.step-head { padding: 1.6rem 1.6rem 1.2rem; }
.step-n { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent-deep); letter-spacing: 0.1em; }
.step-head h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-weight: 600; letter-spacing: -0.02em; margin: 0.5rem 0 0.5rem; }
.step-head p { font-size: 0.88rem; color: var(--ink-1); line-height: 1.5; }
.step-art { margin: 0 0.9rem 0.9rem; aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; background: var(--dark); position: relative; }
.step-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(12,13,10,0.25)); }
.step-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.step-card:hover .step-art img { transform: scale(1.05); }
@media (max-width: 860px) { .step-grid { grid-template-columns: 1fr; } }

.os-trust-sec { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* enhanced reveal: gentle blur in */
.reveal { filter: blur(6px); }
.reveal.in { filter: blur(0); }

/* ============================================================
   HOMEPAGE 6.4 — hero2, veins, game-like system, image cards
   ============================================================ */

/* nav sits a touch lower */
.os-nav { padding-top: 0.95rem; }

/* ---- flowing veins (full page + sections) ---- */
.os-veins-fixed { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.6; }
.os-veins { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.9; }
.veins-svg { width: 100%; height: 100%; display: block; }
.vein { fill: none; stroke: var(--accent-deep); stroke-width: 1.4; stroke-linecap: round; opacity: 0.16; stroke-dasharray: 10 26; animation: veinFlow 12s linear infinite; }
.os-veins-fixed .vein { opacity: 0.08; }
.vein:nth-child(2) { animation-duration: 16s; opacity: 0.12; }
.vein:nth-child(3) { animation-duration: 19s; }
.vein:nth-child(4) { animation-duration: 14s; opacity: 0.13; }
.vein:nth-child(5) { animation-duration: 22s; opacity: 0.10; }
@keyframes veinFlow { to { stroke-dashoffset: -360; } }
.veined .os-headline-pin { z-index: 1; }

/* ---- HERO (image-led, no overlay text) ---- */
.os-hero-bare { align-items: stretch; justify-content: flex-start; }
.os-hero-bare .os-hero-img { opacity: 1; }
.os-hero-bare .os-hero-veil { background: radial-gradient(80% 90% at 50% 30%, transparent 40%, rgba(12,13,10,0.18)); }
.hero-chip.hc4 { right: 7%; bottom: 30%; animation-delay: 1.7s; }
.hero-chip.hc5 { left: 6%; top: 44%; animation-delay: 2.8s; }
.hc-ic { width: 28px; height: 28px; border-radius: 8px; background: rgba(158,255,0,0.16); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.hc-ic svg { width: 15px; height: 15px; }
.hc-pulse.alt { background: #5BC8FF; box-shadow: 0 0 0 0 rgba(91,200,255,0.6); }
.hero-fab { position: absolute; left: 50%; bottom: clamp(1.4rem, 3vw, 2.4rem); transform: translateX(-50%); z-index: 4; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.6rem; border-radius: var(--r-full); background: var(--accent); color: var(--accent-ink); font-weight: 700; font-size: 1rem; box-shadow: var(--glow); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.hero-fab:hover { transform: translateX(-50%) translateY(-3px); box-shadow: 0 14px 40px rgba(158,255,0,0.5); }
.hero-fab svg { width: 16px; height: 16px; }
@media (max-width: 880px) { .hero-fab { font-size: 0.92rem; padding: 0.75rem 1.3rem; } }

/* ---- cleaner sticky headline: long calm hold (not a flash) ---- */
.os-headline { height: 168vh; }
.headline-sub { transition: opacity 0.6s var(--ease) 0.25s, transform 0.6s var(--ease) 0.25s; opacity: 0; transform: translateY(10px); }
.os-headline.lit .headline-sub { opacity: 1; transform: none; }

/* ---- LAUNCH SYSTEM (constellation) ---- */
.system-sec { padding-top: clamp(2rem, 4vw, 3rem); }
.system { position: relative; height: clamp(460px, 56vw, 600px); max-width: 1000px; margin: 0 auto; }
.sys-links { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }
.sys-link { stroke: var(--line-2); stroke-width: 1.5; stroke-dasharray: 6 8; opacity: 0.55; animation: veinFlow 6s linear infinite; transition: stroke 0.25s, stroke-width 0.25s, opacity 0.25s; }
.sys-link.hot { stroke: var(--accent); stroke-width: 2.6; opacity: 1; filter: drop-shadow(0 0 6px rgba(158,255,0,0.6)); }
.sys-node { position: absolute; transform: translate(-50%, -50%); z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: clamp(126px, 14vw, 158px); height: clamp(108px, 12vw, 132px); padding: 1rem; border-radius: var(--r-lg); background: var(--bg-1); border: 1px solid var(--line); box-shadow: var(--shadow-1); transition: transform 0.35s var(--ease), box-shadow 0.3s, border-color 0.25s; cursor: pointer; }
.sys-node h3 { font-size: clamp(0.95rem, 1.2vw, 1.1rem); font-weight: 600; letter-spacing: -0.015em; }
.sn-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 0.55rem; transition: transform 0.35s var(--ease); }
.sn-ic svg { width: 20px; height: 20px; }
.sys-node:hover { transform: translate(-50%, -50%) scale(1.07); border-color: var(--accent); box-shadow: 0 18px 44px -16px rgba(12,13,10,0.3), 0 0 0 1px var(--accent); }
.sys-node:hover .sn-ic { transform: scale(1.12) rotate(-4deg); }
.n-core { width: clamp(190px, 22vw, 250px); height: clamp(170px, 20vw, 224px); background: var(--dark); color: var(--on-dark-0); border-color: var(--line-dark); left: 50%; top: 50%; z-index: 3; }
.n-core h3 { font-size: clamp(1.1rem, 1.5vw, 1.4rem); }
.n-core .sn-ic { width: 50px; height: 50px; background: rgba(158,255,0,0.14); color: var(--accent); }
.n-core .sn-ic svg { width: 26px; height: 26px; }
.sn-sub { font-size: 0.74rem; color: var(--on-dark-1); margin-top: 0.3rem; }
.sn-core-glow { position: absolute; inset: -30%; border-radius: 50%; background: radial-gradient(circle, rgba(158,255,0,0.18), transparent 60%); animation: corePulse 3.5s ease-in-out infinite; }
.n-core.pulse .sn-core-glow { animation-duration: 1.4s; }
@keyframes corePulse { 0%,100% { opacity: 0.5; transform: scale(0.92); } 50% { opacity: 1; transform: scale(1.06); } }
/* pentagon orbit positions */
.n1 { left: 50%; top: 11%; }
.n2 { left: 87%; top: 39%; }
.n3 { left: 72%; top: 86%; }
.n4 { left: 28%; top: 86%; }
.n5 { left: 13%; top: 39%; }
@media (max-width: 860px) {
    .system { position: static; height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .sys-links { display: none; }
    .sys-node { position: static; transform: none; width: auto; height: auto; min-height: 124px; }
    .sys-node:hover { transform: scale(1.02); }
    .n-core { grid-column: 1 / -1; width: auto; height: auto; min-height: 150px; flex-direction: row; gap: 1rem; }
    .n-core .sn-ic { margin-bottom: 0; }
}

/* ---- IMAGE CARDS (surfaces + how-it-works) ---- */
.img-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; background: var(--dark); aspect-ratio: 1122 / 1402; border: 1px solid var(--line-dark); transition: transform 0.45s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s; }
.img-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.img-card .img-shine { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 30%, rgba(158,255,0,0.18) 48%, transparent 66%); transform: translateX(-120%); transition: transform 0.8s var(--ease); }
.img-card::after { content: ''; position: absolute; inset: 0; border-radius: var(--r-lg); box-shadow: inset 0 0 0 0 rgba(158,255,0,0); transition: box-shadow 0.35s var(--ease); pointer-events: none; }
.img-card:hover { transform: translateY(-8px); box-shadow: 0 30px 64px -24px rgba(12,13,10,0.45); border-color: var(--accent); }
.img-card:hover img { transform: scale(1.05); }
.img-card:hover .img-shine { transform: translateX(120%); }
.img-card:hover::after { box-shadow: inset 0 0 0 2px rgba(158,255,0,0.55); }
.os-track .img-card { flex: 0 0 clamp(300px, 26vw, 400px); scroll-snap-align: start; }
.step-grid .img-card.step-img { aspect-ratio: 1122 / 1402; }
@media (max-width: 860px) { .step-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
@media (max-width: 680px) { .os-track .img-card { flex: 0 0 78%; } }

/* ---- TRUSTED BY ---- */
.os-trust-div { width: 64px; height: 1px; background: var(--line); margin: clamp(2rem, 4vw, 3rem) auto clamp(1.5rem, 3vw, 2.25rem); }
.os-trust-label.sub { font-size: 0.72rem; margin-bottom: 1.5rem; }
.os-trust-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.25rem, 3.5vw, 3rem); }
.os-trust-logos span { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 1.8vw, 1.45rem); letter-spacing: -0.01em; color: var(--ink-2); transition: color 0.2s, transform 0.2s; }
.os-trust-logos span:hover { color: var(--ink-0); transform: translateY(-2px); }

/* ============================================================
   HOMEPAGE 6.5 — "Everything your game needs to launch"
   Mission/loadout cards · premium empty image cards · process
   ============================================================ */

/* colorful accents (used sparingly alongside lime) */
:root {
    --c-lime:     #9EFF00;
    --c-lavender: #B8A9FF;
    --c-mint:     #7FE7C4;
    --c-yellow:   #FFE066;
    --c-coral:    #FF8A6B;
    --c-blue:     #5BC8FF;
}

/* ---- HERO (image + overlay copy) ---- */
.os-hero-veil.strong { background: radial-gradient(75% 95% at 50% 32%, rgba(12,13,10,0.42), rgba(12,13,10,0.74)); }
.os-hero-card .os-hero-tag { color: var(--accent); margin-bottom: 1.4rem; }
.os-hero-card h1 { color: #fff; }
.os-hero-card .lead { color: rgba(244,245,238,0.86); }

/* ---- CHOOSE YOUR NEXT MISSION ---- */
.mission-sec { padding-top: clamp(1rem, 3vw, 2rem); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.mission-card { --mc: var(--c-lime); --mc-soft: rgba(158,255,0,0.14); position: relative; display: flex; flex-direction: column; min-height: 232px; padding: 1.5rem 1.5rem 1.4rem; border-radius: var(--r-lg); background: var(--bg-1); border: 1px solid var(--line); box-shadow: var(--shadow-1); overflow: hidden; cursor: grab; touch-action: pan-y; will-change: transform; transition: transform 0.5s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s; }
.mission-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--mc); opacity: 0.9; transition: width 0.3s var(--ease); }
.mission-card::after { content: ''; position: absolute; right: -70px; bottom: -70px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, var(--mc-soft), transparent 66%); opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none; }
.m-chip { align-self: flex-start; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 0.7rem; border-radius: var(--r-full); background: var(--mc-soft); color: var(--ink-0); border: 1px solid color-mix(in srgb, var(--mc) 55%, transparent); }
.m-body { margin-top: auto; }
.mission-card h3 { font-size: clamp(1.3rem, 1.9vw, 1.65rem); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 0.4rem; }
.mission-card p { font-size: 0.9rem; line-height: 1.45; color: var(--ink-1); max-width: 26ch; }
.m-slot { position: absolute; inset: 1.3rem 1.3rem auto auto; width: 46px; height: 46px; border-radius: 13px; background: var(--mc-soft); border: 1px solid color-mix(in srgb, var(--mc) 40%, transparent); transition: transform 0.4s var(--ease), background 0.3s; }
.m-go { position: absolute; right: 1.4rem; bottom: 1.4rem; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); color: var(--ink-0); opacity: 0; transform: translateY(6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s; }
.m-go svg { width: 15px; height: 15px; }
.mission-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--mc) 70%, var(--line)); box-shadow: 0 26px 60px -24px color-mix(in srgb, var(--mc) 45%, rgba(12,13,10,0.4)); }
.mission-card:hover::before { width: 6px; }
.mission-card:hover::after { opacity: 1; }
.mission-card:hover .m-slot { transform: rotate(-6deg) scale(1.08); background: color-mix(in srgb, var(--mc) 26%, transparent); }
.mission-card:hover .m-go { opacity: 1; transform: none; background: var(--mc); }
/* dragging / selected-mission feel */
.mission-card.lifted { cursor: grabbing; z-index: 30; transition: box-shadow 0.2s, border-color 0.2s; box-shadow: 0 40px 90px -24px color-mix(in srgb, var(--mc) 50%, rgba(12,13,10,0.55)), 0 0 0 2px var(--mc); border-color: var(--mc); }
.mission-card.lifted::before { width: 6px; }
.mission-card.lifted::after { opacity: 1; }
.mission-card.lifted .m-chip { background: var(--mc); color: #0C0D0A; }
.mission-card .m-picked { position: absolute; left: 50%; top: 0.9rem; transform: translateX(-50%) translateY(-6px); font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.22rem 0.7rem; border-radius: var(--r-full); background: var(--mc); color: #0C0D0A; opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); white-space: nowrap; z-index: 4; }
.mission-card.lifted .m-picked { opacity: 1; transform: translateX(-50%); }
.mission-grid.is-dragging { background-image: radial-gradient(var(--line) 1.2px, transparent 1.2px); background-size: 22px 22px; border-radius: var(--r-xl); }
/* color variants */
.m-blue     { --mc: var(--c-blue);     --mc-soft: rgba(91,200,255,0.16); }
.m-coral    { --mc: var(--c-coral);    --mc-soft: rgba(255,138,107,0.16); }
.m-lime     { --mc: var(--c-lime);     --mc-soft: rgba(158,255,0,0.16); }
.m-lavender { --mc: var(--c-lavender); --mc-soft: rgba(184,169,255,0.18); }
.m-yellow   { --mc: var(--c-yellow);   --mc-soft: rgba(255,224,102,0.20); }
.m-mint     { --mc: var(--c-mint);     --mc-soft: rgba(127,231,196,0.18); }
@media (max-width: 920px) { .mission-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mission-grid { grid-template-columns: 1fr; } .mission-card { cursor: default; } }

/* ---- EMPTY IMAGE CARDS (premium, ready for your visuals) ---- */
.img-card.empty { --ic: var(--c-lime); --ic-soft: rgba(158,255,0,0.12); display: flex; align-items: flex-end; justify-content: flex-start; background: linear-gradient(160deg, #16170F 0%, #0C0D0A 70%); border: 1px solid var(--line-dark); padding: 1.4rem; }
.img-card.empty::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 55% at 50% 28%, var(--ic-soft), transparent 70%); opacity: 0.7; transition: opacity 0.5s var(--ease); }
.img-card.empty .img-glow { position: absolute; inset: 0; pointer-events: none; opacity: 0; background: radial-gradient(60% 50% at 50% 35%, color-mix(in srgb, var(--ic) 26%, transparent), transparent 70%); transition: opacity 0.5s var(--ease); }
.img-card.empty .ic-label { position: relative; z-index: 2; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 1.5vw, 1.3rem); letter-spacing: -0.02em; color: var(--on-dark-0); }
.img-card.empty .ic-label::before { content: ''; display: block; width: 26px; height: 3px; border-radius: 2px; background: var(--ic); margin-bottom: 0.7rem; transition: width 0.4s var(--ease); }
.img-card.empty::after { box-shadow: none; }
.img-card.empty:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--ic) 60%, var(--line-dark)); box-shadow: 0 34px 70px -26px color-mix(in srgb, var(--ic) 36%, rgba(12,13,10,0.6)); }
.img-card.empty:hover::before { opacity: 1; }
.img-card.empty:hover .img-glow { opacity: 1; }
.img-card.empty:hover .ic-label::before { width: 48px; }
/* image-card color variants */
.img-card.c-blue     { --ic: var(--c-blue);     --ic-soft: rgba(91,200,255,0.14); }
.img-card.c-coral    { --ic: var(--c-coral);    --ic-soft: rgba(255,138,107,0.14); }
.img-card.c-lime     { --ic: var(--c-lime);     --ic-soft: rgba(158,255,0,0.14); }
.img-card.c-lavender { --ic: var(--c-lavender); --ic-soft: rgba(184,169,255,0.16); }
.img-card.c-yellow   { --ic: var(--c-yellow);   --ic-soft: rgba(255,224,102,0.16); }
.img-card.c-mint     { --ic: var(--c-mint);     --ic-soft: rgba(127,231,196,0.16); }

/* ---- PROCESS CARDS (how it works) ---- */
.proc-sec { padding-top: clamp(1rem, 3vw, 2rem); }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.proc-card { position: relative; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem 1.6rem 1.6rem; overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s; }
.proc-n { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; color: var(--accent-deep); }
.proc-card h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); font-weight: 600; letter-spacing: -0.02em; margin: 0.7rem 0 0.5rem; }
.proc-card p { font-size: 0.92rem; line-height: 1.55; color: var(--ink-1); }
.proc-slot { margin-top: 1.4rem; height: 96px; border-radius: var(--r-md); background: linear-gradient(150deg, #F1F3EA, #E4E8D6); border: 1px solid var(--line); position: relative; overflow: hidden; }
.proc-slot::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 70% at 30% 30%, rgba(158,255,0,0.16), transparent 70%); opacity: 0; transition: opacity 0.4s var(--ease); }
.proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--ink-0); }
.proc-card:hover .proc-slot::after { opacity: 1; }
@media (max-width: 860px) { .proc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOMEPAGE 6.6 — reference-match: hero shot, mission carousel,
   One OS split, feature set, From idea, See-what split
   ============================================================ */

.lime { background: linear-gradient(90deg, #8FE000, #4FA200); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---- HERO (light, headline + shot) ---- */
.os-hero2 { padding: clamp(0.5rem, 2vw, 1.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero2-wrap { text-align: center; }
.hero2-head { position: relative; max-width: 940px; margin: 0 auto; padding-top: clamp(1.5rem, 4vw, 3rem); }
.hero2-head h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1.0; color: var(--ink-0); }
.hero2-sub { color: var(--ink-1); font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 620px; margin: 1.35rem auto 2rem; line-height: 1.5; }
.hero2-head .hero-cta { justify-content: center; }
.float-ic { position: absolute; width: clamp(56px, 7vw, 92px); height: clamp(56px, 7vw, 92px); border-radius: 22px; display: grid; place-items: center; box-shadow: 0 20px 44px -14px rgba(12,13,10,0.4); transform: rotate(-9deg); animation: floatM 5s ease-in-out infinite alternate; z-index: 1; }
.float-ic svg { width: 56%; height: 56%; }
.fi-clap { left: 1%; top: 6%; background: linear-gradient(150deg, #C3B6FF, #8E78F0); color: #5b46b8; transform: rotate(-10deg); }
.fi-img { right: 1%; top: 16%; background: linear-gradient(150deg, #FFC2AE, #FF7E5A); color: #b8492c; transform: rotate(9deg); animation-delay: 1.2s; }
@keyframes floatM { from { margin-top: 0; } to { margin-top: -14px; } }
.hero2-shot { margin: clamp(2rem, 4.5vw, 3.5rem) auto 0; max-width: 1180px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid var(--line); background: var(--dark); }
.hero2-shot img { width: 100%; height: auto; display: block; }
@media (max-width: 760px) { .float-ic { display: none; } }

/* ---- MISSION CAROUSEL (image cards) ---- */
.mission-cards { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.mission-cards .os-track { padding: 0.5rem 0 1rem; }
.mcard { flex: 0 0 clamp(258px, 25vw, 318px); scroll-snap-align: start; display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; min-height: 344px; box-shadow: var(--shadow-1); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.mcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); }
.mc-img { flex: 1; overflow: hidden; position: relative; min-height: 200px; }
.mc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.mcard:hover .mc-img img { transform: scale(1.05); }
.mc-txt { padding: 1.1rem 1.25rem 1.3rem; }
.mc-txt h3 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; letter-spacing: -0.02em; }
.mc-txt p { font-size: 0.86rem; margin-top: 0.3rem; opacity: 0.82; line-height: 1.4; }
.mc-lime { background: linear-gradient(165deg, #E3FFB5, #C2F77E); color: #16240A; }
.mc-lavender { background: linear-gradient(165deg, #ECE6FF, #CFC2FF); color: #211a3a; }
.mc-blue { background: linear-gradient(165deg, #20304e, #0f1726); color: #eef3ff; }
.mc-yellow { background: linear-gradient(165deg, #FFF1B8, #FFE177); color: #2a2208; }
.mc-coral { background: linear-gradient(165deg, #FFDCCC, #FFB199); color: #3a1608; }
.mc-mint { background: linear-gradient(165deg, #D2F8E8, #A1EACB); color: #08261a; }
@media (max-width: 680px) { .mcard { flex: 0 0 80%; } }

/* ---- ONE OS — split ---- */
.oneos-sec { padding-top: clamp(1rem, 2vw, 1.5rem); }
.oneos-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.oneos-text .eyebrow { margin-bottom: 1.1rem; }
.oneos-text h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; }
.oneos-text .lead { margin: 1rem 0 1.4rem; }
.oneos-list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.7rem; }
.oneos-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.96rem; color: var(--ink-0); }
.ol-tick { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #0c0d0a; display: grid; place-items: center; flex-shrink: 0; }
.ol-tick svg { width: 14px; height: 14px; }
.oneos-shot { border-radius: var(--r-xl); box-shadow: var(--shadow-2); }
.app-mock { display: grid; grid-template-columns: 84px 1fr 132px; gap: 10px; background: #0b0c08; border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 12px; min-height: 320px; }
.am-side { background: #121309; border-radius: 12px; padding: 10px; display: flex; flex-direction: column; gap: 7px; }
.am-brand { display: flex; align-items: center; gap: 5px; font-size: 0.62rem; color: var(--on-dark-0); font-weight: 600; }
.am-logo { width: 12px; height: 12px; border-radius: 3px; background: var(--accent); }
.am-new { font-size: 0.5rem; color: #0c0d0a; background: var(--accent); border-radius: 6px; padding: 5px; text-align: center; font-weight: 700; margin: 2px 0 4px; }
.am-nav { height: 9px; border-radius: 4px; background: #1f2113; }
.am-nav.on { background: rgba(158,255,0,0.45); }
.am-foot { margin-top: auto; height: 26px; border-radius: 8px; background: #1a1c10; }
.am-main { background: #101108; border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 9px; }
.am-bar { display: flex; align-items: center; height: 30px; border-radius: 8px; background: #181a0e; padding: 0 8px; }
.am-bar span { flex: 1; height: 7px; border-radius: 4px; background: #24260f; margin-right: 8px; }
.am-bar b { font-size: 0.5rem; color: #0c0d0a; background: var(--accent); border-radius: 5px; padding: 4px 8px; }
.am-prevs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; flex: 1; }
.am-prevs i { border-radius: 7px; }
.am-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; height: 42px; }
.am-row i { border-radius: 6px; }
.g0 { background: linear-gradient(160deg, #1c3a2a, #0a1410); } .g1 { background: linear-gradient(160deg, #3a1f15, #140a08); }
.g2 { background: linear-gradient(160deg, #15243a, #0a0f16); } .g3 { background: linear-gradient(160deg, #2a1a3a, #120a16); } .g4 { background: linear-gradient(160deg, #1a2a10, #0c1207); }
.am-rail { background: #121309; border-radius: 12px; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.am-q { display: flex; align-items: center; gap: 5px; }
.am-q .d { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.am-q .d.ok { background: var(--accent); } .am-q .d.wip { background: #FFB020; }
.am-q u { flex: 1; height: 8px; border-radius: 4px; background: #1f2113; }
.am-spark { margin-top: auto; color: var(--accent); }
.am-spark svg { width: 100%; height: 36px; }

/* ---- FEATURE SET ---- */
.feat-sec { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.feat-set { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.fcard { display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; min-height: 300px; box-shadow: var(--shadow-1); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.fc-txt { padding: 1.2rem 1.2rem 0.5rem; }
.fc-txt h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; letter-spacing: -0.02em; }
.fc-txt p { font-size: 0.82rem; margin-top: 0.3rem; opacity: 0.82; line-height: 1.4; }
.fc-img { flex: 1; margin-top: 0.5rem; overflow: hidden; position: relative; min-height: 140px; }
.fc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.fcard:hover .fc-img img { transform: scale(1.05); }
.fc-lime { background: linear-gradient(165deg, #E3FFB5, #C2F77E); color: #16240A; }
.fc-lavender { background: linear-gradient(165deg, #ECE6FF, #CFC2FF); color: #211a3a; }
.fc-skyblue { background: linear-gradient(165deg, #DCEEFF, #AAD6FF); color: #0d2236; }
.fc-yellow { background: linear-gradient(165deg, #FFF1B8, #FFE177); color: #2a2208; }
.fc-mint { background: linear-gradient(165deg, #D2F8E8, #A1EACB); color: #08261a; }
@media (max-width: 1080px) { .feat-set { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .feat-set { grid-template-columns: 1fr 1fr; } }

/* ---- FROM IDEA — 3 steps ---- */
.idea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.icard { display: flex; flex-direction: column; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.5rem 0; overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s; }
.icard:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--ink-0); }
.ic-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.5rem; }
.ic-n { width: 30px; height: 30px; border-radius: 9px; background: var(--accent); color: #0c0d0a; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.ic-head h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; letter-spacing: -0.02em; }
.icard p { font-size: 0.9rem; color: var(--ink-1); line-height: 1.5; }
.ic-img { margin: 1.2rem -1.5rem 0; overflow: hidden; aspect-ratio: 16/10; background: var(--dark); }
.ic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.icard:hover .ic-img img { transform: scale(1.04); }
@media (max-width: 860px) { .idea-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ---- SEE WHAT ACTUALLY WORKS — split ---- */
.seewhat-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.seewhat-text h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; }
.seewhat-text .lead { margin: 1rem 0 1.4rem; }
.sw-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.1rem; border-radius: var(--r-full); background: rgba(158,255,0,0.14); border: 1px solid rgba(62,122,0,0.3); color: var(--accent-deep); font-weight: 600; font-size: 0.9rem; }
.sw-badge svg { width: 16px; height: 16px; }
.seewhat-shot { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid var(--line-dark); background: var(--dark); }
.seewhat-shot img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) { .oneos-split, .seewhat-split { grid-template-columns: 1fr; } }

/* ---- CTA note ---- */
.cta-note { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1rem; font-size: 0.88rem; color: var(--ink-2); }
.cta-note svg { width: 15px; height: 15px; color: var(--accent-deep); }

/* ============================================================
   HOMEPAGE 6.7 — navbar nudge, bolder veins, headline burst,
   centered hero, image-only cards with sway hovers
   ============================================================ */

/* 1 · navbar slightly lower */
.os-nav { padding-top: 1.5rem; }

/* 2 · background lines more visible */
.vein { stroke-width: 1.9; opacity: 0.30; }
.vein:nth-child(2) { opacity: 0.22; }
.vein:nth-child(3) { opacity: 0.26; }
.vein:nth-child(4) { opacity: 0.24; }
.vein:nth-child(5) { opacity: 0.20; }
.os-veins-fixed { opacity: 0.85; }
.os-veins-fixed .vein { opacity: 0.16; }
.os-veins .vein { opacity: 0.34; }

/* 3 · scroll-headline burst — sweeping streaks + ring on .lit */
.os-headline-pin::before, .os-headline-pin::after { content: ''; position: absolute; left: 50%; top: 50%; height: 2px; width: 0; transform: translate(-50%, -50%); background: linear-gradient(90deg, transparent, var(--accent), transparent); filter: drop-shadow(0 0 7px rgba(158,255,0,0.7)); opacity: 0; pointer-events: none; z-index: 0; }
.os-headline-pin::after { top: 38%; }
.os-headline.lit .os-headline-pin::before { animation: hSweep 1.1s var(--ease) forwards; }
.os-headline.lit .os-headline-pin::after { animation: hSweep 1.25s var(--ease) 0.12s forwards; }
@keyframes hSweep { 0% { width: 0; opacity: 0; } 25% { opacity: 1; } 60% { width: 118vw; opacity: 0.85; } 100% { width: 140vw; opacity: 0; } }
.os-section-title { position: relative; }
.os-section-title::before { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; border-radius: 50%; transform: translate(-50%, -50%); border: 2px solid var(--accent); opacity: 0; pointer-events: none; z-index: -1; }
.os-headline.lit .os-section-title::before { animation: hRing 1.15s var(--ease) forwards; }
@keyframes hRing { 0% { width: 12px; height: 12px; opacity: 0.85; } 100% { width: 640px; height: 640px; opacity: 0; } }
/* energize section veins on lit */
.os-headline.lit .os-veins .vein { animation-duration: 5s; opacity: 0.5; transition: opacity 0.6s; }

/* 4 · hero — more centered + bigger shot */
.hero2-head { padding-top: clamp(2.5rem, 6vw, 5rem); }
.hero2-shot { max-width: 1320px; }

/* 5 · CHOOSE — image-only cards, no card chrome, gentle sway hover */
.mission-cards .os-track { padding: 1.3rem 0.5rem 1.7rem; overflow-y: visible; }
.mcard { display: block; flex: 0 0 clamp(258px, 25vw, 320px); border-radius: var(--r-lg); overflow: hidden; min-height: 0; background: none; box-shadow: none; transform-origin: center 70%; transition: transform 0.4s var(--ease); }
.mcard img { width: 100%; height: auto; display: block; }
.mcard:hover { transform: none; box-shadow: none; animation: cardSway 1.5s ease-in-out infinite; }
@keyframes cardSway { 0%, 100% { transform: rotate(-1deg); } 50% { transform: rotate(1deg); } }
@media (max-width: 680px) { .mcard { flex: 0 0 80%; } }

/* 6 · FEATURE set — image-only, clean lift hover */
.feat-set { align-items: start; }
.fcard { display: block; min-height: 0; background: none; border: none; box-shadow: none; border-radius: var(--r-lg); overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.fcard img { width: 100%; height: auto; display: block; }
.fcard:hover { transform: translateY(-7px); box-shadow: 0 22px 46px -22px rgba(12,13,10,0.4); }

/* 7 · FROM IDEA — image-only, fit / center / stack */
.idea-grid { align-items: start; }
.icard { display: block; padding: 0; background: none; border: none; box-shadow: none; border-radius: var(--r-lg); overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.icard img { width: 100%; height: auto; display: block; }
.icard:hover { transform: translateY(-6px); box-shadow: 0 22px 46px -22px rgba(12,13,10,0.4); border-color: transparent; }
@media (max-width: 980px) { .idea-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

/* ============================================================
   HOMEPAGE 6.8 — hero video, floating 3D icons, star-spark
   cursor, flip campaign cards
   ============================================================ */

/* ---- hero video ---- */
.hero2-shot video { width: 100%; height: auto; display: block; }

/* ---- floating 3D icons around the hero headline ---- */
.hero-ic { position: absolute; width: clamp(60px, 7vw, 100px); height: auto; pointer-events: none; z-index: 1; filter: drop-shadow(0 18px 30px rgba(12,13,10,0.22)); will-change: transform; }
.hi1 { left: -7%; top: 2%; animation: icoA 13s ease-in-out infinite; }
.hi2 { right: -8%; top: -2%; width: clamp(66px, 7.6vw, 108px); animation: icoB 15s ease-in-out infinite; }
.hi3 { left: -11%; top: 56%; width: clamp(54px, 6.2vw, 88px); animation: icoC 12s ease-in-out infinite; }
.hi4 { right: -10%; top: 52%; animation: icoD 14s ease-in-out infinite; }
.hi5 { left: 15%; top: -14%; width: clamp(50px, 5.8vw, 82px); animation: icoE 16s ease-in-out infinite; }
@keyframes icoA { 0%,100% { transform: translate3d(0,0,0) rotate(-8deg); } 25% { transform: translate3d(16px,-20px,0) rotate(-2deg); } 50% { transform: translate3d(-6px,-34px,0) rotate(-11deg); } 75% { transform: translate3d(-18px,-12px,0) rotate(-5deg); } }
@keyframes icoB { 0%,100% { transform: translate3d(0,0,0) rotate(7deg); } 25% { transform: translate3d(-20px,14px,0) rotate(12deg); } 50% { transform: translate3d(-10px,-22px,0) rotate(3deg); } 75% { transform: translate3d(14px,-10px,0) rotate(9deg); } }
@keyframes icoC { 0%,100% { transform: translate3d(0,0,0) rotate(5deg); } 30% { transform: translate3d(18px,-16px,0) rotate(11deg); } 60% { transform: translate3d(4px,18px,0) rotate(1deg); } 80% { transform: translate3d(-12px,6px,0) rotate(7deg); } }
@keyframes icoD { 0%,100% { transform: translate3d(0,0,0) rotate(-6deg); } 30% { transform: translate3d(-16px,-18px,0) rotate(-12deg); } 55% { transform: translate3d(10px,-28px,0) rotate(-2deg); } 80% { transform: translate3d(16px,8px,0) rotate(-9deg); } }
@keyframes icoE { 0%,100% { transform: translate3d(0,0,0) rotate(9deg); } 25% { transform: translate3d(12px,16px,0) rotate(4deg); } 50% { transform: translate3d(24px,-6px,0) rotate(13deg); } 75% { transform: translate3d(6px,-16px,0) rotate(6deg); } }
@media (max-width: 900px) { .hero-ic { display: none; } }

/* ---- star-spark cursor (native arrow + tiny fireworks) ---- */
.spark-layer { position: fixed; inset: 0; pointer-events: none; z-index: 9999; overflow: hidden; }
.spark { position: absolute; width: 10px; height: 10px; background: var(--accent); clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%); transform: translate(-50%, -50%) scale(var(--sc, 1)); filter: drop-shadow(0 0 5px rgba(158,255,0,0.75)); animation: sparkFly 0.7s cubic-bezier(0.2, 0.6, 0.35, 1) forwards; }
.spark.alt { background: var(--accent-deep); width: 8px; height: 8px; filter: drop-shadow(0 0 4px rgba(62,122,0,0.6)); }
@keyframes sparkFly {
    0% { opacity: 0.95; transform: translate(-50%, -50%) scale(var(--sc, 1)) rotate(0deg); }
    100% { opacity: 0; transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px))) scale(0.05) rotate(var(--rot, 90deg)); }
}

/* ---- CHOOSE — flip cards (in place, no layout shift) ---- */
.mission-cards .os-track { padding: 0.85rem 0.5rem 1.25rem; }
.mcard { position: relative; flex: 0 0 clamp(258px, 25vw, 320px); aspect-ratio: 1086 / 1448; min-height: 0; background: none; border: none; box-shadow: none; overflow: visible; border-radius: 0; perspective: 1300px; transform: none; }
.mcard:hover { transform: none; box-shadow: none; animation: none; }
.mc-inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 0.75s var(--ease); will-change: transform; }
.mcard:hover .mc-inner, .mcard:focus-visible .mc-inner { transform: rotateY(180deg); }
.mc-face { position: absolute; inset: 0; border-radius: var(--r-lg); overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.mc-front img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mc-back { transform: rotateY(180deg); background: linear-gradient(170deg, #14170D 0%, #0C0D0A 70%); border: 1px solid var(--line-dark); display: flex; flex-direction: column; justify-content: center; padding: clamp(1.2rem, 2vw, 1.8rem); }
.mc-back::after { content: ''; position: absolute; right: -70px; top: -70px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(158,255,0,0.16), transparent 66%); pointer-events: none; }
.mb-label { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 1.1rem; }
.mb-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(158,255,0,0.8); }
.mc-back ul { display: flex; flex-direction: column; gap: 0.75rem; }
.mc-back li { position: relative; padding-left: 1.5rem; color: var(--on-dark-0); font-size: clamp(0.84rem, 1vw, 0.95rem); font-weight: 500; line-height: 1.4; }
.mc-back li::before { content: ''; position: absolute; left: 0; top: 0.3em; width: 14px; height: 14px; border-radius: 4px; background: rgba(158,255,0,0.16); }
.mc-back li::after { content: ''; position: absolute; left: 3.5px; top: calc(0.3em + 3.5px); width: 7px; height: 4.5px; border-left: 1.6px solid var(--accent); border-bottom: 1.6px solid var(--accent); transform: rotate(-45deg); }
@media (max-width: 680px) { .mcard { flex: 0 0 80%; } }
@media (prefers-reduced-motion: reduce) { .mc-inner { transition: none; } .mcard:hover .mc-inner { transform: none; } .hero-ic { animation: none !important; } }

/* ============================================================
   HOMEPAGE 6.9 — hero spacing, calmer icons, lime arrow cursor,
   per-color flip backs, drag fix
   ============================================================ */

/* 1 · hero a touch lower (breathing room under the navbar) */
.os-hero2 { padding-top: clamp(2.5rem, 5.5vw, 4.75rem); }

/* 2 · floating icons — behind the headline, lively but smooth drift */
.hero-ic { z-index: 0; }
.hero2-head h1, .hero2-head .hero2-sub, .hero2-head .hero-cta { position: relative; z-index: 2; }
.hi1 { left: -7%; top: 16%; animation: icoA 14s ease-in-out infinite; }
.hi2 { right: -8%; top: 10%; animation: icoB 16s ease-in-out infinite; }
.hi3 { left: -11%; top: 66%; animation: icoC 13s ease-in-out infinite; }
.hi4 { right: -10%; top: 62%; animation: icoD 15s ease-in-out infinite; }
.hi5 { right: -3%; top: 36%; animation: icoE 17s ease-in-out infinite; }
@keyframes icoA { 0%,100% { transform: translate3d(0,0,0) rotate(-8deg); } 25% { transform: translate3d(15px,-18px,0) rotate(-3deg); } 50% { transform: translate3d(-8px,-30px,0) rotate(-11deg); } 75% { transform: translate3d(-16px,-10px,0) rotate(-5deg); } }
@keyframes icoB { 0%,100% { transform: translate3d(0,0,0) rotate(7deg); } 25% { transform: translate3d(-18px,13px,0) rotate(12deg); } 50% { transform: translate3d(-9px,-20px,0) rotate(3deg); } 75% { transform: translate3d(13px,-9px,0) rotate(9deg); } }
@keyframes icoC { 0%,100% { transform: translate3d(0,0,0) rotate(5deg); } 30% { transform: translate3d(16px,-15px,0) rotate(11deg); } 60% { transform: translate3d(4px,16px,0) rotate(1deg); } 80% { transform: translate3d(-11px,6px,0) rotate(7deg); } }
@keyframes icoD { 0%,100% { transform: translate3d(0,0,0) rotate(-6deg); } 30% { transform: translate3d(-15px,-16px,0) rotate(-12deg); } 55% { transform: translate3d(9px,-26px,0) rotate(-2deg); } 80% { transform: translate3d(15px,7px,0) rotate(-9deg); } }
@keyframes icoE { 0%,100% { transform: translate3d(0,0,0) rotate(8deg); } 25% { transform: translate3d(11px,14px,0) rotate(4deg); } 50% { transform: translate3d(22px,-6px,0) rotate(12deg); } 75% { transform: translate3d(6px,-15px,0) rotate(6deg); } }

/* 4 · lime arrow cursor (slightly big, dark outline) */
body, a, button, [data-cursor], .os-faq-q, .chip, .os-arrow, .mcard {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M7 2 L7 24 L12.6 19.2 L16 27 L20.4 25.1 L17 17.4 L24.5 16.6 Z' fill='%239EFF00' stroke='%230C0D0A' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E") 7 2, auto;
}

/* 5 · flip backs — each card in its own colour, richer layout */
.mc-back { justify-content: flex-start; padding: clamp(1.3rem, 2vw, 1.9rem) clamp(1.2rem, 1.9vw, 1.7rem); background: linear-gradient(170deg, var(--mb1), var(--mb2)); border: none; }
.mc-back::after { background: radial-gradient(circle, rgba(255,255,255,0.28), transparent 66%); }
.mb-title { font-family: var(--font-display); font-size: clamp(1.3rem, 1.8vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; color: var(--mfg); margin-bottom: 0.4rem; }
.mc-back .mb-label { color: var(--mfg); opacity: 0.75; margin-bottom: 1rem; }
.mc-back .mb-label::before { background: var(--mfg); box-shadow: none; }
.mc-back li { color: var(--mfg); }
.mc-back li::before { background: var(--mtick-bg); }
.mc-back li::after { border-color: var(--mtick); }
.mb-cta { display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start; margin-top: auto; padding: 0.6rem 1.15rem; border-radius: var(--r-full); background: var(--mfg); color: var(--mb2); font-weight: 700; font-size: 0.86rem; }
.mb-cta svg { width: 14px; height: 14px; }
.mcb-lavender { --mb1: #B49CF6; --mb2: #8663E8; --mfg: #FFFFFF; --mtick: #FFFFFF; --mtick-bg: rgba(255,255,255,0.22); }
.mcb-lime     { --mb1: #CFF25E; --mb2: #A4DE1F; --mfg: #1A2606; --mtick: #1A2606; --mtick-bg: rgba(20,32,5,0.14); }
.mcb-yellow   { --mb1: #FFD95C; --mb2: #F5B81D; --mfg: #2B2104; --mtick: #2B2104; --mtick-bg: rgba(43,33,4,0.14); }
.mcb-coral    { --mb1: #FF9573; --mb2: #F2603C; --mfg: #FFFFFF; --mtick: #FFFFFF; --mtick-bg: rgba(255,255,255,0.24); }
.mcb-blue     { --mb1: #4E88F2; --mb2: #2359C8; --mfg: #FFFFFF; --mtick: #FFFFFF; --mtick-bg: rgba(255,255,255,0.22); }
.mcb-mint     { --mb1: #C4EFD2; --mb2: #8FDCA8; --mfg: #0A2A18; --mtick: #0A2A18; --mtick-bg: rgba(10,42,24,0.14); }

/* 5b · drag: never let images/links start a native drag */
.os-track img, .os-track a { -webkit-user-drag: none; user-select: none; -webkit-user-select: none; }

/* ============================================================
   HOMEPAGE 7.2 — hero: text inside the video · oneos video ·
   stacked full-width steps
   ============================================================ */

/* ---- HERO 3 — big centered video card with copy inside ---- */
.os-hero3 { padding: clamp(1.25rem, 3vw, 2.25rem) 0 clamp(3rem, 6vw, 5rem); }
.hero3-card { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--dark); min-height: clamp(560px, 46vw, 780px); display: flex; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-2); }
.hero3-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero3-veil { position: absolute; inset: 0; background: radial-gradient(72% 92% at 50% 40%, rgba(12,13,10,0.38), rgba(12,13,10,0.68)); }
.hero3-inner { position: relative; z-index: 3; max-width: 920px; padding: clamp(2rem, 4vw, 3rem) var(--px); }
.hero3-inner h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1.0; color: #fff; }
.hero3-inner .lime { background: linear-gradient(90deg, #C6FF4D, #9EFF00); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero3-inner .hero2-sub { color: rgba(244,245,238,0.88); }
.hero3-inner .hero-cta { justify-content: center; }
/* icons drift over the video, at the edges */
.hero3-card .hero-ic { z-index: 2; }
.hero3-card .hi1 { left: 3.5%; top: 12%; }
.hero3-card .hi2 { right: 3.5%; top: 10%; }
.hero3-card .hi3 { left: 5%; top: 68%; }
.hero3-card .hi4 { right: 5%; top: 64%; }
.hero3-card .hi5 { right: 2.5%; top: 38%; }
@media (max-width: 680px) { .hero3-card { min-height: 74vh; } }

/* ---- ONE OS shot = product video ---- */
.oneos-shot { overflow: hidden; }
.oneos-shot video { width: 100%; height: auto; display: block; }

/* ---- FROM BRIEF — stacked full-width steps ---- */
.idea-stack { display: flex; flex-direction: column; gap: clamp(1rem, 2vw, 1.5rem); }
.idea-stack img { width: 100%; height: auto; display: block; border-radius: var(--r-xl); }

/* ============================================================
   HOMEPAGE 7.3 — hero centered in viewport · transparent bg
   icons site-wide · zigzag steps + handwritten slogan
   ============================================================ */

/* 2 · hero vertically centered in the screen */
.os-hero3 { min-height: calc(100vh - var(--nav-h) - 1.5rem); display: flex; align-items: center; padding: 0 0 clamp(2.5rem, 5vw, 4rem); }
.os-hero3 .container-wide { width: 100%; }

/* 2b · icons: big, transparent, drifting in the page background */
.os-icons-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bgi { position: absolute; width: clamp(96px, 11vw, 180px); height: auto; opacity: 0.15; filter: saturate(0.85); will-change: transform; }
.bgi1 { left: 4%; top: 16%; animation: bgiA 30s ease-in-out infinite; }
.bgi2 { right: 5%; top: 10%; animation: bgiB 36s ease-in-out infinite; }
.bgi3 { left: 8%; top: 70%; animation: bgiC 32s ease-in-out infinite; }
.bgi4 { right: 7%; top: 62%; animation: bgiD 34s ease-in-out infinite; }
.bgi5 { left: 45%; top: 82%; animation: bgiE 40s ease-in-out infinite; }
@keyframes bgiA { 0%,100% { transform: translate3d(0,0,0) rotate(-8deg); } 25% { transform: translate3d(42px,-48px,0) rotate(-2deg); } 50% { transform: translate3d(-28px,-84px,0) rotate(-12deg); } 75% { transform: translate3d(-52px,-22px,0) rotate(-5deg); } }
@keyframes bgiB { 0%,100% { transform: translate3d(0,0,0) rotate(7deg); } 25% { transform: translate3d(-50px,36px,0) rotate(12deg); } 50% { transform: translate3d(-24px,-56px,0) rotate(2deg); } 75% { transform: translate3d(38px,-26px,0) rotate(9deg); } }
@keyframes bgiC { 0%,100% { transform: translate3d(0,0,0) rotate(5deg); } 30% { transform: translate3d(46px,-40px,0) rotate(11deg); } 60% { transform: translate3d(12px,44px,0) rotate(0deg); } 80% { transform: translate3d(-32px,16px,0) rotate(7deg); } }
@keyframes bgiD { 0%,100% { transform: translate3d(0,0,0) rotate(-6deg); } 30% { transform: translate3d(-44px,-44px,0) rotate(-12deg); } 55% { transform: translate3d(26px,-72px,0) rotate(-1deg); } 80% { transform: translate3d(44px,20px,0) rotate(-9deg); } }
@keyframes bgiE { 0%,100% { transform: translate3d(0,0,0) rotate(8deg); } 25% { transform: translate3d(32px,38px,0) rotate(3deg); } 50% { transform: translate3d(62px,-16px,0) rotate(13deg); } 75% { transform: translate3d(16px,-42px,0) rotate(6deg); } }
@media (max-width: 900px) { .bgi { display: none; } }

/* 1 · zigzag steps (~80%) + handwritten looping slogan */
.idea-zig { display: flex; flex-direction: column; gap: clamp(1.25rem, 2.5vw, 2rem); }
.iz-row { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); }
.iz-row img { width: 80%; height: auto; display: block; border-radius: var(--r-xl); }
.iz-row.r-right { justify-content: flex-end; }
.iz-row.r-left { justify-content: flex-start; }
.iz-note { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center; }
.hand-write { font-family: 'Caveat', cursive; font-size: clamp(2.2rem, 4.2vw, 3.6rem); font-weight: 700; color: var(--accent-deep); transform: rotate(-7deg); white-space: nowrap; animation: handWrite 4.6s ease-in-out infinite; text-shadow: 0 2px 0 rgba(158,255,0,0.25); }
@keyframes handWrite {
    0%   { clip-path: inset(-20% 100% -20% 0); }
    38%  { clip-path: inset(-20% 0% -20% 0); }
    72%  { clip-path: inset(-20% 0% -20% 0); }
    92%  { clip-path: inset(-20% 0% -20% 100%); }
    100% { clip-path: inset(-20% 0% -20% 100%); }
}
@media (max-width: 820px) {
    .iz-row { flex-direction: column; }
    .iz-row img { width: 100%; }
    .iz-row.r-left .iz-note { order: 2; padding: 0.5rem 0 0.25rem; }
}
@media (prefers-reduced-motion: reduce) { .hand-write { animation: none; clip-path: none; } .bgi { animation: none !important; } }

/* ============================================================
   HOMEPAGE 7.4 — smaller zigzag steps · handwritten scroll
   headline bridge
   ============================================================ */

/* 1 · zigzag steps another ~28% smaller */
.iz-row img { width: 58%; }
.iz-row { gap: clamp(1.25rem, 3vw, 3rem); }
@media (max-width: 820px) { .iz-row img { width: 100%; } }

/* 3 · handwritten scroll headline (bridge between sections) */
.hand-title { font-family: 'Caveat', cursive; font-weight: 700; letter-spacing: 0; line-height: 1.02; font-size: clamp(3.6rem, 8.5vw, 7.5rem); transform: rotate(-2.5deg); }
.hand-title .os-logo-inline { vertical-align: -0.06em; }
.hand-headline .headline-sub { font-size: clamp(1.05rem, 1.6vw, 1.35rem); }

/* ============================================================
   HOMEPAGE 7.5 — coded step cards (no images)
   ============================================================ */

/* shared card */
.step-cardx { width: 58%; border-radius: 26px; padding: clamp(1.5rem, 2.4vw, 2.4rem); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.2rem, 2.2vw, 2.2rem); align-items: center; position: relative; overflow: hidden; border: 1px solid rgba(12,13,10,0.07); box-shadow: 0 20px 48px -22px rgba(12,13,10,0.22); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.step-cardx:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -24px rgba(12,13,10,0.3); }
.scx-badge { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: #fff; margin-bottom: 0.9rem; box-shadow: inset 0 -4px 8px rgba(0,0,0,0.18), 0 6px 14px rgba(12,13,10,0.18); }
.scx-text h3 { font-family: var(--font-display); font-size: clamp(1.45rem, 2.1vw, 2rem); font-weight: 700; letter-spacing: -0.025em; color: #17190f; margin-bottom: 0.55rem; }
.scx-text p { color: #616554; font-size: clamp(0.92rem, 1.1vw, 1.04rem); line-height: 1.5; max-width: 30ch; }
.scx-visual { position: relative; min-width: 0; }

/* ---- STEP 1 · create a campaign ---- */
.sc1 { background: linear-gradient(170deg, #F7F9DF, #EEF2C9); }
.sc1 .scx-badge { background: #7FB31C; }
.sc1-opts { display: flex; flex-direction: column; gap: 0.55rem; position: relative; z-index: 1; padding-right: clamp(1.5rem, 3vw, 3rem); }
.sc1-opt { position: relative; display: flex; align-items: center; gap: 0.75rem; padding: 0.72rem 1rem; border-radius: 14px; background: #23261e; color: #fff; font-weight: 600; font-size: clamp(0.85rem, 1vw, 0.98rem); box-shadow: 0 5px 12px rgba(12,13,10,0.28); }
.sc1-opt .ic { width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.35); display: grid; place-items: center; flex-shrink: 0; }
.sc1-opt .ic svg { width: 16px; height: 16px; }
.sc1-opt.on { background: radial-gradient(130% 170% at 18% 0%, #40510f, #232d07); box-shadow: 0 0 0 3px #B7E840, 0 0 26px rgba(158,255,0,0.55); }
.sc1-opt.on .ic { border-color: #fff; background: rgba(255,255,255,0.12); }
.tw { position: absolute; width: 9px; height: 9px; background: #D6FF4B; clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%); animation: twk 1.8s ease-in-out infinite; }
.tw.t1 { right: 10px; top: 7px; } .tw.t2 { right: 30px; bottom: 7px; width: 6px; height: 6px; animation-delay: 0.5s; } .tw.t3 { left: 46%; top: 5px; width: 5px; height: 5px; animation-delay: 1s; }
@keyframes twk { 0%, 100% { opacity: 0.25; transform: scale(0.7); } 50% { opacity: 1; transform: scale(1.15); } }
.sc1-cta { margin-top: 0.4rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1rem; border-radius: 14px; background: #D6FF4B; color: #1a2306; font-weight: 800; font-size: clamp(0.9rem, 1.05vw, 1.02rem); box-shadow: 0 8px 20px rgba(158,255,0,0.4), inset 0 0 0 2px #aed83c; }
.sc1-cta svg { width: 15px; height: 15px; }
.deco { position: absolute; pointer-events: none; }
.dstar { background: linear-gradient(160deg, #D9FF5E, #9EDD1F); clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%); filter: drop-shadow(0 4px 8px rgba(120,180,0,0.4)); }
.ds1 { width: 34px; height: 34px; right: -4px; top: -2px; animation: twk 2.6s ease-in-out infinite; }
.ds2 { width: 20px; height: 20px; right: 26px; top: 34px; animation: twk 3.2s ease-in-out infinite 0.6s; }
.ds3 { width: 26px; height: 26px; left: -34px; bottom: 4px; animation: twk 2.9s ease-in-out infinite 1.1s; }
.cube { border-radius: 22%; transform: rotate(14deg); box-shadow: inset -4px -6px 10px rgba(0,0,0,0.18), inset 4px 6px 10px rgba(255,255,255,0.5), 0 8px 16px rgba(90,70,200,0.25); }
.cb1 { width: 40px; height: 40px; right: -10px; top: 26%; background: linear-gradient(150deg, #A08CF5, #7B61E8); }
.cb2 { width: 34px; height: 34px; right: -16px; top: 52%; background: linear-gradient(150deg, #C0A9FF, #9A7Cf2); transform: rotate(-12deg); }
.cb3 { width: 28px; height: 28px; right: -6px; bottom: 8%; background: linear-gradient(150deg, #9DC1FF, #6E97F5); transform: rotate(20deg); }

/* ---- STEP 2 · upload your game ---- */
.sc2 { background: linear-gradient(170deg, #F0EBFA, #E4DCF5); }
.sc2 .scx-badge { background: linear-gradient(150deg, #9F7CF0, #6C4FD8); }
.sc2-thumbs { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.th { position: relative; width: clamp(64px, 6vw, 92px); aspect-ratio: 5/6; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 20px rgba(30,20,60,0.25); flex-shrink: 0; }
.th-a { background: radial-gradient(120% 100% at 30% 20%, #6a4a2a, #1c1210 70%); }
.th-b { background: radial-gradient(120% 100% at 60% 25%, #3a5a7a, #10161f 70%); }
.th-c { background: #17181c; display: grid; place-items: center; }
.tplay { position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%); width: 26px; height: 26px; border-radius: 50%; background: rgba(120,90,220,0.85); color: #fff; display: grid; place-items: center; }
.tplay svg { width: 12px; height: 12px; }
.tlogo { font-family: var(--font-display); font-weight: 800; font-size: 0.55rem; letter-spacing: 0.06em; color: #e8e9ee; text-align: center; line-height: 1.3; }
.tlogo small { display: block; font-size: 0.4rem; letter-spacing: 0.28em; color: #e08a2e; }
.th b { position: absolute; left: 5px; right: 5px; bottom: 5px; display: flex; align-items: center; gap: 0.25rem; font-size: 0.44rem; font-weight: 600; background: rgba(0,0,0,0.55); color: #fff; padding: 0.18rem 0.35rem; border-radius: 999px; white-space: nowrap; overflow: hidden; }
.mck { width: 9px; height: 9px; border-radius: 50%; background: #79c318; flex-shrink: 0; position: relative; }
.mck::after { content: ''; position: absolute; left: 2.2px; top: 2.6px; width: 4px; height: 2.2px; border-left: 1px solid #fff; border-bottom: 1px solid #fff; transform: rotate(-45deg); }
.sc2-vis { display: flex; flex-direction: column; gap: 0.8rem; }
.sc2-drop { display: flex; align-items: center; gap: 0.85rem; padding: clamp(0.85rem, 1.4vw, 1.2rem); border: 2px dashed #8f7ce0; border-radius: 16px; background: rgba(255,255,255,0.4); color: #6C4FD8; }
.sc2-drop svg { width: 34px; height: 34px; flex-shrink: 0; }
.sc2-drop b { display: block; color: #33296b; font-size: clamp(0.9rem, 1.05vw, 1.02rem); }
.sc2-drop span { font-size: 0.8rem; color: #7a70a8; }
.sc2-panel { border-radius: 16px; background: linear-gradient(180deg, #2a2140, #1b1630); border: 1px solid #6C4FD8; padding: 0.9rem; position: relative; overflow: hidden; }
.sc2-ph { position: relative; display: flex; align-items: center; gap: 0.45rem; color: #D6FF4B; font-weight: 700; font-size: 0.92rem; margin-bottom: 0.7rem; }
.sc2-ph svg { width: 15px; height: 15px; }
.streak { position: absolute; right: 0; top: 50%; width: 45%; height: 3px; border-radius: 2px; background: linear-gradient(90deg, transparent, #C6FF4D); filter: blur(0.5px); box-shadow: 0 0 12px rgba(198,255,77,0.8); animation: streakFlow 2.4s ease-in-out infinite; }
@keyframes streakFlow { 0%, 100% { opacity: 0.35; transform: translateX(0); } 50% { opacity: 1; transform: translateX(-12px); } }
.sc2-row { display: flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 0.5rem 0.6rem; margin-bottom: 0.45rem; color: #ece9f6; font-size: clamp(0.76rem, 0.95vw, 0.88rem); font-weight: 500; }
.sc2-row:last-child { margin-bottom: 0; }
.fic { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; font-size: 0.58rem; font-weight: 800; flex-shrink: 0; }
.fic.v { background: #101014; color: #fff; } .fic.v svg { width: 12px; height: 12px; }
.fic.img { background: linear-gradient(135deg, #7aa7ff, #b78cff); color: #fff; } .fic.img svg { width: 14px; height: 14px; }
.fic.ai { background: #2b1c0e; color: #ff9a2e; }
.fic.pdf { background: #fff; color: #e33b3b; font-size: 0.5rem; }
.sc2-row em { margin-left: auto; font-style: normal; background: #303c12; color: #cfe86a; font-size: 0.64rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 999px; flex-shrink: 0; }
.sc2-row .ck { width: 20px; height: 20px; border-radius: 50%; background: #79c318; color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.sc2-row .ck svg { width: 11px; height: 11px; }

/* ---- STEP 3 · generate creatives ---- */
.sc3 { background: linear-gradient(170deg, #FBF3D0, #F6EAB8); }
.sc3 .scx-badge { background: #F0B429; }
.sc3-vis { height: clamp(280px, 26vw, 360px); }
.burst { position: absolute; left: 50%; top: 50%; width: 115%; aspect-ratio: 1; transform: translate(-50%, -50%); background: repeating-conic-gradient(rgba(158,220,0,0.4) 0deg 1.1deg, transparent 1.1deg 22.5deg); -webkit-mask: radial-gradient(circle, transparent 17%, #000 18%, #000 46%, transparent 47%); mask: radial-gradient(circle, transparent 17%, #000 18%, #000 46%, transparent 47%); opacity: 0.45; animation: burstSpin 40s linear infinite; }
@keyframes burstSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.sc3-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: clamp(84px, 8vw, 110px); aspect-ratio: 3/4; background: #fff; border-radius: 12px; padding: 4px; box-shadow: 0 14px 30px rgba(90,70,0,0.28); z-index: 2; }
.sc3-center .art { width: 100%; height: 100%; border-radius: 9px; }
.mini { position: absolute; width: clamp(52px, 5vw, 68px); aspect-ratio: 3/4.3; background: #fff; border-radius: 9px; padding: 3px; box-shadow: 0 9px 18px rgba(90,70,0,0.24); z-index: 1; }
.mini .art { position: absolute; inset: 3px; border-radius: 7px; }
.mini b { position: absolute; left: 6px; top: 6px; right: 5px; z-index: 1; font-size: 0.4rem; line-height: 1.2; font-weight: 800; text-transform: uppercase; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.mini .pn { position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%); z-index: 1; text-decoration: none; font-size: 0.36rem; font-weight: 800; text-transform: uppercase; padding: 0.14rem 0.4rem; border-radius: 999px; white-space: nowrap; }
.pn-g { background: #C6FF4D; color: #1a2306; } .pn-b { background: #3b82f6; color: #fff; } .pn-r { background: #e5484d; color: #fff; } .pn-y { background: #FFD23F; color: #2a2208; }
.mini.land { width: clamp(88px, 8.4vw, 112px); aspect-ratio: 16/8.6; }
.mini.land b { font-size: 0.38rem; right: 34%; }
.m1 { left: 22%; top: -2%; transform: rotate(-8deg); }
.m2 { left: 42%; top: -6%; transform: rotate(-1deg); z-index: 2; }
.m3 { left: 61%; top: -2%; transform: rotate(7deg); }
.m4 { left: 6%; top: 30%; transform: rotate(-7deg); }
.m5 { right: 4%; top: 26%; transform: rotate(8deg); }
.m6 { left: 8%; bottom: 6%; transform: rotate(4deg); }
.m7 { right: 16%; bottom: 16%; transform: rotate(-5deg); }
.m8 { right: -2%; bottom: -3%; transform: rotate(6deg); }
.lbl { position: absolute; z-index: 3; background: #1d200f; color: #D6FF4B; font-family: var(--font-mono); font-size: 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.28rem 0.6rem; border-radius: 999px; box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
.l1 { left: 8%; top: 6%; } .l2 { right: 4%; top: 2%; } .l3 { left: -2%; top: 56%; } .l4 { right: 28%; bottom: 2%; }
.picon { position: absolute; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(90,70,0,0.28); }
.picon svg { width: 20px; height: 20px; }
.picon.tik { background: #111; color: #fff; left: 34%; bottom: 0; }
.picon.meta { color: #1877f2; right: -3%; top: 4%; }
.picon.app { color: #0a66ff; right: 34%; top: 38%; }
.badge128 { position: absolute; z-index: 4; right: 0; bottom: 26%; display: flex; align-items: center; gap: 0.45rem; background: #15170c; color: #D6FF4B; border-radius: 14px; padding: 0.55rem 0.75rem; box-shadow: 0 0 0 2px #C6FF4D, 0 0 26px rgba(198,255,77,0.55); }
.badge128 svg { width: 16px; height: 16px; }
.badge128 b { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; line-height: 1; }
.badge128 span { font-size: 0.56rem; line-height: 1.25; color: #eef5d0; font-weight: 600; }

/* responsive */
@media (max-width: 1080px) { .step-cardx { width: 72%; } }
@media (max-width: 820px) {
    .step-cardx { width: 100%; grid-template-columns: 1fr; }
    .sc1-opts { padding-right: 0; }
    .sc3-vis { height: 300px; }
    .m4, .l3 { left: 0; } .m8 { right: 0; }
}

/* ============================================================
   HOMEPAGE 7.6 — Figma-style node editor (How it works)
   ============================================================ */
.node-flow { position: relative; max-width: 880px; margin: 0 auto; padding: 0.5rem 0 1rem; }
.nf-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: visible; }
.nf-wire { fill: none; stroke: #C6C9B4; stroke-width: 1.6; opacity: 0; transition: opacity 0.7s var(--ease); }
.nf-pulse { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 14 178; stroke-dashoffset: 0; opacity: 0; filter: drop-shadow(0 0 6px rgba(158,255,0,0.75)); animation: nfFlow 2.6s linear infinite; transition: opacity 0.7s var(--ease); }
.nf-wire.on { opacity: 0.9; }
.nf-pulse.on { opacity: 1; }
@keyframes nfFlow { to { stroke-dashoffset: -192; } }

.nf-rows { position: relative; z-index: 1; display: flex; flex-direction: column; gap: clamp(2.1rem, 4.5vw, 3.4rem); align-items: center; }
.nf-row { display: flex; justify-content: center; align-items: center; opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.75s var(--ease); }
.nf-row.on { opacity: 1; transform: none; }
.nf-row.nf-3 { width: 100%; max-width: 660px; justify-content: space-between; gap: clamp(0.6rem, 2vw, 1.25rem); }

/* node base — Figma card with in/out ports */
.nf-node { position: relative; display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.62rem 1.05rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-weight: 600; font-size: clamp(0.8rem, 1vw, 0.95rem); color: var(--ink-0); box-shadow: var(--shadow-1); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.nf-node:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.nf-node::before, .nf-node::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 50%; background: #fff; border: 2px solid #ADB09A; transition: border-color 0.4s, box-shadow 0.4s; }
.nf-node::before { top: -5px; }
.nf-node::after { bottom: -5px; }
.nf-row.on .nf-node::before, .nf-row.on .nf-node::after { border-color: var(--accent-deep); box-shadow: 0 0 8px rgba(158,255,0,0.55); }
.nf-brief::before { display: none; }
.nf-ic { width: 27px; height: 27px; border-radius: 8px; background: var(--bg-2); color: var(--ink-1); display: grid; place-items: center; flex-shrink: 0; }
.nf-ic svg { width: 14px; height: 14px; }
.nf-ic.play { background: #17190f; color: #fff; }
.nf-tag { font-family: var(--font-mono); font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); background: var(--bg-2); padding: 0.15rem 0.5rem; border-radius: 999px; margin-left: 0.25rem; }
.nf-file { font-family: var(--font-mono); font-weight: 500; font-size: clamp(0.76rem, 0.95vw, 0.88rem); }

/* engine node */
.nf-engine { flex-wrap: wrap; justify-content: center; background: #14170D; color: #EDF6D8; border-color: #2A2E1D; padding: 0.85rem 1.6rem 0.7rem; font-size: clamp(0.9rem, 1.15vw, 1.05rem); box-shadow: 0 16px 36px -14px rgba(20,25,5,0.5), 0 0 0 1px rgba(158,255,0,0.28); }
.nf-engine .nf-ic { background: rgba(158,255,0,0.16); color: var(--accent); }
.nf-engine::before, .nf-engine::after { background: #14170D; }
.nf-ports { width: 100%; display: flex; justify-content: center; gap: 0.5rem; padding-top: 0.55rem; }
.nf-ports i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: nfPort 1.7s ease-in-out infinite; }
.nf-ports i:nth-child(2) { animation-delay: 0.12s; } .nf-ports i:nth-child(3) { animation-delay: 0.24s; }
.nf-ports i:nth-child(4) { animation-delay: 0.36s; } .nf-ports i:nth-child(5) { animation-delay: 0.48s; }
.nf-ports i:nth-child(6) { animation-delay: 0.6s; } .nf-ports i:nth-child(7) { animation-delay: 0.72s; }
@keyframes nfPort { 0%, 100% { transform: scale(0.65); opacity: 0.4; } 50% { transform: scale(1.15); opacity: 1; } }

/* hooks / videos / metrics */
.nf-hook { font-family: var(--font-mono); font-size: clamp(0.72rem, 0.9vw, 0.84rem); font-weight: 600; }
.nf-hook.hA { box-shadow: inset 0 3px 0 #B8A9FF, var(--shadow-1); }
.nf-hook.hB { box-shadow: inset 0 3px 0 #5BC8FF, var(--shadow-1); }
.nf-hook.hC { box-shadow: inset 0 3px 0 #FF8A6B, var(--shadow-1); }
.nf-video { flex-direction: column; gap: 0; padding: 0.42rem 0.42rem 0.3rem; width: clamp(72px, 8vw, 92px); }
.nf-video .art { width: 100%; aspect-ratio: 16/10; border-radius: 8px; }
.nf-video span { display: flex; align-items: center; gap: 0.3rem; padding-top: 0.32rem; font-family: var(--font-mono); font-size: 0.64rem; color: var(--ink-1); }
.nf-video span svg { width: 9px; height: 9px; }
.nf-metric { font-family: var(--font-mono); font-size: clamp(0.68rem, 0.85vw, 0.78rem); color: var(--ink-1); gap: 0.45rem; }
.nf-metric b { color: var(--accent-deep); font-size: clamp(0.85rem, 1vw, 0.98rem); }

/* winner / launch / platforms */
.nf-winner { background: linear-gradient(160deg, #D9FF5E, #B7E840); border-color: #9EC72F; color: #1a2306; font-weight: 800; box-shadow: 0 12px 30px -8px rgba(158,255,0,0.55); }
.nf-winner svg { width: 15px; height: 15px; }
.nf-winner::before, .nf-winner::after { background: #CFF25E; border-color: #7FA31A; }
.nf-launch { background: #17190f; color: #fff; border-color: #2a2d20; }
.nf-launch svg { width: 16px; height: 16px; color: var(--accent); }
.nf-launch::before, .nf-launch::after { background: #17190f; }
.nf-plats { gap: clamp(0.5rem, 2vw, 1.1rem); flex-wrap: wrap; }
.nf-plat { position: relative; display: inline-flex; padding: 0.5rem 1.05rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: clamp(0.78rem, 0.95vw, 0.88rem); color: var(--ink-1); box-shadow: var(--shadow-1); transition: transform 0.25s var(--ease), color 0.2s, border-color 0.2s; }
.nf-plat::before { content: ''; position: absolute; left: 50%; top: -5px; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 50%; background: #fff; border: 2px solid #ADB09A; transition: border-color 0.4s; }
.nf-row.on .nf-plat::before { border-color: var(--accent-deep); }
.nf-plat:hover { transform: translateY(-3px); color: var(--ink-0); border-color: var(--accent); }

@media (max-width: 680px) {
    .nf-rows { gap: 1.9rem; }
    .nf-row.nf-3 { max-width: 100%; }
    .nf-node { padding: 0.5rem 0.75rem; }
    .nf-tag { display: none; }
    .nf-video { width: 64px; }
}
@media (prefers-reduced-motion: reduce) { .nf-pulse { animation: none; opacity: 0.5; } .nf-ports i { animation: none; } }

/* ============================================================
   HOMEPAGE 7.7 — AI Creative Engine scene (living pipeline)
   ============================================================ */
.ai-flow { position: relative; max-width: 960px; margin: 0 auto; padding: 1rem 0 1.5rem; }
.af-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: visible; }
.af-wire { fill: none; stroke: #D3D6C2; stroke-width: 1.3; opacity: 0; transition: opacity 0.8s var(--ease); }
.af-pulse { fill: none; stroke: var(--accent); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 12 190; opacity: 0; filter: drop-shadow(0 0 6px rgba(158,255,0,0.7)); animation: nfFlow 3s linear infinite; transition: opacity 0.8s var(--ease); }
.af-wire.on { opacity: 0.75; }
.af-pulse.on { opacity: 0.95; }
.af-wire.hot.on { stroke: #B9D96A; opacity: 1; }
.af-pulse.hot.on { stroke-width: 3; stroke-dasharray: 20 170; animation-duration: 1.9s; }
.af-wire.dim.on { opacity: 0.3; }
.af-pulse.dim.on { opacity: 0.28; filter: none; }

.af-stage { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease), transform 0.8s var(--ease); }
.af-stage.on { opacity: 1; transform: none; }
.af-stage + .af-stage { margin-top: clamp(3rem, 6vw, 4.5rem); }

/* ---- 1 · inputs: glassy floating file cards ---- */
.af-inputs { flex-wrap: wrap; gap: clamp(0.6rem, 1.6vw, 1.1rem); max-width: 760px; margin: 0 auto; }
.af-file { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.8rem 0.55rem 0.6rem; border-radius: 14px; background: rgba(255,255,255,0.72); border: 1px solid rgba(12,13,10,0.07); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 10px 26px -12px rgba(12,13,10,0.18); animation: afFloat 6.5s ease-in-out infinite; }
.af-file.f1 { transform: rotate(-1.4deg); } .af-file.f2 { animation-delay: 0.8s; transform: translateY(8px); }
.af-file.f3 { animation-delay: 1.6s; transform: rotate(1.2deg); } .af-file.f4 { animation-delay: 2.4s; transform: translateY(-6px); }
.af-file.f5 { animation-delay: 3.2s; transform: rotate(-1deg) translateY(6px); } .af-file.f6 { animation-delay: 4s; transform: rotate(1.5deg); }
@keyframes afFloat { 0%, 100% { margin-top: 0; } 50% { margin-top: -9px; } }
.aff-ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700; }
.aff-ic svg { width: 16px; height: 16px; }
.aff-ic.doc { background: #EEF1DC; color: #5C6E1E; }
.aff-ic.play { background: #17190f; color: #fff; }
.aff-ic.ai { background: #2b1c0e; color: #ff9a2e; }
.aff-ic.ps { background: #0d1f33; color: #6ab8ff; }
.aff-ic.img { background: #EFE9FA; color: #7A5CD8; }
.aff-ic.docw { background: #E4EEF8; color: #2E6FB8; }
.aff-t b { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-0); line-height: 1.15; }
.aff-t small { font-size: 0.62rem; color: var(--ink-2); font-family: var(--font-mono); }
.aff-badge { font-family: var(--font-mono); font-size: 0.52rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.18rem 0.5rem; border-radius: 999px; background: rgba(158,255,0,0.16); color: #4c6a10; margin-left: 0.25rem; }
.aff-badge.b-brand { background: rgba(255,154,46,0.14); color: #9a5c14; }
.aff-badge.b-copy { background: rgba(91,160,232,0.14); color: #2a5a94; }

/* ---- 2 · engine: dark glass, particles, thinking dots ---- */
.af-engine { position: relative; overflow: hidden; text-align: center; padding: clamp(1.5rem, 2.6vw, 2.2rem) clamp(2rem, 4vw, 3.5rem); border-radius: 22px; background: rgba(13,15,8,0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(158,255,0,0.22); box-shadow: 0 24px 60px -20px rgba(15,20,4,0.55), 0 0 0 1px rgba(158,255,0,0.08); animation: engPulse 4.2s ease-in-out infinite; }
@keyframes engPulse { 0%, 100% { box-shadow: 0 24px 60px -20px rgba(15,20,4,0.55), 0 0 24px rgba(158,255,0,0.12); } 50% { box-shadow: 0 24px 60px -20px rgba(15,20,4,0.55), 0 0 52px rgba(158,255,0,0.3); } }
.af-engine::before { content: ''; position: absolute; inset: -40%; background: radial-gradient(circle at 50% 60%, rgba(158,255,0,0.16), transparent 55%); animation: engDrift 7s ease-in-out infinite alternate; }
@keyframes engDrift { from { transform: translate(-6%, -4%); } to { transform: translate(6%, 5%); } }
.af-engine h3 { position: relative; display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-family: var(--font-display); font-size: clamp(1.25rem, 1.9vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; color: #F2F6E4; }
.af-engine h3 svg { width: 19px; height: 19px; color: var(--accent); }
.afe-dots { position: relative; display: flex; justify-content: center; gap: 0.5rem; margin: 0.8rem 0 0.55rem; }
.afe-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: afeThink 1.3s ease-in-out infinite; }
.afe-dots i:nth-child(2) { animation-delay: 0.18s; } .afe-dots i:nth-child(3) { animation-delay: 0.36s; }
@keyframes afeThink { 0%, 100% { transform: translateY(0) scale(0.8); opacity: 0.4; } 40% { transform: translateY(-6px) scale(1.1); opacity: 1; } }
.afe-status { position: relative; font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(214,255,75,0.75); }
.afe-orb { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.55; filter: blur(0.4px); }
.afe-orb.o1 { left: 12%; top: 26%; animation: orbA 7s ease-in-out infinite; }
.afe-orb.o2 { left: 84%; top: 20%; animation: orbB 8.5s ease-in-out infinite; }
.afe-orb.o3 { left: 22%; top: 74%; animation: orbB 6.5s ease-in-out infinite 1s; }
.afe-orb.o4 { left: 72%; top: 78%; animation: orbA 9s ease-in-out infinite 0.5s; }
.afe-orb.o5 { left: 48%; top: 14%; width: 3.5px; height: 3.5px; animation: orbA 5.6s ease-in-out infinite 1.6s; }
.afe-orb.o6 { left: 58%; top: 84%; width: 3.5px; height: 3.5px; animation: orbB 7.8s ease-in-out infinite 2.2s; }
@keyframes orbA { 0%, 100% { transform: translate(0, 0); opacity: 0.3; } 50% { transform: translate(18px, -12px); opacity: 0.9; } }
@keyframes orbB { 0%, 100% { transform: translate(0, 0); opacity: 0.85; } 50% { transform: translate(-16px, 10px); opacity: 0.3; } }

/* ---- 3 · generation: strategy clusters ---- */
.af-groups { flex-wrap: wrap; gap: clamp(0.8rem, 2vw, 1.4rem); align-items: flex-start; }
.af-group { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 0.7rem 0.75rem 0.75rem; border-radius: 16px; background: rgba(255,255,255,0.62); border: 1px solid rgba(12,13,10,0.06); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); box-shadow: 0 12px 28px -14px rgba(12,13,10,0.16); }
.af-group:nth-child(odd) { transform: translateY(-8px); }
.af-group:nth-child(3n) { transform: translateY(10px); }
.afg-label { font-family: var(--font-mono); font-size: 0.56rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--ink-1); background: var(--bg-2); padding: 0.2rem 0.6rem; border-radius: 999px; }
.afg-thumbs { display: flex; gap: 0.35rem; }
.afg-thumbs i { width: clamp(26px, 3vw, 34px); aspect-ratio: 9/15; border-radius: 6px; display: block; box-shadow: 0 4px 10px rgba(12,13,10,0.2); animation: thumbSway 5s ease-in-out infinite; }
.afg-thumbs i:nth-child(2) { animation-delay: 0.7s; } .afg-thumbs i:nth-child(3) { animation-delay: 1.4s; }
@keyframes thumbSway { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.afg-thumbs i.spawn { animation: spawnCard 8s ease-in-out infinite; }
.af-group:nth-child(2) .spawn { animation-delay: 1.4s; } .af-group:nth-child(3) .spawn { animation-delay: 2.8s; }
.af-group:nth-child(4) .spawn { animation-delay: 4.2s; } .af-group:nth-child(5) .spawn { animation-delay: 5.6s; } .af-group:nth-child(6) .spawn { animation-delay: 7s; }
@keyframes spawnCard { 0%, 46% { opacity: 0; transform: scale(0.5) translateY(6px); } 56%, 88% { opacity: 1; transform: scale(1) translateY(0); } 97%, 100% { opacity: 0; transform: scale(0.7) translateY(-4px); } }
/* extra ad-art gradients */
.g5 { background: linear-gradient(160deg, #0f3a38, #071614); } .g6 { background: linear-gradient(160deg, #3a1030, #16060f); } .g7 { background: linear-gradient(160deg, #3a2c08, #171105); }

/* ---- 4 · testing: live metric cards ---- */
.af-tests { flex-wrap: wrap; gap: clamp(0.8rem, 2.5vw, 1.6rem); align-items: stretch; }
.af-test { display: flex; align-items: center; gap: 0.8rem; padding: 0.75rem 0.95rem; border-radius: 16px; background: rgba(255,255,255,0.78); border: 1px solid rgba(12,13,10,0.07); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 12px 30px -14px rgba(12,13,10,0.2); transition: opacity 2.2s ease 1.2s, filter 2.2s ease 1.2s, box-shadow 0.6s; }
.af-test > i { width: 44px; aspect-ratio: 9/15; border-radius: 8px; display: block; flex-shrink: 0; box-shadow: 0 5px 12px rgba(12,13,10,0.22); }
.aft-m { display: grid; grid-template-columns: 1fr 1fr; gap: 0.14rem 0.9rem; }
.aft-m span { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-2); display: flex; justify-content: space-between; gap: 0.5rem; min-width: 86px; }
.aft-m b { color: var(--ink-0); font-weight: 700; transition: color 0.3s; }
.aft-m b.up { color: #4c8a08; } .aft-m b.down { color: #c4543a; }
.af-test.lead { box-shadow: 0 0 0 2px rgba(158,255,0,0.75), 0 14px 40px -10px rgba(158,255,0,0.45); animation: leadGlow 3s ease-in-out infinite; }
@keyframes leadGlow { 0%, 100% { box-shadow: 0 0 0 2px rgba(158,255,0,0.75), 0 14px 36px -10px rgba(158,255,0,0.35); } 50% { box-shadow: 0 0 0 2.5px rgba(158,255,0,1), 0 14px 48px -8px rgba(158,255,0,0.6); } }
.af-tests.on .af-test.weak { opacity: 0.45; filter: grayscale(0.35) blur(0.2px); }

/* ---- 5 · winner ---- */
.af-winner { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.afw-card { position: relative; width: clamp(96px, 10vw, 128px); aspect-ratio: 9/15; border-radius: 14px; background: #fff; padding: 5px; box-shadow: 0 0 0 2.5px var(--accent), 0 18px 55px -8px rgba(158,255,0,0.65); animation: winPulse 2.6s ease-in-out infinite; }
@keyframes winPulse { 0%, 100% { box-shadow: 0 0 0 2.5px var(--accent), 0 18px 45px -8px rgba(158,255,0,0.5); transform: scale(1); } 50% { box-shadow: 0 0 0 3px var(--accent), 0 18px 70px -4px rgba(158,255,0,0.85); transform: scale(1.025); } }
.afw-card .art { position: absolute; inset: 5px; border-radius: 10px; }
.afw-card .pn { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); z-index: 1; text-decoration: none; font-size: 0.5rem; font-weight: 800; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 999px; }
.afw-tag { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--ink-0); }
.afw-tag svg { width: 16px; height: 16px; color: var(--accent-deep); }
.afw-stats { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; justify-content: center; }
.afw-stats span { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-1); }
.afw-stats b { color: var(--accent-deep); font-size: 0.95rem; }
.afw-stats .top1 { background: #17190f; color: var(--accent); padding: 0.32rem 0.75rem; border-radius: 999px; font-weight: 700; }

/* ---- 6 · deploy channels ---- */
.af-channels { flex-wrap: wrap; gap: clamp(0.5rem, 1.6vw, 0.9rem); max-width: 720px; margin-left: auto; margin-right: auto; }
.af-chip { position: relative; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.95rem; border-radius: 999px; background: rgba(255,255,255,0.8); border: 1px solid rgba(12,13,10,0.08); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); font-weight: 600; font-size: clamp(0.76rem, 0.95vw, 0.86rem); color: var(--ink-1); box-shadow: 0 8px 20px -10px rgba(12,13,10,0.18); transition: transform 0.25s var(--ease), color 0.2s, border-color 0.25s; }
.af-chip:hover { transform: translateY(-3px); color: var(--ink-0); border-color: var(--accent); }
.af-chip .ck { width: 15px; height: 15px; border-radius: 50%; background: var(--accent); color: #17210a; display: grid; place-items: center; opacity: 0; transform: scale(0.3); transition: opacity 0.4s var(--ease), transform 0.5s cubic-bezier(0.18, 1.6, 0.4, 1); }
.af-chip .ck svg { width: 8px; height: 8px; }
.af-channels.on .af-chip .ck { opacity: 1; transform: scale(1); }
.af-channels.on .af-chip:nth-child(1) .ck { transition-delay: 0.5s; } .af-channels.on .af-chip:nth-child(2) .ck { transition-delay: 0.68s; }
.af-channels.on .af-chip:nth-child(3) .ck { transition-delay: 0.86s; } .af-channels.on .af-chip:nth-child(4) .ck { transition-delay: 1.04s; }
.af-channels.on .af-chip:nth-child(5) .ck { transition-delay: 1.22s; } .af-channels.on .af-chip:nth-child(6) .ck { transition-delay: 1.4s; }
.af-channels.on .af-chip:nth-child(7) .ck { transition-delay: 1.58s; } .af-channels.on .af-chip:nth-child(8) .ck { transition-delay: 1.76s; }

@media (max-width: 680px) {
    .af-stage + .af-stage { margin-top: 2.4rem; }
    .af-groups { gap: 0.6rem; }
    .af-group:nth-child(odd), .af-group:nth-child(3n) { transform: none; }
    .af-test { width: 100%; max-width: 340px; }
    .aft-m span { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .af-file, .afg-thumbs i, .afe-dots i, .afe-orb, .af-engine, .af-engine::before, .afw-card, .af-test.lead { animation: none !important; }
    .af-pulse { animation: none; opacity: 0.4; }
    .afg-thumbs i.spawn { opacity: 1; }
    .af-chip .ck { opacity: 1; transform: none; }
}

/* ============================================================
   HOMEPAGE 7.8 — cinematic scroll story (six sticky scenes)
   ============================================================ */
.cine { position: relative; height: 640vh; }
.cine-stick { position: sticky; top: 0; height: 100vh; overflow: hidden; }
@supports (height: 100svh) { .cine-stick { height: 100svh; } }
.cn-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.cn-line { fill: none; stroke: #C9CDB6; stroke-width: 1.4; opacity: 0; }
.cn-linepulse { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 12 160; animation: nfFlow 2.2s linear infinite; opacity: 0; filter: drop-shadow(0 0 6px rgba(158,255,0,0.7)); }

.cn-heads { position: absolute; left: 50%; top: max(108px, 9.5%); transform: translateX(-50%); width: min(92%, 840px); height: 0; z-index: 8; pointer-events: none; text-align: center; }
.cn-head { position: absolute; left: 50%; top: 0; width: 100%; opacity: 0; will-change: transform, opacity; }
.cn-head::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 135%; height: 260%; background: radial-gradient(52% 58% at 50% 46%, rgba(244,245,240,0.96), rgba(244,245,240,0.72) 55%, rgba(244,245,240,0)); z-index: -1; }
.cn-head h2 { font-family: var(--font-display); font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 700; letter-spacing: -0.045em; line-height: 1; color: var(--ink-0); }
.cn-head p { margin-top: 0.65rem; color: var(--ink-1); font-size: clamp(0.98rem, 1.4vw, 1.2rem); }

.cn-assets, .cn-cards, .cn-chips { position: absolute; inset: 0; pointer-events: none; }
.cn-file, .cn-morph { position: absolute; left: 0; top: 0; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.85rem 0.55rem 0.6rem; border-radius: 14px; background: rgba(255,255,255,0.78); border: 1px solid rgba(12,13,10,0.07); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 12px 30px -12px rgba(12,13,10,0.2); opacity: 0; will-change: transform, opacity; white-space: nowrap; pointer-events: none; }
.cn-morph { padding: 1rem 1.5rem 1rem 1rem; z-index: 9; white-space: normal; max-width: min(88vw, 420px); border-radius: 18px; box-shadow: 0 18px 44px -14px rgba(12,13,10,0.28), 0 0 0 1.5px rgba(158,255,0,0.4); }
.cn-morph .aff-ic { width: 42px; height: 42px; border-radius: 12px; }
.cn-morph .aff-t b { font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 700; letter-spacing: -0.02em; white-space: normal; line-height: 1.15; }
.cn-morph .aff-t small { font-size: 0.72rem; }

.cn-engine { position: absolute; left: 50%; top: 53%; width: min(88vw, 460px); text-align: center; padding: clamp(1.5rem, 2.6vw, 2.2rem) clamp(1.6rem, 3vw, 3rem); border-radius: 22px; background: rgba(13,15,8,0.94); border: 1px solid rgba(158,255,0,0.22); overflow: hidden; opacity: 0; will-change: transform, opacity; box-shadow: 0 24px 60px -20px rgba(15,20,4,0.55), 0 0 44px rgba(158,255,0,0.18); }
.cn-engine::before { content: ''; position: absolute; inset: -40%; background: radial-gradient(circle at 50% 60%, rgba(158,255,0,0.16), transparent 55%); animation: engDrift 7s ease-in-out infinite alternate; }
.cn-engine h3 { position: relative; display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-family: var(--font-display); font-size: clamp(1.25rem, 1.9vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; color: #F2F6E4; }
.cn-engine h3 svg { width: 19px; height: 19px; color: var(--accent); }

.cn-card { position: absolute; left: 0; top: 0; width: clamp(86px, 9.2vw, 126px); aspect-ratio: 9/15.5; background: #fff; border-radius: 13px; padding: 4px; box-shadow: 0 14px 32px -10px rgba(12,13,10,0.32); opacity: 0; will-change: transform, opacity; }
.cn-card .art { position: absolute; inset: 4px; border-radius: 10px; }
.cn-card img.art, .cn-card video.art { width: auto; height: auto; object-fit: cover; }
.cn-card b { position: absolute; left: 9px; top: 10px; right: 8px; z-index: 1; font-size: 0.54rem; line-height: 1.22; font-weight: 800; text-transform: uppercase; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.5); }
.cn-card .pn { position: absolute; left: 50%; bottom: 9px; transform: translateX(-50%); z-index: 1; text-decoration: none; font-size: 0.44rem; font-weight: 800; text-transform: uppercase; padding: 0.18rem 0.55rem; border-radius: 999px; white-space: nowrap; box-shadow: 0 3px 8px rgba(0,0,0,0.35); }
.cn-card .cm { position: absolute; left: 50%; bottom: -13px; transform: translateX(-50%); z-index: 2; font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700; background: #15170c; color: #D6FF4B; padding: 0.2rem 0.6rem; border-radius: 999px; white-space: nowrap; opacity: 0; transition: opacity 0.5s var(--ease); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.cn-cards.metrics .cn-card .cm { opacity: 1; }
.cm.up { animation: cmUp 0.55s ease; }
@keyframes cmUp { 0% { transform: translateX(-50%) scale(1.22); color: #fff; } 100% { transform: translateX(-50%) scale(1); } }
.cn-cards.judged .cn-card.lead { box-shadow: 0 0 0 2px var(--accent), 0 12px 34px -6px rgba(158,255,0,0.6); }
.cn-card.crown { z-index: 6; animation: crownPulse 2.4s ease-in-out infinite; }
@keyframes crownPulse { 0%, 100% { box-shadow: 0 0 0 3px var(--accent), 0 20px 55px -6px rgba(158,255,0,0.6); } 50% { box-shadow: 0 0 0 3.5px var(--accent), 0 26px 85px -2px rgba(158,255,0,0.95); } }

.cn-glabel { position: absolute; left: 0; top: 0; font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--ink-1); background: rgba(255,255,255,0.82); border: 1px solid rgba(12,13,10,0.07); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 0.24rem 0.65rem; border-radius: 999px; box-shadow: 0 6px 16px -8px rgba(12,13,10,0.2); opacity: 0; will-change: transform, opacity; white-space: nowrap; }

.cn-win { position: absolute; left: 0; top: 0; display: flex; flex-direction: column; align-items: center; gap: 0.55rem; opacity: 0; will-change: transform, opacity; z-index: 6; pointer-events: none; }
.cnw-badge { display: inline-flex; align-items: center; gap: 0.45rem; background: #15170c; color: var(--accent); font-family: var(--font-display); font-weight: 700; font-size: clamp(0.95rem, 1.3vw, 1.15rem); padding: 0.45rem 1rem; border-radius: 999px; box-shadow: 0 0 0 2px rgba(158,255,0,0.6), 0 10px 30px rgba(158,255,0,0.35); }
.cnw-badge svg { width: 15px; height: 15px; }
.cnw-stats { display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.cnw-stats span { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-1); }
.cnw-stats b { color: var(--accent-deep); font-size: 0.95rem; }
.cnw-stats .top1 { background: #17190f; color: var(--accent); padding: 0.3rem 0.7rem; border-radius: 999px; font-weight: 700; }

.cn-chip { position: absolute; left: 0; top: 0; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.95rem; border-radius: 999px; background: rgba(255,255,255,0.85); border: 1px solid rgba(12,13,10,0.08); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); font-weight: 600; font-size: clamp(0.72rem, 0.95vw, 0.86rem); color: var(--ink-1); box-shadow: 0 8px 20px -10px rgba(12,13,10,0.18); opacity: 0; will-change: transform, opacity; white-space: nowrap; pointer-events: none; }
.cn-chip .ck { width: 15px; height: 15px; border-radius: 50%; background: var(--accent); color: #17210a; display: grid; place-items: center; opacity: 0; transform: scale(0.3); transition: opacity 0.35s var(--ease), transform 0.45s cubic-bezier(0.18, 1.6, 0.4, 1); }
.cn-chip .ck svg { width: 8px; height: 8px; }
.cn-chip.ok .ck { opacity: 1; transform: scale(1); }
.cn-chip.ok { color: var(--ink-0); border-color: rgba(158,255,0,0.6); }

@media (max-width: 680px) {
    .cine { height: 560vh; }
    .cn-card { width: 74px; }
    .cn-card b { font-size: 0.46rem; }
    .cn-card .cm { font-size: 0.5rem; }
    .cn-card:nth-child(n+17) { display: none; }
    .cn-chip { padding: 0.34rem 0.55rem; font-size: 0.58rem; gap: 0.3rem; }
    .cn-file { padding: 0.4rem 0.6rem; gap: 0.4rem; }
    .cn-file .aff-t small { display: none; }
    .cn-head p { font-size: 0.9rem; }
    .cn-morph .aff-t b { font-size: 0.95rem; }
}
@media (prefers-reduced-motion: reduce) {
    .cn-linepulse { animation: none; }
    .cn-card.crown { animation: none; }
    .cn-engine::before { animation: none; }
}

/* ============================================================
   HOMEPAGE 8.0 — cinematic polish: bigger & sharper everything,
   engine processing layers, scan beam, aura, ripples
   ============================================================ */

/* scene 1 · bigger, tidier asset cards */
.cn-file { padding: 0.8rem 1.15rem 0.8rem 0.8rem; border-radius: 16px; gap: 0.7rem; box-shadow: 0 16px 38px -14px rgba(12,13,10,0.24); }
.cn-file .aff-ic { width: 40px; height: 40px; border-radius: 11px; font-size: 0.8rem; }
.cn-file .aff-ic svg { width: 20px; height: 20px; }
.cn-file .aff-t b { font-size: 0.95rem; }
.cn-file .aff-t small { font-size: 0.72rem; }

/* scene 2 · engine with processing layers */
.cn-engine { width: min(92vw, 520px); padding: clamp(1.4rem, 2.4vw, 2rem) clamp(1.4rem, 2.6vw, 2.4rem) clamp(1.1rem, 2vw, 1.6rem); }
.cn-layers { position: relative; display: flex; flex-direction: column; gap: 0.55rem; margin: 1rem 0 0.75rem; }
.cn-layer { display: flex; align-items: center; gap: 0.65rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(158,255,0,0.12); border-radius: 12px; padding: 0.52rem 0.7rem; opacity: 0.45; transition: opacity 0.35s, border-color 0.35s, background 0.35s; }
.cn-layer.active { opacity: 1; border-color: rgba(158,255,0,0.45); background: rgba(158,255,0,0.06); }
.cn-layer.done { opacity: 1; }
.cl-ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(158,255,0,0.14); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.cl-ic svg { width: 16px; height: 16px; }
.cl-t { flex: 1; min-width: 0; text-align: left; }
.cl-t b { display: block; font-size: 0.78rem; font-weight: 600; color: #EDF3DC; line-height: 1.2; }
.cl-bar { display: block; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.12); margin-top: 0.35rem; overflow: hidden; }
.cl-bar u { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #8FDD1F, #D6FF4B); border-radius: 2px; }
.cl-ck { width: 19px; height: 19px; border-radius: 50%; background: var(--accent); color: #17210a; display: grid; place-items: center; flex-shrink: 0; opacity: 0; transform: scale(0.4); transition: opacity 0.3s, transform 0.45s cubic-bezier(0.18, 1.6, 0.4, 1); }
.cl-ck svg { width: 10px; height: 10px; }
.cn-layer.done .cl-ck { opacity: 1; transform: scale(1); }

/* scene 3-5 · bigger sharper ad cards with real photos */
.cn-cards { perspective: 1100px; }
.cn-card { width: clamp(96px, 10vw, 140px); border-radius: 15px; padding: 4px; box-shadow: 0 18px 40px -12px rgba(12,13,10,0.38); }
.cn-card .art { inset: 4px; border-radius: 11px; }
.cn-card .art-tint { position: absolute; inset: 4px; border-radius: 11px; z-index: 0; background: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 34%, transparent 56%, rgba(0,0,0,0.55)); pointer-events: none; }
.cn-card b { left: 10px; top: 11px; right: 9px; font-size: 0.62rem; }
.cn-card .pn { bottom: 11px; font-size: 0.5rem; padding: 0.2rem 0.6rem; }
.cn-card .cm { bottom: -14px; font-size: 0.62rem; padding: 0.22rem 0.65rem; }
.cn-cards.judged .cn-card.lead { box-shadow: 0 0 0 2.5px var(--accent), 0 18px 48px -4px rgba(158,255,0,0.75); }

/* scene 4 · scan beam */
.cn-scan { position: absolute; left: 0; top: 7%; width: 3px; height: 86%; z-index: 3; opacity: 0; pointer-events: none; background: linear-gradient(180deg, transparent, rgba(158,255,0,0.95) 30%, rgba(158,255,0,0.95) 70%, transparent); box-shadow: 0 0 26px 7px rgba(158,255,0,0.35); will-change: transform, opacity; }

/* scene 5 · rotating aura behind the winner */
.cn-aura { position: absolute; left: 0; top: 0; width: min(48vw, 460px); aspect-ratio: 1; z-index: 4; opacity: 0; pointer-events: none; filter: blur(16px); will-change: transform, opacity; }
.cn-aura::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(158,255,0,0) 0deg, rgba(158,255,0,0.55) 45deg, rgba(158,255,0,0) 100deg, rgba(158,255,0,0) 175deg, rgba(158,255,0,0.4) 230deg, rgba(158,255,0,0) 290deg); animation: auraSpin 6s linear infinite; }
@keyframes auraSpin { to { transform: rotate(360deg); } }

/* scene 6 · deploy ripples */
.cn-ripples { position: absolute; left: 0; top: 0; z-index: 3; opacity: 0; pointer-events: none; will-change: transform, opacity; }
.cn-ripples i { position: absolute; left: -70px; top: -70px; width: 140px; height: 140px; border-radius: 50%; border: 2px solid rgba(158,255,0,0.6); animation: rippleOut 2.4s ease-out infinite; }
.cn-ripples i:nth-child(2) { animation-delay: 0.8s; }
.cn-ripples i:nth-child(3) { animation-delay: 1.6s; }
@keyframes rippleOut { 0% { transform: scale(0.55); opacity: 0.9; } 100% { transform: scale(3.6); opacity: 0; } }

/* scene 5-6 · bigger finale */
.cnw-badge { font-size: clamp(1.15rem, 1.7vw, 1.5rem); padding: 0.55rem 1.35rem; }
.cnw-badge svg { width: 18px; height: 18px; }
.cnw-stats { gap: 1.1rem; }
.cnw-stats span { font-size: 0.85rem; }
.cnw-stats b { font-size: 1.2rem; }
.cnw-stats .top1 { padding: 0.42rem 0.95rem; font-size: 0.85rem; }
.cn-chip { padding: 0.65rem 1.3rem; font-size: clamp(0.85rem, 1.05vw, 1rem); border-radius: 999px; box-shadow: 0 12px 26px -12px rgba(12,13,10,0.24); }
.cn-chip .ck { width: 18px; height: 18px; }
.cn-chip .ck svg { width: 10px; height: 10px; }

@media (max-width: 680px) {
    .cn-card { width: 80px; }
    .cn-file .aff-t b { font-size: 0.8rem; }
    .cn-file .aff-ic { width: 32px; height: 32px; }
    .cl-t b { font-size: 0.68rem; }
    .cn-engine { width: 94vw; }
    .cnw-badge { font-size: 1rem; }
    .cn-chip { padding: 0.4rem 0.7rem; font-size: 0.66rem; }
}
@media (prefers-reduced-motion: reduce) {
    .cn-aura::before, .cn-ripples i { animation: none; }
    .cn-scan { display: none; }
}

/* ============================================================
   HOMEPAGE 8.1 — orbiting assets & channel logos, silky engine,
   clean scan beam, full-bleed winner video, live CTA finale
   ============================================================ */

/* scene 1 · bigger orbiting asset cards */
.cn-file { padding: 0.9rem 1.25rem 0.9rem 0.85rem; border-radius: 18px; }
.cn-file .aff-ic { width: 44px; height: 44px; border-radius: 12px; }
.cn-file .aff-ic svg { width: 22px; height: 22px; }
.cn-file .aff-t b { font-size: 1rem; }
.cn-file .aff-t small { font-size: 0.74rem; }

/* scene 2 · silky engine */
.cl-bar u { transition: width 0.35s cubic-bezier(0.22, 0.9, 0.3, 1); }
.cn-layer { transition: opacity 0.5s var(--ease), border-color 0.5s, background 0.5s, transform 0.5s var(--ease); }
.cn-layer.active { transform: translateX(5px); }
.cn-layer.active .cl-ic { animation: clPulse 1.4s ease-in-out infinite; }
@keyframes clPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.14); } }
.cn-engine::after { content: ''; position: absolute; top: 0; bottom: 0; width: 55%; left: -70%; background: linear-gradient(100deg, transparent, rgba(214,255,75,0.09), transparent); animation: engShine 3.8s ease-in-out infinite; pointer-events: none; }
@keyframes engShine { 0% { left: -70%; } 55%, 100% { left: 115%; } }

/* scene 4 · cleaner scan beam with trail */
.cn-scan { width: 120px; background: linear-gradient(90deg, rgba(158,255,0,0) 0%, rgba(158,255,0,0.04) 50%, rgba(158,255,0,0.14) 80%, rgba(198,255,77,0.32) 100%); border-right: 2px solid rgba(198,255,77,0.95); box-shadow: 22px 0 46px -8px rgba(158,255,0,0.45); }
.cn-scan::after { content: ''; position: absolute; right: -3px; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.9) 30%, rgba(255,255,255,0.9) 70%, transparent); filter: blur(1.2px); }

/* winner video fills its frame edge-to-edge */
.cn-card.win video.art { object-fit: cover; }
.cn-card.crown .pn, .cn-card.crown .cm, .cn-card.crown b { display: none; }
.cn-card.crown .art-tint { background: linear-gradient(180deg, rgba(0,0,0,0.25), transparent 30%, transparent 62%, rgba(0,0,0,0.5)); }

/* winner stats pinned over the video */
.cnw-stats span { background: rgba(12,13,10,0.78); color: #EDF5D2; padding: 0.4rem 0.85rem; border-radius: 999px; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.cnw-stats b { color: var(--accent); }

/* scene 6 · orbiting channel logo badges + connected ring */
.cn-ring { fill: none; stroke: rgba(158,255,0,0.55); stroke-width: 1.6; stroke-dasharray: 10 14; opacity: 0; animation: ringSpin 12s linear infinite; }
@keyframes ringSpin { to { stroke-dashoffset: -240; } }
.cn-chip { flex-direction: column; gap: 0.4rem; padding: 0; background: none; border: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.cn-chip .glyph { position: relative; width: 58px; height: 58px; border-radius: 50%; background: #fff; border: 1px solid rgba(12,13,10,0.08); box-shadow: 0 14px 30px -10px rgba(12,13,10,0.32); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.cn-chip .glyph svg { width: 27px; height: 27px; }
.cn-chip .glyph b { font-style: normal; }
.cn-chip .nm { font-size: 0.72rem; font-weight: 600; color: var(--ink-1); background: rgba(255,255,255,0.88); padding: 0.2rem 0.65rem; border-radius: 999px; box-shadow: 0 6px 14px -8px rgba(12,13,10,0.25); white-space: nowrap; }
.cn-chip .ck { position: absolute; top: -2px; left: 50%; margin-left: 16px; }
.cn-chip.ok .glyph { box-shadow: 0 0 0 2.5px var(--accent), 0 14px 34px -8px rgba(158,255,0,0.55); }

/* finale · live CTA */
.cn-morph { pointer-events: none; background: #15170c; border: none; box-shadow: 0 0 0 2px rgba(158,255,0,0.8), 0 26px 64px -16px rgba(158,255,0,0.5); transition: box-shadow 0.3s var(--ease); }
.cn-morph.live { pointer-events: auto; }
.cn-morph.live:hover { box-shadow: 0 0 0 3px var(--accent), 0 32px 76px -12px rgba(158,255,0,0.7); }
.cn-morph .aff-ic.doc { background: rgba(158,255,0,0.16); color: var(--accent); }
.cn-morph .aff-t b { color: #F2F6E4; }
.cn-morph .aff-t b .lime { background: linear-gradient(90deg, #C6FF4D, #9EFF00); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cn-morph .aff-t small { color: rgba(230,240,200,0.75); }
.cn-morph .cm-go { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #17210a; display: grid; place-items: center; margin-left: 0.5rem; flex-shrink: 0; }
.cn-morph .cm-go svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.cn-morph.live:hover .cm-go svg { transform: translateX(3px); }

@media (max-width: 680px) {
    .cn-file { padding: 0.5rem 0.7rem; }
    .cn-file .aff-ic { width: 34px; height: 34px; }
    .cn-file .aff-t b { font-size: 0.8rem; }
    .cn-chip .glyph { width: 44px; height: 44px; }
    .cn-chip .glyph svg { width: 20px; height: 20px; }
    .cn-chip .nm { font-size: 0.6rem; }
}
@media (prefers-reduced-motion: reduce) {
    .cn-ring, .cn-layer.active .cl-ic, .cn-engine::after { animation: none; }
}

/* ============================================================
   HOMEPAGE 8.5 — cinematic perfection pass: core logo, portrait
   engine, 9:16 ad videos, tidy winner line-up, true brand marks
   ============================================================ */

/* scene 1 · Cleom logo at the orbit's heart + larger asset cards */
.cn-corelogo { position: absolute; left: 0; top: 0; width: clamp(76px, 8.5vw, 118px); height: auto; z-index: 2; opacity: 0; will-change: transform, opacity; pointer-events: none; filter: drop-shadow(0 14px 34px rgba(120,180,0,0.4)); }
.cn-file { padding: 1rem 1.4rem 1rem 1rem; border-radius: 20px; gap: 0.8rem; }
.cn-file .aff-ic { width: 48px; height: 48px; border-radius: 13px; }
.cn-file .aff-ic svg { width: 24px; height: 24px; }
.cn-file .aff-t b { font-size: 1.05rem; }
.cn-file .aff-t small { font-size: 0.78rem; }

/* scene 2 · portrait (9:16) engine with six layers */
.cn-engine { width: min(66vw, 285px); aspect-ratio: 9/15.2; display: flex; flex-direction: column; padding: 1.35rem 1.1rem 1.1rem; }
.cn-engine h3 { font-size: clamp(1rem, 1.4vw, 1.22rem); flex-shrink: 0; }
.cn-layers { gap: 0.42rem; margin: 0.85rem 0 0; flex: 1; justify-content: center; }
.cn-layer { padding: 0.42rem 0.55rem; border-radius: 10px; gap: 0.5rem; }
.cl-ic { width: 26px; height: 26px; border-radius: 8px; }
.cl-ic svg { width: 14px; height: 14px; }
.cl-t b { font-size: 0.67rem; }
.cl-bar { margin-top: 0.26rem; height: 3.5px; }
.cl-ck { width: 16px; height: 16px; }
.cl-ck svg { width: 9px; height: 9px; }

/* scene 3 · true 9:16 video cards, edge-to-edge */
.cn-card { aspect-ratio: 9/16; }
.cn-card video.art { object-fit: cover; }
.cn-card .art-tint { background: linear-gradient(180deg, rgba(0,0,0,0.16), transparent 26%, transparent 74%, rgba(0,0,0,0.28)); }
.cn-card.win .art, .cn-card.win .art-tint { inset: 0; border-radius: 14px; }

/* scene 6 · bigger true-brand badges, always on top */
.cn-win { z-index: 8; }
.cn-chip { z-index: 9; }
.cn-chip .glyph { width: 70px; height: 70px; }
.cn-chip .glyph svg { width: 38px; height: 38px; }
.cn-chip .nm { font-size: 0.84rem; padding: 0.26rem 0.85rem; }
.cn-chip .ck { width: 19px; height: 19px; margin-left: 20px; }
.cn-chip .ck svg { width: 10px; height: 10px; }

@media (max-width: 680px) {
    .cn-card:nth-child(n+13) { display: none; }
    .cn-engine { width: 76vw; }
    .cn-corelogo { width: 64px; }
    .cn-chip .glyph { width: 50px; height: 50px; }
    .cn-chip .glyph svg { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) { .cn-corelogo { animation: none; } }

/* ============================================================
   HOMEPAGE 8.6 — fixes: engine centered, 16:9 videos fill 9:16
   frames, official CDN logos, no horizontal headline flare
   ============================================================ */

/* 1 · engine: JS now positions it fully — kill the CSS offset that doubled up */
.cn-engine { left: 0; top: 0; }

/* 2 · media must stretch to the frame (absolute replaced elements default to
      intrinsic size) so landscape videos crop-fill the 9:16 card */
.cn-card img.art, .cn-card video.art { inset: auto; left: 4px; top: 4px; width: calc(100% - 8px); height: calc(100% - 8px); object-fit: cover; }
.cn-card.win img.art, .cn-card.win video.art { left: 0; top: 0; width: 100%; height: 100%; }

/* 3 · official logos from Simple Icons CDN (+ inline fallback) */
.cn-chip .glyph .gimg { width: 36px; height: 36px; display: block; }
.cn-chip .glyph .fbg { display: none; }
.cn-chip .glyph.fb .gimg { display: none; }
.cn-chip .glyph.fb .fbg { display: grid; place-items: center; width: 100%; height: 100%; }
.cn-chip .glyph.fb .fbg svg { width: 38px; height: 38px; }
@media (max-width: 680px) { .cn-chip .glyph .gimg { width: 26px; height: 26px; } }

/* 4 · scroll headlines: remove the horizontal light-bar sweep entirely */
.os-headline-pin::before, .os-headline-pin::after { display: none !important; animation: none !important; }

/* ============================================================
   HOMEPAGE 8.7 — bigger engine, official logo files, scene
   progress dots, "Launch everywhere" as the finale
   ============================================================ */

/* scene 2 · roomier engine */
.cn-engine { width: min(72vw, 330px); }
.cn-engine h3 { font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.cl-t b { font-size: 0.73rem; }
.cl-ic { width: 28px; height: 28px; }
.cl-ic svg { width: 15px; height: 15px; }

/* scene 6 · official channel logos (image files clipped inside the white disc) */
.cn-chip .glyph { overflow: hidden; }
.cn-chip .glyph .gimg { width: 72%; height: 72%; object-fit: contain; border-radius: 50%; }

/* right-rail scene progress dots */
.cn-progress { position: absolute; right: clamp(16px, 3.2vw, 42px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 14px; z-index: 12; opacity: 0; pointer-events: none; }
.cn-progress i { width: 9px; height: 9px; border-radius: 50%; background: rgba(12,13,10,0.16); transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.cn-progress i.past { background: rgba(158,255,0,0.55); }
.cn-progress i.on { background: var(--accent); transform: scale(1.35); box-shadow: 0 0 0 4px rgba(158,255,0,0.16), 0 0 14px rgba(158,255,0,0.5); }

@media (max-width: 680px) {
    .cn-engine { width: 82vw; }
    .cn-progress { right: 9px; gap: 10px; }
    .cn-progress i { width: 7px; height: 7px; }
    .cn-chip .glyph .gimg { width: 74%; height: 74%; }
}

/* ============================================================
   HOMEPAGE 8.8 — larger desktop engine, calmer finale greens
   ============================================================ */

.cn-engine { width: min(76vw, 372px); max-height: 78vh; }
.cn-engine h3 { font-size: clamp(1.1rem, 1.6vw, 1.42rem); }
.cn-layers { gap: 0.55rem; }
.cn-layer { padding: 0.52rem 0.68rem; }
.cl-t b { font-size: 0.79rem; }
.cl-ic { width: 31px; height: 31px; }
.cl-ic svg { width: 16px; height: 16px; }
.cl-bar { height: 4px; margin-top: 0.32rem; }

@media (max-width: 680px) { .cn-engine { width: 84vw; } }

/* ============================================================
   HOMEPAGE 8.9 — huge background radar, loud lime group labels
   ============================================================ */

/* launch-everywhere radar: pushed behind the scene, big and airy */
.cn-ripples { z-index: 0; }
.cn-ripples i { left: -175px; top: -175px; width: 350px; height: 350px; border-width: 1.5px; border-color: rgba(158,255,0,0.24); animation-duration: 3.4s; }
.cn-ripples i:nth-child(2) { animation-delay: 1.15s; }
.cn-ripples i:nth-child(3) { animation-delay: 2.3s; }

/* it-creates-hundreds group labels: bigger, lime, pulsing */
.cn-glabel { font-size: 0.8rem; padding: 0.44rem 1.05rem; letter-spacing: 0.11em; color: #1A2408; background: linear-gradient(120deg, rgba(214,255,75,0.95), rgba(158,255,0,0.9)); border: 1px solid rgba(120,180,0,0.5); z-index: 7; box-shadow: 0 12px 28px -10px rgba(120,180,0,0.55); animation: glabelPulse 2.2s ease-in-out infinite; }
@keyframes glabelPulse {
    0%, 100% { box-shadow: 0 12px 28px -10px rgba(120,180,0,0.55), 0 0 0 0 rgba(158,255,0,0.45); }
    50% { box-shadow: 0 12px 28px -10px rgba(120,180,0,0.55), 0 0 0 10px rgba(158,255,0,0); }
}

@media (max-width: 680px) {
    .cn-glabel { font-size: 0.6rem; padding: 0.3rem 0.7rem; }
    .cn-ripples i { left: -120px; top: -120px; width: 240px; height: 240px; }
}
@media (prefers-reduced-motion: reduce) { .cn-glabel { animation: none; } }

/* ============================================================
   HOMEPAGE 8.2 — CINEMATIC v2 (reference-grade test section)
   ============================================================ */
.cine2 { position: relative; height: 560vh; }
.c2-assets, .c2-cards, .c2-stats, .c2-chips { position: absolute; inset: 0; pointer-events: none; }

/* particle-dot connection lines */
.c2-lglow { fill: none; stroke: rgba(198,255,77,0.45); stroke-width: 6; filter: blur(4px); opacity: 0; }
.c2-ldots { fill: none; stroke: #C6FF4D; stroke-width: 4.5; stroke-linecap: round; stroke-dasharray: 0.5 14; opacity: 0; animation: c2dots 1.5s linear infinite; filter: drop-shadow(0 0 4px rgba(158,255,0,0.8)); }
.c2-lglow.thin { stroke-width: 3.5; } .c2-ldots.thin { stroke-width: 3; stroke-dasharray: 0.5 18; }
@keyframes c2dots { to { stroke-dashoffset: -29; } }

/* glass asset tiles */
.c2-tile { position: absolute; left: 0; top: 0; width: clamp(116px, 11.4vw, 148px); display: flex; flex-direction: column; align-items: center; gap: 0.45rem; padding: 1rem 0.8rem 0.85rem; border-radius: 20px; background: linear-gradient(160deg, rgba(255,255,255,0.82), rgba(255,255,255,0.55)); border: 1px solid rgba(255,255,255,0.9); box-shadow: 0 20px 44px -18px rgba(90,100,40,0.35), inset 0 1px 0 rgba(255,255,255,0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; will-change: transform, opacity; }
.c2t-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; }
.c2t-ic svg { width: 40px; height: 40px; filter: drop-shadow(0 4px 8px rgba(12,13,10,0.18)); }
.c2-tile b { font-size: 0.74rem; font-weight: 600; color: var(--ink-0); text-align: center; line-height: 1.2; }
.c2t-cat { font-family: var(--font-mono); font-size: 0.54rem; font-weight: 700; font-style: normal; text-transform: capitalize; padding: 0.16rem 0.55rem; border-radius: 999px; border: 1px solid; }

/* engine slab */
.c2-engine { position: absolute; left: 0; top: 0; width: min(78vw, 400px); aspect-ratio: 16/9.6; border-radius: 30px; background: linear-gradient(170deg, #16180d 0%, #0c0e07 55%, #131608 100%); border: 1px solid rgba(158,255,0,0.2); overflow: hidden; opacity: 0; will-change: transform, opacity; box-shadow: 0 34px 80px -24px rgba(20,26,4,0.6), 0 12px 44px -6px rgba(158,255,0,0.35), inset 0 1px 0 rgba(255,255,255,0.14); }
.c2-engine::before { content: ''; position: absolute; left: 6%; right: 6%; top: 0; height: 42%; border-radius: 0 0 50% 50%; background: linear-gradient(180deg, rgba(255,255,255,0.14), transparent); pointer-events: none; }
.c2-engine::after { content: ''; position: absolute; left: 10%; right: 10%; bottom: -14px; height: 26px; border-radius: 50%; background: radial-gradient(50% 100% at 50% 0%, rgba(158,255,0,0.55), transparent 75%); filter: blur(6px); }
.c2e-net { position: absolute; inset: auto 0 0 0; width: 100%; height: 62%; }
.c2-engine h3 { position: relative; text-align: center; margin-top: 13%; font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 600; letter-spacing: -0.01em; color: #F4F7E8; }
.c2e-dots { position: relative; display: flex; justify-content: center; gap: 0.55rem; margin-top: 0.7rem; }
.c2e-dots i { width: 9px; height: 9px; border-radius: 50%; background: #3a3f2a; }
.c2e-dots i.on { background: var(--accent); box-shadow: 0 0 10px rgba(158,255,0,0.9); animation: c2think 1.2s ease-in-out infinite; }
.c2e-dots i.on:nth-child(2) { animation-delay: 0.15s; } .c2e-dots i.on:nth-child(3) { animation-delay: 0.3s; }
@keyframes c2think { 0%, 100% { transform: scale(0.85); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 1; } }

/* premium ad cards */
.c2-card { position: absolute; left: 0; top: 0; width: clamp(98px, 9.8vw, 134px); background: #fff; border-radius: 16px; padding: 5px; box-shadow: 0 18px 42px -14px rgba(60,70,20,0.4); opacity: 0; will-change: transform, opacity; display: flex; flex-direction: column; gap: 4px; }
.c2c-art { position: relative; aspect-ratio: 9/12.2; border-radius: 12px; overflow: hidden; background: linear-gradient(160deg, #24303e, #0e141b); }
.c2c-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.c2c-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 38%, transparent 66%, rgba(0,0,0,0.4)); }
.c2c-art b { position: absolute; left: 9px; top: 9px; right: 8px; font-size: 0.6rem; font-weight: 800; line-height: 1.25; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.9); }
.c2c-foot { display: flex; align-items: center; justify-content: space-around; gap: 4px; background: linear-gradient(170deg, #1c2410, #10150a); border-radius: 10px; padding: 0.32rem 0.4rem; }
.c2c-foot span { display: flex; flex-direction: column; align-items: center; font-family: var(--font-mono); font-size: 0.42rem; text-transform: uppercase; color: #B9D96A; line-height: 1.3; }
.c2c-foot span b { font-size: 0.62rem; color: #fff; font-family: var(--font-display); }
.c2c-foot.big { flex-wrap: wrap; padding: 0.45rem 0.5rem 0.4rem; }
.c2c-foot.big span { font-size: 0.5rem; } .c2c-foot.big span b { font-size: 0.8rem; }
.c2c-spark { width: 100%; height: 20px; margin-top: 2px; }
.c2-card.ghost { width: clamp(70px, 7vw, 96px); filter: grayscale(0.75); box-shadow: 0 10px 24px -12px rgba(60,70,20,0.25); }
.c2-card.ghost .c2c-art { aspect-ratio: 9/13; }
.c2-cards.funnel .c2-card.t-hi { box-shadow: 0 0 0 2.5px #C6FF4D, 0 20px 60px -8px rgba(158,255,0,0.75); }
.c2-cards.funnel .c2-card.t-lo { filter: grayscale(0.5); }
.c2-card.win.crown { z-index: 6; animation: c2crown 2.4s ease-in-out infinite; }
@keyframes c2crown { 0%, 100% { box-shadow: 0 0 0 3px #C6FF4D, 0 26px 70px -6px rgba(158,255,0,0.65); } 50% { box-shadow: 0 0 0 4px #D6FF4B, 0 32px 95px 0 rgba(158,255,0,0.95); } }

/* funnel stat chips + legend */
.c2-stat { position: absolute; left: 0; top: 0; width: 150px; background: #fff; border: 1px solid rgba(12,13,10,0.06); border-radius: 16px; padding: 0.7rem 0.85rem 0.55rem; box-shadow: 0 16px 36px -16px rgba(60,70,20,0.3); opacity: 0; will-change: transform, opacity; }
.c2-stat .lbl { font-size: 0.68rem; font-weight: 600; color: var(--ink-1); }
.c2-stat .row { display: flex; align-items: baseline; justify-content: space-between; margin: 0.15rem 0 0.2rem; }
.c2-stat .row b { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ink-0); }
.c2-stat .row i { font-style: normal; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700; color: #55A011; }
.c2-stat svg { width: 100%; height: 18px; }
.c2-legend { position: absolute; left: 0; top: 0; display: flex; gap: 1.4rem; opacity: 0; will-change: transform, opacity; background: rgba(255,255,255,0.8); padding: 0.5rem 1.1rem; border-radius: 999px; box-shadow: 0 10px 26px -14px rgba(12,13,10,0.25); backdrop-filter: blur(6px); }
.c2-legend span { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.74rem; font-weight: 600; color: var(--ink-1); white-space: nowrap; }
.c2-legend i { width: 9px; height: 9px; border-radius: 50%; }
.c2-legend .hi { background: #9EDD1F; box-shadow: 0 0 8px rgba(158,255,0,0.8); }
.c2-legend .md { background: #B9BCA8; } .c2-legend .lo { background: #DDDFD2; }

/* winner side panel */
.c2-winpanel { position: absolute; left: 0; top: 0; width: 200px; background: linear-gradient(170deg, #191d0e, #0e1108); border: 1px solid rgba(198,255,77,0.35); border-radius: 20px; padding: 1rem 1.1rem 1.6rem; opacity: 0; will-change: transform, opacity; box-shadow: 0 24px 60px -18px rgba(20,26,4,0.55), 0 0 34px rgba(158,255,0,0.25); }
.c2w-head { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #D6FF4B; margin-bottom: 0.6rem; }
.c2w-head svg { width: 20px; height: 20px; }
.c2w-row { display: flex; justify-content: space-between; padding: 0.42rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.c2w-row:last-of-type { border-bottom: none; }
.c2w-row span { font-size: 0.8rem; color: #B9BCA8; }
.c2w-row b { font-family: var(--font-mono); font-size: 0.88rem; color: #D6FF4B; }
.c2w-laurel { position: absolute; left: 50%; bottom: -18px; transform: translateX(-50%); width: 40px; height: 40px; border-radius: 50%; background: #15180b; border: 1.5px solid rgba(198,255,77,0.5); color: #C6FF4D; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(158,255,0,0.3); }
.c2w-laurel svg { width: 22px; height: 22px; }

/* channel logo pills */
.c2-pill { position: absolute; left: 0; top: 0; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.15rem; border-radius: 999px; background: linear-gradient(160deg, #ffffff, #f4f5ec); border: 1px solid rgba(255,255,255,0.9); box-shadow: 0 18px 40px -16px rgba(90,100,40,0.4), inset 0 1px 0 #fff; opacity: 0; will-change: transform, opacity; white-space: nowrap; }
.c2-pill .pg { width: 26px; height: 26px; display: grid; place-items: center; }
.c2-pill .pg svg { width: 24px; height: 24px; }
.c2-pill b { font-size: 0.95rem; font-weight: 700; color: #1c1e16; }
.c2-pill .ck { width: 20px; height: 20px; border-radius: 50%; background: #3CCB5A; color: #fff; display: grid; place-items: center; opacity: 0; transform: scale(0.3); transition: opacity 0.35s var(--ease), transform 0.45s cubic-bezier(0.18, 1.6, 0.4, 1); }
.c2-pill .ck svg { width: 10px; height: 10px; }
.c2-pill.ok .ck { opacity: 1; transform: scale(1); }
.c2-pill.ok { box-shadow: 0 0 0 2px rgba(158,255,0,0.55), 0 18px 44px -14px rgba(158,255,0,0.5); }

@media (max-width: 740px) {
    .cine2 { height: 500vh; }
    .c2-tile { width: 96px; padding: 0.7rem 0.5rem 0.6rem; }
    .c2-tile b { font-size: 0.6rem; }
    .c2-card { width: 82px; } .c2-card.ghost { width: 58px; }
    .c2-stat { display: none; }
    .c2-pill { padding: 0.45rem 0.7rem; } .c2-pill b { font-size: 0.7rem; }
    .c2-legend { gap: 0.7rem; } .c2-legend span { font-size: 0.6rem; }
}
@media (prefers-reduced-motion: reduce) {
    .c2-ldots, .c2e-dots i.on, .c2-card.win.crown { animation: none; }
}

/* ============================================================
   HOMEPAGE 8.3 — CINEMATIC v2 = reference renders as scenes
   ============================================================ */
.c2s-stage { position: absolute; inset: 0; }
.c2s-scene { position: absolute; inset: 0; display: grid; place-items: center; padding: clamp(96px, 14vh, 150px) clamp(10px, 2.5vw, 32px) clamp(18px, 3.5vh, 40px); opacity: 0; will-change: transform, opacity; }
.c2s-scene img { max-width: min(100%, 1420px); max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 24px; border: 1px solid rgba(12,13,10,0.05); box-shadow: 0 40px 90px -30px rgba(90,100,40,0.28); background: #fff; }
.c2s-scene.missing img { display: none; }
.c2s-scene.missing::after { content: 'Görsel bekleniyor — bu sahnenin referans PNG\'sini Docs klasörüne kaydet (scene1.png … scene5.png)'; max-width: 460px; text-align: center; padding: 2.2rem 2.4rem; border: 2px dashed rgba(12,13,10,0.18); border-radius: 20px; color: var(--ink-2); font-size: 0.95rem; line-height: 1.55; background: rgba(255,255,255,0.6); }
.c2s-progress { position: absolute; right: clamp(14px, 3vw, 40px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 11px; z-index: 6; }
.c2s-progress i { width: 8px; height: 8px; border-radius: 50%; background: #D6D8C6; transition: background 0.35s, transform 0.35s var(--ease), box-shadow 0.35s; }
.c2s-progress i.on { background: var(--accent); transform: scale(1.35); box-shadow: 0 0 10px rgba(158,255,0,0.8); }
@media (max-width: 680px) {
    .c2s-scene { padding-top: 88px; }
    .c2s-scene img { border-radius: 14px; }
    .c2s-progress { right: 8px; gap: 8px; }
}

/* ============================================================
   HOMEPAGE 9.0 — mobile polish (desktop untouched):
   tighter scroll-headline spacing, smarter cine card set
   ============================================================ */
@media (max-width: 680px) {
    /* scroll headlines: static on phones — no fade, but a full-screen breather
       above and below so sections keep their rhythm */
    .os-headline { height: auto; }
    .os-headline-pin { position: relative; height: auto; min-height: 0; padding: 48vh var(--px); opacity: 1 !important; transform: none !important; filter: none !important; }
    .os-section-title { font-size: clamp(1.7rem, 8.4vw, 2.4rem); }
    .headline-sub { font-size: 0.9rem; }

    /* cine: keep ALL winners/leads on stage; trim only background cards.
       Resets the older nth-child hide rules, then hides late non-leads. */
    .cn-cards .cn-card { display: block; }
    .cn-cards .cn-card:not(.win):not(.lead):nth-child(n+10) { display: none; }
    .cn-card { width: 84px; }
    .cn-glabel { font-size: 0.52rem; padding: 0.24rem 0.55rem; }
    .cn-win { transform-origin: center; }
    .cnw-stats { gap: 0.5rem; }
    .cnw-stats span { font-size: 0.66rem; padding: 0.28rem 0.6rem; }
    .cn-progress { right: 6px; }

    /* orbit asset cards: slimmer so the wider mobile ring fits */
    .cn-file { padding: 0.45rem 0.6rem; gap: 0.45rem; border-radius: 12px; }
    .cn-file .aff-ic { width: 28px; height: 28px; border-radius: 9px; }
    .cn-file .aff-ic svg { width: 15px; height: 15px; }
    .cn-file .aff-t b { font-size: 0.68rem; }
    .cn-file .aff-t small { font-size: 0.58rem; }
    .cn-corelogo { width: 56px; }

    /* engine fits comfortably */
    .cn-engine { width: 86vw; max-height: 66vh; }
    .cl-t b { font-size: 0.64rem; }

    /* general breathing room */
    .os-section { padding-top: clamp(2.5rem, 9vw, 4rem); padding-bottom: clamp(2.5rem, 9vw, 4rem); }
}
