/* ============================================================
   DATAVIRAL V3 — PAPER
   A brand-kit "papír" look: antracit tinta világosszürke kereten,
   neon lime kitöltés. Archivo display · Inter body · Geist Mono.
   Akcent-doktrína: a lime egy BLOKK, amire grafitot teszel —
   sosem egy szó, amit lime-mal írsz. Szövegként az olív (--accent-ink).
   ============================================================ */

@property --p {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

:root {
  /* felületek: világosszürke keret, fehér kártyák */
  --bg: #eeeeef;
  --bg-soft: #e7e7e9;
  --bg-2: #f1f1f2;
  --bg-deep: #dededf;
  --surface: #ffffff;
  --line: #e2e2e4;
  --line-strong: #d2d2d5;
  /* tinta */
  --ink: #282828;
  --ink-rgb: 40, 40, 40;
  --text: #282828;
  --text-soft: #4a4a4c;
  --muted: #5f5f63;
  --faint: #6c6c71;
  /* akcent: fill (lime blokk) és ink (olív szöveg) szétválasztva */
  --accent: #e7ff63;
  --accent-rgb: 231, 255, 99;
  --accent-ink: #5f6d14;
  --good: #366d0e;
  --bad: #b3251d;
  --violet: #685ad4;
  --violet-ink: #5b4bc4;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-card: 0 1px 2px rgba(var(--ink-rgb), 0.04), 0 10px 28px rgba(var(--ink-rgb), 0.05);
  --max: 1320px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Archivo", var(--font-body);
  --font-mono: "Geist Mono", ui-monospace, monospace;
}

/* széles képernyőkön kihasználjuk a helyet */
@media (min-width: 1440px) {
  :root { --max: 1400px; }
}

@media (min-width: 1680px) {
  :root { --max: 1560px; }
}

@media (min-width: 1920px) {
  :root { --max: min(1800px, 92vw); }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* A háttér-effektek túllógnak a tartalomoszlopon (100vw), ezért itt levágjuk.
     Szándékosan "clip" és nem "hidden": a hidden görgető konténerré tenné a
     body-t, és attól elromlana a sticky fejléc. */
  overflow-x: clip;
}

/* papír-szemcse a teljes oldalon */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; }

a { color: var(--text); }

::selection { background: var(--accent); color: var(--ink); }

/* ---------- scroll progress ---------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 90;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
}

h1 { font-size: clamp(2.15rem, 6.2vw, 4.7rem); }

/* a kiemelt szó: neon kiemelő-sáv a grafit szöveg MÖGÖTT (fill, nem ink) */
h1 em {
  font-style: normal;
  position: relative;
  z-index: 0;
}

h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.06em;
  right: -0.06em;
  bottom: 0;
  height: 0.52em;
  background: var(--accent);
}

h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.18rem; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 1.1rem;
}

/* fejezet-szám: lime jelvény grafit számmal (blokk, nem szöveg) */
.eyebrow-num {
  display: inline-grid;
  place-items: center;
  min-width: 1.55rem;
  height: 1.55rem;
  padding: 0 0.35rem;
  margin-right: 0.75rem;
  background: var(--accent);
  color: var(--ink);
  border-radius: 7px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  vertical-align: middle;
  transform: translateY(-1px);
}

.cta-box .eyebrow-num {
  background: var(--ink);
  color: var(--accent);
}

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  color: var(--muted);
  max-width: 56ch;
  margin: 1.6rem 0 0;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  font-family: var(--font-body);
  will-change: transform;
}

/* CTA: grafit pirula, neon címke rá */
.btn-accent {
  background: var(--ink);
  color: var(--accent);
}

.btn-accent:hover {
  box-shadow: 0 10px 30px rgba(var(--ink-rgb), 0.22);
}

.btn-ghost {
  border-color: rgba(var(--ink-rgb), 0.35);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.actions-center { justify-content: center; margin-top: 2.8rem; }

/* ---------- header: tömör neon masthead sáv ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem clamp(1.1rem, 4vw, 2.4rem);
  background: var(--accent);
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.16);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  border-bottom-color: rgba(var(--ink-rgb), 0.3);
  box-shadow: 0 10px 30px rgba(var(--ink-rgb), 0.08);
}

.brand img { height: 30px; display: block; }

.nav {
  display: flex;
  gap: 1.7rem;
  margin-left: auto;
}

.nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(var(--ink-rgb), 0.72);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav a:hover { color: var(--ink); }

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

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

.hero {
  position: relative;
  min-height: min(92vh, 960px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* nincs záróvonal: a hero alul gradienssel olvad a következő szekcióba */
}

.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* a shader sötét háttérre rajzol fényes vonalakat → invertálva + multiply
   blenddel tinta-vonalak lesznek a papíron */
.hero-fx .floating-lines-canvas {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(1);
  mix-blend-mode: multiply;
  opacity: 0.5;
}

/* kurzort követő neon "kiemelő" folt */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    560px circle at var(--mx, 68%) var(--my, 42%),
    rgba(var(--accent-rgb), 0.3),
    rgba(var(--accent-rgb), 0.12) 40%,
    transparent 65%
  );
}

/* olvashatósági "papír-köd" a szöveg mögé */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(238, 238, 239, 0.82) 0%, rgba(238, 238, 239, 0.35) 46%, transparent 72%),
    linear-gradient(180deg, transparent 62%, rgba(238, 238, 239, 0.95) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 6.5rem clamp(1.1rem, 4vw, 2.4rem) 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes maskUp {
  from { transform: translateY(112%); }
  to { transform: none; }
}

.hero .eyebrow { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }

/* maszkos sor-reveal a headline-on */
.hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.hero h1 .line > span {
  display: inline-block;
  transform: translateY(112%);
  animation: maskUp 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero h1 .line:nth-child(1) > span { animation-delay: 0.1s; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.22s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.34s; }

.hero .lead { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s both; }
.hero .actions { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.62s both; }

/* ---------- szekciók ---------- */

.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.1rem, 4vw, 2.4rem);
}

/* Nincsenek elválasztó vonalak a szekciók között: a bőséges térköz és a
   tartalom ritmusa választ el, így az oldal egyetlen folyamatos felület. */

.section-head { max-width: 720px; margin-bottom: 3rem; }

.section-sub { color: var(--muted); margin: 1rem 0 0; }

/* Rövid, tényszerű válasz közvetlenül a kérdés-formájú H2 alatt. Ezt olvassa
   ki a Google és az AI-válaszmotor, ezért a kifejtés ELÉ kerül, nem utána. */
