/* =========================================================
   LEPERX Studio / Partners — conversion landing
   maxiphy approach, LEPERX brand (tokens from /css/style.css)
   ========================================================= */
:root {
  --obsidian: #050608;
  --ink: #F1F5FA;
  --muted: #AEB8C6;
  --accent: #4E9FD6;
  --accent-2: #7A6CF0;
  --accent-3: #36E0D0;
  --line: rgba(140, 170, 210, 0.18);
  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body: "General Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --ts: 0 2px 24px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.65);
  --hd-h: 88px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--hd-h); }
body {
  background: var(--obsidian); color: var(--ink); font-family: var(--font-body);
  -webkit-font-smoothing: antialiased; overflow-x: hidden; min-height: 100%;
}
/* hide native cursor only once the lens is actually running (JS adds .lens-on on fine pointers) */
body.lens-on, body.lens-on a, body.lens-on button { cursor: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--obsidian); }
:focus-visible { outline: 2px solid #6db4e6; outline-offset: 3px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes drift { to { transform: translate3d(3%, -3%, 0) rotate(8deg) scale(1.08); } }

/* ---------- atmosphere ---------- */
.iri { position: fixed; inset: -20%; z-index: 0; pointer-events: none; opacity: 0.16; mix-blend-mode: screen;
  background:
    radial-gradient(40% 40% at 28% 30%, rgba(78, 159, 214, 0.32), transparent 60%),
    radial-gradient(45% 45% at 74% 58%, rgba(122, 108, 240, 0.26), transparent 60%),
    radial-gradient(35% 35% at 55% 82%, rgba(54, 224, 208, 0.16), transparent 60%);
  filter: blur(26px); animation: drift 28s ease-in-out infinite alternate; }
.grain { position: fixed; inset: 0; z-index: 2; 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='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.vignette { position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 120% at 50% 30%, transparent 55%, rgba(0, 0, 0, 0.6) 100%); }
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 90; pointer-events: none;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3)); box-shadow: 0 0 12px rgba(78, 159, 214, 0.6); }

/* airlock: same lens open/close as the command center (main site) */
.airlock { position: fixed; inset: 0; z-index: 94; pointer-events: none; background: #05070b; clip-path: circle(0% at 50% 50%); }
.airlock.is-closing { transition: clip-path .42s cubic-bezier(.7, 0, .3, 1); clip-path: circle(75% at 50% 50%); }
.airlock--in { clip-path: circle(75% at 50% 50%); animation: airlockOpen .62s cubic-bezier(.3, .6, .2, 1) .08s forwards; }
@keyframes airlockOpen { to { clip-path: circle(0% at 50% 50%); } }

/* ---------- lens cursor + trail (signature) ---------- */
.lens { position: fixed; top: 0; left: 0; z-index: 9999; width: 56px; height: 56px; border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%);
  backdrop-filter: blur(0.4px) saturate(1.4) brightness(1.04); -webkit-backdrop-filter: blur(0.4px) saturate(1.4) brightness(1.04);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.1), 0 0 22px rgba(78, 159, 214, 0.16);
  transition: width .5s var(--ease), height .5s var(--ease); }
.lens__rim { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(190, 215, 255, 0.55); box-shadow: inset 0 0 0 1px rgba(122, 108, 240, 0.22); }
.lens__zoom { position: absolute; inset: 0; display: grid; place-items: center; border-radius: 50%; opacity: 0; transition: opacity .4s var(--ease);
  font-family: var(--font-mono); font-size: .54rem; letter-spacing: .16em; text-transform: uppercase; color: #dff0ff; }
.lens__zoom::after { content: "focus"; }
.lens.is-hover { width: 88px; height: 88px; }
.lens.is-press { width: 38px; height: 38px; }
.lens.is-zoom { width: 132px; height: 132px; box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.16), 0 0 40px rgba(78, 159, 214, 0.4); }
.lens.is-zoom .lens__zoom { opacity: 1; }
#trail { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
@media (hover: none), (pointer: coarse) { .lens, #trail { display: none; } }

/* ---------- shared type ---------- */
.eyebrow { display: inline-block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; text-shadow: var(--ts); }
.h-display { font-family: var(--font-display); font-weight: 700; line-height: 1.0; letter-spacing: -0.01em; color: #fff; text-shadow: var(--ts); font-size: clamp(2rem, 4.6vw, 3.5rem); }
.lead { margin-top: 1.4rem; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.65; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6); max-width: 60ch; }
.rlink { color: var(--accent); border-bottom: 1px solid rgba(78, 159, 214, 0.5); }
.rlink:hover { color: #fff; border-bottom-color: #fff; }

/* ---------- command buttons ---------- */
.cmd-btn { position: relative; display: inline-flex; align-items: center; gap: .7rem; padding: 1rem 2rem; border-radius: 100px;
  font-family: var(--font-body); font-weight: 600; letter-spacing: .01em; font-size: 1rem; color: #fff; isolation: isolate; overflow: hidden;
  border: 1px solid rgba(190, 215, 255, 0.42);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7); box-shadow: 0 22px 50px -20px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease), gap .4s var(--ease); }
.cmd-btn:hover, .cmd-btn:focus-visible { will-change: transform; }
/* magnetic elements: GSAP owns transform, so don't let CSS transition fight it */
.cmd-btn[data-magnetic], .hd__cta[data-magnetic] { transition: border-color .5s var(--ease), box-shadow .5s var(--ease); }
.cmd-btn__label { position: relative; z-index: 2; }
.cmd-btn__sweep { position: absolute; inset: 0; z-index: 1; opacity: 0; transform: translateX(-65%); pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(210, 232, 255, 0.2) 45%, rgba(185, 210, 255, 0.26) 55%, transparent);
  transition: opacity .4s var(--ease), transform .9s var(--ease); }
