/* ==========================================================================
   JARVIS marketing-site – design system
   Sötét alapú, réteges felületek, egy jellegzetes hideg gradiens.
   Nincs külső függőség: minden vizuális elem CSS-ből épül.
   ========================================================================== */

:root {
  /* felületek, a legsötétebbtől a legvilágosabbig */
  --bg: #06070b;
  --bg-soft: #090b11;
  --surface: #0e1118;
  --surface-2: #141822;

  /* vonalak: hajszálvékony, alacsony alfa – ettől lesz "drága" a felület */
  --line: rgba(255, 255, 255, 0.075);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text: #f3f5f9;
  --text-dim: #9aa3b2;
  --text-faint: #808a9b;

  /* aláírás-gradiens: ez a termék vizuális védjegye */
  --c1: #5ee7ff;
  --c2: #8b7cff;
  --grad: linear-gradient(115deg, var(--c1), var(--c2));
  --grad-soft: linear-gradient(115deg, rgba(94, 231, 255, 0.16), rgba(139, 124, 255, 0.16));

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.85);
  --shadow-lg: 0 50px 90px -40px rgba(0, 0, 0, 0.95);

  --maxw: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-pad: clamp(68px, 7.5vw, 108px);

  /* lassan kifutó görbe – ettől "puha" minden mozgás */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Finom szemcse az egész oldalon: megtöri a lapos, "digitálisan tiszta" felületet. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--c1);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
}
.skip-link:focus { left: 16px; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); }

/* ---------- tipográfia ---------- */

.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4.1vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c1);
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(94, 231, 255, 0.05);
  margin: 0;
}
.eyebrow-quiet {
  color: var(--text-faint);
  background: transparent;
  padding-inline: 0;
  border: 0;
  letter-spacing: 0.18em;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c1);
  box-shadow: 0 0 0 4px rgba(94, 231, 255, 0.12);
}

.section-head {
  max-width: 660px;
  margin: 0 auto clamp(40px, 5vw, 68px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.section-head-left {
  text-align: left;
  align-items: flex-start;
  margin-inline: 0;
}
.section-lede {
  color: var(--text-dim);
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  max-width: 56ch;
}

/* ---------- gombok ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease), background-color 0.35s var(--ease);
  will-change: transform;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary {
  background: var(--grad);
  color: #04121a;
  box-shadow: 0 10px 30px -12px rgba(94, 231, 255, 0.55);
}
/* Fénypászma, ami hoverre végigfut a gombon. */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease);
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover { box-shadow: 0 18px 44px -14px rgba(94, 231, 255, 0.7); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-row-center { justify-content: center; }

/* ---------- scroll-jelző + navigáció ---------- */

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 120;
  background: transparent;
}
.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
}
.nav[data-scrolled='true'] {
  background: rgba(6, 7, 11, 0.72);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.nav-links a {
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.wordmark-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--grad);
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 6px 16px -6px rgba(94, 231, 255, 0.8);
}
.wordmark-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 3px;
  background: var(--bg);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding-block: clamp(64px, 9vw, 104px) clamp(64px, 8vw, 96px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Halvány rácsháló: technikai textúra, ami nem viszi el a figyelmet. */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.orb-a {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(94, 231, 255, 0.28), transparent 68%);
  top: -280px; left: -180px;
}
.orb-b {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(139, 124, 255, 0.26), transparent 68%);
  top: -120px; right: -220px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.038em;
  margin: 0;
  text-wrap: balance;
}
.lede {
  color: var(--text-dim);
  font-size: clamp(16px, 1.5vw, 18.5px);
  max-width: 54ch;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 14px;
  color: var(--text-faint);
}
.hero-facts li { display: flex; align-items: center; gap: 9px; }
.hero-facts li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c1);
  opacity: 0.85;
}

/* ---------- termék-panel (a hero vizuálja) ---------- */

.hero-visual { perspective: 1400px; }

.panel {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0 0 6px;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease);
}
/* Felső fénytörés a panel peremén: ez adja az "üveg" hatást. */
.panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.panel-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.panel-chrome-label {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 16px;
}
.panel-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.panel-sub { color: var(--text-faint); font-size: 13px; }

.panel-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7a8;
  border: 1px solid rgba(110, 231, 168, 0.25);
  background: rgba(110, 231, 168, 0.07);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6ee7a8;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(110, 231, 168, 0.5); }
  50% { opacity: 0.55; box-shadow: 0 0 0 6px rgba(110, 231, 168, 0); }
}

