/* ============================================================
   ColdBoot — közös stíluslap (index, about, services, contact)
   start.html önálló: css/start.css
   ============================================================ */

/* === Self-hosted fonts (Sora, JetBrains Mono) — SIL OFL. Google Fonts CDN kiváltva (GDPR/privacy: 0 kérés a Google felé). === */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../assets/fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../assets/fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', system-ui, sans-serif;
  /* brand circuit-háttér — a portál/NC közös bg-circuit.svg-je (statikus, finom, fixed cover) */
  background: #08172B url('../assets/svg/bg-circuit.svg') no-repeat center center / cover fixed;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  animation: pg-in 0.55s ease both;
}
@keyframes pg-in { from { opacity: 0; } to { opacity: 1; } }
a { text-decoration: none; color: inherit; }

/* === DESIGN TOKENS (evolve 2026-06 — cyan marad a PRIMARY, állandó) === */
:root {
  /* surfaces */
  --ink:        #08172B;   /* sötét alap / hero / footer */
  --ink-mid:    #0F1E30;   /* card / panel */
  --ink-deep:   #0A1726;   /* page bg */
  --ink-code:   #070F1C;   /* code-panel */
  /* accent */
  --cyan:       #22D3EE;
  --cyan-2:     #7FE9F7;
  --muted:      #526070;
  /* text tiers — WCAG ≥4.5:1 az #0A1726 alapon */
  --tx-1:       #FFFFFF;                 /* heading / primary */
  --tx-2:       rgba(255,255,255,.66);   /* body */
  --tx-3:       rgba(255,255,255,.58);   /* másodlagos / caption */
  --tx-4:       rgba(255,255,255,.5);    /* mono label / tercier */
  /* borders */
  --bd-1:       rgba(255,255,255,.07);
  --bd-2:       rgba(255,255,255,.12);
  --bd-cyan:    rgba(34,211,238,.14);
  --bd-cyan-2:  rgba(34,211,238,.28);
  /* elevation (mélység — új szín nélkül) */
  --el-1: 0 1px 2px rgba(0,0,0,.25);
  --el-2: 0 10px 28px -16px rgba(0,0,0,.55), 0 2px 6px rgba(0,0,0,.22);
  --glow-cyan: 0 0 40px -10px rgba(34,211,238,.22);
  /* wordmark méret-token */
  --wm-size: 19px;
  /* radius skála */
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px;
  /* card felszín-gradiens (felül-megvilágított sheen → mélység) */
  --grad-card:  linear-gradient(180deg, #15263E 0%, #0F1E30 62%);
  /* mozgás-nyelv (evolve 2026-06 / premium) — spring CSAK transform/opacity-n */
  --ease-spring:   cubic-bezier(.34,1.56,.64,1);   /* snap vissza — gomb/HUD/tilt */
  --ease-out-soft: cubic-bezier(.22,.61,.36,1);    /* nyugodt belépés — reveal/parallax */
  --dur-1: .18s; --dur-2: .28s; --dur-3: .42s; --dur-4: .6s;
}

/* === SHARED UTILITIES === */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); opacity: .86;
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cyan); color: #08172B;
  border: none; border-radius: 8px;
  padding: 10px 22px;
  font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 600;
  cursor: pointer; transition: opacity .18s;
}
.btn-primary:hover { opacity: .84; }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent;
  color: var(--tx-2);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 9px;
  padding: 10px 22px;
  font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 500;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.btn-ghost:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.wm { display: inline-flex; align-items: baseline; font-size: var(--wm-size); }
.wm-c { font-family: 'Sora', sans-serif; font-weight: 500; color: var(--cyan); letter-spacing: -0.022em; line-height: 1; }
.wm-b { font-family: 'Sora', sans-serif; font-weight: 700; color: #fff;    letter-spacing: -0.022em; line-height: 1; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center;
  padding: 0 48px;
  background: rgba(10,23,38,.9);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s, transform var(--dur-3) var(--ease-out-soft);
  box-shadow: 0 1px 0 rgba(255,255,255,.03), 0 10px 28px -20px rgba(0,0,0,.65);
}
.nav-brand { display: inline-flex; align-items: center; gap: 12px; }
.nav-links { display: flex; gap: 28px; margin-left: 44px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--tx-2); transition: color .18s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { margin-left: auto; padding: 9px 20px; font-size: 13px; position: relative; }
.nav-boot { position: absolute; top: calc(100% + 9px); right: 0; min-width: 130px; display: flex; flex-direction: column; gap: 4px; opacity: 0; transform: translateY(-4px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 60; }
.nav-cta:hover .nav-boot, .nav-cta:focus-within .nav-boot, .nav-cta.arming .nav-boot { opacity: 1; transform: none; }
.nav-boot-track { height: 3px; border-radius: 2px; background: rgba(255,255,255,.1); overflow: hidden; }
.nav-boot-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--cyan), #7fe9f7); box-shadow: 0 0 8px rgba(34,211,238,.7); }
.nav-cta.arming .nav-boot-fill { animation: navboot .7s cubic-bezier(.3,.7,.3,1) forwards; }
@keyframes navboot { to { width: 100%; } }
.nav-boot-label { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; letter-spacing: .12em; color: #93A1B0; text-align: right; transition: color .3s ease; }
.nav-cta.arming .nav-boot-label { color: var(--cyan); }
.nav-cta:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* hamburger (csak mobil) */
.nav-burger { display: none; width: 44px; height: 44px; margin-left: 12px; flex-shrink: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: 0; cursor: pointer; padding: 0; }
.nav-burger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: rgba(255,255,255,.82); transition: transform .3s ease, opacity .2s ease; }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === PAGE HERO (about / services / contact) === */
.pg-hero {
  position: relative; overflow: hidden;
  background: transparent;
  padding: 84px 48px 56px;
}
.pg-hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.pg-hero h1 {
  margin-top: 14px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700; letter-spacing: -0.026em; line-height: 1.12;
  color: #fff; max-width: 580px;
}
.pg-hero-sub {
  margin-top: 12px; font-size: 15px; line-height: 1.72;
  color: var(--tx-2); max-width: 480px;
}

/* === SECTION HEADER === */
.section { padding: 80px 0; }
.sec-hdr { margin-bottom: 40px; }
.sec-hdr .eyebrow { margin-bottom: 10px; }
.sec-hdr h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600; letter-spacing: -0.018em; color: #fff;
}
.sec-hdr .sub {
  margin-top: 10px; font-size: 14.5px;
  color: var(--tx-3); max-width: 520px; line-height: 1.68;
}

/* === CTA SECTION (közös) — cinematic glass === */
.cta-section { padding: 80px 0; }
.cta-box {                       /* = színpad (class marad: HUD REQ + reveal köti) */
  position: relative; overflow: hidden;
  border-radius: 24px; padding: 26px;
  background: radial-gradient(120% 140% at 50% -20%, #122a40 0%, #0A1A2B 45%, #07121E 100%);
  box-shadow: var(--el-2), 0 0 80px -40px rgba(34,211,238,.5);
}
/* sodródó fény-blobok az üveg mögött (a frosted panelen átszűrve = mozgó színes fény) */
.cta-aura { position: absolute; inset: -10%; z-index: 0; pointer-events: none; }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(8px); will-change: transform; }
.cta-blob.b1 { width: 46%; height: 72%; left: -6%; top: -12%;
  background: radial-gradient(circle, rgba(34,211,238,.55), rgba(34,211,238,0) 68%);
  animation: cta-blob1 14s ease-in-out infinite; }
