/* ═══════════════════════════════════════════════════════════
   AI EGYLET — svájci-minimál landing
   Hó #FAFAFA · Szén #101114 · Vörös #E10600 · Acél #9CA1A8
   Instrument Sans + IBM Plex Mono
   ═══════════════════════════════════════════════════════════ */

:root {
  --ho: #FAFAFA;
  --szen: #101114;
  --voros: #E10600;
  --voros-dark: #C00500;
  --acel: #9CA1A8;
  --ink: var(--szen);
  --ink-soft: #3D3F45;
  --line: rgba(16, 17, 20, 0.14);
  --line-strong: rgba(16, 17, 20, 0.4);
  --sans: 'Instrument Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ho);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--voros); color: #fff; }

img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--voros); outline-offset: 3px; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.container--narrow { width: min(860px, 92vw); }

.mono {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sq {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--voros);
  margin-right: 10px;
  flex: none;
}

.u-red { color: var(--voros); font-style: normal; }
.u-underline {
  font-style: normal;
  box-shadow: inset 0 -0.14em 0 var(--voros);
}

/* ── Logó jel ─────────────────────────────────────────── */
.mark { width: 30px; height: 30px; flex: none; }
.mark__base { fill: var(--szen); }
.mark__bar { fill: var(--ho); }
.mark__red { fill: var(--voros); }
.mark--light .mark__base { fill: var(--ho); }
.mark--light .mark__bar { fill: var(--szen); }

/* ── Gombok ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }
.btn--red { background: var(--voros); color: #fff; }
.btn--red:hover { background: var(--voros-dark); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── Navigáció ────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 -1px 0 var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 76px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--voros);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { flex: none; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobilemenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 4vw 28px;
  background: var(--ho);
  box-shadow: inset 0 -1px 0 var(--line);
}
.mobilemenu a {
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  padding: 10px 0;
}
.mobilemenu .btn { margin-top: 14px; justify-content: center; }
.mobilemenu.is-open { display: flex; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 150px;
}
.hero__inner { position: relative; }
.gridlines {
  position: absolute;
  inset: -150px 0 0 0;
  pointer-events: none;
}
.gridlines i {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(16, 17, 20, 0.05);
}
.gridlines i:nth-child(1) { left: 25%; }
.gridlines i:nth-child(2) { left: 50%; }
.gridlines i:nth-child(3) { left: 75%; }

.hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-strong);
  padding-top: 14px;
  opacity: 0;
  animation: fadein 0.8s var(--ease) 0.15s forwards;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-top: clamp(48px, 7vh, 90px);
}

.hero__title {
  font-size: clamp(2.2rem, 5.6vw, 5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line__in {
  display: block;
  transform: translateY(115%);
  animation: lineup 0.9s var(--ease) forwards;
}
.line:nth-child(2) .line__in { animation-delay: 0.14s; }
.line:nth-child(3) .line__in { animation-delay: 0.28s; }

.hero__lead {
  max-width: 34em;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  margin-top: 34px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__markwrap { padding-bottom: 8px; }
.heromark { width: clamp(140px, 18vw, 240px); height: auto; display: block; }
.heromark__base {
  fill: var(--szen);
  transform-origin: 24px 24px;
  animation: markbase 0.7s var(--ease) 0.1s both;
}
.heromark__bar {
  fill: var(--ho);
  transform-origin: 18px 0;
  transform: scaleX(0);
  animation: barin 0.55s var(--ease) forwards;
}
.heromark__bar.b1 { animation-delay: 0.55s; }
.heromark__bar.b3 { animation-delay: 0.7s; }
.heromark__bar.b2.red {
  fill: var(--voros);
  animation: barin 0.55s var(--ease) 0.9s forwards,
             redpulse 3.2s ease-in-out 2.2s 3;
}

.hero__note {
  margin-top: clamp(48px, 7vh, 80px);
  margin-bottom: 22px;
  padding-left: 22px;
  border-left: 3px solid var(--voros);
  max-width: 38em;
}
.hero__note-strong {
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.hero__note p:not(.hero__note-strong) {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
}

/* ── Ticker ───────────────────────────────────────────── */
.ticker {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
  padding: 13px 0;
  background: var(--ho);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group {
  display: flex;
  align-items: center;
  flex: none;
}
.ticker__group span {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.ticker__group i {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--voros);
  margin: 0 26px;
  flex: none;
}

/* ── Számok / proof ───────────────────────────────────── */
.proof { padding: clamp(60px, 8vw, 100px) 0; }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 28px;
  border-left: 1px solid var(--line);
}
.proof__item:first-child { border-left: 0; padding-left: 0; }
.proof__label { color: var(--acel); }
.proof__num {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.proof__num--red { color: var(--voros); }
.proof__note { font-size: 14.5px; color: var(--ink-soft); }

/* ── Szekció-váz ──────────────────────────────────────── */
.sec { padding: clamp(90px, 11vw, 150px) 0; }
.sec--tight { padding-top: clamp(40px, 6vw, 70px); }

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid var(--line-strong);
  padding-top: 14px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.sec-head__idx { display: inline-flex; align-items: center; }
.sec-head__note { color: var(--acel); }

.sec-lead {
  max-width: 36em;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--ink-soft);
  margin-bottom: clamp(44px, 6vw, 64px);
}

