
/* ===== styles.css ===== */
/* ============================================================
   GNETWORX — Design System
   System Blue / Cosmo White / Neon Pulse / Power Orange
   ============================================================ */

:root {
  /* Brand core */
  --system-blue: #001029;
  --cosmo-white: #ffffff;
  --neon-pulse: #00ffff;
  --power-orange: #ed0000;

  /* Surfaces (deep navy scale) */
  --bg-0: #00091a;
  --bg-1: #001029;
  --bg-2: #04183a;
  --bg-3: #082247;
  --surface: #061a3d;
  --surface-2: #0a2350;
  --line: rgba(120, 170, 230, 0.16);
  --line-strong: rgba(120, 190, 255, 0.30);

  /* Ink */
  --ink: #ffffff;
  --ink-soft: rgba(225, 238, 255, 0.72);
  --ink-mute: rgba(190, 212, 245, 0.50);
  --ink-faint: rgba(170, 196, 235, 0.34);

  /* Accent (driven by tweaks) */
  --accent: #00ffff;
  --accent-2: #ed0000;
  --accent-ink: #00121f;

  /* Gradients */
  --grad-dataflow: linear-gradient(100deg, #ed0000 0%, #3a0a2a 28%, #001029 55%, #006a86 80%, #00ffff 100%);
  --grad-cyberwave: linear-gradient(120deg, #001029 0%, #00415a 55%, #00ffff 100%);
  --grad-cyan: linear-gradient(120deg, #00ffff 0%, #4dd6ff 100%);

  /* Glow intensity (tweakable) */
  --glow: 1;

  /* Type */
  --font-head: "Sansation", "Jost", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --type-scale: 1;

  /* Geometry */
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg-1);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--neon-pulse); color: #001b2e; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.04; margin: 0; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(72px, 11vw, 150px); }
.section-tight { padding-block: clamp(48px, 7vw, 90px); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 12.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.eyebrow.center::before { display: none; }

/* ---------- Display type ---------- */
.display {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.5rem, 6.4vw, 5.4rem);
  line-height: 0.98; letter-spacing: -0.02em;
}
.h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); letter-spacing: -0.02em; }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--ink-mute); }

/* gradient text */
.grad-text {
  background: linear-gradient(100deg, #7fe9ff 0%, #00ffff 55%, #4dd6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cyan { color: var(--neon-pulse); }

/* ---------- Buttons ---------- */
.btn {
  --bh: 54px;
  display: inline-flex; align-items: center; gap: 12px;
  height: var(--bh); padding: 0 26px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  border-radius: 999px; border: 1px solid transparent;
  position: relative; isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .3s, color .3s;
  white-space: nowrap;
}
.btn .chev { width: 16px; height: 16px; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.btn:hover .chev { transform: translateX(4px); }

.btn-primary {
  background: var(--neon-pulse); color: #00121f;
  box-shadow: 0 0 0 rgba(0,255,255,0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 255, 255, calc(0.28 * var(--glow)));
}
.btn-ghost {
  background: rgba(255,255,255,0.03); color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--neon-pulse); color: var(--neon-pulse); }

.btn-dark { background: rgba(0,0,0,0.25); color: var(--ink); border-color: var(--line); }
.btn-dark:hover { border-color: var(--neon-pulse); color: var(--neon-pulse); }

/* text link with chevron */
.tlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--neon-pulse);
}
.tlink .chev { width: 14px; height: 14px; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.tlink:hover .chev { transform: translateX(5px); }

/* ---------- Cards ---------- */
.card {
  position: relative; border: 1px solid var(--line);
  border-radius: var(--radius); background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0));
  overflow: hidden;
}

/* ---------- Background texture ---------- */
.grid-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 75%);
  opacity: 0.5;
}

/* glow orb */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; opacity: calc(0.7 * var(--glow)); }

/* ---------- Reveal animations ----------
   Base state is VISIBLE so content is never stuck hidden if animations
   can't run (frozen timeline / no-JS). Hide-then-animate only applies under
   html.fx, which JS adds after confirming the timeline actually advances. */
@keyframes revealIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 1; transform: none; }
.fx .reveal:not([data-in]) { opacity: 0; transform: translateY(28px); }
.fx .reveal[data-in] { animation: revealIn .9s cubic-bezier(.2,.7,.2,1) both; }
.fx .reveal.d1[data-in] { animation-delay: .08s; }
.fx .reveal.d2[data-in] { animation-delay: .16s; }
.fx .reveal.d3[data-in] { animation-delay: .24s; }
.fx .reveal.d4[data-in] { animation-delay: .32s; }
.fx .reveal.d5[data-in] { animation-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}
/* safety net: JS force-reveals anything that animation left stuck hidden (frozen timeline) */
.reveal[data-shown] { opacity: 1 !important; transform: none !important; animation: none !important; }

/* divider chevrons line */
.chev-rule { display: flex; gap: 6px; align-items: center; }

/* utility */
.center { text-align: center; }
.stack { display: flex; flex-direction: column; }
.row { display: flex; }
.gap-sm { gap: 12px; } .gap-md { gap: 20px; } .gap-lg { gap: 32px; }
.wrap-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== styles2.css ===== */
/* ============================================================
   GNETWORX — Section & component styles
   ============================================================ */