.section-answer {
  margin: 1.1rem 0 0;
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  line-height: 1.6;
  color: var(--text);
  max-width: 60ch;
}

.section-answer + .section-sub { margin-top: 0.9rem; }

/* Szekció végi továbbvezető link az aloldalakra. */
.section-more { margin: 1.6rem 0 0; }

.section-more a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-underline-offset: 4px;
}

.section-more a:hover { color: var(--accent-ink); }

/* ---------- milliméterpapír-sávok ----------
   A sötét-témás shader-atmoszférák helyett papírhoz illő ritmus: a kiemelt
   szekciók teljes képernyő-szélességű, pontrácsos "milliméterpapír" sávot
   kapnak, hajszálvonallal lezárva. */

.section-band { position: relative; }

.section-band > * { position: relative; z-index: 1; }

.section-band::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg-2);
  background-image: radial-gradient(rgba(var(--ink-rgb), 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}


/* ---------- ügyfélút: részletes folyamat, függőleges sínen ---------- */

.journey {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* halvány sín + a görgetéssel növő olív előrehaladás-vonal */
.journey::before,
.journey::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;
  width: 2px;
}

.journey::before { background: rgba(var(--ink-rgb), 0.12); }

.journey::after {
  background: var(--accent-ink);
  transform-origin: top center;
  transform: scaleY(var(--progress, 0));
  transition: transform 0.18s linear;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1.05fr) minmax(0, 0.78fr);
  align-items: start;
  gap: clamp(1.1rem, 2.4vw, 2.6rem);
  padding-bottom: clamp(2.1rem, 3.4vw, 3.1rem);
}

.journey-step:last-child { padding-bottom: 0; }

.journey-mark { position: relative; z-index: 1; }

.journey-mark span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease;
}

/* elért lépés: lime korong grafit számmal (blokk + tinta) */
.journey-step.is-reached .journey-mark span {
  border-color: var(--ink);
  background: var(--accent);
  color: var(--ink);
}

.journey-body { padding-top: 0.25rem; }

.journey-body h3 {
  font-size: clamp(1.12rem, 1.9vw, 1.4rem);
  margin-bottom: 0.6rem;
}

.journey-body > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.68;
  color: var(--muted);
}

/* a lépés konkrét kimenete: külön fehér lap a jobb oszlopban */
.journey-out {
  margin: 0;
  padding: 1.05rem 1.2rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
}

/* lime címke-blokk grafit szöveggel */
.journey-out > span {
  display: block;
  width: fit-content;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  margin-bottom: 0.65rem;
}

/* ---------- riport tartalomjegyzék ---------- */

.report-contents {
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0;
}

.report-contents li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.report-contents li:last-child { border-bottom: 1px solid var(--line); }

/* lime jelölő-négyzet, nem pötty — a blokk-doktrína szerint */
.report-contents li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.02em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  outline: 1px solid rgba(var(--ink-rgb), 0.35);
}

/* ---------- nagy görgő ciklus-sáv ---------- */

.ticker-band {
  overflow: hidden;
  border-top: 1px solid rgba(var(--ink-rgb), 0.14);
  padding: 1.7rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 34s linear infinite;
}

.ticker-band:hover .ticker-track { animation-play-state: paused; }

.ticker-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--ink-rgb), 0.3);
  padding-right: 2.5rem;
}

.ticker-track span b {
  font-weight: 700;
  color: var(--accent-ink);
  -webkit-text-stroke: 0;
}

@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

/* ---------- összefoglaló blokk ----------
   Egyetlen, önmagában is értelmes bekezdés: ki, mióta, mit, kinek, hol.
   Ez az a szövegrész, amit egy AI-válasz idézni tud a márkáról. */

.summary-block {
  max-width: 78ch;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
  padding-left: clamp(1rem, 2vw, 1.6rem);
  border-left: 3px solid var(--accent);
}

.summary-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.7rem;
}

.summary-text {
  margin: 0;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.65;
  color: var(--text-soft);
}

/* ---------- kik vagyunk + három szabály ---------- */

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.about-copy h2 { max-width: 18ch; }

.about-copy .section-sub { max-width: 58ch; }

.about-copy .section-sub + .section-sub { margin-top: 0.9rem; }

.rules {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-card);
  margin-top: 3.1rem;
}

.rules-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 1.3rem;
}

.rules ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  counter-reset: rule;
}

.rules li {
  position: relative;
  padding-left: 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  counter-increment: rule;
}

/* lime korong grafit számmal — jelvény, nem szöveg */
.rules li::before {
  content: counter(rule);
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.rules li strong { color: var(--text); }

/* ---------- szolgáltatás-pillérek ---------- */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.offer-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  flex: 1;
}

.offer-card li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.offer-card li:first-child { border-top: 0; padding-top: 0.2rem; }

.offer-card li:last-child { padding-bottom: 0; }

.offer-card li strong { color: var(--text); }

.offer-card h3 { font-size: 1.15rem; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, transform 0.16s ease-out;
  will-change: transform;
}

.card:hover { border-color: #c8c8cc; }

/* kurzort követő neon wash */
.card::after,
.product-card::after,
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 50%),
    rgba(var(--accent-rgb), 0.3),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::after,
.product-card:hover::after,
.story-card:hover::after { opacity: 1; }

.card p { color: var(--muted); font-size: 0.92rem; margin: 0; flex: 1; }

.card h3 { font-size: 1.08rem; }

.card-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-featured {
  border-color: rgba(95, 109, 20, 0.35);
  background:
    radial-gradient(circle at 82% 8%, rgba(var(--accent-rgb), 0.45), transparent 46%),
    var(--surface);
}

.card-featured:hover { border-color: rgba(95, 109, 20, 0.6); }

.card-featured .card-tag { color: var(--accent-ink); }

/* ---------- élő dashboard szekció ---------- */