.cta-blob.b2 { width: 52%; height: 84%; right: -10%; top: -4%;
  background: radial-gradient(circle, rgba(94,106,210,.5), rgba(94,106,210,0) 68%);
  animation: cta-blob2 17s ease-in-out infinite; }
.cta-blob.b3 { width: 44%; height: 64%; left: 28%; bottom: -22%;
  background: radial-gradient(circle, rgba(34,211,238,.42), rgba(34,211,238,0) 68%);
  animation: cta-blob3 12s ease-in-out infinite; }
@keyframes cta-blob1 { 0%, 100% { transform: translate(0,0) scale(1); }    50% { transform: translate(18%,12%) scale(1.18); } }
@keyframes cta-blob2 { 0%, 100% { transform: translate(0,0) scale(1); }    50% { transform: translate(-14%,16%) scale(1.12); } }
@keyframes cta-blob3 { 0%, 100% { transform: translate(0,0) scale(1.05); } 50% { transform: translate(12%,-14%) scale(1); } }
/* frosted üveg-panel a tartalommal */
.cta-glass {
  position: relative; z-index: 1;
  border-radius: 16px; padding: 54px 44px; text-align: center;
  background: rgba(11,22,35,.45);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
          backdrop-filter: blur(16px) saturate(125%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 0 0 1px rgba(34,211,238,.07), 0 24px 60px -24px rgba(0,0,0,.6);
}
.cta-glass h2 {
  margin-top: 14px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700; letter-spacing: -0.022em; color: #fff;
}
.cta-glass p {
  margin: 12px auto 0; font-size: 15px;
  color: var(--tx-2); max-width: 460px; line-height: 1.72;
}
.cta-glass .btn-primary {
  margin-top: 28px; padding: 14px 34px; font-size: 15px;
  box-shadow: 0 10px 30px -10px rgba(34,211,238,.55);
  transition: opacity .18s, transform .16s ease, box-shadow .2s;
}
.cta-glass .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(34,211,238,.75); opacity: 1; }
.cta-glass .btn-primary:active { transform: scale(.97); }
.cta-load { max-width: 260px; margin: 26px auto 0; }
.cta-bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,.08); overflow: hidden; }
.cta-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--cyan), #7fe9f7); box-shadow: 0 0 10px rgba(34,211,238,.7); }
.cta-load.armed .cta-bar-fill { animation: ctafill 1.1s cubic-bezier(.3,.7,.3,1) forwards; }
@keyframes ctafill { to { width: 100%; } }
.cta-ready {
  margin-top: 8px; text-align: center;
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px;
  letter-spacing: .12em; color: #7C8DA0; opacity: .85;
  transition: color .3s ease;
}
.cta-load.armed .cta-ready { color: var(--cyan); opacity: 0; animation: ctaready .45s ease .85s forwards; }
@keyframes ctaready {
  from { opacity: 0; text-shadow: 0 0 12px rgba(34,211,238,.9); }
  to   { opacity: .85; text-shadow: none; }
}

/* === FOOTER === */
footer {
  background: transparent;
  padding: 56px 48px 36px;
}
.foot-inner { max-width: 1180px; margin: 0 auto; }
.foot-top {
  display: grid; grid-template-columns: 1.9fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.foot-brand-text {
  margin-top: 14px; font-size: 13.5px;
  color: var(--tx-3); line-height: 1.72; max-width: 260px;
}
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,211,238,.04); border: 1px solid rgba(34,211,238,.2);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease-spring);
}
.foot-social a:hover {
  background: rgba(34,211,238,.1); border-color: rgba(34,211,238,.5);
  box-shadow: 0 0 18px -4px rgba(34,211,238,.5); transform: translateY(-2px);
}
.foot-social img { display: block; opacity: .78; transition: opacity .25s ease; }
.foot-social a:hover img { opacity: 1; }
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--tx-4); margin-bottom: 14px;
}
.foot-col a {
  display: block; width: fit-content; font-size: 13.5px;
  color: var(--tx-2); margin-bottom: 10px; transition: color .18s;
}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; gap: 14px 24px; flex-wrap: wrap;
}
.foot-bottom span {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,.38);
}
.foot-meta { display: flex; align-items: center; gap: 14px; }
.foot-meta .foot-dot { color: rgba(255,255,255,.16); }
.foot-bottom a {
  position: relative;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .02em; color: var(--tx-2);
  text-decoration: none; transition: color .2s ease;
}
.foot-bottom a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease-spring);
}
.foot-bottom a:hover { color: var(--cyan); }
.foot-bottom a:hover::after { transform: scaleX(1); }

/* === COLDBOOT SYSTEM — animáció rendszer (közös) === */

/* page-transition wipe */
#xfade { position: fixed; inset: 0; z-index: 500; background: #08172B; opacity: 0; pointer-events: none; transition: opacity .42s ease; }
#xfade.on { opacity: 1; pointer-events: auto; }
#xfade::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(34,211,238,.95), transparent); box-shadow: 0 0 24px 4px rgba(34,211,238,.55); opacity: 0; }
/* #xfade.on::before animation a BATCH1 F5d blokkban (jobb easing) */
@keyframes wipe { from { transform: translateY(0); opacity: 1; } to { transform: translateY(100dvh); opacity: 1; } }