.cmd-btn:hover .cmd-btn__sweep { opacity: 1; transform: translateX(65%); }
.cmd-btn:hover { transform: translateY(-3px); border-color: rgba(205, 225, 255, 0.8); box-shadow: 0 30px 64px -18px rgba(0, 0, 0, 0.92), 0 0 32px rgba(78, 159, 214, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.26); }
.cmd-btn__tag { position: relative; z-index: 2; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; padding: .3em .65em; border-radius: 100px; background: rgba(78, 159, 214, 0.22); color: #dff0ff; text-shadow: none; }
.cmd-btn--primary { font-size: clamp(1.02rem, 1.4vw, 1.16rem); padding: 1.2rem 2.5rem; border-color: rgba(120, 180, 235, 0.62);
  background: linear-gradient(160deg, rgba(78, 159, 214, 0.3), rgba(78, 159, 214, 0.09)); box-shadow: 0 26px 58px -18px rgba(0, 0, 0, 0.92), 0 0 42px rgba(78, 159, 214, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24); }
.cmd-btn--primary:hover { box-shadow: 0 34px 74px -16px rgba(0, 0, 0, 0.94), 0 0 60px rgba(78, 159, 214, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.cmd-btn--sm { padding: .85rem 1.7rem; font-size: .94rem; }
.cmd-btn--sm.cmd-btn--primary { padding: .92rem 1.9rem; font-size: clamp(.96rem, 1.1vw, 1.04rem); }
/* text + arrow secondary (maxiphy pattern) */
.cmd-btn--text { background: none; border: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; color: var(--muted); padding: 1rem .4rem; font-weight: 500; }
.cmd-btn--text:hover { transform: none; box-shadow: none; color: #fff; gap: 1rem; }
.cmd-btn--text .cmd-btn__arr { transition: transform .4s var(--ease); }
.cmd-btn--text:hover .cmd-btn__arr { transform: translate(3px, -3px); }

/* ---------- HUD frame (ported from the command center so both pages share one chrome) ---------- */
.hudframe { position: fixed; inset: 0; z-index: 40; pointer-events: none; }
.hud__bracket { position: fixed; width: 26px; height: 26px; border: 1px solid rgba(140, 175, 220, 0.45); }
.hud__bracket--tl { top: 26px; left: 26px; border-right: 0; border-bottom: 0; }
.hud__bracket--tr { top: 26px; right: 26px; border-left: 0; border-bottom: 0; }
.hud__bracket--bl { bottom: 26px; left: 26px; border-right: 0; border-top: 0; }
.hud__bracket--br { bottom: 26px; right: 26px; border-left: 0; border-top: 0; }
.hud__bot { position: fixed; left: 0; right: 0; bottom: 2.2rem; display: flex; justify-content: space-between; align-items: flex-end; padding: 0 clamp(2.4rem, 6vw, 4rem); }
.hud__id { display: flex; flex-direction: row; align-items: center; gap: 1.1rem; }
.hud__brand { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.32em; padding: .15em .4em .15em 0; color: #fff; text-shadow: var(--ts); transition: color .4s, text-shadow .4s; }
.hud__brand:hover { color: var(--accent); text-shadow: 0 0 18px rgba(78, 159, 214, 0.6), var(--ts); }
.hud__status, .hud__coord, .hud__sig { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; color: var(--muted); text-shadow: var(--ts); display: flex; align-items: center; gap: .5rem; }
.hud__status { border-left: 1px solid rgba(140, 175, 220, 0.28); padding-left: 1.1rem; white-space: nowrap; }
.hud__status i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 8px var(--accent-3); animation: pulse 2.4s infinite; }
.hud__nav { position: relative; z-index: 84; pointer-events: auto; flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: .7rem; padding: .68rem 1.3rem; border-radius: 100px;
  border: 1px solid rgba(160, 190, 225, 0.4); background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #d4dde9; text-shadow: var(--ts);
  transition: color .5s, border-color .5s, box-shadow .5s; }
.hud__nav-icon { position: relative; width: 19px; height: 19px; border-radius: 50%; border: 1px solid var(--accent); flex: 0 0 auto; }
.hud__nav-icon::before { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); transition: inset .4s var(--ease); }
.hud__nav-icon::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px dashed rgba(120, 170, 230, 0.55); animation: spin 9s linear infinite; }
.hud__nav:hover { color: #fff; border-color: rgba(200, 222, 255, 0.7); box-shadow: 0 18px 40px -16px rgba(78, 159, 214, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
.hud__nav.is-open { color: #fff; border-color: rgba(120, 180, 235, 0.8); }
.hud__nav.is-open .hud__nav-icon::before { inset: 6px; }
@media (max-width: 860px) { .hud__status, .hud__sig, .hud__coord, .hud__bracket { display: none; } }
@media (max-width: 600px) {
  .hud__brand { font-size: .92rem; letter-spacing: .2em; }
  .hud__nav { padding: .58rem 1rem; font-size: .62rem; letter-spacing: .14em; gap: .5rem; }
}

/* ---------- header ---------- */
.hd { position: fixed; top: 0; left: 0; right: 0; z-index: 80; height: var(--hd-h); pointer-events: none; }
.hd__grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.5) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 100%); mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 100%); }
.hd__inner { position: relative; pointer-events: auto; height: var(--hd-h); max-width: 1320px; margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 3rem); display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: .55rem; z-index: 82; }
.logo__mark { font-family: var(--font-display); font-weight: 800; letter-spacing: .26em; font-size: 1.05rem; padding-left: .26em; color: #fff; text-shadow: var(--ts); }
.logo__div { color: var(--muted); font-weight: 300; }
.logo__desc { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--muted); text-shadow: var(--ts); }
.navpill { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: .2rem; border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.04); padding: .35rem .5rem; }
.navpill a { padding: .35rem .85rem; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: var(--muted); border-radius: 100px; transition: color .25s, background .25s; }
.navpill a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.hd__actions { display: flex; align-items: center; gap: .7rem; z-index: 82; }
/* NOTE 2026-06-25: .lang* styles kept but dormant — the AR/EN button is commented out in index.html (removed per Ahmad, to re-add later). */
.lang { position: relative; width: 2.1rem; height: 2.1rem; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.15); color: var(--muted); font-family: var(--font-mono);
  display: flex; align-items: center; justify-content: center; overflow: hidden; transition: width .5s var(--ease), color .3s, border-color .3s, background .3s; }