.dash-layout {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.dash-preview {
  display: block;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dash-preview:hover { transform: translateY(-4px); }

.dash-preview-hint {
  display: block;
  margin-top: 0.9rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  transition: color 0.2s ease;
}

.dash-preview:hover .dash-preview-hint { color: var(--accent-ink); }

.dash-preview:hover .dash { border-color: rgba(var(--ink-rgb), 0.4); }

/* tömör lime lap a kártya mögött (hard-edge eltolt árnyék) — matrica-hatás, glow helyett */
.dash {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.9rem 1.7rem;
  box-shadow: 14px 14px 0 0 var(--accent), 0 30px 80px rgba(var(--ink-rgb), 0.14);
  transition: border-color 0.25s ease, box-shadow 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dash-preview:hover .dash {
  box-shadow: 18px 20px 0 0 var(--accent), 0 34px 90px rgba(var(--ink-rgb), 0.16);
}

.dash-copy .section-sub + .section-sub { margin-top: 0.9rem; }

.dash-demo-label {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(95, 109, 20, 0.4); }
  50% { opacity: 0.55; box-shadow: 0 0 0 5px rgba(95, 109, 20, 0); }
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-ink);
  margin-right: 0.5rem;
  animation: livePulse 2s ease-in-out infinite;
}

.dash-top {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  margin-top: 0.6rem;
}

.dash-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.dash-ring {
  --p: 0;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--p) * 1%), #ececee 0);
  display: grid;
  place-items: center;
  position: relative;
  transition: --p 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s;
}

.dash-preview.is-visible .dash .dash-ring { --p: 78; }

.dash-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--surface);
}

.dash-score-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 1.95rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.dash-score-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.dash-pillars {
  flex: 1;
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.dash-pillar { display: grid; gap: 0.35rem; }

.dash-pillar span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.dash-pillar i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #ececee;
  overflow: hidden;
}

/* adat-sáv kitöltés: tömör lime */
.dash-pillar b {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--accent);
  transition: width 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dash-preview.is-visible .dash .dash-pillar b { width: var(--w); }

.dash-preview.is-visible .dash .dash-pillar:nth-child(1) b { transition-delay: 0.25s; }
.dash-preview.is-visible .dash .dash-pillar:nth-child(2) b { transition-delay: 0.37s; }
.dash-preview.is-visible .dash .dash-pillar:nth-child(3) b { transition-delay: 0.49s; }
.dash-preview.is-visible .dash .dash-pillar:nth-child(4) b { transition-delay: 0.61s; }
.dash-preview.is-visible .dash .dash-pillar:nth-child(5) b { transition-delay: 0.73s; }

/* FIGYELEM a .dash-preview.is-visible szelektorokra:
   a data-reveal a SZÜLŐN (.dash-preview) van, nem a .dash-en, tehát az
   is-visible osztály is oda kerül. Amíg a szabályok .dash.is-visible-re
   voltak írva, egyik sem lépett életbe: a gyűrű íve, a sparkline és a
   havi összefoglaló láthatatlan maradt. A pillérek csak azért látszottak,
   mert a v3.js jitter-függvénye inline szélességet ír rájuk.

   Ha a data-reveal átkerül a .dash-re, ezeket vissza kell írni. */

/* sparkline: trendvonal grafitban, lime területtel */
.dash-spark {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.dash-spark-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.6rem;
}

.dash-spark svg {
  display: block;
  width: 100%;
  height: 54px;
}

.dash-spark-line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.9s;
}

.dash-preview.is-visible .dash .dash-spark-line { stroke-dashoffset: 0; }

.dash-spark-fill {
  fill: rgba(var(--accent-rgb), 0.45);
  opacity: 0;
  transition: opacity 0.8s ease 1.8s;
}

.dash-preview.is-visible .dash .dash-spark-fill { opacity: 1; }

.dash-verdict {
  margin: 1.6rem 0 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 2s, transform 0.6s ease 2s;
}

.dash-preview.is-visible .dash .dash-verdict { opacity: 1; transform: none; }

/* jelvény: lime blokk grafit szöveggel */
.dash-verdict-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  margin-right: 0.6rem;
  white-space: nowrap;
}

/* ---------- munkák / showreel ---------- */

/* tömör lime lap a showreel mögött (hard-edge eltolt árnyék) */
.showreel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow: -16px 16px 0 0 var(--accent), 0 24px 70px rgba(var(--ink-rgb), 0.16);
}

.showreel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.showreel-teaser { pointer-events: none; }

/* a play-overlay sötét videóra kerül, ott a lime közvetlenül működik */
.showreel-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.08), rgba(8, 8, 10, 0.45) 88%);
  transition: background 0.25s ease;
}

.showreel-play:hover { background: linear-gradient(180deg, rgba(8, 8, 10, 0.02), rgba(8, 8, 10, 0.35) 88%); }

.showreel-play-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.75);
  background: rgba(8, 8, 10, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.showreel-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent var(--accent);
  margin-left: 4px;
}

.showreel-play:hover .showreel-play-icon {
  transform: scale(1.08);
  background: rgba(var(--accent-rgb), 0.16);
}

.showreel-play-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

/* social videó rács */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.social-card {
  margin: 0;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.social-card:hover { transform: translateY(-5px); }

.social-video {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-card:hover .social-video {
  border-color: rgba(var(--ink-rgb), 0.35);
  box-shadow: 0 22px 60px rgba(var(--ink-rgb), 0.18);
}

.social-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-card figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0.3rem 0;
}

.social-card figcaption strong { font-size: 0.95rem; }

.social-card figcaption span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* stúdió proof + márka-marquee */
.studio-proof {
  margin-top: 2.6rem;
  display: grid;
  gap: 1.3rem;
}

.studio-proof-stat {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.studio-proof-stat strong {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--accent-ink);
  margin-right: 0.55rem;
  letter-spacing: -0.02em;
}

.studio-proof-stat a { color: var(--text); text-underline-offset: 3px; }

.chip-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.chip-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 26s linear infinite;
}

.chip-marquee:hover .chip-track { animation-play-state: paused; }

.chip-track span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
  margin-right: 0.55rem;
  background: var(--surface);
}

/* ---------- műhely / várólista ---------- */

.section-workshop { padding-top: 0; }

.workshop-box {
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--accent-rgb), 0.35), transparent 42%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-card);
}

.workshop-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr);
  gap: clamp(1.2rem, 3vw, 3rem);
}

.workshop-head > .eyebrow { grid-column: 1; grid-row: 1; }
.workshop-head > h2 { grid-column: 1; grid-row: 2; margin: 0; }
.workshop-head > .section-sub { grid-column: 2; grid-row: 2; align-self: end; }

.workshop-head .section-sub { margin-top: 1rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.product-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.3rem 1.2rem;
  transition: border-color 0.25s ease, transform 0.16s ease-out;
  will-change: transform;
}

.product-card:hover { border-color: rgba(95, 109, 20, 0.4); }

.product-card h3 { font-size: 1rem; }