/* boot scanline */
.boot-scan { position: fixed; left: 0; right: 0; top: 0; height: 2px; z-index: 300; background: linear-gradient(90deg, transparent, rgba(34,211,238,.9), transparent); box-shadow: 0 0 24px 4px rgba(34,211,238,.5); opacity: 0; pointer-events: none; animation: boot-sweep 1.15s ease-in-out forwards; }
@keyframes boot-sweep { 0% { transform: translateY(0); opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { transform: translateY(100dvh); opacity: 0; } }

/* section boot reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-3) ease, transform var(--dur-4) var(--ease-out-soft); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.flick { animation: flick .3s steps(3,end) 1; }
@keyframes flick { 0%,100% { opacity: 1; } 30% { opacity: .45; } 55% { opacity: .9; } 75% { opacity: .6; } }
.reveal.boot { animation: bootcard .55s ease 1; }
@keyframes bootcard {
  0%   { opacity: .2;  box-shadow: 0 0 0 0 rgba(34,211,238,0); }
  30%  { opacity: .55; }
  50%  { box-shadow: 0 0 30px -6px rgba(34,211,238,.5); }
  62%  { opacity: .9; }
  100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(34,211,238,0); }
}

/* scan-load: cyan vonal lehúz a kártyán (beszkennelés) */
.scanbar { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(34,211,238,.85), transparent); box-shadow: 0 0 12px rgba(34,211,238,.65); opacity: 0; pointer-events: none; z-index: 4; }
.boot .scanbar { animation: scanload .6s ease var(--d, 0s) forwards; }
@keyframes scanload { 0% { top: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* stat scramble lock — .lock osztályt a JS nem oszt, dead code törölve */

/* targeting HUD */
.hud-target { position: relative; }
.hud-frame { position: absolute; inset: -7px; z-index: 3; pointer-events: none; opacity: 0; transition: opacity .16s ease; }
.hud-frame * { pointer-events: none; }
.hud-target:focus-within .hud-frame { opacity: 1; }  /* billentyűzet-fókusz: mindig */
.hud-corner { position: absolute; width: 12px; height: 12px; border: 1.5px solid var(--cyan); }
.hud-corner.tl { top: 0; left: 0;  border-right: none; border-bottom: none; }
.hud-corner.tr { top: 0; right: 0; border-left: none;  border-bottom: none; }
.hud-corner.bl { bottom: 0; left: 0;  border-right: none; border-top: none; }
.hud-corner.br { bottom: 0; right: 0; border-left: none;  border-top: none; }
/* hover-reveal CSAK hover-képes eszközön → érintőn nem ragad be a cián keret tap után */
@media (hover: hover) {
  .hud-target:hover .hud-frame { opacity: 1; }
  .hud-target:hover .hud-corner { animation: hud-snap .22s ease both; }
}
@keyframes hud-snap { from { margin: 5px; opacity: 0; } to { margin: 0; opacity: 1; } }
#services, .why-wrap, .cta-wrap, .mission-wrap, .values-wrap, .how-wrap, .contact-wrap, .svc-detail { position: relative; }

/* === RESPONSIVE (közös) === */
@media (max-width: 960px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav { padding: 0 20px; background: rgba(10,23,38,.96); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-brand-hint { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .nav-cta ~ .nav-burger { margin-left: 12px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .nav-links {
    position: fixed; top: 64px; right: 0;
    width: min(72vw, 280px);
    margin: 0; gap: 0;
    flex-direction: column; align-items: stretch;
    padding: 8px 0;
    background: #0b1a2c;
    border-left: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-bottom-left-radius: 14px;
    box-shadow: -8px 12px 40px -12px rgba(0,0,0,.6);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateX(12px);
    transition: opacity .25s ease, transform .28s var(--ease-spring), visibility .28s;
    z-index: 90;
  }
  .nav.menu-open .nav-links { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-links a { padding: 13px 22px; font-size: 14px; min-height: 44px; display: flex; align-items: center; }
  .nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(34,211,238,.08); }
  .pg-hero { padding: 44px 20px 36px; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 56px; padding-bottom: 56px; }
  .cta-box { padding: 14px; border-radius: 18px; }
  .cta-glass { padding: 40px 24px; background: rgba(10,20,33,.82);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
  .cta-blob { animation: none; opacity: .4; }
  footer { padding: 44px 20px 28px; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  /* mobil: a fixed bg csak az 1. viewportot festi → alsó szekciók laposak; scroll = egyenletes circuit */
  body { background-attachment: scroll; }
  /* touch-targetek (≥~36px) */
  .btn-primary, .btn-ghost { padding: 12px 22px; min-height: 44px; }   /* ujj-biztos tap-méret */
  .foot-col a { display: flex; align-items: center; min-height: 44px; padding: 6px 0; margin-bottom: 0; }  /* ≥44px tap-terület */
  .foot-social { gap: 12px; margin-top: 16px; }
  .foot-social a { width: 44px; height: 44px; }   /* .foot-col a szabályt nem örökli, külön tap-méret */
  .form-input, .form-select, .form-textarea { font-size: 16px; }  /* iOS auto-zoom stop fókuszkor */
}

/* === REDUCED MOTION (közös) === */
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .boot-scan { display: none; }
  .nav-links, .nav-burger span { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.flick, .reveal.boot { animation: none; }
  .scanbar { display: none; }
  .hud-corner { animation: none !important; }
  .cta-blob { animation: none; }
  .cta-bar-fill { animation: none; }
  .cta-ready { animation: none; }
  .ticker-rail { animation: none; }
  #xfade.on::before { animation: none; }
  .why-card::before { display: none; }
  #boot-intro { display: none; }
  .stat-num, .stat-lbl { transition: none; }
  .stat-item:hover { transform: none; }
  .stat-item:hover .stat-num { text-shadow: none; }
  .m-stat { transition: none; }
  .m-stat:hover { transform: none; }
  .m-stat:hover .m-stat-num { text-shadow: none; }
  .foot-bottom a::after { transition: none; }
  .foot-social a { transition: none; }
  .foot-social a:hover { transform: none; }
}

/* ============================================================
   INDEX — egyedi szekciók
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  /* átlátszó — a body brand circuit-háttere átlátszik (portál-recept), gradiens-overlay nélkül */
  background: transparent;
  padding: 112px 48px 88px;
}
.hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.hero h1 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700; letter-spacing: -0.026em; line-height: 1.1;
  color: #fff; max-width: 700px;
}
.hero-sub {
  margin-top: 16px; font-size: 16px; line-height: 1.72;
  color: var(--tx-2); max-width: 500px;
}
.hero-tagline {
  margin-top: 14px;
  font-size: clamp(15px, 1.9vw, 20px);
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: -0.01em;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 12px; margin-top: 32px; }
.hero-btns .btn-primary { padding: 12px 26px; font-size: 14.5px; }
.hero-btns .btn-ghost   { padding: 12px 26px; font-size: 14.5px; }
.hero-stats {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  margin-top: 48px;
  max-width: 680px;
}
.pg-hero .hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; max-width: none; }
.pg-hero .stat-num { font-size: 22px; }
@media (max-width: 680px) {
  .pg-hero .hero-stats { grid-template-columns: 1fr; }
}
.stat-item {
  flex: 1; min-width: 150px;
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color .22s ease, transform .26s var(--ease-spring), background .22s ease;
}
.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px; font-weight: 500;
  color: var(--cyan); letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: text-shadow .22s ease;
}
.stat-lbl {
  font-size: 12.5px;
  color: var(--tx-2); line-height: 1.4;
}
.stat-item:hover .stat-num { text-shadow: 0 0 18px rgba(34,211,238,.5); }


/* WHY */
.why-wrap { background: transparent; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.why-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color .22s;
  position: relative;
}
.why-card:hover { border-color: rgba(255,255,255,.1); }
.why-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(34,211,238,.38); flex-shrink: 0; padding-top: 3px; }
.why-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 7px; letter-spacing: -0.012em; }
.why-card p  { font-size: 13.5px; color: var(--tx-3); line-height: 1.68; }

/* index scan-load (::before vonal a kártyákon) */
.why-card::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.85), transparent);
  box-shadow: 0 0 12px rgba(34,211,238,.65);
  opacity: 0; pointer-events: none; z-index: 4;
}
.why-card.boot::before { animation: scanload .6s ease var(--d, 0s) forwards; }