/* ── 01 Miért ─────────────────────────────────────────── */
.statement {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: clamp(48px, 7vw, 84px);
}
.statement--lead { margin-bottom: clamp(20px, 3vw, 34px); }
.cols3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.col { border-top: 2px solid var(--szen); padding-top: 20px; }
.col__problem {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.col p { color: var(--ink-soft); font-size: 16px; }

.video { margin-top: clamp(64px, 8vw, 100px); }
.video__btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: none;
  cursor: pointer;
  overflow: hidden;
}
.video__btn img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.04);
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
}
.video__btn:hover img { transform: scale(1.02); filter: grayscale(0) contrast(1.02); }
.video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--voros);
  color: #fff;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.video__play svg { margin-left: 4px; }
.video__btn:hover .video__play { transform: translate(-50%, -50%) scale(1.1); background: var(--voros-dark); }
.video__cap {
  display: flex;
  align-items: center;
  padding: 14px 0 0;
  color: var(--ink-soft);
}

/* ── 02 Útvonalak ─────────────────────────────────────── */
.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.path {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  background: var(--ho);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.path::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--voros);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.path:hover {
  transform: translateY(-6px);
  border-color: var(--szen);
  box-shadow: 0 18px 40px -18px rgba(16, 17, 20, 0.22);
}
.path:hover::before { transform: scaleX(1); }
.path__tag { color: var(--voros); }
.path h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.path__who {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 6px 0 20px;
}
.path__txt {
  font-size: 15.5px;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.path ul { list-style: none; margin-bottom: 28px; }
.path li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 15.5px;
  border-top: 1px solid var(--line);
}
.path li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 7px; height: 7px;
  background: var(--voros);
}
.path__foot {
  margin-top: auto;
  color: var(--acel);
}

/* ── 03 Bepillantás (sötét) ───────────────────────────── */
.sec--dark {
  background: var(--szen);
  color: var(--ho);
  --line: rgba(250, 250, 250, 0.14);
  --line-strong: rgba(250, 250, 250, 0.32);
  --ink-soft: #B9BCC2;
}
.sec--dark .sec-head__note { color: var(--acel); }