.product-card h3::before {
  content: "●";
  color: var(--accent-ink);
  font-size: 0.5em;
  vertical-align: 0.3em;
  margin-right: 0.65em;
}

.product-card p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
  margin: 0.5rem 0 0;
}

.waitlist { margin-top: 2.6rem; max-width: 620px; }

.waitlist-question {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.7rem;
}

.waitlist-question span { color: var(--faint); text-transform: none; letter-spacing: 0; }

.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.interest-chips label { cursor: pointer; }

.interest-chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-chips span {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.interest-chips label:hover span { border-color: rgba(var(--ink-rgb), 0.4); }

/* kiválasztva: lime blokk grafit szöveggel */
.interest-chips input:checked + span {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--accent);
}

.interest-chips input:focus-visible + span {
  outline: 2px solid rgba(var(--ink-rgb), 0.6);
  outline-offset: 2px;
}

.waitlist-row {
  display: flex;
  gap: 0.6rem;
}

.waitlist input[type="email"] {
  flex: 1;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  padding: 0.78rem 1.2rem;
  outline: none;
  transition: border-color 0.15s ease;
}

.waitlist input[type="email"]:focus { border-color: var(--ink); }

.waitlist input[type="email"]::placeholder { color: var(--faint); }

/* adatkezelési hozzájárulás — kötelező a beküldéshez */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.1rem 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}

.consent input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--accent-ink);
  cursor: pointer;
}

.consent a { color: var(--text); text-underline-offset: 3px; }

.consent a:hover { color: var(--accent-ink); }

.consent.is-missing { color: var(--bad); }

.consent.is-missing input { outline: 2px solid var(--bad); outline-offset: 2px; }

.waitlist-note {
  font-size: 0.78rem;
  color: var(--faint);
  margin: 0.75rem 0 0 1.2rem;
}

.waitlist-note.is-success { color: var(--accent-ink); }
.waitlist-note.is-error { color: var(--bad); }

/* ---------- storylines ---------- */

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, transform 0.16s ease-out;
  will-change: transform;
}

.story-card:hover { border-color: rgba(var(--ink-rgb), 0.35); }

.story-card h3 { flex: 1; font-size: 1.05rem; }

.story-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-ink);
}

.story-card small { color: var(--faint); font-size: 0.76rem; }

/* ---------- GYIK ----------
   A válaszok mindig láthatók (nincs lenyíló): a FAQPage schema szövegének az
   oldalon is olvashatónak kell lennie, és így egy AI-crawler is megtalálja. */

.faq-list {
  display: grid;
  gap: 0;
  max-width: 860px;
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  padding: clamp(1.5rem, 3vw, 2.1rem) 0;
  border-bottom: 1px solid var(--line-strong);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 72ch;
}

/* ---------- záró CTA: tömör neon sáv ---------- */

.section-cta { padding-bottom: clamp(5rem, 10vw, 8rem); }

.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: var(--accent);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2.4rem, 5vw, 3.8rem) clamp(1.4rem, 4vw, 3rem);
}

.cta-box .eyebrow { text-align: center; color: rgba(var(--ink-rgb), 0.62); }

.cta-box .eyebrow::before { color: var(--ink); }

.cta-box p:not(.eyebrow) { color: rgba(var(--ink-rgb), 0.78); margin: 1.1rem 0 0; }

.cta-box .btn-ghost { border-color: rgba(var(--ink-rgb), 0.4); }

.cta-box .btn-ghost:hover { border-color: var(--ink); }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid rgba(var(--ink-rgb), 0.12);
  padding: 3.4rem clamp(1.1rem, 4vw, 2.4rem) 2.2rem;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo { height: 26px; }

.footer-tag {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 1rem 0 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: right;
}

.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-contact a:hover { color: var(--accent-ink); }

.footer-contact p { color: var(--faint); font-size: 0.82rem; margin: 0.2rem 0 0; }

/* oldaltérkép a láblécben: a horgonyos főmenü mellett innen érhető el minden aloldal */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  gap: 0.4rem 2rem;
  align-content: start;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
}

.footer-nav a:hover { color: var(--accent-ink); }

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--faint);
}

.footer-links { display: inline-flex; gap: 1.1rem; }

.footer-links a { color: var(--faint); text-decoration: none; }

.footer-links a:hover { color: var(--text); }

/* ---------- reveal animációk ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* a szekciócímek élesedve úsznak be */
.section-head[data-reveal] { filter: blur(7px); }
.section-head[data-reveal].is-visible { filter: blur(0); }

/* csoportos reveal: animation backwards → utána szabad a transform (tilt) */
[data-reveal-group]:not(.is-visible) > * { opacity: 0; }

[data-reveal-group].is-visible > * {
  animation: rise 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}

