/* ═══════════════════════════════════════════════════════════
   AXSOlab — dark cinematic theme
   ═══════════════════════════════════════════════════════════ */
:root {
  --bg: #06060a;
  --bg-alt: #0b0b11;
  --panel: #0e0e15;
  --panel-2: #12121b;
  --ink: #efe9dc;
  --muted: #9a937f;
  --dim: #5c564a;
  --gold: #d4a24e;
  --gold-bright: #f0c56a;
  --gold-deep: #9a6b1f;
  --line: rgba(212, 162, 78, 0.18);
  --line-soft: rgba(212, 162, 78, 0.08);
  --danger: #c96a5a;
  --ok: #7fbf8e;
  --serif: "Cinzel", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --pad: clamp(1.2rem, 4vw, 4rem);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #14100a; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--gold-bright); }

/* subtle film grain */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 900; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ══════════ LOADER ══════════ */
#loader { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; background: var(--bg); }
.loader-inner { text-align: center; color: var(--gold); }
.loader-mark { height: 84px; width: auto; margin: 0 auto 1.4rem; opacity: 0; }
.loader-line { font-family: var(--serif); letter-spacing: 0.45em; font-size: 0.72rem; color: var(--muted); }
.loader-curtain { position: absolute; top: 0; bottom: 0; width: 51%; background: #020204; z-index: 2; }
.loader-curtain--l { left: 0; border-right: 1px solid rgba(212,162,78,.25); }
.loader-curtain--r { right: 0; border-left: 1px solid rgba(212,162,78,.25); }

/* ══════════ NAV ══════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; gap: 1.6rem;
  padding: 0.9rem var(--pad);
  background: linear-gradient(180deg, rgba(6,6,10,.92), rgba(6,6,10,0));
  backdrop-filter: blur(6px);
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled { background: rgba(6,6,10,.88); border-bottom-color: var(--line-soft); }
#nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#nav-burger.open span:nth-child(2) { opacity: 0; }
#nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* orbit dash flow */
.orbit-ring { animation: dashspin 46s linear infinite; }
.orbit-ring--2 { animation: dashspin 32s linear infinite reverse; }
.way-ring { animation: dashspin 60s linear infinite; }
.way-ring--2 { animation: dashspin 44s linear infinite reverse; }
@keyframes dashspin { to { stroke-dashoffset: -600; } }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.logo-mark { width: 30px; height: 30px; }
.logo-mark--sm { width: 40px; height: 40px; margin-bottom: 0.8rem; }
.logo-img { height: 34px; width: auto; }
.logo-img--sm { height: 46px; width: auto; margin-bottom: 0.8rem; }
.logo-word { font-family: var(--serif); font-weight: 700; letter-spacing: 0.14em; font-size: 1.05rem; }
.logo-lab { color: var(--gold); font-weight: 500; margin-left: 0.15em; }
.nav-links { display: flex; gap: 1.15rem; align-items: center; }
.nav-links a { font-size: 0.76rem; letter-spacing: 0.08em; color: var(--muted); transition: color .25s; white-space: nowrap; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-links .n { color: var(--gold); margin-right: 0.25rem; font-family: var(--serif); font-size: 0.62rem; }
.nav-cta {
  font-family: var(--serif); font-size: 0.78rem; letter-spacing: 0.1em;
  border: 1px solid var(--line); color: var(--gold-bright);
  padding: 0.5rem 1.1rem; border-radius: 2px; transition: all .3s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: #14100a; border-color: var(--gold); }
#nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 502; }
#nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: .3s; }

#nav-overlay {
  position: fixed; inset: 0; z-index: 480; background: rgba(5,5,9,.97);
  display: flex; flex-direction: column; justify-content: center; gap: 1.1rem;
  padding: var(--pad); opacity: 0; pointer-events: none; transition: opacity .35s;
}
#nav-overlay.open { opacity: 1; pointer-events: auto; }
#nav-overlay a { font-family: var(--serif); font-size: clamp(1.5rem, 5vw, 2.2rem); color: var(--ink); }
#nav-overlay a .n { color: var(--gold); font-size: 0.8rem; margin-right: 0.8rem; vertical-align: super; }

/* ══════════ HERO ══════════ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-vignette { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 42%, transparent 0%, transparent 40%, rgba(6,6,10,.55) 78%, rgba(6,6,10,.92) 100%); }
.hero-content { position: relative; text-align: center; max-width: 900px; padding: 0 1.4rem; z-index: 2; }
.hero-eyebrow { font-family: var(--serif); letter-spacing: 0.5em; font-size: 0.72rem; color: var(--gold); margin-bottom: 1.6rem; }
.hero-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 8vw, 5.6rem); line-height: 1.08; }
.hero-title .line { display: block; overflow: hidden; }
.hero-sub { margin: 1.6rem auto 2.2rem; max-width: 620px; color: var(--muted); font-size: clamp(0.95rem, 2vw, 1.08rem); }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; padding: 0.85rem 1.9rem; font-family: var(--serif); font-size: 0.85rem; letter-spacing: 0.12em; border-radius: 2px; cursor: pointer; transition: all .3s; border: 1px solid transparent; }
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #171106; box-shadow: 0 6px 30px rgba(212,162,78,.22); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(212,162,78,.35); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.hero-foot { position: absolute; bottom: 2.6rem; left: 0; right: 0; display: flex; justify-content: center; align-items: center; gap: 1.1rem; z-index: 2; flex-wrap: wrap; padding: 0 1rem; }
.hf-item { font-size: 0.62rem; letter-spacing: 0.3em; color: var(--dim); }
.hero-foot i { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: .7; }
.scroll-cue { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span { display: block; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .3; } 50% { transform: scaleY(1); opacity: 1; } }

/* ══════════ MANIFESTO ══════════ */
.manifesto { padding: clamp(5rem, 12vw, 10rem) var(--pad); text-align: center; border-top: 1px solid var(--line-soft); }
.mani-inner { max-width: 950px; margin: 0 auto; }
.mani-line { font-family: var(--serif); font-size: clamp(1.4rem, 3.6vw, 2.5rem); line-height: 1.5; color: var(--ink); }
.mani-line--gold { color: var(--gold-bright); }

/* ══════════ SECTIONS ══════════ */
.section { padding: clamp(4.5rem, 10vw, 8.5rem) var(--pad); border-top: 1px solid var(--line-soft); position: relative; }
.section--alt { background: var(--bg-alt); }
.sec-head { max-width: var(--maxw); margin: 0 auto 3.2rem; }
.sec-num { font-family: var(--serif); color: var(--gold); font-size: 0.8rem; letter-spacing: .3em; margin-bottom: .7rem; }
.sec-kicker { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--dim); margin-bottom: .9rem; }
.sec-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5.4vw, 3.6rem); line-height: 1.12; }
.sec-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.sec-copy p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.02rem; }
.sec-copy p strong { color: var(--ink); font-weight: 500; }
.sec-copy p em { color: var(--gold-bright); }