/* -------------------- NAV -------------------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 10000; isolation: isolate; transition: background .4s, backdrop-filter .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav-solid { background: rgba(0, 10, 26, 0.72); backdrop-filter: blur(18px) saturate(1.2); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav-solid .nav-inner { height: 66px; }
.nav-inner { transition: height .4s; }
.nav-links { display: none; gap: 6px; }
.nav-link { font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: .02em; color: var(--ink-soft); padding: 9px 14px; border-radius: 999px; transition: color .25s, background .25s; }
.nav-link:hover { color: var(--neon-pulse); background: rgba(0,255,255,0.06); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-book { --bh: 44px; font-size: 13.5px; padding: 0 18px; }
.nav-burger { display: flex; width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(255,255,255,.03); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-burger span { width: 18px; height: 2px; background: var(--ink); display: block; }

.nav-overlay { position: fixed; inset: 0; width: 100dvw; height: 100dvh; z-index: 10020; background: rgba(0,8,20,.97); backdrop-filter: blur(8px); padding: clamp(28px,7vw,80px); display: flex; flex-direction: column; justify-content: center; gap: 40px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .4s, visibility .4s; overflow: auto; }
.nav-overlay.show { opacity: 1; pointer-events: auto; }
.nav-overlay.show,
html.nav-open .nav-overlay { opacity: 1 !important; pointer-events: auto !important; visibility: visible !important; }
.nav-overlay-x { position: absolute; right: -80px; bottom: -80px; }
.nav-close { position: absolute; top: 26px; right: 26px; width: 52px; height: 52px; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.03); display: grid; place-items: center; }
.nav-overlay-links { display: flex; flex-direction: column; gap: 6px; position: relative; z-index: 2; }
.nav-overlay-links a { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem,7vw,3.4rem); letter-spacing: -.02em; color: var(--ink); display: flex; align-items: baseline; gap: 18px; opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s, color .25s; }
.nav-overlay.show .nav-overlay-links a { opacity: 1; transform: none; }
html.nav-open .nav-overlay-links a { opacity: 1 !important; transform: none !important; }
.nav-overlay-links a:hover { color: var(--neon-pulse); }
.nav-overlay-links .idx { font-size: .9rem; color: var(--neon-pulse); font-weight: 700; letter-spacing: .1em; }

@media (min-width: 1081px) {
  .nav-burger {
    width: 54px;
    height: 54px;
  }
  .nav-burger span {
    width: 26px;
    height: 2.5px;
  }
  .nav-overlay > .btn {
    min-width: 236px;
    padding-inline: 34px;
    justify-content: center;
  }
  .ov-caret {
    width: 34px;
    height: 34px;
  }
}

/* -------------------- HERO shared -------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 80px; overflow: hidden; }
.hero-bg-x { position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%); will-change: transform; }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; translate: -50% 0; width: 26px; height: 42px; border: 1.5px solid var(--line-strong); border-radius: 14px; display: grid; place-items: start center; padding-top: 8px; z-index: 5; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--neon-pulse); animation: cue 1.7s infinite; }
@keyframes cue { 0%{ transform: translateY(0); opacity:1 } 70%{ transform: translateY(12px); opacity:0 } 100%{ opacity:0 } }
.hero-trust { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; font-size: 14px; color: var(--ink-mute); font-weight: 600; }
.ht-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--neon-pulse); box-shadow: 0 0 0 4px rgba(0,255,255,.16); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(0,255,255,0); } }

/* CENTERED */
.hero-centered { text-align: center; }
.hero-c-inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 3; }
.hero-c-inner .display { margin-top: 24px; }
.hero-c-inner .lead { margin-top: 24px; margin-inline: auto; }
.hero-c-inner .wrap-actions { margin-top: 34px; justify-content: center; }

/* SPLIT */
.hero-split-inner { display: grid; grid-template-columns: 1.05fr minmax(360px, 0.9fr); gap: 40px; align-items: center; position: relative; z-index: 3; }
.hero-copy { min-width: 0; }
.hero-vis-wrap { min-width: 0; }
.hero-copy .display { margin-top: 22px; }
.hero-copy .lead { margin-top: 24px; }
.hero-copy .wrap-actions { margin-top: 34px; }
.hero-vis-wrap { position: relative; min-height: 460px; will-change: transform; }

/* IMMERSIVE */
.hero-immersive { color: #fff; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media image-slot { --is-bg: #04122b; }
.hero-media-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,9,20,.94) 0%, rgba(0,9,20,.72) 42%, rgba(0,9,20,.30) 100%), linear-gradient(0deg, rgba(0,9,20,.9), transparent 55%); }
.hero-media-x { position: absolute; right: -60px; top: 50%; translate: 0 -50%; opacity: .8; will-change: transform; }
.hero-im-inner { position: relative; z-index: 3; }
.hero-im-inner .display { margin-top: 22px; }
.hero-im-inner .lead { margin-top: 22px; }
.hero-im-inner .wrap-actions { margin-top: 32px; }