[data-reveal-group].is-visible > *:nth-child(2) { animation-delay: 0.07s; }
[data-reveal-group].is-visible > *:nth-child(3) { animation-delay: 0.14s; }
[data-reveal-group].is-visible > *:nth-child(4) { animation-delay: 0.21s; }
[data-reveal-group].is-visible > *:nth-child(5) { animation-delay: 0.28s; }
[data-reveal-group].is-visible > *:nth-child(6) { animation-delay: 0.35s; }
[data-reveal-group].is-visible > *:nth-child(7) { animation-delay: 0.42s; }
[data-reveal-group].is-visible > *:nth-child(8) { animation-delay: 0.49s; }
[data-reveal-group].is-visible > *:nth-child(9) { animation-delay: 0.56s; }
[data-reveal-group].is-visible > *:nth-child(10) { animation-delay: 0.63s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after { display: none; }
  .scroll-progress { display: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .section-head[data-reveal] { filter: none; }
  [data-reveal-group]:not(.is-visible) > * { opacity: 1; }
  [data-reveal-group].is-visible > * { animation: none; }
  .hero .eyebrow, .hero .lead, .hero .actions { animation: none; }
  .hero h1 .line > span { transform: none; animation: none; }
  .hero-glow { display: none; }
  .btn, .card, .story-card, .product-card, .journey-mark span, .social-card { transition: none; }
  .journey::after { transform: scaleY(1); transition: none; }
  .ticker-track, .chip-track { animation: none; }
  .live-dot { animation: none; }
  .dash-ring { --p: 78; transition: none; }
  .dash .dash-pillar b { width: var(--w); transition: none; }
  .dash-spark-line { stroke-dashoffset: 0; transition: none; }
  .dash-spark-fill { opacity: 1; transition: none; }
  .dash-verdict { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
  .journey-step { grid-template-columns: 34px minmax(0, 1fr); row-gap: 1.1rem; }
  .journey-out { grid-column: 2 / -1; }
  .dash-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .rules { margin-top: 0.5rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  /* a fix sortörések helyett szabad tördelés — a maszk-animáció helyett fade */
  .hero h1 .line { display: inline; overflow: visible; padding: 0; margin: 0; }
  .hero h1 .line > span { display: inline; transform: none; animation: none; }
  .hero h1 { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.28s both; }
  /* a kiemelő-sáv soronként fesse magát, ha a szókapcsolat tördelődik */
  .hero h1 em::after { display: none; }
  .hero h1 em {
    background: linear-gradient(var(--accent), var(--accent)) 0 0.78em / 100% 0.5em no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 0.06em;
  }

  /* tapintható méretek */
  .footer-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .consent input { width: 22px; height: 22px; }
  .footer-links a, .footer-contact a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .footer-links { gap: 1.4rem; }
  .interest-chips span { min-height: 44px; display: inline-flex; align-items: center; }
  .brand { display: inline-flex; align-items: center; min-height: 44px; }
  .btn { min-height: 44px; }
  .studio-proof-stat a { display: inline-flex; align-items: center; min-height: 44px; }

  /* mono címkék 11px fölé */
  .dash-score-label { font-size: 0.7rem; }
  .story-tag { font-size: 0.7rem; }
  .dash-pillar span { font-size: 0.7rem; }

  /* 11px alá ne menjen a mono címke */
  .dash-demo-label { font-size: 0.7rem; }
  .dash-spark-label { font-size: 0.7rem; }
  .dash-verdict-tag { font-size: 0.7rem; }
  .card-tag { font-size: 0.72rem; }

  .workshop-head { grid-template-columns: 1fr; }
  .workshop-head > h2, .workshop-head > .section-sub { grid-column: 1; }
  .workshop-head > .section-sub { grid-row: 3; }
  .journey-step { gap: 0.95rem; padding-bottom: 2rem; }
  .journey-body { padding-top: 0.15rem; }
  .hero { min-height: 82vh; }
  .hero-inner { padding-top: 4.5rem; padding-bottom: 3rem; }
  .story-grid, .product-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .dash-top { flex-direction: column; align-items: stretch; gap: 1.6rem; }
  .dash-score { align-self: center; }
  .showreel-play-icon { width: 58px; height: 58px; }
  .footer-contact { text-align: left; }
  .waitlist-row { flex-direction: column; }
  .waitlist .btn { justify-content: center; }
  .waitlist-note { margin-left: 0.2rem; }
}

/* ============================================================
   ALOLDAL: SZOLGÁLTATÁSOK (/services)
   Pillér-oldal: hat szolgáltatásblokk, mindegyik önmagában is
   értelmes és később önálló aloldalba emelhető. Ugyanaz a
   papír-nyelv, mint a főoldalon — új színek és formák nélkül.
   ============================================================ */

:root {
  /* A sticky fejléc mért magassága (0.9rem padding + a CTA gomb magassága +
     1px vonal). Ehhez igazodik a szolgáltatás-választó sáv ragadó pozíciója
     és a horgony-görgetés eltolása. Mobilon a gomb 44px-es tapintható
     méretre nő, ezért ott 74px — lásd a 720px-es blokkot lent. */
  --header-h: 72px;
  /* fejléc + szolgáltatás-választó sáv: ennyit kell a horgony-görgetésnek
     eltolnia, hogy a cím ne kerüljön a ragadó sávok alá */
  --sticky-h: calc(var(--header-h) + 54px);
}

/* aktív menüpont a fejlécben */
.nav a[aria-current="page"] { color: var(--ink); }

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- aloldal-hero: alacsonyabb, shader nélkül ---------- */

.subhero {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.4rem) clamp(1.1rem, 4vw, 2.4rem) clamp(2.2rem, 5vw, 3.2rem);
}

.subhero h1 {
  font-size: clamp(1.95rem, 4.6vw, 3.45rem);
  max-width: 26ch;
}

.subhero .lead { max-width: 64ch; }

/* ---------- morzsa ---------- */

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin: 0 0 1.3rem;
}

.crumbs a { color: var(--muted); text-decoration: none; }

.crumbs a:hover { color: var(--accent-ink); }

.crumbs [aria-current] { color: var(--text); }

/* ---------- szolgáltatás-választó: ragadó sáv a fejléc alatt ---------- */

.svc-nav {
  position: sticky;
  top: calc(var(--header-h) - 1px);
  z-index: 30;
  background: rgba(238, 238, 239, 0.94);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}

.svc-nav-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  gap: 0.3rem;
  padding: 0.5rem clamp(1.1rem, 4vw, 2.4rem);
  overflow-x: auto;
  scrollbar-width: none;
}

.svc-nav-inner::-webkit-scrollbar { display: none; }

.svc-nav a {
  flex: 0 0 auto;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.svc-nav a:hover { background: var(--accent); color: var(--ink); }

/* ---------- a hat terület tényszerű felsorolása ---------- */

.svc-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 4vw, 3.2rem);
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.svc-ledger > div {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

/* A sorszám a <dt>-n BELÜL van: a <dl><div> gyereke csak dt/dd lehet, egy
   önálló <span> ott érvénytelen markup. */
.svc-ledger dt {
  display: flex;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.svc-ledger-num {
  flex: 0 0 1.9rem;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--accent-ink);
  padding-top: 0.2rem;
}

.svc-ledger dt a { text-decoration: none; }

.svc-ledger dt a:hover { color: var(--accent-ink); }

.svc-ledger dd {
  margin: 0.3rem 0 0 2.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---------- egy szolgáltatásblokk ----------
   Minden blokk zárt egység: saját id, saját H2 és alcím-hierarchia.
   Ha később önálló oldalra kerül, a markup változtatás nélkül átvihető. */

.svc {
  padding-top: clamp(3.2rem, 6vw, 5rem);
  padding-bottom: clamp(3.2rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.svc-head { max-width: 780px; margin-bottom: clamp(1.9rem, 4vw, 2.7rem); }

.svc-head h2 { max-width: 28ch; }

.svc-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: start;
}

/* a blokkon belüli alcímek mono-címkék: a H2 marad az egyetlen display-cím */
.svc-main h3,
.svc-panel h3 {
  font-family: var(--font-mono);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 2.3rem 0 0.85rem;
}

.svc-main > h3:first-child { margin-top: 0; }

.svc-main p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 66ch;
}

.svc-main p:last-child { margin-bottom: 0; }

.svc-main p strong { color: var(--text); }

.svc-main p a { color: var(--text); text-underline-offset: 3px; }

.svc-main p a:hover { color: var(--accent-ink); }

/* kinek való / kinek nem */
.svc-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.svc-fit > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.2rem;
}

.svc-fit-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.fit-yes .svc-fit-label { color: var(--accent-ink); }

.fit-no .svc-fit-label { color: var(--faint); }

.svc-fit ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.svc-fit li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.svc-fit li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
}