.roster { padding: 0 12px; display: flex; flex-direction: column; }
.roster-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 10px;
  border-radius: var(--radius-sm);
  transition: background-color 0.35s var(--ease);
}
.roster-row + .roster-row { box-shadow: 0 -1px 0 var(--line); }
.roster-row:hover { background: rgba(255, 255, 255, 0.03); }

.avatar {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: #05121a;
}
.avatar-1 { background: linear-gradient(135deg, #5ee7ff, #4bb8ff); }
.avatar-2 { background: linear-gradient(135deg, #8b7cff, #b98cff); }
.avatar-3 { background: linear-gradient(135deg, #6ee7a8, #43c9a0); }
.avatar-4 { background: linear-gradient(135deg, #ffd166, #ffa15e); }

.roster-text { display: flex; flex-direction: column; min-width: 0; gap: 1px; }
.roster-name { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
.roster-role {
  font-size: 12.5px;
  color: var(--text-faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chip {
  min-width: 96px;
  text-align: center;
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.4s var(--ease), background-color 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.chip-working { color: #6ee7a8; background: rgba(110, 231, 168, 0.08); border-color: rgba(110, 231, 168, 0.22); }
.chip-waiting { color: #ffd166; background: rgba(255, 209, 102, 0.08); border-color: rgba(255, 209, 102, 0.22); }
.chip-idle { color: var(--text-faint); background: rgba(255, 255, 255, 0.04); border-color: var(--line); }

.panel-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 22px 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 12.5px;
}
.panel-foot-bar {
  width: 3px;
  height: 26px;
  border-radius: 3px;
  background: var(--grad);
  flex-shrink: 0;
}

/* ---------- problémaszekció ---------- */

.problem-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}
.problem-head {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.pain {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 26px 20px 26px 4px;
  border-top: 1px solid var(--line);
  transition: padding-left 0.45s var(--ease), background-color 0.45s var(--ease);
}
.pain:last-child { border-bottom: 1px solid var(--line); }
.pain::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  height: 1px;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.6s var(--ease);
}
.pain:hover::before { transform: scaleX(1); }
.pain:hover { padding-left: 16px; }
.pain-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  transition: color 0.45s var(--ease);
}
.pain:hover .pain-num { color: var(--c1); }
.pain p {
  font-size: clamp(16.5px, 1.6vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--text);
  text-wrap: pretty;
}

/* ---------- bento kártyák ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
/* Kurzort követő fénykör: a --mx/--my értéket a JS állítja. */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(94, 231, 255, 0.11), transparent 62%);
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.card:hover::before { opacity: 1; }

.card-feature {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px;
  background:
    radial-gradient(900px circle at 85% 50%, rgba(139, 124, 255, 0.12), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-soft));
}
.card-body { display: flex; flex-direction: column; gap: 10px; max-width: 46ch; }

.card-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 21px);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.card-feature .card-title { font-size: clamp(22px, 2.6vw, 30px); }
.card-text { color: var(--text-dim); font-size: 15.5px; }
.card-feature .card-text { font-size: 16px; }

/* Kis, CSS-ből rajzolt ikonok – nem generikus emoji/sablon-ikonok. */
.card-icon {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 34px;
  margin-bottom: 4px;
}
.card-icon-line {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad);
  opacity: 0.85;
}
.card-icon-line:nth-child(2) { width: 22px; opacity: 0.55; }
.card-icon-line:nth-child(3) { width: 14px; opacity: 0.3; }
.card-icon { flex-direction: column; align-items: flex-start; justify-content: flex-end; }

.card-icon-bars { flex-direction: row; align-items: flex-end; }
.card-bar {
  width: 9px;
  height: var(--h);
  border-radius: 3px;
  background: var(--grad);
  opacity: 0.75;
}
.card-bar:last-child { opacity: 1; }

.card-icon-check {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(94, 231, 255, 0.5);
  position: relative;
}
.card-icon-check::after {
  content: '';
  position: absolute;
  left: 8px; top: 6px;
  width: 8px; height: 13px;
  border-right: 2px solid var(--c1);
  border-bottom: 2px solid var(--c1);
  transform: rotate(42deg);
}

/* 24/7 óra-motívum a kiemelt kártyán */
.clock {
  position: relative;
  flex-shrink: 0;
  width: 132px; height: 132px;
  display: grid;
  place-items: center;
}
.clock-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--c1), var(--c2), var(--c1));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  opacity: 0.85;
  animation: spin 14s linear infinite;
}
.clock-hand {
  position: absolute;
  width: 2px;
  height: 44px;
  background: linear-gradient(180deg, var(--c1), transparent);
  top: 22px;
  border-radius: 2px;
  transform-origin: 50% 100%;
  animation: spin 6s linear infinite;
}
.clock-label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- lépések ---------- */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  padding-top: 42px;
}
.steps-rail {
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.steps-rail-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.step { position: relative; display: flex; flex-direction: column; gap: 10px; }
.step::before {
  content: '';
  position: absolute;
  top: -35px;
  left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--c1);
  box-shadow: 0 0 0 5px rgba(94, 231, 255, 0.1);
}
.step-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c1);
}
.step-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 21px);
  letter-spacing: -0.02em;
  margin: 0;
}
.step-text { color: var(--text-dim); font-size: 15.5px; max-width: 32ch; }