/* HERO VISUAL (split) */
.hero-visual { position: absolute; inset: 0; display: grid; place-items: center; }
.hv-x { position: relative; z-index: 2; filter: drop-shadow(0 20px 60px rgba(0,255,255,calc(.22 * var(--glow)))); animation: floatY 6s ease-in-out infinite; }
.hv-x img { max-width: none; }
.hv-x::before { content: ""; position: absolute; inset: -24%; border-radius: 50%; z-index: -1; background: radial-gradient(circle, rgba(0,200,255,calc(.20 * var(--glow))), rgba(0,16,41,0) 66%); filter: blur(24px); }
@keyframes floatY { 50% { transform: translateY(-14px); } }
.hv-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.ring.r1 { width: 300px; height: 300px; animation: spin 26s linear infinite; border-style: dashed; border-color: rgba(0,255,255,.18); }
.ring.r2 { width: 420px; height: 420px; animation: spin 40s linear infinite reverse; }
.ring.r3 { width: 540px; height: 540px; border-color: rgba(120,170,230,.10); }
@keyframes spin { to { transform: rotate(360deg); } }
.hv-chev { position: absolute; z-index: 3; }
.hc1 { top: 14%; right: 18%; animation: floatY 5s ease-in-out infinite; }
.hc2 { bottom: 20%; left: 14%; animation: floatY 7s ease-in-out infinite .5s; }
.hc3 { top: 30%; left: 8%; animation: floatY 6s ease-in-out infinite 1s; }
.hv-chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px; background: rgba(2,16,38,.82); border: 1px solid var(--line-strong); font-family: var(--font-head); font-weight: 700; font-size: 13px; backdrop-filter: blur(6px); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.chip-a { top: 8%; left: 2%; animation: floatY 5.5s ease-in-out infinite; }
.chip-b { bottom: 12%; right: 0%; animation: floatY 6.5s ease-in-out infinite .4s; }
.chip-c { bottom: 38%; left: -4%; animation: floatY 7.5s ease-in-out infinite .8s; }

/* -------------------- ABOUT -------------------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-points { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.about-point { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft); }
.about-right { position: relative; }
.about-media { aspect-ratio: 4/5; position: relative; }
.about-media image-slot { --is-bg: #061a3d; }
.about-media-x { position: absolute; right: 18px; bottom: 18px; z-index: 3; filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)); }
.about-badge { position: absolute; left: -28px; bottom: 36px; padding: 18px 22px; background: rgba(2,16,38,.92); backdrop-filter: blur(8px); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.ab-num { font-family: var(--font-head); font-weight: 700; font-size: 1.8rem; color: var(--neon-pulse); line-height: 1; }
.ab-label { font-size: 12.5px; color: var(--ink-mute); margin-top: 5px; letter-spacing: .03em; }

.values-strip { margin-top: clamp(56px, 8vw, 96px); display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.value-cell { display: flex; gap: 13px; padding: 26px 24px; border-right: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.025), transparent); }
.value-cell:last-child { border-right: none; }
.value-t { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
.value-d { font-size: 13px; color: var(--ink-mute); margin-top: 6px; line-height: 1.45; }

/* -------------------- PARTNERS -------------------- */
.partners-head { display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap; margin-bottom: 30px; }
.partners-sub { font-size: 14.5px; }
.marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); border-block: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-cell { flex: 0 0 auto; padding: 30px 46px; border-right: 1px solid var(--line); display: grid; place-items: center; }
.logo-cell span { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: .02em; color: var(--ink-faint); transition: color .3s, filter .3s; white-space: nowrap; }
.logo-cell:hover span { color: var(--ink); }

/* -------------------- SERVICES -------------------- */
.sec-head { max-width: 820px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.services-shell { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 26px; margin-top: 54px; align-items: start; }
.services-tabs { display: flex; flex-direction: column; gap: 8px; }
.svc-tab { display: flex; align-items: center; gap: 16px; width: 100%; text-align: left; padding: 20px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.015); color: var(--ink-soft); transition: border-color .3s, background .3s, transform .3s; }
.svc-tab .svc-tab-name { flex: 1; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: inherit; }
.svc-tab.on { border-color: var(--line-strong); background: linear-gradient(100deg, rgba(0,255,255,.08), rgba(0,255,255,.01)); color: var(--ink); transform: translateX(4px); }
.svc-tab.on .svc-tab-name { color: var(--ink); }

.services-panel { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 360px; overflow: hidden; }
.fx .services-panel { animation: panelIn .5s cubic-bezier(.2,.8,.2,1); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } }
.sp-text { padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.sp-ico { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; background: rgba(0,255,255,.08); border: 1px solid var(--line-strong); margin-bottom: 22px; }
.sp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.sp-tag { font-family: var(--font-head); font-weight: 700; font-size: 12.5px; letter-spacing: .03em; padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft); background: rgba(255,255,255,.02); }
.sp-vis { position: relative; display: grid; place-items: center; border-left: 1px solid var(--line); background: radial-gradient(120% 120% at 80% 20%, rgba(0,255,255,.10), transparent 60%); overflow: hidden; }
.sp-vis-glow { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(0,255,255,.18); filter: blur(60px); opacity: calc(.8 * var(--glow)); }
.sp-vis > svg { position: relative; z-index: 2; filter: drop-shadow(0 12px 40px rgba(0,255,255,calc(.25*var(--glow)))); }
.sp-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 40px 40px; opacity: .4; -webkit-mask-image: radial-gradient(80% 80% at 70% 30%, #000, transparent 75%); mask-image: radial-gradient(80% 80% at 70% 30%, #000, transparent 75%); }

/* -------------------- STATS -------------------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-cell { padding: 34px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); position: relative; overflow: hidden; }
.stat-cell::after { content: ""; position: absolute; left: 0; top: 0; width: 36px; height: 3px; background: var(--neon-pulse); }
.stat-n { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.4rem); line-height: 1; color: var(--ink); letter-spacing: -.02em; }
.stat-l { margin-top: 12px; color: var(--ink-mute); font-size: 14px; font-weight: 600; }

/* -------------------- TESTIMONIALS -------------------- */
.testi-stage { display: flex; align-items: stretch; gap: 18px; margin-top: 48px; justify-content: center; }
.testi-card { flex: 1; max-width: 860px; padding: clamp(34px, 5vw, 64px); position: relative; min-height: 280px; display: flex; flex-direction: column; justify-content: center; }
.fx .testi-card { animation: panelIn .5s cubic-bezier(.2,.8,.2,1); }
.testi-quote-ico { position: absolute; top: 26px; left: 30px; opacity: .45; }
.testi-quote { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.25rem, 2.6vw, 1.9rem); line-height: 1.4; letter-spacing: -.01em; color: var(--ink); }
.testi-foot { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.testi-stars { display: flex; gap: 3px; }
.testi-who { border-left: 1px solid var(--line); padding-left: 18px; }
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.testi-org { color: var(--ink-mute); font-size: 13.5px; }
.testi-arrow { width: 56px; flex: 0 0 56px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.02); color: var(--ink-soft); display: grid; place-items: center; transition: border-color .25s, color .25s, background .25s; }
.testi-arrow.left { transform: scaleX(-1); }
.testi-arrow:hover { border-color: var(--neon-pulse); color: var(--neon-pulse); }
.testi-dots { display: flex; gap: 9px; justify-content: center; margin-top: 30px; }
.testi-dots .dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line-strong); transition: width .3s, background .3s; }
.testi-dots .dot.on { width: 30px; border-radius: 6px; background: var(--neon-pulse); }