.peek {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.term {
  border: 1px solid var(--line-strong);
  background: #0A0B0D;
}
.term__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--acel);
}
.term__dots { display: flex; gap: 6px; }
.term__dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.18);
}
.term__dots i:first-child { background: var(--voros); }
.term__body {
  padding: 22px 20px 26px;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.85;
  min-height: 285px;
}
.term__body .t-cmd { color: var(--ho); }
.term__body .t-out { color: var(--acel); }
.term__body .t-ok { color: #5DD48A; }
.term__body .t-cmt { color: var(--voros); }
.term__caret {
  display: inline-block;
  width: 8px; height: 16px;
  background: var(--voros);
  vertical-align: -3px;
  animation: blink 1s steps(1) infinite;
}
.peek__termnote {
  margin-top: 14px;
  color: rgba(250, 250, 250, 0.35);
}

.peek__h {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.peek__lead {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.guides__foot {
  font-size: 15.5px;
  color: var(--ink-soft);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.guides { list-style: none; }
.guide {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.guide__idx { color: var(--voros); padding-top: 3px; }
.guide h4 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.guide p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.guide__tag {
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  color: var(--acel);
  white-space: nowrap;
}
.guide__tag--ready {
  background: var(--voros);
  border-color: var(--voros);
  color: #fff;
}

.rhythm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: clamp(60px, 7vw, 90px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.rhythm__label {
  display: inline-flex;
  align-items: center;
  color: var(--ho);
}
.rhythm__item p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* — stilizált feed — */
.feedmock {
  margin-top: clamp(60px, 7vw, 90px);
  border: 1px solid var(--line-strong);
  background: var(--ho);
  color: var(--szen);
}
.feedmock__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(16, 17, 20, 0.14);
  color: #6B6E75;
}
.feedmock__bar .term__dots i { background: rgba(16, 17, 20, 0.15); }
.feedmock__bar .term__dots i:first-child { background: var(--voros); }
.feedmock__note { margin-left: auto; color: var(--acel); }
.feedmock__body { padding: 10px 0; }
.feedmock__shot { display: block; width: 100%; height: auto; }
.fpost {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-top: 1px solid rgba(16, 17, 20, 0.08);
}
.fpost:first-child { border-top: 0; }
.fpost--pinned { background: rgba(225, 6, 0, 0.045); position: relative; }
.fpost__pin {
  position: absolute;
  top: 10px; right: 22px;
  color: var(--voros);
}
.fpost__ava {
  width: 40px; height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--szen);
  color: var(--ho);
  font-size: 12px;
}
.fpost__title { font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; }
.fpost__meta { color: #8A8D94; margin-top: 3px; }

/* ── 04 Alapító ───────────────────────────────────────── */
.founder {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.founder__fig { border: 1px solid var(--line-strong); }
.founder__fig img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: 62% 20%;
  filter: grayscale(0.2) contrast(1.05);
}
.founder__fig figcaption {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border-top: 1px solid var(--line-strong);
  color: var(--ink-soft);
}
.founder__txt h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 26px;
}
.founder__txt p {
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 18px;
}
.creds {
  list-style: none;
  margin: 34px 0;
}
.creds li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-weight: 500;
  font-size: 16px;
}
.creds li:last-child { border-bottom: 1px solid var(--line); }
.creds__idx { color: var(--voros); }
.founder__social { display: flex; gap: 26px; }
.founder__social a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.founder__social a:hover { color: var(--voros); }

/* ── 05 Vélemények ────────────────────────────────────── */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 54px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote__sample {
  position: absolute;
  top: 0; right: 0;
  padding: 5px 10px;
  background: var(--ho);
  border-left: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  color: var(--acel);
}
.quote p {
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.quote footer { color: var(--ink-soft); margin-top: auto; }

/* ── 06 Árazás ────────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.pricing__info h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 24px;
}
.pricing__info > p {
  color: var(--ink-soft);
  max-width: 30em;
  margin-bottom: 40px;
}
.countdown {
  display: flex;
  gap: 12px;
}
.countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line-strong);
  padding: 14px 0 10px;
  width: 76px;
}
.countdown__num {
  font-size: 1.9rem;
  font-weight: 500;
  font-family: var(--mono);
  letter-spacing: 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__lab { font-size: 10.5px; color: var(--acel); letter-spacing: 0.14em; }
.pricing__cdnote { margin-top: 14px; color: var(--acel); }

.pricing__cards { display: flex; flex-direction: column; gap: 22px; }
.price { padding: 34px 32px 30px; }
.price--founding {
  background: var(--szen);
  color: var(--ho);
  position: relative;
}
.price--founding::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--voros);
}
.price__tag { color: var(--voros); display: block; }
.price--normal .price__tag { color: var(--acel); }
.price__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 6px;
}
.price__num {
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price__num--sm { font-size: 2rem; }
.price__per { color: var(--acel); }
.price__old { color: var(--acel); font-size: 1.3rem; text-decoration: line-through; }
.price__fx { color: var(--acel); margin-top: 4px; }
.price__list {
  list-style: none;
  margin: 24px 0 30px;
}
.price__list li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 15.5px;
  border-top: 1px solid rgba(250, 250, 250, 0.12);
}
.price__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 7px; height: 7px;
  background: var(--voros);
}
.price__foot {
  margin-top: 16px;
  color: var(--acel);
  text-align: center;
}
.price--normal {
  border: 1px solid var(--line-strong);
}
.price__normaltxt { color: var(--ink-soft); font-size: 15.5px; margin-top: 10px; }
.pricing__b2b {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 15.5px;
}
.pricing__b2b strong { color: var(--ink); }
.pricing__b2b a {
  color: var(--voros);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 07 GYIK ──────────────────────────────────────────── */
.faq__item { border-top: 1px solid var(--line-strong); }
.faq__item:last-child { border-bottom: 1px solid var(--line-strong); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px 2px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--voros); }
.faq__plus {
  position: relative;
  width: 16px; height: 16px;
  flex: none;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.faq__plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__plus::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__plus::after { transform: scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq__a p {
  padding: 0 2px 26px;
  color: var(--ink-soft);
  max-width: 46em;
}

/* ── 08 Záró ──────────────────────────────────────────── */
.zaro {
  border-top: 1px solid var(--line-strong);
  text-align: center;
}
.zaro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.zaro__mark { width: 64px; height: 64px; }
.zaro__title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}
.zaro__lead {
  max-width: 32em;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

/* ── Lábléc ───────────────────────────────────────────── */
.foot {
  background: var(--szen);
  color: var(--ho);
  padding: clamp(60px, 8vw, 90px) 0 0;
}
.foot__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: clamp(44px, 6vw, 70px);
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.foot__brand .mark { width: 38px; height: 38px; }
.foot__tagline { color: var(--acel); font-size: 15.5px; }
.foot__links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot__links a {
  text-decoration: none;
  color: var(--acel);
  transition: color 0.2s;
}
.foot__links a:hover { color: var(--ho); }
.foot__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(250, 250, 250, 0.14);
  color: rgba(250, 250, 250, 0.4);
}

/* ── Toast ────────────────────────────────────────────── */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--szen);
  color: var(--ho);
  padding: 13px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 200;
  max-width: 90vw;
  text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ── Reveal animációk ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease) var(--d, 0s),
              transform 0.75s var(--ease) var(--d, 0s);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@keyframes fadein { to { opacity: 1; } }
@keyframes lineup { to { transform: translateY(0); } }
@keyframes barin { to { transform: scaleX(1); } }
@keyframes markbase { from { opacity: 0; } to { opacity: 1; } }
@keyframes blink { 50% { opacity: 0.15; } }
@keyframes redpulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.78; }
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ── Reszponzív ───────────────────────────────────────── */
@media (max-width: 1020px) {
  .peek { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder__fig { max-width: 560px; }
  .pricing { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { background: rgba(250, 250, 250, 0.92); backdrop-filter: blur(12px); }
  .nav.is-scrolled, .nav { box-shadow: inset 0 -1px 0 var(--line); }
  .nav__inner { height: 64px; }
  html { scroll-padding-top: 76px; }

  .hero { padding-top: 110px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__markwrap { display: none; }
  .hero__meta { flex-direction: column; gap: 4px; }
  .hero__meta-right { display: none; }
  .hero__scroll { display: none; }

  .sec-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .peek__h br, .founder__txt h2 br { display: none; }

  .proof__grid { grid-template-columns: 1fr 1fr; gap: 34px 0; }
  .proof__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .proof__item { padding-right: 12px; }

  .cols3 { grid-template-columns: 1fr; gap: 28px; }
  .paths { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .rhythm { grid-template-columns: 1fr; gap: 28px; }

  .guide { grid-template-columns: auto 1fr; }
  .guide__tag { grid-column: 2; justify-self: start; }

  .video__btn img { aspect-ratio: 16 / 10; }
  .video__play { width: 64px; height: 64px; }

  .countdown__cell { width: 64px; }

  .foot__top { grid-template-columns: 1fr; gap: 24px; }
  .foot__bottom { flex-direction: column; gap: 6px; }
}

/* ── Csökkentett mozgás ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .line__in { transform: none; }
  .heromark__bar { transform: none; }
  .hero__meta { opacity: 1; }
  [data-reveal] { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

/* ── Süti-ablak (felugró, döntést kérő) ───────────────── */
.cookiebar {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.55);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.cookiebar.is-open { opacity: 1; }

.cookiebar__inner {
  width: min(620px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: var(--ho);
  border: 1px solid var(--szen);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  transform: translateY(16px);
  transition: transform 0.3s var(--ease);
}
.cookiebar.is-open .cookiebar__inner { transform: none; }

.cookie-lock { overflow: hidden; }

.cookiebar__title { margin-bottom: 8px; }
.cookiebar__text p:last-child {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 56em;
}
.cookiebar__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookiebar__text a:hover { color: var(--voros); }

.cookiebar__opts {
  display: none;
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.cookiebar.is-detail .cookiebar__opts { display: block; }

.cookiebar__opt {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink-soft);
  cursor: pointer;
}
.cookiebar__opt input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--voros);
  flex: none;
}
.cookiebar__opt strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}
.cookiebar__note {
  font-size: 13px;
  color: var(--acel);
  padding-top: 6px;
}

.cookiebar__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookiebar__link {
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 8px 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookiebar__link:hover { color: var(--voros); }

.cookiebar__save { display: none; }
.cookiebar.is-detail .cookiebar__save { display: inline-flex; }
.cookiebar.is-detail .cookiebar__link { display: none; }

@media (max-width: 760px) {
  .cookiebar { padding: 14px; align-items: flex-end; }
  .cookiebar__inner {
    gap: 16px;
    padding: 22px 20px;
    max-height: 82vh;
  }
  .cookiebar__acts .btn { flex: 1 1 140px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cookiebar { transition: none; }
}

/* ── Jogi oldalak ─────────────────────────────────────── */
.legal { padding: 150px 0 100px; }
.legal__title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.legal__meta {
  color: var(--acel);
  margin-bottom: 32px;
}
.legal__rule {
  border: 0;
  border-top: 1px solid var(--szen);
  margin-bottom: 40px;
}

.foot__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.foot__legal a {
  color: rgba(250, 250, 250, 0.55);
  transition: color 0.25s var(--ease);
}
.foot__legal a:hover { color: var(--ho); }