/* ---------- hitvallás-sor ---------- */

.creed-title { max-width: 18ch; margin-bottom: clamp(36px, 5vw, 60px); }
.creed-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.creed-list li {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.32;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.creed-list li::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 1px;
  background: var(--grad);
}

/* ---------- korai hozzáférés ---------- */

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.proof-card {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.badge {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c1);
  border: 1px solid rgba(94, 231, 255, 0.22);
  background: rgba(94, 231, 255, 0.06);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
/* Csontváz-sorok: a hiányzó tartalom így szándékosnak látszik, nem üresnek. */
.skeleton {
  height: 9px;
  width: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 37%, rgba(255, 255, 255, 0.05) 63%);
  background-size: 400% 100%;
  animation: shimmer 2.6s ease infinite;
}
.skeleton-lg { height: 11px; width: 88%; }
.skeleton-sm { width: 54%; }
@keyframes shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}
.proof-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- záró CTA ---------- */

.closing {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 150px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.closing-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-c {
  width: 900px; height: 520px;
  background: radial-gradient(ellipse, rgba(94, 231, 255, 0.16), rgba(139, 124, 255, 0.1) 45%, transparent 70%);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  filter: blur(80px);
  border-radius: 50%;
}
.closing-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.closing-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 20ch;
  text-wrap: balance;
}
.closing-text { color: var(--text-dim); font-size: clamp(15.5px, 1.5vw, 18px); }

/* ---------- lábléc ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding-block: 40px;
  background: var(--bg-soft);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-tag { color: var(--text-faint); font-size: 14px; }
.footer-beta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c1);
}

/* ---------- megjelenés görgetésre ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .card[data-reveal] { transform: translateY(26px) scale(0.985); }
.js .pain[data-reveal] { transform: translateX(-18px); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Szavankénti maszkolt cím-megjelenés (a JS tördeli szavakra). */
.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-word-inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.95s var(--ease);
  transition-delay: var(--word-delay, 0ms);
}
.is-split-visible .split-word-inner { transform: none; }

/* ---------- reszponzív ---------- */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: 2; width: 100%; max-width: 520px; }
  .problem-inner { grid-template-columns: 1fr; }
  .problem-head { position: static; }
  .nav-links { display: none; }
  .card-feature { grid-column: span 3; flex-direction: column; align-items: flex-start; }
  .clock { align-self: center; }
}

@media (max-width: 760px) {
  .btn-sm { padding: 12px 20px; }
  .bento { grid-template-columns: 1fr; }
  .card-feature { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; gap: 34px; padding-top: 8px; }
  .steps-rail { display: none; }
  .step { padding-left: 26px; }
  .step::before { top: 6px; left: 0; }
  .step::after {
    content: '';
    position: absolute;
    left: 5px; top: 22px; bottom: -22px;
    width: 1px;
    background: var(--line);
  }
  .step:last-child::after { display: none; }
  .creed-list, .proof-row { grid-template-columns: 1fr; }
  .cta-row .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .panel-head { flex-direction: column; }
  .roster-role { white-space: normal; }
  .hero-facts { gap: 8px 18px; font-size: 13px; }
}

/* ---------- csökkentett mozgás ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .split-word-inner { transform: none; }
  .clock-ring, .clock-hand, .live-dot, .skeleton { animation: none; }
}