.fit-yes li::before { content: "+"; color: var(--accent-ink); }

.fit-no li::before { content: "–"; color: var(--faint); }

/* a főoldali hét lépésből melyek érintik ezt a szolgáltatást */
.svc-flow {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.svc-flow li {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.svc-flow li b {
  margin-right: 0.35rem;
  font-weight: 500;
  color: var(--accent-ink);
}

/* jobb oldali panel: deliverable-lista, árazás, kapcsolódó olvasmányok */
.svc-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.5rem 1.4rem;
}

.svc-panel h3 { margin-top: 0; }

.svc-panel-block + .svc-panel-block {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.svc-deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.svc-deliverables li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* lime jelölő-kocka: blokk, nem szöveg */
.svc-deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--accent);
}

.svc-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.svc-note + .svc-note { margin-top: 0.7rem; }

.svc-note strong { color: var(--text); }

.svc-reads {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.svc-reads a {
  display: inline-flex;
  gap: 0.4rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
  text-decoration: none;
}

.svc-reads a::before {
  content: "→";
  flex: 0 0 auto;
  font-family: var(--font-mono);
  color: var(--accent-ink);
}

.svc-reads a:hover { color: var(--accent-ink); }

/* ---------- kombinálás / záró blokkok ---------- */

.svc-combine .section-head { max-width: 780px; }

/* Minden horgonyzott szekció a ragadó sávok ALATT ér ki. Elemenként, és nem
   html { scroll-padding-top }-tal: az a főoldal horgonyait is eltolná, ott
   viszont nincs választó-sáv a fejléc alatt. */
.svc,
.svc-combine,
.svc-anchor { scroll-margin-top: var(--sticky-h); }

@media (max-width: 980px) {
  .svc-body { grid-template-columns: 1fr; }
  .svc-ledger { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .svc-fit { grid-template-columns: 1fr; }
  .svc-nav a { min-height: 44px; display: inline-flex; align-items: center; }
  .svc-reads a { min-height: 44px; align-items: center; }
  /* mobilon a fejléc CTA-ja és a választó-sáv linkjei 44px-es tapintható
     méretre nőnek, ezért mindkét ragadó sáv magasabb */
  :root {
    --header-h: 74px;
    --sticky-h: calc(var(--header-h) + 66px);
  }
}

/* ================================================================== */
/* STORYLINES — gyűjtőoldal és cikkoldalak                             */
/* ================================================================== */

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

/* A cikkcímek hosszabbak, mint egy aloldal címe, ezért itt szélesebb a mérték. */
.story-hero h1 { max-width: 34ch; }

.story-hero .lead { max-width: 68ch; }

.story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 1.8rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--faint);
}

.story-meta span[aria-hidden] { color: var(--line-strong); }

/* ---------- cikk-elrendezés: ragadó tartalomjegyzék + szövegoszlop ---------- */

.story-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2.4rem) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: start;
}

.story-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.4rem);
}

.story-toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-card);
  max-height: calc(100vh - var(--header-h) - 3rem);
  overflow-y: auto;
}

.story-toc .eyebrow { margin-bottom: 0.9rem; }

.story-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
  display: grid;
  gap: 0;
}

.story-toc li { counter-increment: toc; }

.story-toc a {
  position: relative;
  display: block;
  padding: 0.5rem 0 0.5rem 1.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.story-toc li:first-child a { border-top: 0; }

.story-toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--faint);
  transition: color 0.18s ease;
}

.story-toc a:hover { color: var(--text); }

.story-toc a:hover::before { color: var(--accent-ink); }

/* Az aktív szakaszt a görgetés jelöli ki (a cikkoldal záró scriptje). */
.story-toc a.is-current {
  color: var(--text);
  font-weight: 500;
  box-shadow: inset 3px 0 0 var(--accent);
  background: rgba(var(--accent-rgb), 0.16);
}

.story-toc a.is-current::before { color: var(--accent-ink); }

/* ---------- a szövegoszlop ---------- */

.story-prose { min-width: 0; }

.story-prose > section { padding: clamp(2rem, 4vw, 3rem) 0; }

.story-prose > section + section { border-top: 1px solid var(--line); }

/* A horgonyzott szakaszok a ragadó fejléc alatt érnek ki. */
.story-prose > section,
.story-section { scroll-margin-top: calc(var(--header-h) + 1.2rem); }

.story-summary { padding-top: 0 !important; }

.story-summary .summary-block { margin-bottom: clamp(2rem, 4vw, 2.8rem); }

.story-answer-title {
  font-size: clamp(1.24rem, 2.2vw, 1.6rem);
  margin: 0;
}

.story-takeaway-label { margin: clamp(2rem, 4vw, 2.6rem) 0 0; }

.story-section h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0 0 1.1rem;
  max-width: 32ch;
}

.story-section p {
  margin: 0 0 1.05rem;
  font-size: clamp(1rem, 1.25vw, 1.075rem);
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 70ch;
}

.story-section p:last-child { margin-bottom: 0; }

.story-section strong { color: var(--text); font-weight: 700; }

.story-section a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent-ink);
  text-underline-offset: 3px;
}

.story-section a:hover { color: var(--accent-ink); }

.story-faq h2,
.story-related h2,
.story-readon h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: -0.015em;
  margin: 0 0 1.6rem;
  max-width: 34ch;
}

.story-faq .faq-list { max-width: 100%; margin-top: 1.4rem; }

/* ---------- kapcsolódó gondolatok ---------- */

.story-related .section-head { margin-bottom: 2rem; max-width: 60ch; }

.story-related .section-head h2 { margin-bottom: 0; }

.story-grid-related { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.story-why {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.story-grid-related .story-card h3 { flex: 0 0 auto; font-size: 1.02rem; }

/* ---------- olvasd tovább: időrendi szomszédok ---------- */

.story-seq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 0;
}

.story-seq-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.story-seq-link:hover { border-color: rgba(var(--ink-rgb), 0.35); background: var(--surface); }

.story-seq-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.story-seq-link strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--text);
  font-weight: 600;
}