.feat-list { list-style: none; display: grid; gap: .8rem; margin-top: 1.6rem; }
.feat-list li { display: flex; align-items: center; gap: .8rem; color: var(--ink); font-size: .95rem; }
.feat-list .dot { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex: none; }

/* ══════════ 01 SAMPLES ══════════ */
.samples { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.sample-card { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 4px; overflow: hidden; transition: transform .35s, border-color .35s; cursor: pointer; }
.sample-card:hover { transform: translateY(-4px); border-color: var(--line); }
.sample-vis { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.sample-vis::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(240,197,106,.22), transparent 65%); opacity: .6; transition: opacity .35s; }
.sample-card:hover .sample-vis::after { opacity: 1; }
.sample-vis--1 { background: linear-gradient(135deg, #1a1420, #2b1e2e); }
.sample-vis--2 { background: linear-gradient(135deg, #101a24, #1d2b3d); }
.sample-vis--3 { background: linear-gradient(135deg, #141a16, #203026); }
.sample-vis--4 { background: linear-gradient(135deg, #1c1610, #33271a); }
.sample-vis--5 { background: linear-gradient(135deg, #131018, #2a1c33); }
.sample-glyph { font-size: 1.9rem; color: var(--gold-bright); z-index: 1; text-shadow: 0 0 26px rgba(240,197,106,.6); }
.sample-meta { padding: 1rem 1.1rem 1.1rem; }
.sample-meta h4 { font-family: var(--serif); font-size: 1rem; font-weight: 600; }
.sample-meta p { font-size: .78rem; color: var(--muted); margin-top: .25rem; }
.sample-go { display: inline-block; margin-top: .6rem; font-size: .7rem; letter-spacing: .14em; color: var(--gold); }

/* video sample cards */
.sample-card--video { cursor: default; }
.sample-video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #000; }

/* ══════════ 02 SEO ══════════ */
.live-label { width: 100%; font-size: .62rem; letter-spacing: .3em; color: var(--dim); }

.pipeline { list-style: none; display: grid; gap: .9rem; counter-reset: p; }
.pipeline li { display: grid; grid-template-columns: 3.2rem 1fr; gap: .2rem 1rem; padding: 1.1rem 1.2rem; background: var(--panel); border: 1px solid var(--line-soft); border-left: 2px solid var(--gold-deep); border-radius: 3px; transition: border-color .3s, transform .3s; }
.pipeline li:hover { border-left-color: var(--gold-bright); transform: translateX(4px); }
.p-num { font-family: var(--serif); color: var(--gold); font-size: .95rem; grid-row: span 2; align-self: center; }
.pipeline h4 { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; }
.pipeline p { color: var(--muted); font-size: .86rem; }

/* ══════════ 02b SEO MONITORING ══════════ */
.monitor { margin-top: 1.8rem; display: grid; gap: 1.2rem; }
.monitor-intro { color: var(--muted); font-size: .92rem; margin-top: .6rem; max-width: 58ch; }
.monitor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.m-cap { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 4px; padding: 1rem 1.1rem; transition: border-color .3s, transform .3s; }
.m-cap:hover { border-color: var(--line); transform: translateY(-3px); }
.m-glyph { color: var(--gold-bright); font-size: 1.1rem; }
.m-cap h4 { font-family: var(--serif); font-weight: 600; font-size: .95rem; margin: .5rem 0 .35rem; }
.m-cap p { color: var(--muted); font-size: .8rem; }
.monitor-tools { margin-top: .3rem; display: grid; gap: .7rem; }
.tool-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.tool-chips span { font-size: .74rem; letter-spacing: .06em; padding: .4rem .8rem; border: 1px solid var(--line); border-radius: 100px; color: var(--ink); transition: all .3s; }
.tool-chips span:hover { background: rgba(212,162,78,.12); border-color: var(--gold); }

/* ══════════ 03 STORYWRITER ══════════ */
.story-intro { max-width: 860px; margin: 0 auto 2.4rem; text-align: center; }
.story-intro p { color: var(--muted); font-size: 1.05rem; }
.story-intro strong { color: var(--gold-bright); font-weight: 500; }

.cycle-wrap { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; }
.cycle-stage { position: relative; }
#writer-cycle { width: 100%; height: auto; overflow: visible; }
.orbit-ring { fill: none; stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 7; }
.orbit-ring--2 { stroke: var(--line-soft); }
.orbit-dots circle { fill: var(--gold); opacity: .5; }
.cnode { cursor: pointer; }
.cnode-halo { fill: rgba(212,162,78,.07); stroke: rgba(212,162,78,.35); stroke-width: 1; transition: all .3s; }
.cnode-body { fill: #0d0d14; stroke: var(--gold); stroke-width: 1.2; transition: all .3s; }
.cnode-icon { fill: var(--gold-bright); font-size: 17px; font-family: var(--sans); }
.cnode.active .cnode-halo { fill: rgba(212,162,78,.18); stroke: var(--gold-bright); }
.cnode.active .cnode-body { fill: #181408; }
.cnode:hover .cnode-halo { fill: rgba(212,162,78,.12); }
.clabel { font-family: var(--serif); font-size: 15px; letter-spacing: .22em; fill: var(--muted); transition: fill .3s; }
.clabel.active { fill: var(--gold-bright); }
.cycle-core-t { font-family: var(--serif); font-size: 17px; letter-spacing: .3em; fill: var(--gold-bright); }

.cycle-panel { display: grid; gap: .8rem; }
.cp-card { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 4px; padding: 1.2rem 1.3rem; opacity: .38; transition: opacity .35s, border-color .35s, transform .35s; }
.cp-card.active { opacity: 1; border-color: var(--line); transform: translateX(-4px); }
.cp-card h4 { font-family: var(--serif); font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.cp-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex: none; }
.cp-card p { font-size: .88rem; color: var(--muted); }

.story-grid { max-width: var(--maxw); margin: 3rem auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.story-card { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 5px; padding: 1.7rem; }
.story-card--wide { grid-column: span 2; }
.sc-head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.sc-glyph { color: var(--gold); font-size: 1.2rem; }
.sc-head h4 { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; }
.story-card p { color: var(--muted); font-size: .95rem; }
.story-card p strong { color: var(--ink); font-weight: 500; }
.dna-flow { margin-top: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; font-size: .8rem; }
.dna-flow span { padding: .45rem .85rem; border: 1px solid var(--line); border-radius: 2px; color: var(--ink); }
.dna-flow .dna { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #171106; border: 0; font-weight: 600; }
.dna-flow i { color: var(--gold); font-style: normal; }
.editor-list { list-style: none; display: grid; gap: .55rem; }
.editor-list li { color: var(--muted); font-size: .88rem; padding-left: 1.2rem; position: relative; }
.editor-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.editor-list b { color: var(--ink); font-weight: 500; }
.voice-chips { display: flex; flex-wrap: wrap; gap: .7rem; margin: .6rem 0 1rem; }
.vchip { padding: .55rem 1rem; border: 1px solid var(--line); border-radius: 100px; font-size: .85rem; color: var(--ink); transition: all .3s; }
.vchip:hover { background: rgba(212,162,78,.12); border-color: var(--gold); transform: translateY(-2px); }
.voice-note { font-size: .85rem !important; }

/* ══════════ 04 TIMELAPSE ══════════ */
.comfy-grid { max-width: var(--maxw); margin: 0 auto 2.6rem; display: grid; grid-template-columns: 1.2fr auto 1fr; gap: 1.4rem; align-items: stretch; }
.comfy-card { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 6px; padding: 1.8rem; }
.comfy-card h4 { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; margin-bottom: .9rem; }
.comfy-card p { color: var(--muted); font-size: .92rem; }
.comfy-card--win { border-top: 2px solid var(--gold); }
.comfy-card p strong { color: var(--ink); font-weight: 500; }
.comfy-tags { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.comfy-tags span { font-size: .72rem; letter-spacing: .1em; padding: .35rem .7rem; border: 1px solid var(--line); border-radius: 2px; color: var(--gold-bright); }
.comfy-card--vs { display: flex; align-items: center; padding: 0; background: none; border: 0; }
.vs { font-family: var(--serif); color: var(--dim); letter-spacing: .2em; font-size: .85rem; }
.comfy-card--cloud { opacity: .75; border-style: dashed; }
.tl-intro { max-width: 860px; margin: 0 auto 2.2rem; text-align: center; color: var(--muted); }

.tl-wrap { position: relative; max-width: 980px; margin: 0 auto; }
.tl-slider {
  display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; border-radius: 8px; border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch; scroll-behavior: smooth; cursor: grab;
}
.tl-slider::-webkit-scrollbar { display: none; }
.tl-slider.dragging { cursor: grabbing; scroll-behavior: auto; }
.tl-slide { flex: 0 0 100%; scroll-snap-align: center; position: relative; }
.tl-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; user-select: none; -webkit-user-drag: none; }
.tl-slide figcaption {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  display: flex; align-items: center; gap: .8rem;
  background: rgba(6,6,10,.72); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 4px; padding: .7rem 1rem;
  font-size: .88rem; color: var(--ink);
}
.tl-stage { font-family: var(--serif); font-size: .68rem; letter-spacing: .2em; color: var(--gold-bright); white-space: nowrap; }
.tl-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(10,10,16,.8); color: var(--gold-bright); font-size: 1.5rem; line-height: 1;
  cursor: pointer; transition: all .3s;
}
.tl-arrow:hover { background: var(--gold); color: #171106; }
.tl-prev { left: -1.3rem; }
.tl-next { right: -1.3rem; }
.tl-dots { display: flex; justify-content: center; gap: .6rem; margin-top: 1.2rem; }
.tl-dots button { width: 26px; height: 3px; border: 0; background: var(--line); border-radius: 2px; cursor: pointer; transition: all .3s; }
.tl-dots button.on { background: var(--gold-bright); width: 44px; }
.tl-hint { text-align: center; font-size: .66rem; letter-spacing: .3em; color: var(--dim); margin-top: .8rem; text-transform: uppercase; }

.videos { max-width: var(--maxw); margin: 3.2rem auto 0; display: grid; grid-template-columns: 1.4fr 1fr 0.6fr; gap: 1.2rem; align-items: start; }
.video-card { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 6px; overflow: hidden; }
.video-card video { width: 100%; display: block; background: #000; }
.video-card--main video { aspect-ratio: 16/9; }
.video-card--tall video { aspect-ratio: 9/16; max-height: 420px; width: 100%; object-fit: cover; }
.video-card figcaption { padding: 1rem 1.2rem 1.2rem; }
.video-card h4 { font-family: var(--serif); font-weight: 600; font-size: 1rem; }
.video-card p { color: var(--muted); font-size: .8rem; margin-top: .3rem; }

/* ══════════ 05 RAG ══════════ */
.rag-example { background: var(--panel); border: 1px solid var(--line); border-radius: 6px; padding: 1.7rem; }
.rag-tag { font-size: .62rem; letter-spacing: .3em; color: var(--gold); }
.rag-example h4 { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; margin: .7rem 0 .8rem; }
.rag-example > p { color: var(--muted); font-size: .92rem; }
.rag-channels { list-style: none; margin-top: 1.3rem; display: grid; gap: .9rem; }
.rag-channels li { display: flex; gap: .9rem; align-items: center; }
.ch { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; border: 1px solid var(--line); color: var(--gold-bright); font-size: 1.05rem; }
.ch-wa { background: rgba(127,191,142,.1); }
.ch-web { background: rgba(240,197,106,.08); }
.ch-panel { background: rgba(150,140,220,.1); }
.rag-channels b { display: block; color: var(--ink); font-weight: 500; font-size: .95rem; }
.rag-channels small { color: var(--dim); font-size: .78rem; }

/* ══════════ 06 SOCIAL ══════════ */
.social-caps { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.soc-cap { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 5px; padding: 1.3rem; transition: transform .3s, border-color .3s; }
.soc-cap:hover { transform: translateY(-4px); border-color: var(--line); }
.soc-glyph { color: var(--gold); font-size: 1.3rem; }
.soc-cap h4 { font-family: var(--serif); font-weight: 600; font-size: .98rem; margin: .8rem 0 .5rem; }
.soc-cap p { color: var(--muted); font-size: .83rem; }
.fb-vs { max-width: var(--maxw); margin: 2.6rem auto 0; display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.4rem; align-items: center; }
.fb-card { padding: 1.7rem; border-radius: 6px; border: 1px solid var(--line-soft); background: var(--panel); }
.fb-card h4 { font-family: var(--serif); font-weight: 600; margin-bottom: .7rem; font-size: 1.05rem; }
.fb-card p { color: var(--muted); font-size: .92rem; }
.fb-card b { color: var(--ink); font-weight: 500; }
.fb-bad { border-left: 3px solid var(--danger); }
.fb-good { border-left: 3px solid var(--ok); }
.fb-vs-x { font-family: var(--serif); color: var(--dim); letter-spacing: .2em; }

/* ══════════ 07 ASSISTANT ══════════ */
.mc-badge { display: inline-block; margin: 1.2rem 0 1rem; padding: .6rem 1.1rem; font-family: var(--serif); font-size: .74rem; letter-spacing: .22em; border: 1px solid var(--gold); color: var(--gold-bright); border-radius: 2px; background: rgba(212,162,78,.06); }
.mc-a2a { font-size: .92rem; }
.mc-caps { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.mc-cap { display: flex; gap: .9rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: 5px; padding: 1.1rem; transition: border-color .3s, transform .3s; }
.mc-cap:hover { border-color: var(--line); transform: translateY(-3px); }
.mc-glyph { color: var(--gold-bright); font-size: 1.25rem; flex: none; }
.mc-cap h4 { font-family: var(--serif); font-weight: 600; font-size: .98rem; }
.mc-cap p { color: var(--muted); font-size: .82rem; margin-top: .3rem; }

/* ══════════ 08 WORKSHOP ══════════ */
.workshop { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.ws-item { position: relative; border-radius: 5px; overflow: hidden; border: 1px solid var(--line-soft); background: var(--panel); transition: transform .3s, border-color .3s; }
.ws-item:hover { transform: translateY(-4px); border-color: var(--gold-deep); }
.ws-item img { aspect-ratio: 4/3; object-fit: cover; filter: saturate(.7) brightness(.8); transition: filter .3s; width: 100%; }
.ws-item:hover img { filter: saturate(1) brightness(1); }
.ws-item span { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .8rem .6rem; font-size: .78rem; font-weight: 500; background: linear-gradient(transparent, rgba(6,6,10,.94)); }
.ws-more { text-align: center; margin-top: 2.4rem; color: var(--muted); font-style: italic; }

/* ══════════ 09 WAY ══════════ */
.way-wrap { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: center; }
#way-chart { width: 100%; height: auto; overflow: visible; }
.way-ring { fill: none; stroke: var(--line); stroke-width: 1; stroke-dasharray: 2 8; }
.way-ring--2 { stroke: var(--line-soft); stroke-dasharray: 1 6; }
.way-ring--3 { stroke: var(--line-soft); }
.way-spokes line { stroke: var(--line-soft); stroke-width: 1; }
.wnode { cursor: pointer; }
.wnode-halo { fill: rgba(212,162,78,.05); stroke: rgba(212,162,78,.3); stroke-width: 1; transition: all .3s; }
.wnode-body { fill: #0d0d14; stroke: var(--gold); stroke-width: 1.2; transition: all .3s; }
.wnode text { fill: var(--gold-bright); font-size: 15px; font-family: var(--sans); }
.wnode-lbl { font-family: var(--serif); font-size: 13px; letter-spacing: .18em; fill: var(--muted); }
.wnode.active .wnode-halo { fill: rgba(212,162,78,.2); stroke: var(--gold-bright); }
.wnode:hover .wnode-halo { fill: rgba(212,162,78,.12); }
.way-core-halo { fill: rgba(212,162,78,.08); stroke: var(--gold); stroke-width: 1; }
.way-core-t { font-family: var(--serif); font-size: 27px; font-weight: 700; fill: #171106; letter-spacing: .14em; }
.way-core-t--sub { font-size: 10px; letter-spacing: .34em; }
.way-copy p { color: var(--muted); margin-bottom: 1.8rem; font-size: 1rem; }
.way-pillars { list-style: none; display: grid; gap: 1rem; }
.way-pillars li { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; padding: 1.1rem 1.2rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: 5px; }
.way-pillars b { font-family: var(--serif); color: var(--gold-bright); letter-spacing: .18em; font-size: .85rem; align-self: center; }
.way-pillars span { color: var(--muted); font-size: .88rem; }

/* ══════════ CONTACT ══════════ */
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.1; margin-bottom: 1.2rem; }
.contact-sub { color: var(--muted); margin-bottom: 2.6rem; }
#contact-form { display: grid; gap: 1.1rem; text-align: left; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
#contact-form label { display: grid; gap: .45rem; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); }
#contact-form input, #contact-form select, #contact-form textarea {
  font-family: var(--sans); font-size: .95rem; font-weight: 300; color: var(--ink);
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 4px;
  padding: .85rem 1rem; outline: none; transition: border-color .3s; width: 100%;
}
#contact-form textarea { resize: vertical; min-height: 110px; }
#contact-form input:focus, #contact-form select:focus, #contact-form textarea:focus { border-color: var(--gold); }
#contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
#contact-form .btn { justify-self: center; margin-top: .4rem; }
.form-status { text-align: center; font-size: .85rem; color: var(--gold-bright); min-height: 1.2em; }
.contact-alt { margin-top: 2.2rem; color: var(--muted); font-size: .9rem; display: grid; gap: .4rem; }
.contact-alt a { color: var(--gold-bright); border-bottom: 1px solid var(--line); }
.contact-reel { font-size: .82rem; color: var(--dim); }

/* ══════════ FOOTER ══════════ */
.footer { padding: 3.2rem var(--pad) 3.6rem; border-top: 1px solid var(--line-soft); background: #040407; text-align: center; }
.footer-line { font-family: var(--serif); color: var(--ink); font-size: 1.05rem; margin-bottom: .5rem; }
.footer-fine { color: var(--dim); font-size: .72rem; letter-spacing: .18em; }

/* ══════════ REVEAL (GSAP initial states) ══════════ */
.reveal { opacity: 0; transform: translateY(26px); }
.sec-head { opacity: 0; transform: translateY(30px); }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  #nav-burger { display: block; }
  .sec-grid { grid-template-columns: 1fr; }
  .cycle-wrap { grid-template-columns: 1fr; }
  .cycle-panel { grid-template-columns: 1fr 1fr; }
  .comfy-grid { grid-template-columns: 1fr; }
  .comfy-card--vs { display: none; }
  .social-caps { grid-template-columns: repeat(3, 1fr); }
  .videos { grid-template-columns: 1fr 1fr; }
  .video-card--main { grid-column: span 2; }
  .way-wrap { grid-template-columns: 1fr; }
  #way-chart { max-width: 620px; margin: 0 auto; }
}
@media (max-width: 700px) {
  .samples { grid-template-columns: 1fr; }
  .monitor-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card--wide { grid-column: span 1; }
  .cycle-panel { grid-template-columns: 1fr; }
  .social-caps { grid-template-columns: 1fr 1fr; }
  .fb-vs { grid-template-columns: 1fr; }
  .fb-vs-x { display: none; }
  .mc-caps { grid-template-columns: 1fr; }
  .videos { grid-template-columns: 1fr; }
  .video-card--main { grid-column: span 1; }
  .video-card--tall video { max-height: 380px; }
  .f-row { grid-template-columns: 1fr; }
  .tl-arrow { display: none; }
  .tl-slide figcaption { flex-direction: column; align-items: flex-start; gap: .2rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .sec-head { opacity: 1 !important; transform: none !important; }
}