/* -------------------- TEAM -------------------- */
.team-slider {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.team-track {
  display: flex;
  width: max-content;
  gap: 18px;
  will-change: transform;
  animation: teamSlide 46s linear infinite;
}
.team-slider:hover .team-track { animation-play-state: paused; }
.team-set { display: flex; gap: 18px; flex: 0 0 auto; }
.team-card { flex: 0 0 clamp(220px, 17vw, 280px); overflow: hidden; margin: 0; }
.team-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.team-photo image-slot { --is-bg: #071e44; }
.team-x { display: none; position: absolute; right: 12px; top: 12px; opacity: .8; transition: transform .4s; }
.team-card:hover .team-x { transform: translateY(-3px) rotate(-4deg); }
.team-meta { padding: 18px; border-top: 1px solid var(--line); }
.team-meta-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.team-name { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
.team-role { color: var(--ink-mute); font-size: 13px; margin-top: 4px; }
@keyframes teamSlide {
  to { transform: translateX(calc(-50% - 9px)); }
}
@media (prefers-reduced-motion: reduce) {
  .team-track { animation: none; overflow-x: auto; width: auto; }
  .team-set[aria-hidden="true"] { display: none; }
}

/* -------------------- CTA -------------------- */
.cta-band { position: relative; border-radius: clamp(18px, 3vw, 30px); overflow: hidden; padding: clamp(40px, 6vw, 78px); background: var(--grad-cyberwave); isolation: isolate; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,16,41,.55), transparent 60%); z-index: -1; }
.cta-band-x { position: absolute; right: -40px; top: 50%; translate: 0 -50%; z-index: 0; }
.cta-chevs { position: absolute; left: clamp(40px,6vw,78px); top: clamp(34px,5vw,60px); opacity: .9; }
.cta-content { position: relative; z-index: 2; padding-top: 60px; }
.cta-band .h2 { color: #fff; }

/* -------------------- FOOTER -------------------- */
.footer { position: relative; border-top: 1px solid var(--line); background: var(--bg-0); padding-top: clamp(56px, 8vw, 92px); overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1.5fr 1.2fr; gap: 40px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.soc { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: var(--ink-soft); transition: border-color .25s, color .25s, transform .25s; }
.soc:hover { border-color: var(--neon-pulse); color: var(--neon-pulse); transform: translateY(-2px); }
.footer-h { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; }
.footer-link { color: var(--ink-mute); padding: 6px 0; font-size: 14.5px; transition: color .2s; width: fit-content; }
.footer-link:hover { color: var(--neon-pulse); }
.footer-line { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-soft); font-size: 14px; padding: 6px 0; line-height: 1.45; }
.footer-line svg { flex: 0 0 auto; margin-top: 2px; }
a.footer-line:hover { color: var(--neon-pulse); }
a.footer-line span { white-space: nowrap; }
.footer-wordmark { display: flex; justify-content: center; margin-top: clamp(48px, 7vw, 80px); padding-inline: var(--gutter); }
.footer-wm-img {
  width: min(94%, 1180px);
  height: auto;
  opacity: 0.16;
  filter: brightness(0) saturate(100%) invert(83%) sepia(81%) saturate(660%) hue-rotate(155deg) brightness(104%) contrast(101%);
  user-select: none;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-block: 28px; border-top: 1px solid var(--line); margin-top: clamp(24px,4vw,40px); font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1080px) {
  .nav {
    z-index: 10000;
  }
  .nav-inner {
    position: relative;
    z-index: 10001;
  }
  .nav-links { display: none; }
  .nav-burger { display: flex; position: relative; z-index: 10002; }
  .nav-book { display: none; }
  .nav-overlay {
    z-index: 10020;
    padding-top: max(28px, env(safe-area-inset-top));
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
  .nav-close { z-index: 10021; }
  .hero-split-inner { grid-template-columns: 1fr; }
  .hero-vis-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-right { max-width: 460px; }
  .services-shell { grid-template-columns: 1fr; }
  .services-panel { grid-template-columns: 1fr; }
  .sp-vis { min-height: 220px; border-left: none; border-top: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .values-strip { grid-template-columns: repeat(2, 1fr); }
  .value-cell:nth-child(2n) { border-right: none; }
  .value-cell { border-bottom: 1px solid var(--line); }
  .team-card { flex-basis: 240px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-card { flex-basis: min(78vw, 340px); }
  .team-slider {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }
  .footer-top { grid-template-columns: 1fr; }
  .values-strip { grid-template-columns: 1fr; }
  .value-cell { border-right: none; }
  .testi-arrow { display: none; }
  .about-badge { left: 0; }
  .partners-head { margin-bottom: 18px; }
}

/* ===== editorial.css ===== */
/* ============================================================
   GNETWORX — Editorial layer (CTRL+ inspired energy)
   numbered indices · slash headings · marquee bands · clock
   ============================================================ */

/* ---------- Index label: [ N°01 / About ] ---------- */
.idx-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 400;
  font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-mute);
  text-transform: uppercase;
}
.idx-label .br { color: var(--accent); font-weight: 700; }
.idx-label .no { color: var(--ink); font-weight: 700; }
.idx-label .sl { color: var(--ink-faint); }
.idx-label .nm { color: var(--ink-soft); letter-spacing: 0.12em; }
.idx-label.on-grad { color: rgba(255,255,255,.72); }
.idx-label.on-grad .no, .idx-label.on-grad .br { color: #fff; }

/* ---------- Slash heading w/ italic emphasis ---------- */
.slash-h { font-family: var(--font-head); font-weight: 700; line-height: .98; letter-spacing: -0.02em; }
.slash-h .em { font-style: italic; color: var(--accent); font-family: var(--font-head); }
.slash-h .sl { color: var(--ink-faint); font-weight: 400; font-style: italic; }
.slash-h.lg { font-size: clamp(2.1rem, 4.6vw, 3.7rem); }

/* italic accent for inline emphasis */
.it { font-style: italic; }

/* ---------- Big scrolling text marquee band ---------- */
.text-marquee {
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0,255,255,0.03), transparent);
  padding-block: clamp(18px, 2.4vw, 30px);
}
.text-marquee .tm-track {
  display: flex; width: max-content; align-items: center;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.text-marquee.rev .tm-track { animation-direction: reverse; }
.text-marquee:hover .tm-track { animation-play-state: paused; }
.tm-item {
  display: inline-flex; align-items: center; gap: clamp(20px, 3vw, 44px);
  padding-inline: clamp(20px, 3vw, 44px);
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 3.2rem); letter-spacing: -0.01em;
  text-transform: uppercase; white-space: nowrap; color: var(--ink);
}
.tm-item .ghost { color: transparent; -webkit-text-stroke: 1px var(--line-strong); }
.tm-item .em { font-style: italic; color: var(--accent); }
.tm-dot { color: var(--accent); font-size: .7em; }
.text-marquee.dark { background: var(--bg-0); }

/* ---------- Live clock (nav) ---------- */
.clock {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-mute);
  letter-spacing: 0.02em; white-space: nowrap;
}
.clock .live { width: 7px; height: 7px; border-radius: 50%; background: var(--neon-pulse); box-shadow: 0 0 0 3px rgba(0,255,255,.18); }
.fx .clock .live { animation: pulse 2s infinite; }
.clock .city { color: var(--ink-soft); font-weight: 700; }

/* numbered nav links */
.nav-link .nl-no { font-family: var(--font-mono); font-size: 10px; color: var(--accent); margin-right: 6px; vertical-align: super; }

/* big section number watermark */
.sec-no {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 13px; color: var(--accent); letter-spacing: 0.05em;
}

/* hero ticker (under hero copy) */
.hero-ticker { margin-top: 34px; border-top: 1px solid var(--line); padding-top: 18px; display: flex; align-items: center; gap: 14px; overflow: hidden; }
.hero-ticker .lab { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); white-space: nowrap; text-transform: uppercase; letter-spacing: .1em; flex: 0 0 auto; }
.hero-ticker .htk { display: flex; gap: 26px; overflow: hidden; min-width: 0; flex: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 86%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 86%, transparent); }
.hero-ticker .htk-track { display: flex; gap: 26px; width: max-content; }
.fx .hero-ticker .htk-track { animation: marquee 22s linear infinite; }
.hero-ticker .htk-item { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); white-space: nowrap; display: inline-flex; align-items: center; gap: 9px; }
.hero-ticker .htk-item::before { content: "→"; color: var(--accent); }