/* TICKER */
.ticker-wrap {
  overflow: hidden; position: relative;
  padding: 26px 0;
  background: transparent;
}
.ticker-wrap::before, .ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.ticker-wrap::before { left: 0;  background: linear-gradient(to right, #08172B, transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, #08172B, transparent); }
.ticker-rail { display: flex; width: max-content; animation: tick 32s linear infinite; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 0 32px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500;
  color: #93A1B0; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.04);
  transition: color .2s;
}
.tick-item:hover { color: rgba(34,211,238,.65); }
.tick-item img { opacity: .4; transition: opacity .2s; filter: brightness(1.2); vertical-align: middle; }
.tick-item:hover img { opacity: .75; }

/* INDEX BOOT INTRO (splash) */
.cb-booted #boot-intro { display: none; }
#boot-intro {
  position: fixed; inset: 0; z-index: 1000;
  /* betöltő-képernyő = UGYANAZ a brand circuit-háttér mint az oldal (portál-recept) */
  background: #08172B url('../assets/svg/bg-circuit.svg') no-repeat center center / cover;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; user-select: none; transition: opacity .6s ease; overflow: hidden;
}
#boot-intro.out { opacity: 0; pointer-events: none; }
/* smooth splash→hero handoff: a stage felsodródik+halványul, NEM hard-cut (keresztúsztat a hero rise-in-jével) */
#boot-intro.out #bi-stage { animation: bi-stage-out .55s var(--ease-out-soft) forwards; }
#boot-intro.out #bi-term { opacity: 0; transition: opacity .3s ease; }
@keyframes bi-stage-out { from { transform: none; opacity: 1; } to { transform: translateY(-26px) scale(.985); opacity: 0; } }
#bi-stage { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; animation: bi-stage-in .8s var(--ease-out-soft) both; }
#bi-mark { position: relative; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; }
#bi-mark .ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(34,211,238,.28); animation: bi-ring 2.8s ease-out infinite; }
#bi-mark .ring:nth-child(2) { animation-delay: 1.2s; border-color: rgba(34,211,238,.14); }
@keyframes bi-ring { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.65); opacity: 0; } }
#bi-svg { display: block; position: relative; z-index: 2; animation: bi-breathe 3.4s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(34,211,238,.22)); transition: filter .55s ease; }
@keyframes bi-breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
/* IGNITION (klikk) — egyszeri power-surge punch + arc draw-on + shockwave + bloom. Mind transform/opacity/dashoffset. */
#boot-intro.booting #bi-svg { animation: bi-surge .55s cubic-bezier(.34,1.4,.5,1) both; filter: drop-shadow(0 0 16px rgba(34,211,238,.95)) drop-shadow(0 0 34px rgba(34,211,238,.45)); }
@keyframes bi-surge { 0% { transform: scale(.96); } 42% { transform: scale(1.12); } 100% { transform: scale(1); } }
/* finom pulzáló energia-ring a mark MÖGÖTT (JS-injektált) — a crisp glow „él", de NEM blob. transform+opacity = olcsó */
.bi-pulse { position: absolute; left: 50%; top: 50%; width: 240px; height: 240px; margin: -120px 0 0 -120px; border-radius: 50%; opacity: 0; pointer-events: none; background: radial-gradient(circle, rgba(34,211,238,.22), rgba(34,211,238,0) 65%); }
#boot-intro.booting .bi-pulse { animation: bi-pulse 1.8s ease-in-out infinite; }
@keyframes bi-pulse { 0%, 100% { transform: scale(.85); opacity: .35; } 50% { transform: scale(1.15); opacity: .75; } }
#boot-intro.booting #bi-arc { stroke-dasharray: 70; animation: bi-arc-draw .6s ease .04s both; }
@keyframes bi-arc-draw { from { stroke-dashoffset: 70; } to { stroke-dashoffset: 0; } }
.bi-shock { position: absolute; left: 50%; top: 50%; width: 200px; height: 200px; margin: -100px 0 0 -100px; border-radius: 50%; border: 2px solid rgba(34,211,238,.55); opacity: 0; pointer-events: none; }
#boot-intro.booting .bi-shock { animation: bi-shock .7s cubic-bezier(.2,.6,.3,1) both; }
@keyframes bi-shock { 0% { transform: scale(.35); opacity: .7; } 100% { transform: scale(2.3); opacity: 0; } }
.bi-bloom { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0; background: radial-gradient(circle at 50% 45%, rgba(34,211,238,.26), rgba(34,211,238,0) 55%); }
#boot-intro.booting .bi-bloom { animation: bi-bloom .45s ease both; }
@keyframes bi-bloom { 0% { opacity: 0; } 28% { opacity: 1; } 100% { opacity: 0; } }
#boot-intro.booting #bi-mark .ring { animation: none; opacity: 0; transition: opacity .25s; }
#bi-wm { margin-top: 36px; display: inline-flex; align-items: baseline; font-family: 'Sora', sans-serif; }
#bi-wm .c { font-weight: 500; font-size: 44px; color: var(--cyan); letter-spacing: -.022em; line-height: 1; }
#bi-wm .b { font-weight: 700; font-size: 44px; color: #fff; letter-spacing: -.022em; line-height: 1; }
#bi-tag {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: clamp(10px, 3vw, 16px);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(11px, 2.6vw, 13.5px); letter-spacing: .2em; text-transform: uppercase;
  color: #cfe7ee; text-shadow: 0 0 16px rgba(34,211,238,.4);
  opacity: 1; transition: opacity .4s;
}
#bi-tag::before, #bi-tag::after {
  content: ''; height: 1px; width: clamp(16px, 6vw, 46px); flex-shrink: 0;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.75));
}
#bi-tag::after { transform: scaleX(-1); }
#bi-hint { margin-top: 46px; display: flex; flex-direction: column; align-items: center; gap: 13px; opacity: 0; animation: bi-hint-appear .7s ease 1.2s forwards; transition: opacity .3s; }
@keyframes bi-hint-appear { to { opacity: 1; } }
/* FEL-mutató chevron a power-mark JELRE mutat ("azzal indítsd el") */
#bi-hint .ar { width: 13px; height: 13px; border-top: 2px solid rgba(34,211,238,.6); border-left: 2px solid rgba(34,211,238,.6); transform: rotate(45deg); animation: bi-arr 2s ease-in-out infinite; }
@keyframes bi-arr { 0%,100% { transform: rotate(45deg) translate(3px,3px); opacity: .3; } 50% { transform: rotate(45deg) translate(-2px,-2px); opacity: .9; } }
/* HUD-pill CTA — egyértelmű kattintható affordance, lélegző cián keret-glow */
#bi-hint .ht { font-family: 'JetBrains Mono', monospace; font-size: clamp(10px,2.4vw,11px); letter-spacing: .16em; text-transform: uppercase; color: #cfe7ee; padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(34,211,238,.3); background: #0F1E30; animation: bi-cta 2.6s ease-in-out infinite; }
@keyframes bi-cta { 0%,100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); border-color: rgba(34,211,238,.28); } 50% { box-shadow: 0 0 24px -2px rgba(34,211,238,.5); border-color: rgba(34,211,238,.65); } }
#boot-intro.booting #bi-hint, #boot-intro.booting #bi-tag { opacity: 0; animation: none; transition: opacity .25s ease; }
#boot-intro.booting #bi-hint .ht, #boot-intro.booting #bi-hint .ar { animation: none; }
#bi-term { position: fixed; bottom: 0; left: 0; right: 0; padding: 24px 56px 40px; z-index: 10; display: flex; flex-direction: column; gap: 5px; opacity: 0; transition: opacity .28s ease; }
#boot-intro.booting #bi-term { opacity: 1; }
/* mobil: kisebb oldalpadding + font, hogy a leghosszabb sor [ OK ]-ja BIZTOSAN kiférjen (ne lógjon le a k) */
@media (max-width: 600px) {
  #bi-term { padding: 18px 16px 26px; }
  .bi-line { font-size: 11px; gap: 6px; }
}
.bi-line { display: flex; align-items: baseline; font-family: 'JetBrains Mono', monospace; font-size: 12px; gap: 8px; opacity: 0; overflow: hidden; animation: bi-in .14s ease forwards; }
@keyframes bi-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
.bi-line .p { color: rgba(34,211,238,.28); flex-shrink: 0; }
.bi-line .t { color: rgba(34,211,238,.65); flex: 1; white-space: nowrap; }
.bi-line .dot { color: rgba(34,211,238,.12); flex: 1; overflow: hidden; white-space: nowrap; letter-spacing: .04em; }
/* .bi-line .s összevonva a BATCH1 blokkba (animation + alap props) */
.bi-line .s.ready { font-size: 13px; letter-spacing: .1em; font-weight: 700; }
.bi-line.hdr { margin-bottom: 4px; }
.bi-line.hdr .t { color: var(--tx-2); font-size: 11px; letter-spacing: .08em; }