.story-cta .cta-box { margin: 0; max-width: 100%; }

.story-cta .cta-box h2 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }

/* ---------- gyűjtőoldal ---------- */

/* A téma-sávban a szám a chip része, nem külön elem. */
.svc-nav a span {
  margin-left: 0.4rem;
  color: var(--faint);
}

.svc-nav a:hover span { color: var(--accent-ink); }

.story-featured { max-width: 900px; }

.story-featured h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.story-featured p { color: var(--muted); margin: 0; }

.story-search {
  display: grid;
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 0 0.9rem;
}

.story-search span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-search input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
}

.story-search input:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 2px;
}

.story-search-status {
  margin: 0 0 2.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--faint);
}

.story-groups { display: grid; gap: clamp(2.6rem, 5vw, 4rem); }

.story-group { scroll-margin-top: var(--sticky-h); }

/* A keresés a `hidden` attribútummal rejt. A kártya és a csoport `display`-e
   erősebb az UA `[hidden] { display: none }` szabályánál, ezért itt kimondjuk. */
.story-group[hidden],
.story-card[hidden] { display: none; }

.story-group-head {
  max-width: 640px;
  margin-bottom: 1.6rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-strong);
}

.story-group-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  letter-spacing: -0.01em;
  margin: 0;
}

.story-group-head .section-sub { font-size: 0.92rem; }

.story-newsletter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  max-width: 620px;
  box-shadow: var(--shadow-card);
}

/* ---------- storylines: responsive ---------- */

@media (max-width: 1080px) {
  .story-layout { grid-template-columns: 1fr; }

  /* Mobilon a tartalomjegyzék nem ragad: a szöveg elé kerül, sűrűbb listával. */
  .story-aside { position: static; }

  .story-toc { max-height: none; }

  .story-toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .story-toc ol { grid-template-columns: 1fr; }
  .story-toc a { min-height: 44px; display: flex; align-items: center; }

  /* Egy 14 elemű tartalomjegyzék mobilon a teljes első képernyőt elvinné, és a
     cikk törzse csak utána kezdődne. Ezért itt magasságban limitált, saját
     görgetéssel — a lista teljes marad, csak nem tolja le a szöveget. */
  .story-toc {
    max-height: 44vh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .story-grid-related { grid-template-columns: 1fr; }
  .story-seq { grid-template-columns: 1fr; }
  .story-hero h1 { max-width: none; }
}

/* ================================================================== */
/* LAUNCH ÉS KAPCSOLAT — /audit és /contact űrlap-oldalak               */
/* A wizard- és beküldés-logika (script.js) változatlan: minden id,     */
/* name és data-attribútum megmaradt, csak a felület lett v3.          */
/* ================================================================== */

/* ---------- elrendezés: kontextus + form-kártya ---------- */

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: start;
}

.form-layout .side-note { margin-top: 1.8rem; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

/* ---------- mezők — közös az audit- és a contact-formban ---------- */

.audit-form,
.contact-form { display: grid; gap: 1.1rem; }

.audit-form-grid,
.contact-form { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }

.audit-field,
.audit-textarea,
.contact-form label {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.audit-field > span,
.audit-textarea > span,
.contact-form label > span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.audit-field-wide,
.audit-textarea,
.contact-field-wide,
.contact-form button { grid-column: 1 / -1; }

.audit-field input,
.audit-textarea textarea,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  padding: 0.78rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.audit-field input,
.contact-form input,
.contact-form select { min-height: 46px; }

.audit-textarea textarea,
.contact-form textarea { resize: vertical; }

.audit-field input:focus,
.audit-textarea textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.32);
}

.audit-field input::placeholder,
.audit-textarea textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--faint); }

/* honeypot: soha nem látható, csak botoknak csali */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* hibaállapotok */

.field-error {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--bad);
  font-size: 0.82rem;
}

.audit-field.has-error input,
.audit-textarea.has-error textarea,
.audit-question.has-error,
.audit-bot-check.has-error,
.contact-bot-check.has-error {
  border-color: var(--bad);
  box-shadow: 0 0 0 3px rgba(179, 37, 29, 0.12);
}

/* ---------- lépés-számláló: sáv + digit ---------- */

.audit-countdown-shell { margin-bottom: 0.3rem; }

.audit-countdown-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0.5rem 1rem;
  align-items: center;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
}

.audit-countdown-display {
  grid-column: 1;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  min-width: 3.4rem;
  min-height: 3.4rem;
  border-radius: 999px;
  background: var(--ink);
}