/* service tab big number */
.svc-tab-no { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); font-weight: 700; flex: 0 0 auto; width: 26px; }
.svc-tab.on .svc-tab-no { color: var(--accent); }

/* stat slash label */
.stat-cell .stat-tag { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: .04em; margin-bottom: 14px; text-transform: uppercase; }

/* fun: link hover underline sweep */
.tlink { position: relative; }
.tlink::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.tlink:hover::after { transform: scaleX(1); }

@media (max-width: 620px) {
  .tm-item { font-size: 1.5rem; }
  .clock { display: none; }
}

/* ---------- Image-slot placeholders (visible on dark) ---------- */
image-slot { color: rgba(190, 215, 250, 0.55) !important; }
.about-media, .team-photo, .hero-media {
  background-color: #061a3d;
  background-image:
    repeating-linear-gradient(45deg, rgba(120,170,230,0.05) 0 10px, transparent 10px 20px);
}
.team-photo { background-color: #071e44; }

/* ============================================================
   MEGA-MENU NAV (restored) — desktop dropdowns + mobile accordion
   ============================================================ */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-trigger { background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); }
.nav-trigger .caret { transition: transform .3s; opacity: .7; }
.nav-trigger.on, .nav-item:hover .nav-trigger { color: var(--neon-pulse); background: rgba(0,255,255,0.06); }
.nav-trigger.on .caret, .nav-item:hover .nav-trigger .caret { transform: rotate(90deg); }