.lang:hover { color: #fff; border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.05); }
.lang__short { position: absolute; font-size: .68rem; letter-spacing: .1em; transition: opacity .2s; }
.lang__full { position: absolute; opacity: 0; font-size: .72rem; transition: opacity .3s; white-space: nowrap; }
@media (min-width: 768px) { .lang:hover { width: 6.3rem; } .lang:hover .lang__short { opacity: 0; } .lang:hover .lang__full { opacity: 1; transition-delay: .15s; } }
.hd__cta { display: inline-flex; align-items: center; font-family: var(--font-body); font-weight: 600; font-size: .86rem; color: #fff; padding: .55rem 1.1rem; border-radius: 100px;
  border: 1px solid rgba(120, 180, 235, 0.5); background: linear-gradient(160deg, rgba(78, 159, 214, 0.26), rgba(78, 159, 214, 0.08)); box-shadow: 0 10px 30px -16px rgba(78, 159, 214, 0.6); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.hd__cta:hover { transform: translateY(-2px); border-color: rgba(190, 220, 255, 0.85); box-shadow: 0 16px 38px -14px rgba(78, 159, 214, 0.75); }
.burger { display: none; flex-direction: column; gap: 5px; padding: .45rem; z-index: 82; }
.burger span { display: block; width: 22px; height: 1.6px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
/* no-GSAP fallback for the open (X) state */
.burger.is-x span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.is-x span:nth-child(2) { opacity: 0; }
.burger.is-x span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- fullscreen menu ---------- */
.menu { position: fixed; inset: 0; z-index: 79; opacity: 0; pointer-events: none; transition: opacity .5s var(--ease); }
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu__bg { position: absolute; inset: 0; background: rgba(5, 6, 8, 0.86); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.menu__list { position: relative; height: 100%; max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; justify-content: center; padding: 7rem clamp(1.4rem, 6vw, 5rem) 3rem; overflow-y: auto; }
.menu__link { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0; transform: translateY(18px); }
.menu.is-open .menu__link { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.menu__n { font-family: var(--font-mono); font-size: .74rem; color: rgba(255, 255, 255, 0.25); width: 1.7rem; }
.menu__t { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1; color: rgba(255, 255, 255, 0.55); text-transform: lowercase; transition: color .25s, transform .35s var(--ease); }
.menu__link:hover .menu__t { color: #fff; transform: translateX(8px); }
.menu__dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.menu__foot { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; color: var(--muted); }
.menu__foot a:hover { color: #fff; }
.menu__sig { color: rgba(174, 184, 198, 0.6); letter-spacing: .14em; }

/* ---------- reveal base (only when JS is on) ---------- */
body.js .reveal { opacity: 0; transform: translateY(26px); }
body.js .reveal.is-shown { opacity: 1; transform: none; }

/* hero entrance: transform-only so the headline + CTA paint as plain DOM (LCP-safe, runs with or without JS) */
.hero-rise { animation: heroRise .85s var(--ease) both; }
.hero__in > .hero-rise:nth-child(1) { animation-delay: .02s; }
.hero__in > .hero-rise:nth-child(2) { animation-delay: .10s; }
.hero__in > .hero-rise:nth-child(3) { animation-delay: .18s; }
.hero__in > .hero-rise:nth-child(4) { animation-delay: .26s; }
.hero__in > .hero-rise:nth-child(5) { animation-delay: .34s; }
@keyframes heroRise { from { transform: translateY(22px); } to { transform: none; } }

/* ---------- layout ---------- */
.band { position: relative; z-index: 3; padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 5vw, 3rem); }
.wrap { max-width: 1180px; margin: 0 auto; }
.band .lead { margin-bottom: .2rem; }

/* ---------- hero ---------- */
.hero { position: relative; z-index: 3; min-height: 100svh; display: grid; place-items: center; padding: var(--hd-h) clamp(1.2rem, 5vw, 3rem) 4rem; overflow: hidden; }
.orbs { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0; transition: opacity 1.2s var(--ease); }
.orbs.is-in { opacity: 1; }
/* positioned via top/left (not transform) so GSAP owns transform without conflict */
.orb { position: absolute; border-radius: 50%; filter: blur(min(140px, 18vw)); }
.orb--a { width: 52vw; height: 52vw; top: -8%; left: -6%; background: var(--accent); opacity: .42; }
.orb--b { width: 44vw; height: 44vw; top: 18%; left: 38%; background: var(--accent-2); opacity: .34; }
.orb--c { width: 34vw; height: 34vw; top: 34%; left: 8%; background: var(--accent-3); opacity: .2; }
.hero__in { position: relative; max-width: 820px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__title { font-size: clamp(2.4rem, 6.4vw, 4.6rem); }
.hero__em { color: var(--accent); }
.hero__lead { margin-left: auto; margin-right: auto; max-width: 640px; color: #d7dee8; }
.hero__cta { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero__trust { margin-top: 2.2rem; display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: rgba(241, 245, 250, 0.7); text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7); }
.hero__trust i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 10px var(--accent-3); animation: pulse 2.4s infinite; }
.hero__scrollwrap { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .55rem; }
.hero__scrolltxt { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(174, 184, 198, 0.75); text-shadow: var(--ts); animation: pulse 3.2s infinite; }
.hero__scroll { width: 22px; height: 34px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 14px; display: grid; place-items: start center; padding-top: 6px; }
.hero__scroll span { width: 3px; height: 7px; border-radius: 3px; background: var(--accent); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }

/* ---------- problem ---------- */
.leaks { margin-top: 2.4rem; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.leaks li { background: rgba(255, 255, 255, 0.015); padding: 1.3rem 1.4rem; display: grid; grid-template-columns: 12rem 1fr; gap: .4rem 1.4rem; align-items: baseline; }
.leaks__k { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: #fff; }
.leaks__v { color: var(--muted); line-height: 1.55; }
@media (max-width: 640px) { .leaks li { grid-template-columns: 1fr; } }

/* ---------- dream outcome ---------- */
.dream__list { margin-top: 2.4rem; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.dream__list li { background: rgba(54, 224, 208, 0.03); padding: 1.3rem 1.4rem; display: grid; grid-template-columns: 17rem 1fr; gap: .4rem 1.4rem; align-items: baseline; }
.dream__k { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: #fff; display: flex; align-items: center; gap: .55rem; }
.dream__k::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 8px var(--accent-3); flex: 0 0 auto; }
.dream__v { color: var(--muted); line-height: 1.55; }
@media (max-width: 640px) { .dream__list li { grid-template-columns: 1fr; } }

/* ---------- value stack + guarantee (offer) ---------- */
.stack { margin-top: 2.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.stack li { background: rgba(255, 255, 255, 0.02); padding: 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .3rem; }
.stack__k { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: #fff; display: flex; align-items: center; gap: .5rem; }
.stack__k::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); flex: 0 0 auto; }
.stack__v { color: var(--muted); line-height: 1.5; font-size: .94rem; padding-left: 1.3rem; }
@media (max-width: 640px) { .stack { grid-template-columns: 1fr; } }
.guarantee { margin-top: 1.8rem; padding: 1.5rem 1.6rem; border-radius: 16px; border: 1px solid rgba(54, 224, 208, 0.34); background: linear-gradient(160deg, rgba(54, 224, 208, 0.1), rgba(54, 224, 208, 0.02)); max-width: 780px; }
.guarantee__tag { display: inline-block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-3); margin-bottom: .6rem; }
.guarantee__p { color: #d6f4f0; line-height: 1.6; font-size: 1.02rem; }
.offer__faqh { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: #fff; margin-top: 2.8rem; }
.offer__faqh + .faq { margin-top: 1.3rem; }

/* ---------- solution pillars ---------- */
.pillars { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.pillar { padding: 1.8rem 1.6rem; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)); transition: border-color .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease); }
.pillar:hover { border-color: rgba(205, 225, 255, 0.5); box-shadow: 0 30px 70px -34px rgba(78, 159, 214, 0.7); transform: translateY(-4px); }
.pillar__ic { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: rgba(78, 159, 214, 0.1); color: var(--accent); margin-bottom: 1.1rem; }
.pillar__ic svg { width: 22px; height: 22px; }
.pillar__h { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: .6rem; }
.pillar__p { color: var(--muted); line-height: 1.6; font-size: .98rem; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- work showcase ---------- */
.work .wrap { margin-bottom: 2.6rem; }
.cards { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 3rem); display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.card { border-radius: 20px; border: 1px solid var(--line); overflow: hidden; background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  transition: border-color .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease); }
.card:hover { border-color: rgba(205, 225, 255, 0.55); box-shadow: 0 46px 100px -40px rgba(78, 159, 214, 0.7); transform: translateY(-4px); }
.card__frame { position: relative; display: flex; flex-direction: column; aspect-ratio: 16 / 10; margin: .9rem .9rem 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #070a0f;
  filter: saturate(.62) brightness(.82); transition: filter .6s var(--ease); }
.card:hover .card__frame, .card.is-lens .card__frame { filter: none; }
.card__bar { position: relative; z-index: 2; flex: 0 0 auto; display: flex; align-items: center; gap: .4rem; padding: .55rem .8rem; background: rgba(255, 255, 255, 0.04); border-bottom: 1px solid var(--line); }
.card__bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.card__bar span { margin-left: .6rem; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .04em; color: var(--muted); }
.card__ui { position: relative; flex: 1 1 auto; min-height: 0; padding: .9rem 1rem; overflow: hidden; }
.card__meta { padding: 1.2rem 1.4rem 1.5rem; }
.card__chip { display: inline-block; font-family: var(--font-mono); font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: .25em .6em; border-radius: 100px; margin-bottom: .7rem; }
.card__cat { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: #fff; margin: .3rem 0 .4rem; }
.card__line { color: var(--muted); line-height: 1.55; font-size: .95rem; }
@media (max-width: 760px) { .cards { grid-template-columns: 1fr; } }

/* ---------- work: real build screenshots ---------- */
.card--feat { grid-column: 1 / -1; }
.card--feat .card__frame--shot { aspect-ratio: 16 / 9; }
.card__frame--shot { padding: 0; perspective: 900px; }
.card__zoom { margin-left: auto; font-family: var(--font-mono); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); opacity: 0; transition: opacity .4s var(--ease); }
.card:hover .card__zoom { opacity: .85; }
.shot { position: relative; display: block; width: 100%; flex: 1 1 auto; min-height: 0; overflow: hidden; cursor: pointer; padding: 0; }
.shot__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; transform: scale(1.015);
  transition: opacity .7s var(--ease), transform 1.1s var(--ease); will-change: transform, opacity; }
.shot__img.is-on { position: relative; opacity: 1; }
.shot__img:not(.is-on) { position: absolute; }
.card:hover .shot__img.is-on { transform: scale(1.05); }
/* soft top sheen so the shots sit inside the obsidian frame */
.shot::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.12), transparent 18%, transparent 82%, rgba(5, 6, 8, 0.22)); }

/* view switcher pills (featured card) */
.views { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.views__pill { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; color: var(--muted); padding: .45rem .95rem; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); transition: color .3s, border-color .3s, background .3s, transform .3s var(--ease); }
.views__pill:hover { color: #fff; border-color: rgba(205, 225, 255, 0.5); transform: translateY(-1px); }
.views__pill.is-on { color: #04121d; background: var(--accent); border-color: transparent; box-shadow: 0 0 18px rgba(78, 159, 214, 0.4); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem); opacity: 0; pointer-events: none; transition: opacity .45s var(--ease); }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__bg { position: absolute; inset: 0; background: rgba(5, 6, 8, 0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.lightbox__body { position: relative; max-width: min(1240px, 94vw); max-height: 88vh; display: flex; flex-direction: column; transform: scale(.96) translateY(10px); transition: transform .45s var(--ease); }
.lightbox.is-open .lightbox__body { transform: none; }
.lightbox__img { max-width: 100%; max-height: calc(88vh - 3.4rem); object-fit: contain; border-radius: 14px; border: 1px solid rgba(190, 215, 255, 0.28);
  box-shadow: 0 60px 140px -40px rgba(0, 0, 0, 0.95), 0 0 60px rgba(78, 159, 214, 0.18); background: #070a0f; }
.lightbox__cap { margin-top: .9rem; display: flex; align-items: center; gap: .55rem; justify-content: center; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; color: #cdd8e6; }
.lightbox__cap #lbName { color: #fff; }
.lightbox__sep { color: var(--muted); }
.lightbox__count { color: var(--muted); margin-left: .4rem; }
.lightbox__close { position: absolute; top: -0.4rem; right: -0.2rem; transform: translateY(-100%); width: 2.4rem; height: 2.4rem; display: grid; place-items: center;
  font-size: 1.3rem; line-height: 1; color: #fff; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.06); transition: border-color .3s, background .3s, transform .3s; }
.lightbox__close:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.12); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 2.7rem; height: 2.7rem; display: grid; place-items: center; font-size: 1.05rem; color: #fff;
  border-radius: 50%; border: 1px solid rgba(190, 215, 255, 0.35); background: rgba(5, 6, 8, 0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: border-color .3s, background .3s, box-shadow .3s; }
.lightbox__nav:hover { border-color: rgba(205, 225, 255, 0.8); background: rgba(78, 159, 214, 0.25); box-shadow: 0 0 22px rgba(78, 159, 214, 0.4); }
.lightbox__nav--prev { left: .6rem; }
.lightbox__nav--next { right: .6rem; }
.lightbox__nav[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 600px) { .lightbox__nav { width: 2.2rem; height: 2.2rem; } }

/* ---------- work demos: each card is a mini WEBSITE with a live visual (legacy, kept for reuse) ---------- */
.site { display: flex; flex-direction: column; height: 100%; gap: .4rem; }
.site__nav { display: flex; align-items: center; gap: .4rem; }
.site__logo { font-family: var(--font-display); font-weight: 800; letter-spacing: .12em; font-size: .8rem; color: #fff; }
.site__links { display: flex; gap: .3rem; }
.site__links i { width: 13px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .14); }
.site__cta { margin-left: auto; font-family: var(--font-mono); font-size: .5rem; letter-spacing: .03em; color: #04121d; background: var(--accent); padding: .24em .6em; border-radius: 100px; white-space: nowrap; }
.site__head { display: flex; align-items: flex-end; justify-content: space-between; gap: .5rem; }
.site__ey { display: block; font-family: var(--font-mono); font-size: .44rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .12rem; }
.site__h { display: block; font-family: var(--font-display); font-weight: 700; font-size: .98rem; line-height: .96; color: #fff; }
.site__pill { font-family: var(--font-mono); font-size: .44rem; letter-spacing: .04em; color: var(--muted); border: 1px solid var(--line); padding: .22em .5em; border-radius: 100px; white-space: nowrap; flex: 0 0 auto; }
.site__vis { position: relative; flex: 1; min-height: 0; overflow: hidden; border-radius: 8px; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)); padding: .5rem .55rem; display: flex; flex-direction: column; gap: .35rem; }
.site__vis::after { content: ""; position: absolute; right: -22%; top: -40%; width: 60%; height: 130%; border-radius: 50%; opacity: .24; filter: blur(22px); pointer-events: none; z-index: 0; background: var(--accent); }
.site--ibi .site__vis::after { background: #f0b34e; }
.site--saqi .site__vis::after { background: var(--accent-3); }
.site--lumora .site__vis::after { background: var(--accent-2); }
.site--aqar .site__vis::after { background: var(--accent); }
.site__vis > * { position: relative; z-index: 1; }

/* IBI: smart contract + hash + ledger */
.ibi__sc { display: flex; align-items: center; gap: .4rem; padding: .38rem .5rem; border-radius: 7px; border: 1px solid rgba(240, 179, 78, .4); background: rgba(240, 179, 78, .06); }
.ibi__sclab { font-family: var(--font-mono); font-size: .44rem; letter-spacing: .06em; text-transform: uppercase; color: #f0d8a8; white-space: nowrap; }
.ibi__hash { font-family: var(--font-mono); font-size: .54rem; color: #fff; }
.ibi__verified { margin-left: auto; display: inline-flex; align-items: center; gap: .2rem; font-family: var(--font-mono); font-size: .44rem; color: var(--accent-3); white-space: nowrap; }
.ibi__verified::before { content: "\2713"; }
.ibi__ledger { flex: 1; min-height: 0; display: flex; flex-direction: column; gap: .28rem; }
.ibi__row { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: .45rem; padding: .3rem .5rem; border-radius: 6px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); }
.ibi__rh { font-family: var(--font-mono); font-size: .44rem; color: var(--accent); }
.ibi__rc { font-family: var(--font-mono); font-size: .46rem; color: #cdd8e6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ibi__amt { font-family: var(--font-mono); font-size: .48rem; color: #fff; }
.ibi__st { font-family: var(--font-mono); font-size: .4rem; letter-spacing: .03em; text-transform: uppercase; padding: .16em .45em; border-radius: 100px; white-space: nowrap; }
.ibi__st.ok { color: #04121d; background: var(--accent-3); }
.ibi__st.pend { color: #04121d; background: #f0b34e; }

/* Saqi: weather planting calendar (each month) */
.saqi__caplab { font-family: var(--font-mono); font-size: .44rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.saqi__cal { flex: 1; display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; gap: .28rem; }
.saqi__m { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .18rem; border-radius: 6px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); }
.saqi__m b { font-family: var(--font-mono); font-size: .46rem; font-weight: 500; color: #cdd8e6; }
.saqi__m i { width: 7px; height: 7px; border-radius: 50%; }
.saqi__m i.good { background: var(--accent-3); box-shadow: 0 0 6px var(--accent-3); }
.saqi__m i.ok { background: #f0b34e; }
.saqi__m i.cold { background: rgba(140, 170, 210, .4); }
.saqi__m.best { border-color: rgba(54, 224, 208, .6); background: rgba(54, 224, 208, .08); }
.saqi__m.best b { color: #fff; }
.saqi__legend { display: flex; align-items: center; gap: .6rem; font-family: var(--font-mono); font-size: .42rem; color: var(--muted); }
.saqi__legend span { display: inline-flex; align-items: center; gap: .2rem; }
.saqi__legend i { width: 6px; height: 6px; border-radius: 50%; }
.saqi__legend i.good { background: var(--accent-3); }
.saqi__legend i.ok { background: #f0b34e; }
.saqi__legend i.cold { background: rgba(140, 170, 210, .4); }

/* Lumora: full booking calendar */
.lum__caphead { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: .48rem; color: #fff; }
.lum__caphead span:last-child { color: var(--muted); letter-spacing: .1em; }
.lum__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: .18rem; font-family: var(--font-mono); font-size: .4rem; color: var(--muted); text-align: center; }
.lum__grid { flex: 1; display: grid; grid-template-columns: repeat(7, 1fr); grid-auto-rows: 1fr; gap: .18rem; }
.lum__grid span { display: flex; align-items: center; justify-content: center; border-radius: 4px; font-family: var(--font-mono); font-size: .42rem; color: var(--muted); border: 1px solid transparent; }
.lum__grid span.open { color: #cdd8e6; border-color: var(--line); background: rgba(255, 255, 255, .025); }
.lum__grid span.sel { color: #04121d; background: var(--accent-3); }
.lum__grid span.bk { color: rgba(174, 184, 198, .3); }
.lum__slots { display: flex; gap: .3rem; }
.lum__slots span { flex: 1; text-align: center; font-family: var(--font-mono); font-size: .44rem; color: var(--muted); border: 1px solid var(--line); padding: .3em .1em; border-radius: 5px; }
.lum__slots span.on { color: #04121d; background: var(--accent); border-color: transparent; }

/* Aqar: interactive map */
.aqar__map { position: relative; flex: 1; min-height: 0; border-radius: 7px; overflow: hidden; border: 1px solid var(--line); background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 100% 18px,
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 18px 100%,
    radial-gradient(130% 120% at 28% 18%, rgba(78, 159, 214, .18), rgba(5, 6, 8, .25)); }
.aqar__zone { position: absolute; top: 28%; left: 22%; width: 44%; height: 46%; border-radius: 45% 55% 50% 50%; border: 1px dashed rgba(78, 159, 214, .5); background: rgba(78, 159, 214, .08); }
.aqar__pin { position: absolute; transform: translate(-50%, -100%); font-family: var(--font-mono); font-size: .44rem; color: #04121d; background: #fff; padding: .14em .42em; border-radius: 100px; box-shadow: 0 3px 8px rgba(0, 0, 0, .5); white-space: nowrap; }
.aqar__pin::after { content: ""; position: absolute; left: 50%; bottom: -2px; width: 6px; height: 6px; background: #fff; transform: translateX(-50%) rotate(45deg); }
.aqar__pin.p1 { top: 44%; left: 34%; }
.aqar__pin.p2 { top: 62%; left: 60%; background: var(--accent-3); }
.aqar__pin.p2::after { background: var(--accent-3); }
.aqar__pin.p3 { top: 30%; left: 72%; }
.aqar__bar { display: flex; align-items: center; gap: .35rem; }
.aqar__search { flex: 1; min-width: 0; font-family: var(--font-mono); font-size: .46rem; color: rgba(174, 184, 198, .7); border: 1px solid var(--line); background: rgba(255, 255, 255, .025); padding: .38em .55em; border-radius: 100px; white-space: nowrap; overflow: hidden; }
.aqar__est { font-family: var(--font-mono); font-size: .44rem; color: #04121d; background: var(--accent-3); padding: .34em .5em; border-radius: 100px; white-space: nowrap; flex: 0 0 auto; }

/* ---------- proof ---------- */
.stats { margin-top: 2.4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 760px; }
.stats li { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5.6vw, 4.2rem); line-height: 1; color: var(--accent); text-shadow: 0 0 30px rgba(78, 159, 214, 0.35); }
.stat__label { display: block; margin-top: .5rem; color: var(--muted); font-size: .9rem; line-height: 1.4; }
@media (max-width: 600px) { .stats { grid-template-columns: 1fr; gap: 1rem; } }
.hubs { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .7rem; }
.hub-tag { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em; color: #d4dde9; padding: .55rem 1rem; border-radius: 100px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); }
.hub-tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.room__note { margin-top: 1.6rem; color: var(--muted); font-size: .96rem; line-height: 1.6; max-width: 62ch; }
.room-cta { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.room-cta__line { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; color: #cdd8e6; }

/* ---------- process ---------- */
.steps { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: s; }
.step { position: relative; padding: 1.8rem 1.6rem 1.9rem; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)); transition: border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease); }
.step:first-child { border-color: rgba(78, 159, 214, 0.45); background: linear-gradient(160deg, rgba(78, 159, 214, 0.12), rgba(122, 108, 240, 0.04)); }
.step:hover { border-color: rgba(205, 225, 255, 0.5); transform: translateY(-4px); box-shadow: 0 30px 70px -34px rgba(78, 159, 214, 0.6); }
.step__n { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .2em; color: var(--accent); }
.step__h { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: #fff; margin: .7rem 0 .6rem; }
.step__p { color: var(--muted); line-height: 1.6; font-size: .98rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { margin-top: 2.6rem; border-top: 1px solid var(--line); max-width: 880px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem .2rem; text-align: left; transition: padding-left .5s var(--ease); }
.faq__item:hover .faq__head, .faq__item.is-open .faq__head { padding-left: .8rem; }
.faq__q { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.55rem); color: #fff; }
.faq__plus { position: relative; flex: 0 0 auto; width: 17px; height: 17px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--accent); box-shadow: 0 0 8px rgba(78, 159, 214, .5); transition: transform .45s var(--ease), opacity .45s var(--ease); }
.faq__plus::before { left: 0; top: 50%; width: 17px; height: 1.6px; transform: translateY(-50%); }
.faq__plus::after { left: 50%; top: 0; width: 1.6px; height: 17px; transform: translateX(-50%); }
.faq__item.is-open .faq__plus::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq__item.is-open .faq__body { grid-template-rows: 1fr; }
.faq__in { overflow: hidden; }
.faq__in p { color: var(--muted); line-height: 1.65; padding: 0 .2rem 1.4rem; max-width: 70ch; }

/* ---------- close + form ---------- */
.close__wrap { max-width: 760px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.close .lead { margin-left: auto; margin-right: auto; text-align: center; }
.scarce { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.4rem; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; color: #f4e6c8; padding: .5rem 1rem; border-radius: 100px; border: 1px solid rgba(240, 179, 78, 0.32); background: rgba(240, 179, 78, 0.08); }
.scarce i { width: 7px; height: 7px; border-radius: 50%; background: #f0b34e; box-shadow: 0 0 10px #f0b34e; animation: pulse 1.8s infinite; }
.close__h { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.form { margin-top: 2.2rem; width: 100%; max-width: 620px; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; text-align: left; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--wide { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field label span { text-transform: none; letter-spacing: 0; opacity: .7; }
.field input, .field textarea, .field select { font-family: var(--font-body); font-size: 1rem; color: #fff; padding: .85rem .9rem; border-radius: 10px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.05); transition: border-color .35s, background .35s; }
.field input::placeholder, .field textarea::placeholder { color: rgba(174, 184, 198, 0.5); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='m1 1 5 5 5-5' stroke='%23AEB8C6' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .95rem center; padding-right: 2.4rem; }
.field select option { background: #0b0f14; color: #fff; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: rgba(120, 180, 235, 0.85); background-color: rgba(78, 159, 214, 0.08); }
.field textarea { resize: vertical; }
.form__submit { grid-column: 1 / -1; justify-self: center; margin-top: .5rem; }
.form__trust { grid-column: 1 / -1; text-align: center; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; color: var(--muted); margin-top: .1rem; }
.form__note { grid-column: 1 / -1; text-align: center; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .03em; color: var(--accent-3); min-height: 1.2em; }
.form__note.is-err { color: #ff8d8d; }
.hp { position: absolute; left: -9999px; opacity: 0; width: 0; height: 0; }
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }

/* ---------- footer (same HUD language as the command center's bottom bar) ---------- */
.ft { position: relative; z-index: 3; border-top: 1px solid rgba(140, 175, 220, 0.28); padding: 2.4rem clamp(2.4rem, 6vw, 4rem) 4.6rem; }
.ft__wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; max-width: none; }
.ft__brand { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .32em; padding-left: .32em; color: #fff; transition: color .4s, text-shadow .4s; }
.ft__brand:hover { color: var(--accent); text-shadow: 0 0 18px rgba(78, 159, 214, 0.6); }
.ft__sig { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; color: var(--muted); display: inline-flex; align-items: center; gap: .5rem; }
.ft__sig::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 8px var(--accent-3); animation: pulse 2.4s infinite; }
.ft__links { display: flex; gap: 1.4rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.ft__links a:hover { color: #fff; }
/* the fixed HUD signature already shows on desktop; the footer carries it only where the HUD is hidden */
@media (min-width: 861px) { .ft__sig { display: none; } }
@media (max-width: 860px) { .ft { padding-bottom: 2.4rem; } }

/* ---------- responsive header ---------- */
@media (max-width: 600px) {
  :root { --hd-h: 64px; }
  .hd__cta { display: none; }
}

/* ---------------------------------------------------------
   Fullscreen menu = the home command center, verbatim.
   .module rules are copied 1:1 from css/style.css (the hub);
   the dock-slot math lives in this page's JS (same as app.js).
   --------------------------------------------------------- */
/* the scene dims behind the open navigation exactly like the home hub (no heavy blur wall) */
.menu .menu__bg { background: radial-gradient(120% 120% at 50% 50%, rgba(4,6,9,0.34), rgba(4,6,9,0.6)); backdrop-filter: none; -webkit-backdrop-filter: none; }
/* the list is just a container now; the cards position themselves fixed, like the orbit */
.menu .menu__list { position: static; display: block; height: auto; max-width: none; padding: 0; overflow: visible; }

.menu .module { position: fixed; top: 0; left: 0; width: clamp(128px, 16vw, 244px); height: clamp(128px, 16vw, 244px); border-radius: 20px;
  padding: 1.3rem 1.4rem; text-align: left; display: flex; flex-direction: column; justify-content: space-between; will-change: transform; opacity: 0;
  border: 1px solid rgba(165,195,230,0.32); background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05)); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 36px 74px -26px rgba(0,0,0,0.96), inset 0 1px 0 rgba(255,255,255,0.18); transition: border-color .6s var(--ease), box-shadow .6s var(--ease); overflow: hidden; }
.menu .module::after { content: ""; position: absolute; inset: 0; border-radius: 20px; opacity: 0; transition: opacity .6s var(--ease);
  background: radial-gradient(120% 90% at 20% 0%, rgba(78,159,214,0.28), transparent 60%); }
.menu .module:hover { border-color: rgba(205,225,255,0.75); box-shadow: 0 46px 100px -28px rgba(78,159,214,0.8), inset 0 1px 0 rgba(255,255,255,0.25); }
.menu .module:hover::after { opacity: 1; }
.module__no { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .2em; color: var(--accent); position: relative; text-shadow: var(--ts); }
.module__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.3vw, 2.2rem); line-height: 0.98; position: relative; color: #fff; text-shadow: var(--ts); }
.module__sub { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--muted); position: relative; text-shadow: var(--ts); }
.menu .module--cta { background: linear-gradient(160deg, rgba(78,159,214,0.24), rgba(122,108,240,0.12)); border-color: rgba(120,160,220,0.5); }
.menu .module.is-current { border-color: rgba(120,190,245,0.85); box-shadow: 0 36px 74px -26px rgba(78,159,214,0.7), 0 0 26px rgba(78,159,214,0.28), inset 0 1px 0 rgba(255,255,255,0.22); }
.menu .module.is-current .module__no::after { content: " · you are here"; color: var(--accent-3); letter-spacing: .14em; }

/* the bottom prompt, same as the hub */
.menu__prompt { position: fixed; bottom: clamp(2.2rem, 6vh, 3.6rem); left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity .8s var(--ease); pointer-events: none;
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .3em; text-transform: uppercase; color: #cdd8e6; text-shadow: var(--ts); }
.menu.is-open .menu__prompt { opacity: 1; }

/* same mobile behavior as the home hub: the cards become full-width rows */
@media (max-width: 760px) {
  .menu .module { width: min(86vw, 400px); height: auto; min-height: 76px; flex-direction: row; align-items: center; gap: 1rem; justify-content: flex-start; padding: 1rem 1.2rem; border-radius: 16px; }
  .module__name { font-size: 1.3rem; line-height: 1.05; }
  .module__name br { display: none; }
  .module__sub { margin-left: auto; text-align: right; }
  .menu .module.is-current .module__no::after { content: " · here"; }
  .menu__prompt { font-size: .68rem; letter-spacing: .22em; }
}

/* ---------------------------------------------------------
   Cursor = the home lens, verbatim (css/style.css). The page's
   own zoom/focus variant is retired so both feel identical.
   --------------------------------------------------------- */
.lens { position: fixed; top: 0; left: 0; z-index: 9999; width: 58px; height: 58px; border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%);
  backdrop-filter: blur(0.5px) saturate(1.4) brightness(1.04); -webkit-backdrop-filter: blur(0.5px) saturate(1.4) brightness(1.04);
  box-shadow: inset 0 0 16px rgba(255,255,255,0.10), 0 0 22px rgba(78,159,214,0.16); transition: width .5s var(--ease), height .5s var(--ease); }
.lens__rim { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(190,215,255,0.55); box-shadow: inset 0 0 0 1px rgba(122,108,240,0.22); }
.lens.is-hover { width: 92px; height: 92px; }
.lens.is-press { width: 40px; height: 40px; }
.lens.is-zoom { width: 92px; height: 92px; box-shadow: inset 0 0 16px rgba(255,255,255,0.10), 0 0 22px rgba(78,159,214,0.16); }
.lens__zoom { display: none; }
/* same as home: the page steps aside while the navigation is open (hero is-out equivalent) */
main { transition: opacity .45s var(--ease); }
body.menu-open main { opacity: 0; pointer-events: none; }