@media (max-width: 680px) {
  .hero { padding: 64px 20px 56px; }
  .stat-item { min-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; text-align: center; }
}

/* ============================================================
   ABOUT — egyedi szekciók
   ============================================================ */
.mission-wrap { background: transparent; }
.mission-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; padding: 72px 0; }
.mission-text h2 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; letter-spacing: -0.02em; color: #fff; margin-bottom: 16px; margin-top: 12px; }
.mission-text p { font-size: 14.5px; color: var(--tx-2); line-height: 1.76; margin-bottom: 14px; }
.mission-text p a { color: var(--cyan); }
.mission-text p a:hover { text-decoration: underline; text-underline-offset: 3px; }
.mission-stats { display: flex; flex-direction: column; gap: 16px; }
.m-stat { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 20px 22px; display: flex; align-items: center; gap: 18px; transition: border-color .22s ease, transform .26s var(--ease-spring), background .22s ease; }
.m-stat:hover .m-stat-num { text-shadow: 0 0 18px rgba(34,211,238,.5); }
.m-stat-num { font-family: 'JetBrains Mono', monospace; font-size: 28px; font-weight: 500; color: var(--cyan); letter-spacing: -.03em; flex-shrink: 0; min-width: 64px; transition: text-shadow .22s ease; }
.m-stat-lbl { font-size: 13.5px; color: var(--tx-2); line-height: 1.5; }

.values-wrap { background: transparent; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.val-card { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 28px; transition: border-color .22s; position: relative; }
.val-card:hover { border-color: rgba(255,255,255,.1); }
.val-icon { width: 44px; height: 44px; background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.val-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; letter-spacing: -0.012em; }
.val-card p { font-size: 13.5px; color: var(--tx-3); line-height: 1.68; }

.how-wrap { background: transparent; }
.how-steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; position: relative; padding-left: 34px; }
.how-step { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.how-step:last-child { border-bottom: none; }
.how-step-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(148,163,184,.62); flex-shrink: 0; padding-top: 4px; width: 28px; transition: color .35s ease, text-shadow .35s ease; }
.how-step-content h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; letter-spacing: -0.012em; }
.how-step-content p { font-size: 13.5px; color: var(--tx-3); line-height: 1.68; }

@media (max-width: 960px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES — egyedi szekciók
   ============================================================ */
/* .quick-nav wrapper eltávolítva — HTML-ben 0 db előfordulás (felső nav törölve 2026-06) */
.qn-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--tx-2);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px; padding: 7px 14px;
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s;
}
.qn-pill:hover { background: rgba(34,211,238,.08); color: var(--cyan); border-color: rgba(34,211,238,.18); }

.svc-detail { padding: 88px 0; scroll-margin-top: 80px; }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.svc-detail-grid.rev > :first-child { order: 2; }
.svc-detail-grid.rev > :last-child  { order: 1; }
.svc-big-icon { width: 68px; height: 68px; background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.14); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.svc-detail-content .eyebrow { margin-bottom: 10px; }
.svc-detail-content h2 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; letter-spacing: -0.018em; color: #fff; margin-bottom: 14px; }
.svc-detail-content p { font-size: 14.5px; color: var(--tx-2); line-height: 1.72; margin-bottom: 24px; max-width: 440px; }
.svc-bullets { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.svc-bullets li { position: relative; display: block; padding-left: 16px; font-size: 13.5px; color: var(--tx-2); line-height: 1.58; }
.svc-bullets li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); opacity: .6; }
.svc-bullets a, .svc-detail-text > p a { color: var(--cyan); }
.svc-bullets a:hover, .svc-detail-text > p a:not(.sa-link):hover { text-decoration: underline; text-underline-offset: 3px; }

.visual-panel { background: #0F1E30; border: 1px solid rgba(255,255,255,.06); border-radius: 20px; padding: 28px; position: relative; overflow: hidden; }
.visual-panel::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(34,211,238,.04) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.visual-panel > * { position: relative; }
.vp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.vp-title { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-4); }
.vp-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(34,211,238,.5); box-shadow: 0 0 8px rgba(34,211,238,.4); }
.vp-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.vp-row:last-child { border-bottom: none; }
.vp-row-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--tx-4); width: 110px; flex-shrink: 0; }
.vp-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,.06); border-radius: 2px; }
.vp-bar { height: 100%; border-radius: 2px; background: linear-gradient(to right, rgba(34,211,238,.4), rgba(34,211,238,.8)); }
#uzemeltetes .vp-bar { width: 100%; transform-origin: left center; transform: scaleX(var(--v, .9)); }
.vp-num { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: rgba(34,211,238,.8); letter-spacing: -.01em; width: 48px; text-align: right; flex-shrink: 0; }
.vp-ok { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: .04em; width: 36px; flex-shrink: 0; }
.vp-ok.warn { color: #fb923c; }
.vp-stats { display: flex; gap: 24px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.04); }
.vp-stat-num { font-family: 'JetBrains Mono', monospace; font-size: 20px; font-weight: 500; color: var(--cyan); letter-spacing: -.02em; }
.vp-stat-lbl { font-size: 11px; color: var(--tx-4); margin-top: 3px; }

.code-panel { background: linear-gradient(180deg, #0B1524 0%, #070F1C 72%); border: 1px solid rgba(255,255,255,.07); border-radius: 16px; overflow: hidden; position: relative; box-shadow: var(--el-2); }
.code-panel-bar { background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.05); padding: 9px 14px; display: flex; align-items: center; gap: 6px; }
.cp-dot { width: 8px; height: 8px; border-radius: 50%; }
.cp-dot.r { background: rgba(239,68,68,.4); }
.cp-dot.y { background: rgba(234,179,8,.4); }
.cp-dot.g { background: rgba(34,197,94,.4); }
.cp-filename { margin-left: 6px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(255,255,255,.2); }
.code-panel pre { padding: 22px 22px; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; line-height: 1.85; overflow-x: auto; }
.ct { color: rgba(255,255,255,.2); }
.ck { color: rgba(129,140,248,.85); }
.cs { color: rgba(34,211,238,.75); }
.cv { color: rgba(249,168,212,.7); }
.cn { color: rgba(252,211,77,.7); }
.cf { color: rgba(110,231,183,.78); }

.wf-panel { padding: 24px; }
.wf-node { display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; margin-bottom: 4px; font-size: 12.5px; color: var(--tx-2); }
.wf-node-icon { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.14); display: flex; align-items: center; justify-content: center; }
.wf-arrow { display: flex; justify-content: center; margin: 3px 0 3px 22px; }
.wf-status { margin-left: auto; flex-shrink: 0; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(34,211,238,.55); letter-spacing: .04em; }