.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; translate: -50% 0;
  min-width: 300px; z-index: 60;
  background: rgba(4,16,38,0.97); backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid var(--line-strong); border-radius: 16px; padding: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; pointer-events: none;
}
.mega.show { opacity: 1; visibility: visible; pointer-events: auto; }
.mega::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 14px; }
.mega-inner { display: flex; flex-direction: column; gap: 2px; }
.mega-link { display: flex; align-items: center; gap: 13px; padding: 13px 15px; border-radius: 11px; transition: background .2s; }
.mega-link:hover { background: rgba(0,255,255,0.07); }
.mega-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(0,255,255,.07); border: 1px solid var(--line); flex: none; }
.mega-t { flex: 1; font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--ink); white-space: nowrap; }
.mega-link:hover .mega-t { color: var(--neon-pulse); }
.mega-chev { opacity: 0; transform: translateX(-4px); transition: opacity .25s, transform .25s; }
.mega-link:hover .mega-chev { opacity: 1; transform: none; }

/* mobile overlay: logo + grouped accordion */
.nav-ov-logo { display: inline-flex; margin-bottom: 6px; }
.ov-group { border-bottom: 1px solid var(--line); }
.ov-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.12rem, 2vw, 1.45rem); letter-spacing: 0; color: var(--ink); padding: 16px 0; line-height: 1.15; }
.ov-trigger.on { color: var(--neon-pulse); }
.ov-trigger .idx, .ov-single .idx { font-family: var(--font-mono); font-size: .55em; color: var(--neon-pulse); font-weight: 700; margin-right: 12px; vertical-align: middle; }
.ov-caret { transition: transform .3s; color: var(--accent); flex: none; }
.ov-trigger.on .ov-caret { transform: rotate(90deg); }
.ov-sub { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.3,.8,.3,1); }
.ov-sub.show { max-height: 360px; }
.ov-sub a { display: block; padding: 11px 0 11px 18px; color: var(--ink-soft); font-size: 1.02rem; font-weight: 600; }
.ov-sub.show a:last-child { margin-bottom: 12px; }
.ov-sub a:hover { color: var(--neon-pulse); }
.ov-single { display: flex; align-items: center; justify-content: space-between; width: 100%; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.12rem, 2vw, 1.45rem); letter-spacing: 0; color: var(--ink); padding: 16px 0; line-height: 1.15; }
.ov-title { display: inline-flex; align-items: baseline; gap: 12px; }
.ov-single:hover { color: var(--neon-pulse); }
.nav-overlay-links .ov-trigger,
.nav-overlay-links .ov-single {
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  .nav-overlay-links {
    gap: 0;
  }
  .ov-trigger,
  .ov-single {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 13px 0;
    font-size: clamp(1.05rem, 4.2vw, 1.18rem) !important;
    line-height: 1.15;
    letter-spacing: 0;
  }
  .ov-trigger {
    justify-content: space-between;
  }
  .ov-trigger > span,
  .ov-title {
    gap: 12px;
  }
  .ov-trigger .idx,
  .ov-single .idx {
    flex: 0 0 32px;
    margin-right: 0;
    font-size: 0.72rem;
    line-height: 1;
    text-align: left;
  }
  .ov-sub a {
    font-size: 0.98rem;
    line-height: 1.25;
  }
  .nav-overlay > .btn {
    --bh: 46px;
    align-self: stretch !important;
    justify-content: center;
    width: min(100%, 260px);
    margin-top: 20px !important;
    font-size: 1rem;
  }
}

/* keep desktop dropdowns out of the mobile overlay's way */
@media (max-width: 1080px) {
  .mega { display: none; }
}

/* ===== theme-light.css ===== */
/* ============================================================
   GNETWORX — Light sections (Cosmo White + Power Orange accent)
   Breaks up the System Blue, brings in the brand's other colors.
   Variables are re-scoped so existing components flip automatically.
   ============================================================ */

.light {
  background: #f3f4f6;            /* Cosmo White, lightly neutralised */
  color: #001029;
  /* ink scale → System Blue tints */
  --ink: #001029;
  --ink-soft: rgba(0, 16, 41, 0.74);
  --ink-mute: rgba(0, 16, 41, 0.54);
  --ink-faint: rgba(0, 16, 41, 0.34);
  /* lines */
  --line: rgba(0, 16, 41, 0.12);
  --line-strong: rgba(0, 16, 41, 0.22);
  /* accents readable on white */
  --neon-pulse: #00131f;          /* fallback dark for cyan-keyed UI */
  --accent: #ed0000;              /* Power Orange emphasis */
  --accent-2: #001029;
}