.audit-countdown-display strong {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.audit-countdown-track {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: var(--line-strong);
  overflow: hidden;
}

.audit-countdown-track span {
  position: absolute;
  inset: 0;
  width: calc(var(--progress, 0) * 1%);
  background: var(--ink);
  transition: width 0.36s ease;
}

.audit-countdown-labels {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

.audit-countdown-message { display: none !important; }

/* ---------- lépés-kártyák ---------- */

.audit-form-section {
  display: grid;
  gap: 1rem;
}

.audit-form.is-wizard-ready .audit-form-section { display: none; }

.audit-form.is-wizard-ready .audit-form-section.is-active {
  display: grid;
  animation: audit-step-enter 0.32s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes audit-step-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.audit-section-head {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.audit-section-head span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.audit-section-head h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
}

/* ---------- választós kérdések: pirula-opciók ---------- */

.audit-question {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
}

.audit-question > p {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.audit-question-hint {
  margin-top: -0.4rem !important;
  font-size: 0.8rem;
  color: var(--muted);
}

.audit-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.5rem;
}

.audit-option { position: relative; }

.audit-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.audit-option span {
  display: block;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  background: var(--surface);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 500;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.audit-option:hover span,
.audit-option input:focus-visible + span,
.audit-option input:checked + span {
  border-color: var(--ink);
  background: var(--accent);
  transform: translateY(-1px);
}

.audit-option input:checked + span::before { content: "✓ "; }

.audit-option-with-input {
  display: grid;
  grid-template-columns: minmax(90px, auto) minmax(140px, 1fr);
  gap: 0.5rem;
}

.audit-option-with-input > span { min-height: auto; }

.audit-option-with-input input[type="text"] {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-size: 0.86rem;
}

.audit-option-with-input.has-error input[type="text"] { border-color: var(--bad); }

/* ---------- platform-rács: jelenlét + kedvenc csillag ---------- */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.6rem;
}

.platform-choice {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.7rem;
  background: var(--surface);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.platform-choice:hover,
.platform-choice:has(input[type="checkbox"]:checked) {
  border-color: var(--ink);
  background: var(--bg-2);
  transform: translateY(-1px);
}

.platform-choice > input[type="checkbox"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.platform-choice > span:first-of-type {
  position: relative;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
}

.platform-choice > input[type="checkbox"]:checked + span:first-of-type::before { content: "✓ "; }

/* a rádiógomb és a csillag ugyanabba a rácscellába kerül, egymásra */
.favorite-platform-input,
.favorite-star {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: 1.5rem;
  height: 1.5rem;
}

.favorite-platform-input {
  position: relative;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.favorite-star {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--faint);
  font-size: 0.76rem;
  pointer-events: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.favorite-platform-input:checked + .favorite-star {
  border-color: var(--ink);
  background: var(--accent);
  color: var(--ink);
}

.platform-choice-other input[type="text"] {
  grid-column: 1 / -1;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 0.55rem 0.85rem;
  margin-top: 0.4rem;
}

/* ---------- csúszka ---------- */

.audit-range-question {
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
}

.audit-range-question > label {
  font-weight: 700;
  color: var(--text);
}

.audit-range-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 0.7rem;
  align-items: center;
}

.audit-range-wrap span { color: var(--faint); font-family: var(--font-mono); font-size: 0.82rem; }

.audit-range-wrap output {
  display: grid;
  place-items: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
}

.audit-range-wrap input[type="range"] { width: 100%; accent-color: var(--ink); }

/* ---------- robotellenőrzés ---------- */

.audit-bot-check,
.contact-bot-check {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
}

.contact-bot-check {
  grid-column: 1 / -1;
  justify-content: center;
}

.audit-bot-check > span,
.contact-bot-check > span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.audit-bot-check .recaptcha-widget,
.contact-bot-check .recaptcha-widget {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

/* ---------- beküldés ---------- */

.audit-actions {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.audit-note { margin: 0; color: var(--muted); font-size: 0.86rem; }

.audit-wizard-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.audit-wizard-nav[hidden] { display: none; }

.audit-wizard-button {
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.audit-wizard-button:hover,
.audit-wizard-button:focus-visible {
  border-color: var(--ink);
  transform: translateY(-1px);
  outline: none;
}

.audit-wizard-button:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.audit-wizard-next { background: var(--accent); border-color: var(--ink); }

.audit-wizard-status {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--faint);
}

/* ---------- eredmény + jutalom ---------- */

.audit-result[hidden],
.audit-launch-reward[hidden] { display: none; }

.audit-result {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}

.audit-result h2,
.contact-success h2 { margin-top: 0; }

.audit-launch-reward {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2.6vw, 1.8rem);
  background: var(--bg-2);
}

.audit-launch-reward-copy {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.audit-launch-reward-copy h2,
.audit-launch-reward-copy p { margin: 0; }

.audit-launch-reward-video {
  overflow: hidden;
  min-height: clamp(200px, 26vw, 340px);
  border-radius: var(--radius-sm);
  background: var(--ink);
}

.audit-launch-reward-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- kapcsolat-oldal specifikus ---------- */

.contact-success { grid-column: 1 / -1; }

/* ---------- lábléc: illusztratív médiaforrás ---------- */

.footer-source-note {
  margin: 0.6rem 0 0;
  font-size: 0.76rem;
  color: var(--faint);
}

.footer-source-note a { color: var(--faint); }

.footer-source-note a:hover { color: var(--text); }

/* ---------- launch/contact: responsive ---------- */

@media (max-width: 980px) {
  .form-layout { grid-template-columns: 1fr; }
  .audit-form-grid,
  .contact-form { grid-template-columns: 1fr; }
  .audit-field-wide,
  .audit-textarea,
  .contact-field-wide,
  .contact-form button { grid-column: 1; }
  .audit-launch-reward { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .audit-countdown-panel { grid-template-columns: auto 1fr; }
  .audit-wizard-button { min-height: 44px; }
}

/* ==========================================================================
   IKONKÉSZLET
   Sprite: /assets/icons/sprite.svg — 22 egyedi ikon.
   Használat:
     <svg class="ico" aria-hidden="true"><use href="/assets/icons/sprite.svg#ico-ajanlat"/></svg>
   A vonalak currentColor-t örökölnek, tehát a szövegszínt veszik fel.
   ========================================================================== */

.ico {
  width: 24px;
  height: 24px;
  display: block;
  flex: none; /* flex-sorban ne nyomódjon össze a szöveg mellett */
}
.ico-sm { width: 20px; height: 20px; }
.ico-lg { width: 32px; height: 32px; }

/* Az ikonok tömör akcentelemei alapból lime-ok. LIME HÁTTÉREN ez láthatatlan
   volna, ezért ott a szövegszínre váltanak. Ha új lime felület kerül az
   oldalra, vagy vedd fel ide, vagy tedd rá a .ico-on-accent osztályt. */
.ico-on-accent,
.btn-accent,
.journey-out > span,
.dash-verdict-tag {
  --ico-accent: currentColor;
  --ico-accent-line: currentColor;
}

/* Sötét felületen a lime jól olvasható, ott nincs teendő — csak a
   vonalvastagságot emeljük egy hajszálnyit, mert sötéten optikailag vékonyul. */
.ico-on-dark { --ico-stroke: 1.9; }

/* Ikon a szolgáltatás-alcímek és -fejlécek mellett.
   A h3 alapból blokk, ezért kell a flex — enélkül az ikon külön sorba esne. */
.h3-ico { display: flex; align-items: center; gap: .55rem; }
.h3-ico .ico { color: var(--accent-ink); }
.eyebrow-ico { display: flex; align-items: center; gap: .55rem; }
.eyebrow-ico .ico { width: 20px; height: 20px; color: var(--accent-ink); }

/* Nevesített csapatlista a /rolunk oldalon. */
.team-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .55rem;
             grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.team-list li { background: var(--surface); border: 1px solid var(--line);
                border-radius: var(--radius-sm); padding: .85rem 1rem; }
.team-list strong { display: block; font-family: var(--font-display); font-size: .95rem;
                    font-weight: 700; letter-spacing: -0.01em; }
.team-list span { display: block; font-size: .78rem; color: var(--muted); margin-top: .15rem; }