.audit-panel { padding: 24px; }
.audit-item { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.audit-item:last-child { border-bottom: none; }
.audit-check { width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
.audit-check.done { background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.24); }
.audit-check.todo { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
.audit-text { font-size: 12.5px; color: var(--tx-2); line-height: 1.5; }
.audit-text.dim { opacity: .38; }

.sec-panel { padding: 24px; }
.sec-score { text-align: center; padding: 16px 0 20px; border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: 16px; }
.sec-score-num { font-family: 'JetBrains Mono', monospace; font-size: 52px; font-weight: 500; color: var(--cyan); line-height: 1; letter-spacing: -.03em; }
.sec-score-lbl { font-size: 10px; color: var(--tx-4); margin-top: 5px; letter-spacing: .08em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }

.edu-panel { padding: 24px; }
.edu-track { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.edu-track-label { font-size: 12px; color: var(--tx-2); flex: 1; }
.edu-progress-wrap { width: 80px; height: 4px; background: rgba(255,255,255,.06); border-radius: 2px; flex-shrink: 0; }
.edu-progress { height: 100%; border-radius: 2px; background: linear-gradient(to right, rgba(34,211,238,.5), var(--cyan)); }
.edu-pct { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(34,211,238,.65); width: 32px; text-align: right; flex-shrink: 0; }

@media (max-width: 960px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-grid.rev > :first-child { order: 1; }
  .svc-detail-grid.rev > :last-child  { order: 2; }
}
@media (max-width: 680px) {
  .svc-detail { padding: 56px 0; }
}

/* ============================================================
   CONTACT — egyedi szekciók
   ============================================================ */
.contact-section { padding-top: 72px; padding-bottom: 96px; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; }

.form-card { background: #0F1E30; border: 1px solid rgba(255,255,255,.06); border-radius: 20px; padding: 40px; position: relative; }
.form-title { font-size: 17px; font-weight: 600; letter-spacing: -0.014em; color: #fff; margin-bottom: 6px; }
.form-subtitle { font-size: 13.5px; color: var(--tx-3); line-height: 1.6; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--tx-4); margin-bottom: 7px; }
.form-label .req { color: rgba(34,211,238,.6); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 400;
  color: #fff; outline: none;
  transition: border-color var(--dur-1), background var(--dur-1), box-shadow var(--dur-2) ease;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(34,211,238,.4); background: rgba(34,211,238,.03); box-shadow: 0 0 0 3px rgba(34,211,238,.12), var(--glow-cyan); }
.form-input.error, .form-textarea.error { border-color: rgba(239,68,68,.5); }
.form-error { font-size: 11.5px; color: rgba(239,68,68,.75); margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-select {
  cursor: pointer;
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpolyline points='2,4 6,8 10,4' stroke='%2322D3EE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px;
}
.form-select option { background: #0F1E30; color: #fff; }
.form-select option:disabled { color: rgba(255,255,255,.4); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-consent input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--cyan); cursor: pointer; }
.form-consent label { font-size: 12.5px; color: var(--tx-3); line-height: 1.55; cursor: pointer; }
.form-consent label a { color: rgba(34,211,238,.6); text-decoration: underline; text-underline-offset: 2px; }
.submit-btn { width: 100%; padding: 13px 24px; min-height: 46px; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(8,23,43,.3); border-top-color: #08172B; border-radius: 50%; animation: spin .6s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.success-card { display: none; background: #0F1E30; border: 1px solid rgba(34,211,238,.18); border-radius: 20px; padding: 48px 40px; text-align: center; }
.success-icon { width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px; background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.2); display: flex; align-items: center; justify-content: center; }
.success-title { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 10px; letter-spacing: -0.014em; }
.success-text { font-size: 14px; color: var(--tx-2); line-height: 1.7; max-width: 340px; margin: 0 auto; }
.success-mono { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: rgba(34,211,238,.55); letter-spacing: .06em; text-transform: uppercase; margin-top: 20px; }

.info-panel { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: #0F1E30; border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 24px; transition: border-color .22s; position: relative; }
.info-card:hover { border-color: rgba(255,255,255,.1); }
.info-card-label { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-4); margin-bottom: 10px; }
.info-card-main { font-size: 14.5px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.info-card-sub { font-size: 12.5px; color: var(--tx-3); line-height: 1.6; }
.info-card a.info-card-main { display: inline-block; padding: 6px 0; transition: color .18s; }
.info-card a.info-card-main:hover { color: var(--cyan); }
.info-icon { width: 36px; height: 36px; border-radius: 9px; margin-bottom: 12px; background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.1); display: flex; align-items: center; justify-content: center; }

/* .steps-card, .next-step, .next-step-num, .next-step-text — dead (HTML nem használja), törölve */
.steps-card-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 16px; letter-spacing: -0.01em; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

/* === HOW-STEPS folyamat-rail (about) === */
.how-rail { position: absolute; left: 9px; top: 16px; bottom: 16px; width: 2px; background: rgba(34,211,238,.12); border-radius: 2px; }
.how-rail-fill { position: absolute; left: 0; top: 0; width: 100%; height: 100%; transform: scaleY(0); transform-origin: top center; background: linear-gradient(180deg, rgba(34,211,238,.95), rgba(34,211,238,.40)); border-radius: 2px; box-shadow: 0 0 10px rgba(34,211,238,.45); will-change: transform; }
@media (max-width: 600px) { .how-steps { padding-left: 26px; } .how-rail { left: 7px; } }
@media (prefers-reduced-motion: reduce) { .how-rail-fill { transition: none; } }

/* === how-step-num lit (folyamat-rail elerte) === */
.how-step-num.lit { color: var(--cyan) !important; text-shadow: 0 0 10px rgba(34,211,238,.7); }

/* === nav-brand boot glow (logo kattintaskor kivilagit) === */
.nav-brand.booting img { animation: nb-boot .9s cubic-bezier(.3,.7,.3,1) both; }
.nav-brand.booting .wm-b, .nav-brand.booting .wm-c { animation: nb-boot-text .9s ease-out both; color: var(--cyan) !important; }
@keyframes nb-boot {
  0%   { filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(1000%) hue-rotate(151deg) brightness(97%) contrast(91%) drop-shadow(0 0 0 rgba(34,211,238,0)); transform: scale(1); }
  28%  { filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(1000%) hue-rotate(151deg) brightness(97%) contrast(91%) drop-shadow(0 0 10px rgba(34,211,238,.95)) drop-shadow(0 0 18px rgba(34,211,238,.6)); transform: scale(1.14); }
  100% { filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(1000%) hue-rotate(151deg) brightness(97%) contrast(91%) drop-shadow(0 0 6px rgba(34,211,238,.6)); transform: scale(1); }
}
@keyframes nb-boot-text {
  0%, 100% { text-shadow: none; }
  40%      { text-shadow: 0 0 12px rgba(34,211,238,.85); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-brand.booting img, .nav-brand.booting .wm-b, .nav-brand.booting .wm-c { animation: none; }
}

/* === svc-jump electron: quick-nav pill -> celszekcio fenybar (services) === */
.svc-jump { position: fixed; left: 0; top: 0; height: 100dvh; width: 3px; z-index: 9999; pointer-events: none; }
.svc-jump-fill { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34,211,238,0), rgba(34,211,238,.75)); box-shadow: 0 0 12px rgba(34,211,238,.6); transform: scaleY(0); transform-origin: top; transition: transform .6s cubic-bezier(.4,.8,.3,1); }
.svc-jump.run .svc-jump-fill { transform: scaleY(1); }
.svc-jump-orb { position: absolute; left: 50%; top: 0; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px 3px rgba(34,211,238,.95), 0 0 30px 10px rgba(34,211,238,.45); transform: translateY(0); transition: transform .6s cubic-bezier(.4,.8,.3,1); }
.svc-jump.run .svc-jump-orb { transform: translateY(100dvh); }
.svc-jump.out { opacity: 0; transition: opacity .35s ease; }
.svc-detail.jump-hit { animation: svc-hit 1.1s ease-out; }
@keyframes svc-hit { 0% { box-shadow: inset 0 0 0 0 rgba(34,211,238,0); } 22% { box-shadow: inset 0 0 70px -12px rgba(34,211,238,.5); } 100% { box-shadow: inset 0 0 0 0 rgba(34,211,238,0); } }
@media (prefers-reduced-motion: reduce) { .svc-jump { display: none; } .svc-detail.jump-hit { animation: none; } }

/* === landolas-scan: hash-erkezeskor cian fenycsik fut vegig a celszekcion === */
.svc-land-scan { position: absolute; left: 0; top: 0; width: 100%; height: 2px; z-index: 4; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.85), transparent);
  box-shadow: 0 0 12px rgba(34,211,238,.65); animation: land-scan .7s ease forwards; }
@keyframes land-scan { 0% { transform: translateY(0); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { transform: translateY(var(--h, 400px)); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .svc-land-scan { display: none; } }

/* === nav-brand hint (kis felirat a logo alatt) === */
.nav-brand-txt { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; }
.nav-brand-hint { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .08em; color: rgba(34,211,238,.58); line-height: 1; white-space: nowrap; transition: color .2s ease; }
.nav-brand:hover .nav-brand-hint { color: rgba(34,211,238,.9); }

/* === foot-brand boot glow (footer logo kattintaskor cyan, hint nelkul) === */
.foot-brand.booting img { animation: nb-boot .9s cubic-bezier(.3,.7,.3,1) both; }
.foot-brand.booting .wm-b, .foot-brand.booting .wm-c { animation: nb-boot-text .9s ease-out both; color: var(--cyan) !important; }
@media (prefers-reduced-motion: reduce) { .foot-brand.booting img, .foot-brand.booting .wm-b, .foot-brand.booting .wm-c { animation: none; } }

/* ============================================================
   EVOLVE 2026-06 — DEPTH LAYER (mélység, ÚJ SZÍN NÉLKÜL)
   felül-megvilágított felszín-gradiens + elevation-skála +
   finomított lift-hover. Trailing override: a fenti kártya-
   szabályokat egészíti ki (cyan-vonal / HUD / animáció érintetlen).
   ============================================================ */
/* solid kártyák → sheen-gradiens + elevation */
.visual-panel, .form-card, .success-card, .info-card {
  background: var(--grad-card);
  box-shadow: var(--el-2);
}
/* korábban translucent kártyák → OPAK, hogy a circuit ne üssön át */
.stat-item, .why-card, .val-card, .m-stat {
  background: var(--grad-card);
  box-shadow: var(--el-1);
}
/* === EGYSÉGES kártya-hover (a régi szétszórt/spring-es szabályok kivezetve) ===
   cián keret + glow KIVEZETVE (user 2026-06-21): kártyán nincs hover-keret.
   Marad a felemelkedés (transform, kompozitor-barát) + neutrális mélység-árnyék;
   a div-highlight + szám-glow az enhance.css-ben. */
.why-card, .val-card, .info-card, .stat-item, .m-stat {
  transition: transform .12s var(--ease-out-soft);
}
@media (hover: hover) {
  .why-card:hover, .val-card:hover, .info-card:hover,
  .stat-item:hover, .m-stat:hover {
    box-shadow: 0 14px 34px -14px rgba(0,0,0,.5);
    transform: translateY(-4px);
  }
  .stat-item:hover, .m-stat:hover { transform: translateY(-3px); }
}
/* nav box-shadow + transition összevonva a base .nav szabályba */
@media (prefers-reduced-motion: reduce) {
  .why-card:hover, .val-card:hover,
  .info-card:hover, .stat-item:hover, .m-stat:hover { transform: none; }
}

/* === SPLASH SKIP gomb (látható kihagyás; js/common.js injektálja) === */
.bi-skip {
  position: absolute; top: 20px; right: 24px; z-index: 12;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  padding: 0 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(34,211,238,.62);
  background: rgba(8,23,43,.55); border: 1px solid rgba(34,211,238,.22);
  border-radius: 8px; cursor: pointer;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: color .18s, border-color .18s, background .18s;
}
.bi-skip:hover { color: var(--cyan); border-color: rgba(34,211,238,.5); background: rgba(34,211,238,.09); }
.bi-skip:focus-visible { outline: 2px solid rgba(34,211,238,.6); outline-offset: 2px; }
.bi-skip span { transition: transform .18s; }
.bi-skip:hover span { transform: translateX(3px); }
#boot-intro.booting .bi-skip { opacity: 0; pointer-events: none; transition: opacity .25s ease; }
@media (max-width: 680px) { .bi-skip { top: 14px; right: 14px; } }

/* ============================================================
   PREMIUM — BATCH 1 (mozgás-nyelv mikrointerakciók)
   F5a input-focus glow · F5b nav-underline · F5d xfade ·
   tap-feedback (mobil-primitív) · F6 splash entrance.
   Minden transform/opacity, reduce + (hover) gate-elve.
   ============================================================ */

/* F5a — input-focus cyan glow (összevonva az alap .form-input:focus szabályba) */


/* F5d — page-wipe easing csiszolás */
#xfade.on::before { animation: wipe .5s var(--ease-out-soft) forwards; }

/* tap-feedback — a mobil interakció-primitív (érintőn ez a hover-megfelelő) + desktop press */
.btn-primary, .btn-ghost { transition: opacity var(--dur-1), transform var(--dur-1) var(--ease-spring); }
.btn-primary:active, .btn-ghost:active, .submit-btn:active, .nav-cta:active,
.qn-pill:active, .why-card:active, .val-card:active,
.stat-item:active, .info-card:active, .m-stat:active { transform: scale(.97); }
/* FIX: a reveal-stagger (common.js setupReveal) inline transition-delay-t rak a kártyákra
   (j*0.1s, sosem törli) → ez a hover/press transform-átmenetet IS késlelteti, így gyors
   kattintásnál a kártya "nem reagál". A stat-item nincs reveal-ben → mindig azonnali volt.
   Interakció alatt a delay 0 (inline-t csak !important veri). */
.why-card:hover, .val-card:hover, .info-card:hover, .stat-item:hover, .m-stat:hover,
.why-card:active, .val-card:active, .info-card:active, .stat-item:active, .m-stat:active {
  transition-delay: 0s !important;
}

/* F6 — boot-splash prémium belépés: a mark+wordmark+tagline "berúg és leül" */
@keyframes bi-stage-in { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }
/* #bi-stage animation összevonva az alap #bi-stage szabályba */
@keyframes bi-status-pop { 0% { text-shadow: 0 0 14px rgba(34,211,238,.95); } 100% { text-shadow: none; } }
.bi-line .s { flex-shrink: 0; font-weight: 600; color: var(--cyan); animation: bi-status-pop .5s ease; }

/* reduced-motion: az új mozgás kikapcsol (glow-box-shadow statikus, maradhat) */
@media (prefers-reduced-motion: reduce) {
  .btn-primary:active, .btn-ghost:active, .submit-btn:active, .nav-cta:active,
  .qn-pill:active, .why-card:active, .val-card:active,
  .stat-item:active, .info-card:active, .m-stat:active { transform: none; }
  #bi-stage { animation: none; }
  #boot-intro.booting #bi-svg, #boot-intro.booting #bi-arc, #boot-intro.booting .bi-shock, #boot-intro.booting .bi-bloom, #boot-intro.booting .bi-pulse, #boot-intro.out #bi-stage { animation: none; }
  .bi-line .s { animation: none; }
}

/* ============================================================
   PREMIUM — BATCH 2 (index zászlóshajó)
   scroll-progress · nav hide-on-scroll · hero text-reveal.
   Minden transform/opacity, reduce-gate-elve, mobil-biztos.
   ============================================================ */

/* scroll-progress sáv (JS injektálja; csak transform: scaleX) */
#scroll-prog {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, rgba(34,211,238,.35), var(--cyan));
  box-shadow: 0 0 8px rgba(34,211,238,.55);
  z-index: 400; pointer-events: none; will-change: transform;
}

/* nav hide-on-scroll (transition összevonva a base .nav-ba) */
.nav.nav-hidden { transform: translateY(-100%); }

/* hero text-reveal — h1 sor-maszk + sorrendi stagger */
.hero h1.hero-h1-ready .hl-line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.hero h1.hero-h1-ready .hl-in { display: block; transform: translateY(115%); opacity: 0; will-change: transform; }
.hero-inner.hero-in h1 .hl-in { transform: none; opacity: 1; transition: transform var(--dur-4) var(--ease-out-soft), opacity var(--dur-3) ease; }
.hero-inner.hero-in h1 .hl-line:nth-child(1) .hl-in { transition-delay: .06s; }
.hero-inner.hero-in h1 .hl-line:nth-child(2) .hl-in { transition-delay: .16s; }
.hero-inner.hero-in h1 .hl-line:nth-child(3) .hl-in { transition-delay: .26s; }

/* hero-inner többi gyerek fade-up (armed = pre-állapot, in = reveal) */
.hero-inner.hero-armed > .eyebrow,
.hero-inner.hero-armed > .hero-tagline,
.hero-inner.hero-armed > .hero-sub,
.hero-inner.hero-armed > .hero-btns,
.hero-inner.hero-armed > .hero-stats { opacity: 0; transform: translateY(16px); will-change: transform, opacity; }
.hero-inner.hero-in > .eyebrow,
.hero-inner.hero-in > .hero-tagline,
.hero-inner.hero-in > .hero-sub,
.hero-inner.hero-in > .hero-btns,
.hero-inner.hero-in > .hero-stats {
  opacity: 1; transform: none;
  transition: opacity var(--dur-3) ease, transform var(--dur-3) var(--ease-out-soft);
}
.hero-inner.hero-in > .eyebrow      { transition-delay: 0s; }
.hero-inner.hero-in > .hero-tagline { transition-delay: .34s; }
.hero-inner.hero-in > .hero-sub     { transition-delay: .42s; }
.hero-inner.hero-in > .hero-btns    { transition-delay: .50s; }
.hero-inner.hero-in > .hero-stats   { transition-delay: .58s; }

@media (prefers-reduced-motion: reduce) {
  #scroll-prog { display: none; }
  .nav.nav-hidden { transform: none; }
  .hero h1.hero-h1-ready .hl-in,
  .hero-inner.hero-armed > .eyebrow,
  .hero-inner.hero-armed > .hero-tagline,
  .hero-inner.hero-armed > .hero-sub,
  .hero-inner.hero-armed > .hero-btns,
  .hero-inner.hero-armed > .hero-stats { opacity: 1; transform: none; }
}

/* mobil: gyors tap a splashen/Skipen (nincs dupla-tap-zoom késleltetés) */
#boot-intro, .bi-skip { touch-action: manipulation; }

/* ============================================================
   MOBILE PERF (≤680px) — iOS Safari: kevesebb kompozit-réteg,
   kevesebb folyamatos GPU-munka, könnyebb shadow.
   (A reaktív hero-canvas-t a JS kapcsolja le érintőn.)
   ============================================================ */
@media (max-width: 680px) {
  /* depth-réteg nehéz shadow-i scrollon drágák → le (érintőn nincs hover-lift úgyse) */
  .visual-panel, .form-card, .success-card, .info-card, .code-panel,
  .stat-item, .why-card, .val-card, .m-stat { box-shadow: none; }
  /* will-change off → kevesebb permanens kompozit-réteg (iOS memória-nyomás) */
  .reveal, .hero h1.hero-h1-ready .hl-in, .hero-inner.hero-armed > *,
  .how-rail-fill, #scroll-prog { will-change: auto; }
  /* mozgó glow-vonal a tickeren → le */
  /* === SPLASH mobil: TELJES desktop-paritás — a mark ÚGY lélegzik, mint gépen:
     breathe scale + shape-hugging drop-shadow glow + táguló gyűrűk + CTA-chevron.
     A korábbi perf-nuke túl agresszív volt; minden transform/opacity, a will-change-hint
     a GPU-ra promotálja a skálázást. (Ha régi iPhone-on akadna → plan B: blur-duplikált glow.) */
  #bi-svg { will-change: transform; }
  #boot-intro.booting #bi-svg { filter: drop-shadow(0 0 22px rgba(34,211,238,.85)); }  /* boot közben 1-rétegű glow (a 3-rétegű helyett — olcsóbb, az érzés ugyanaz) */
}

/* ============================================================
   CIRCUIT BG — a brand áramkör-háttér mostantól a body STATIKUS CSS-háttere
   (bg-circuit.svg, fixed cover — a portál/NC közös, finom SVG-je). A hero teljesen
   átlátszó (a circuit erősen látszik = a fő hatás); a tartalmi szekciók enyhén
   áttetszők, hogy a fixed circuit finoman tovább-sejljen, a szöveg OPAK & olvasható.
   ============================================================ */
/* EGYENLETES circuit: a tartalmi szekciók ÁTLÁTSZÓK (nincs tint-sávozás, nincs gradiens-átmenet);
   a fixed circuit egyenletesen fut át az egész oldalon (portál-recept). A panelek/kártyák opakok. */
.why-wrap, .mission-wrap, .how-wrap, .values-wrap { background-color: transparent; }
.ticker-wrap, footer     { background-color: transparent; }