/* surface flips */
.light .card {
  background: #ffffff;
  border-color: var(--line);
}
.light .values-strip { background: #ffffff; }
.light .value-cell { background: linear-gradient(180deg, rgba(0,16,41,0.018), transparent); }

/* idx labels + headings — Power Orange accent */
.light .idx-label .br { color: var(--accent); }
.light .idx-label .no { color: var(--ink); }
.light .slash-h .em { color: var(--accent); }
.light .slash-h .sl { color: var(--ink-faint); }
.light .cyan { color: var(--accent); }

/* about points / inline icons that were cyan → use accent on light */
.light .about-point svg [stroke] { stroke: var(--accent); }

/* partners marquee */
.light .marquee { border-color: var(--line); background: transparent; }
.light .logo-cell { border-color: var(--line); }
.light .logo-cell span { color: rgba(0, 16, 41, 0.40); }
.light .logo-cell:hover span { color: var(--ink); }

/* testimonials on light */
.light .testi-quote { color: var(--ink); }
.light .testi-quote-ico { opacity: 1; }
.light .testi-arrow { background: #ffffff; }
.light .testi-arrow:hover { border-color: var(--accent); color: var(--accent); }
.light .testi-dots .dot { background: var(--line-strong); }
.light .testi-dots .dot.on { background: var(--accent); }
.light .testi-who { border-color: var(--line); }

/* team meta on light cards (photo wells stay dark) */
.light .team-meta { border-color: var(--line); }
.light .team-card:hover { box-shadow: 0 18px 50px rgba(0, 16, 41, 0.10); }

/* buttons on light */
.light .btn-ghost { background: rgba(0,16,41,0.02); color: var(--ink); border-color: var(--line-strong); }
.light .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.light .tlink { color: var(--accent); }
.light .tlink .chev path { stroke: var(--accent); }

/* eyebrow original (if any) */
.light .eyebrow { color: var(--accent); }

/* about image well + badge stay dark on the light section (reads as a photo placeholder) */
.light .about-media,
.light .about-media.card {
  background-color: #04122b;
  background-image: repeating-linear-gradient(45deg, rgba(120,170,230,0.06) 0 10px, transparent 10px 20px);
  border-color: rgba(0,16,41,0.10);
}
.light .about-badge {
  background: #001029;
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(0,16,41,0.22);
}
.light .about-badge .ab-num { color: #00ffff; }
.light .about-badge .ab-label { color: rgba(255,255,255,0.62); }

/* soft section separators between stacked light/dark blocks */
.section.light + .section.light,
.section-tight.light + .section.light { border-top: 1px solid var(--line); }

/* ===== pages.css ===== */
/* ============================================================
   GNETWORX — Inner-page styles (banner, service grids, forms)
   Reuses existing tokens & components; adds only new structures.
   ============================================================ */

/* ---------- Inner page hero (banner) ---------- */
.page-hero { position: relative; padding-top: 150px; padding-bottom: clamp(50px, 7vw, 90px); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero .orb { z-index: 0; }
.page-hero-inner { position: relative; z-index: 3; max-width: 900px; }
.page-hero .lead { margin-top: 22px; max-width: 640px; }
.page-hero-x { position: absolute; right: -70px; top: 50%; translate: 0 -50%; z-index: 1; opacity: .85; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); margin-bottom: 20px; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--neon-pulse); }
.breadcrumb .sep { color: var(--ink-faint); }

/* ---------- Service / generic item grid ---------- */
.items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.item-card { padding: 28px; transition: transform .3s, border-color .3s; }
.item-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.item-ico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: rgba(0,255,255,.08); border: 1px solid var(--line); margin-bottom: 18px; }
.light .item-ico { background: rgba(237,0,0,.07); }
.item-card .it-t { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; }
.item-card .it-d { color: var(--ink-mute); font-size: 14.5px; margin-top: 9px; line-height: 1.5; }
.item-card .it-no { font-family: var(--font-mono); font-size: 11px; color: var(--accent); margin-bottom: 14px; }

/* ---------- Why-choose cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.why-card { padding: 26px; }
.why-card .wc-ico { margin-bottom: 16px; }
.why-card .wc-t { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.why-card .wc-d { color: var(--ink-mute); font-size: 14px; margin-top: 8px; line-height: 1.5; }

/* ---------- Prose / vision-mission ---------- */
.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; margin: 0 0 18px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.vm-card { padding: 32px; }
.vm-card .vm-h { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 14px; }
.vm-card p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; margin: 0; }
.numbers-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- What we do pillars ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.pillar { padding: 34px; display: flex; flex-direction: column; }
.pillar-ico { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; background: rgba(0,255,255,.08); border: 1px solid var(--line-strong); margin-bottom: 20px; }
.light .pillar-ico { background: rgba(237,0,0,.07); }
.pillar .p-t { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; }
.pillar .p-d { color: var(--ink-mute); margin-top: 12px; line-height: 1.55; }
.pillar-points { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 11px; }
.pillar-point { display: flex; align-items: center; gap: 11px; }
.pillar-point span { color: var(--ink-soft); font-weight: 600; font-size: 14.5px; }

/* ---------- Growth (culture) ---------- */
.growth-row { display: flex; align-items: stretch; gap: 0; margin-top: 44px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.growth-step { flex: 1; padding: 34px; border-right: 1px solid var(--line); }
.growth-step:last-child { border-right: none; }
.growth-step .gs-n { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem,5vw,3.8rem); color: var(--neon-pulse); line-height: 1; }
.light .growth-step .gs-n { color: var(--accent); }
.growth-step .gs-l { color: var(--ink-mute); margin-top: 8px; font-size: 14px; }
.growth-arrow { display: grid; place-items: center; padding: 0 6px; color: var(--accent); }

/* culture block list */
.culture-blocks { display: flex; flex-direction: column; gap: 30px; margin-top: 26px; max-width: 820px; }
.culture-block .cb-t { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; margin-bottom: 12px; }
.culture-block .cb-d { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.6; }

/* ---------- Job accordion ---------- */
.jobs { margin-top: 44px; display: flex; flex-direction: column; gap: 14px; max-width: 940px; }
.job { overflow: hidden; }
.job-head { display: flex; align-items: center; gap: 18px; width: 100%; background: none; border: 0; cursor: pointer; padding: 26px 28px; text-align: left; color: var(--ink); font-family: inherit; }
.job-head .j-no { font-family: var(--font-mono); font-size: 12px; color: var(--accent); }
.job-head .j-role { flex: 1; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.job-head .j-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-mute); white-space: nowrap; }
.job-head .plus { width: 20px; height: 20px; position: relative; flex: none; }
.job-head .plus::before, .job-head .plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--accent); transition: transform .3s, opacity .3s; }
.job-head .plus::before { width: 100%; height: 2px; }
.job-head .plus::after { width: 2px; height: 100%; }
.job.open .job-head .plus::after { transform: rotate(90deg); opacity: 0; }
.job-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s cubic-bezier(.3,.8,.3,1); }
.job.open .job-body { grid-template-rows: 1fr; }
.job-body-inner { overflow: hidden; }
.job-body-pad { padding: 0 28px 30px; }
.jb-grid { display: grid; grid-template-columns: 150px 1fr; gap: 12px 24px; }
.jb-label { font-family: var(--font-mono); font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .04em; padding-top: 3px; }
.jb-val { color: var(--ink-soft); line-height: 1.55; }
.jb-val ul { margin: 0; padding-left: 18px; }
.jb-val li { margin-bottom: 7px; }
.job-apply { margin-top: 24px; }

/* ---------- Contact / booking form ---------- */
.book-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,64px); margin-top: 50px; align-items: start; }
.book-aside .contact-line { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.book-aside .contact-line svg { flex: none; margin-top: 2px; }
.book-aside a.contact-line:hover, .book-aside .contact-line a:hover { color: var(--neon-pulse); }
.form { padding: clamp(28px,4vw,42px); }
.form-label { font-family: var(--font-head); font-weight: 700; font-size: 14px; margin-bottom: 12px; display: block; }
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.radio-opt { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border: 1px solid var(--line-strong); border-radius: 12px; cursor: pointer; flex: 1; min-width: 200px; transition: border-color .25s, background .25s; }
.radio-opt:hover { border-color: var(--neon-pulse); }
.radio-opt.on { border-color: var(--neon-pulse); background: rgba(0,255,255,.06); }
.radio-opt .dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line-strong); flex: none; display: grid; place-items: center; }
.radio-opt.on .dot { border-color: var(--neon-pulse); }
.radio-opt.on .dot::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--neon-pulse); }
.radio-opt span { font-weight: 600; font-size: 14.5px; }
.field { margin-bottom: 22px; }
.field textarea, .field input { width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--line-strong); border-radius: 12px; color: var(--ink); font-family: var(--font-body); font-size: 15px; padding: 15px 16px; transition: border-color .25s; }
.light .field textarea, .light .field input { background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.field textarea:focus, .field input:focus { outline: none; border-color: var(--neon-pulse); }
.consent { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; cursor: pointer; }
.consent input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--neon-pulse); }
.consent span { font-size: 13.5px; color: var(--ink-mute); line-height: 1.5; }
.form-ok { display: flex; align-items: center; gap: 12px; padding: 18px; border-radius: 12px; background: rgba(0,255,255,.08); border: 1px solid var(--line-strong); color: var(--ink); font-weight: 600; margin-top: 8px; }

/* ---------- page transition ---------- */
.page-fade { animation: pageIn .5s cubic-bezier(.2,.7,.2,1); }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .items-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .page-hero-x { display: none; }
}
@media (max-width: 640px) {
  .items-grid, .why-grid, .vm-grid, .numbers-3 { grid-template-columns: 1fr; }
  .growth-row { flex-direction: column; }
  .growth-step { border-right: none; border-bottom: 1px solid var(--line); }
  .growth-arrow { transform: rotate(90deg); padding: 8px 0; }
  .radio-opt { min-width: 0; }
  .job-head .j-meta { display: none; }
  .jb-grid { grid-template-columns: 1fr; gap: 4px 0; }
  .jb-label { margin-top: 14px; }
}

/* Force mobile navigation in device simulators and real touch browsers. */
@media (max-width: 1080px) {
  .nav {
    z-index: 2147483000 !important;
  }
  .nav-inner {
    position: relative;
    z-index: 2147483001 !important;
  }
  .nav-links,
  .mega,
  .nav-book,
  .clock {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .nav-cta {
    margin-left: auto;
  }
  .nav-burger {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 2147483002 !important;
  }
  .nav-overlay {
    z-index: 2147483003 !important;
  }
  .nav-overlay.show {
    pointer-events: auto !important;
  }
  .nav-close {
    z-index: 2147483004 !important;
  }
  .nav-overlay-links {
    gap: 0 !important;
  }
  .ov-trigger,
  .ov-single {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 54px;
    padding: 13px 0 !important;
    font-size: clamp(1.05rem, 4.2vw, 1.18rem) !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
  }
  .ov-trigger {
    justify-content: space-between !important;
  }
  .ov-trigger > span,
  .ov-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }
  .ov-trigger .idx,
  .ov-single .idx {
    flex: 0 0 32px !important;
    margin-right: 0 !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
  }
  .ov-sub a {
    font-size: 0.98rem !important;
    line-height: 1.25 !important;
  }
  .nav-overlay > .btn {
    --bh: 46px;
    align-self: stretch !important;
    justify-content: center !important;
    width: min(100%, 260px);
    margin-top: 20px !important;
    font-size: 1rem !important;
  }
}
