/* ==========================================================================
   Pályázat4me — landing page
   Colour, type and spacing values are transcribed 1:1 from the design source
   (Palyazatfigyelo v2.dc.html). Only the responsive rules at the bottom and
   the reduced-motion block are additions.
   ========================================================================== */

/* ── Tokens ───────────────────────────────────────────────────────────── */
:root {
  --ink: oklch(0.24 0.03 277);
  --ink-60: oklch(0.24 0.03 277 / 0.62);
  --ink-40: oklch(0.24 0.03 277 / 0.42);
  --paper: oklch(0.98 0.008 85);
  --card: oklch(1 0 0);
  --indigo: oklch(0.55 0.17 277);
  --indigo-soft: oklch(0.94 0.035 277);
  --teal: oklch(0.63 0.12 196);
  --teal-soft: oklch(0.94 0.035 196);
  --amber: oklch(0.79 0.14 72);
  --amber-soft: oklch(0.95 0.05 78);
  --line: oklch(0.24 0.03 277 / 0.10);

  /* derived tones used inline in the design */
  --indigo-700: oklch(0.45 0.17 277);
  --indigo-600: oklch(0.48 0.17 277);
  --indigo-ink: oklch(0.35 0.09 277);
  --teal-ink: oklch(0.42 0.09 196);
  --teal-ink-strong: oklch(0.40 0.09 196);
  --teal-ink-hit: oklch(0.38 0.09 196);
  --teal-bright: oklch(0.82 0.09 196);
  --amber-ink: oklch(0.45 0.1 72);
  --amber-ink-deep: oklch(0.28 0.08 72);
  --paper-82: oklch(0.98 0.008 85 / 0.82);
  --paper-68: oklch(0.98 0.008 85 / 0.68);
  --paper-65: oklch(0.98 0.008 85 / 0.65);
  --paper-60: oklch(0.98 0.008 85 / 0.6);
  --wash-04: oklch(0.24 0.03 277 / 0.04);
  --wash-05: oklch(0.24 0.03 277 / 0.05);
  --wash-06: oklch(0.24 0.03 277 / 0.06);
  --wash-07: oklch(0.24 0.03 277 / 0.07);

  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, dl, dd, dt, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
legend { padding: 0; }
button { font: inherit; color: inherit; }

a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--indigo-700); }

::selection { background: var(--indigo-soft); }

button:focus-visible,
a:focus-visible,
input:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; }

[hidden] { display: none !important; }

.mono { font-family: var(--mono); }

.page { overflow-x: hidden; }

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Keyframes ────────────────────────────────────────────────────────── */
@keyframes v2-sweep { 0% { transform: translateY(-25%); opacity: 0; } 12% { opacity: 1; } 100% { transform: translateY(430%); opacity: 0; } }
@keyframes v2-radar { to { transform: rotate(360deg); } }
@keyframes v2-ping { 0% { transform: scale(0.5); opacity: 0.8; } 100% { transform: scale(3.4); opacity: 0; } }
@keyframes v2-blink { 50% { opacity: 0.2; } }
@keyframes v2-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes v2-flow { to { background-position: 46px 0; } }
@keyframes v2-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ── Header ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 0;
}

.nav__bar {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 60px;
  padding: 0 10px 0 20px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px oklch(0.24 0.03 277 / 0.07), 0 0 0 1px var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.nav__bar .brand { margin-right: auto; }

.brand__mark {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--indigo);
  display: grid;
  place-items: center;
  flex: none;
}
.brand__mark--plain { width: 24px; height: 24px; border-radius: 8px; }

.brand__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(1 0 0);
  animation: v2-blink 1.8s ease-in-out infinite;
}

.brand__name { font-weight: 800; font-size: 16.5px; letter-spacing: -0.02em; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--ink-60); font-size: 14.5px; font-weight: 500; }
.nav__links a:hover { color: var(--ink); }

.nav__cta {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  flex: none;
  transition: background 0.2s ease;
}
.nav__cta:hover { background: var(--indigo); color: var(--paper); }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero { padding: 30px 0 0; }

.hero__switch { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }

.mono-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.segmented {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: var(--wash-06);
}

.segmented__btn {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  transition: all 0.2s ease;
  background: transparent;
  color: var(--ink-40);
}
.segmented__btn.is-on {
  background: oklch(1 0 0);
  color: var(--ink);
  box-shadow: 0 2px 8px oklch(0.24 0.03 277 / 0.12);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 70px;
}

.pill-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal-soft);
  color: var(--teal-ink);
  border-radius: 999px;
  padding: 7px 15px 7px 12px;
  font-size: 13px;
  font-weight: 600;
}
.pill-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: v2-blink 1.6s ease-in-out infinite;
}

.hero__title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
  max-width: 13ch;
}

.hero__lead {
  font-size: 18.5px;
  line-height: 1.58;
  margin: 22px 0 0;
  max-width: 46ch;
  color: var(--ink-60);
  text-wrap: pretty;
}

.hero__actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.btn { padding: 15px 26px; border-radius: 999px; font-size: 15.5px; transition: background 0.2s ease, box-shadow 0.2s ease; }
.btn--primary {
  background: var(--indigo);
  color: oklch(1 0 0);
  font-weight: 700;
  box-shadow: 0 8px 22px oklch(0.55 0.17 277 / 0.28);
}
.btn--primary:hover { background: var(--indigo-600); color: oklch(1 0 0); }
.btn--ghost {
  background: oklch(1 0 0);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--line);
}
.btn--ghost:hover { color: var(--ink); box-shadow: 0 0 0 1px var(--indigo); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-top: 46px;
  justify-content: start;
}
.stat__value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__value--accent { color: var(--indigo); }
.stat__label { font-size: 13px; color: var(--ink-40); margin-top: 7px; font-weight: 500; }

/* ── Hero panel A · live feed ─────────────────────────────────────────── */
.panel {
  position: relative;
  border-radius: 30px;
  background: var(--card);
  box-shadow: 0 24px 60px oklch(0.24 0.03 277 / 0.12), 0 0 0 1px var(--line);
  overflow: hidden;
  height: 482px;
}

.panel__blob {
  position: absolute;
  top: -70px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--amber-soft);
  filter: blur(6px);
}

.panel__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.panel__title { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }

.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot--teal { background: var(--teal); }
.dot--amber { background: var(--amber); }

.clock { font-size: 12.5px; color: var(--ink-40); }

.panel__sweep {
  position: absolute;
  left: 0;
  right: 0;
  top: 58px;
  height: 76px;
  background: linear-gradient(oklch(0.55 0.17 277 / 0), oklch(0.55 0.17 277 / 0.13));
  animation: v2-sweep 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.feed { padding: 10px; height: 268px; overflow: hidden; position: relative; z-index: 1; }

.feed-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 14px;
  margin-bottom: 3px;
  font-size: 13.5px;
  animation: v2-in 0.35s ease both;
}
.feed-time { font-family: var(--mono); font-size: 12px; color: var(--ink-40); }
.feed-tag { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }

.feed-row[data-kind="read"] { background: transparent; }
.feed-row[data-kind="read"] .feed-text { color: var(--ink-60); font-weight: 400; }
.feed-row[data-kind="read"] .feed-tag { background: var(--wash-06); color: var(--ink-60); }

.feed-row[data-kind="hit"] { background: var(--teal-soft); }
.feed-row[data-kind="hit"] .feed-text { color: var(--teal-ink-hit); font-weight: 600; }
.feed-row[data-kind="hit"] .feed-tag { background: oklch(1 0 0 / 0.7); color: var(--teal-ink-hit); }

.feed-row[data-kind="warn"] { background: var(--amber-soft); }
.feed-row[data-kind="warn"] .feed-text { color: var(--amber-ink); font-weight: 600; }
.feed-row[data-kind="warn"] .feed-tag { background: oklch(1 0 0 / 0.7); color: var(--amber-ink); }

.hit-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  border-radius: 22px;
  padding: 18px 20px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 34px oklch(0.24 0.03 277 / 0.28);
  animation: v2-float 5s ease-in-out infinite;
}
.hit-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-bright);
}
.ping { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); flex: none; }
.ping__wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--teal-bright);
  animation: v2-ping 1.9s ease-out infinite;
}
.hit-card__title { font-size: 18px; font-weight: 700; margin-top: 9px; letter-spacing: -0.02em; }
.hit-card__meta { font-size: 12px; color: var(--paper-60); margin-top: 6px; }

/* ── Hero panel B · deadline radar ────────────────────────────────────── */
.radar {
  position: relative;
  height: 292px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, var(--indigo-soft), transparent 68%);
}
.radar__scope {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid oklch(0.55 0.17 277 / 0.2);
}
.radar__ring { position: absolute; border-radius: 50%; }
.radar__ring--mid { inset: 30px; border: 1px solid oklch(0.55 0.17 277 / 0.15); }
.radar__ring--inner { inset: 70px; border: 1px solid oklch(0.55 0.17 277 / 0.12); }
.radar__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, oklch(0.55 0.17 277 / 0.30), transparent 58%);
  animation: v2-radar 4.4s linear infinite;
}
.radar__blip { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: currentColor; }
.radar__blip--amber { color: var(--amber); }
.radar__blip--indigo { color: var(--indigo); }
.radar__blip--teal { color: var(--teal); }
.radar__wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: currentColor;
  animation: v2-ping 2.4s ease-out infinite;
}
.radar__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--ink);
}

.deadlines { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px; background: var(--card); }
.deadline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 4px;
  font-size: 13.5px;
  font-weight: 500;
  background: var(--wash-04);
}
.deadline__pill {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  background: oklch(1 0 0);
  color: var(--ink-60);
  font-variant-numeric: tabular-nums;
}
.deadline.is-urgent { background: var(--amber-soft); }
.deadline.is-urgent .deadline__pill { background: var(--amber); color: var(--amber-ink-deep); }

/* ── Section scaffolding ──────────────────────────────────────────────── */
.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow--indigo { color: var(--indigo); }
.eyebrow--teal { color: var(--teal); }
.eyebrow--amber { color: var(--amber); }
.eyebrow--bright { color: var(--teal-bright); }
.eyebrow--onindigo { color: oklch(1 0 0 / 0.7); }

.section__title { font-size: 46px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
.section__title--sm { font-size: 44px; }
/* The 05 / 07 headings are set without a line-height in the design. */
.section__title--solo { line-height: normal; margin-bottom: 36px; }

.section__lead { font-size: 17px; line-height: 1.6; color: var(--ink-60); text-wrap: pretty; }
.section__lead--dark { font-size: 16.5px; color: var(--paper-68); }

/* ── 01 · Hogyan működik ──────────────────────────────────────────────── */
.section--steps { padding: 76px 0; }
.section--steps .section__head { margin-bottom: 42px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }

.steps__wire {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 32px;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--indigo) 0 14px, transparent 14px 24px);
  background-size: 46px 2px;
  animation: v2-flow 1.6s linear infinite;
  opacity: 0.35;
}

.step { position: relative; }
.step__chip {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 19px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  transition: all 0.45s ease;
  background: oklch(1 0 0);
  color: var(--ink-40);
  box-shadow: 0 0 0 1px var(--line);
}
.step.is-done .step__chip { background: var(--indigo-soft); color: var(--indigo); }
.step.is-active .step__chip {
  background: var(--indigo);
  color: oklch(1 0 0);
  box-shadow: 0 10px 24px oklch(0.55 0.17 277 / 0.35);
}

.step__card {
  margin-top: 20px;
  padding: 24px 22px;
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 0 0 1px var(--line);
  min-height: 232px;
}
.step__title { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.step__body { font-size: 14px; line-height: 1.58; color: var(--ink-60); }
.step__track { margin-top: 18px; height: 5px; border-radius: 999px; background: var(--wash-07); overflow: hidden; }
.step__fill { display: block; height: 5px; border-radius: 999px; background: var(--indigo); transition: width 0.9s linear; width: 0; }
.step.is-active .step__fill,
.step.is-done .step__fill { width: 100%; }
.step__status { margin-top: 10px; font-size: 12.5px; font-weight: 600; color: var(--ink-40); }
.step.is-active .step__status { color: var(--indigo); }

.cycle-note {
  margin-top: 22px;
  padding: 22px 26px;
  border-radius: 24px;
  background: var(--indigo-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cycle-note__text { font-size: 15px; color: var(--indigo-ink); }
.cycle-note__text strong { color: var(--ink); }
.cycle-note__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cycle-note__tags li {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: oklch(1 0 0);
  color: var(--indigo);
}

/* ── 02 · Élő illesztés ───────────────────────────────────────────────── */
.section--demo { padding: 20px 0 76px; }
.section--demo .section__head { margin-bottom: 36px; }

.demo { display: grid; grid-template-columns: 372px 1fr; gap: 20px; align-items: start; }

.profile {
  padding: 26px 24px 28px;
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 10px 34px oklch(0.24 0.03 277 / 0.08), 0 0 0 1px var(--line);
  position: sticky;
  top: 96px;
}
.profile__title { font-size: 25px; font-weight: 800; letter-spacing: -0.03em; margin: 8px 0 22px; }
.profile__group { margin-bottom: 20px; }
.profile__group:last-of-type { margin-bottom: 0; }
.profile__legend { font-size: 12.5px; font-weight: 600; color: var(--ink-40); margin-bottom: 10px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
  border: 0;
  transition: all 0.18s ease;
  background: var(--wash-05);
  color: var(--ink-60);
}
.chip.is-on { background: var(--indigo); color: oklch(1 0 0); box-shadow: 0 4px 12px oklch(0.55 0.17 277 / 0.3); }

.profile__count {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile__count span { font-size: 13.5px; font-weight: 600; color: var(--teal-ink); }
.profile__count strong {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--teal-ink);
}

.matches { display: flex; flex-direction: column; gap: 14px; }

.match {
  padding: 24px 26px;
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 0 0 1px var(--line);
  transition: box-shadow 0.2s ease;
  display: grid;
  grid-template-columns: 1fr 128px;
  gap: 24px;
  align-items: start;
}
.match:hover { box-shadow: 0 12px 32px oklch(0.24 0.03 277 / 0.10), 0 0 0 1px var(--line); }

.match__code { font-size: 11.5px; letter-spacing: 0.06em; color: var(--indigo); }
.match__title { font-size: 23px; font-weight: 700; letter-spacing: -0.025em; margin: 8px 0 12px; line-height: 1.2; }

.match__facts { display: flex; gap: 8px; flex-wrap: wrap; font-size: 12.5px; font-weight: 600; }
.match__facts li { padding: 5px 11px; border-radius: 999px; background: var(--wash-05); color: var(--ink-60); }
.match__facts li.is-amount { background: var(--amber-soft); color: var(--amber-ink); }

.reasons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.reason {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--wash-05);
  color: var(--ink-40);
}
.reason__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-40); flex: none; }
.reason.is-ok { background: var(--teal-soft); color: var(--teal-ink-strong); }
.reason.is-ok .reason__dot { background: var(--teal); }

.match__score { text-align: right; }
.match__pct {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--ink-40);
}
.match__score.is-strong .match__pct { color: var(--indigo); }
.match__pct-label { font-size: 11.5px; font-weight: 600; color: var(--ink-40); margin-top: 5px; }
.match__track { height: 6px; border-radius: 999px; background: var(--wash-07); margin-top: 12px; overflow: hidden; }
.match__fill { display: block; height: 6px; border-radius: 999px; background: var(--ink-40); transition: width 0.5s ease; }
.match__score.is-strong .match__fill { background: var(--indigo); }

.matches__empty {
  padding: 40px 24px;
  text-align: center;
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 0 0 1px var(--line);
  color: var(--ink-40);
  font-size: 15px;
}

/* ── 03 · Lefedettség ─────────────────────────────────────────────────── */
.section--coverage { padding: 0 0 76px; }

.coverage {
  border-radius: 32px;
  background: var(--ink);
  color: var(--paper);
  padding: 44px 44px 40px;
  position: relative;
  overflow: hidden;
}
.coverage__blob {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: oklch(0.55 0.17 277 / 0.35);
  filter: blur(10px);
}
.section__head--dark { position: relative; margin-bottom: 38px; }

.coverage__stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.coverage__stats li { padding: 24px 22px; border-radius: 22px; background: oklch(1 0 0 / 0.07); }
.coverage__value { font-size: 40px; font-weight: 800; line-height: 1; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; }
.coverage__label { font-size: 13.5px; font-weight: 700; margin-top: 10px; color: var(--teal-bright); }
.coverage__note { font-size: 13px; line-height: 1.5; margin-top: 8px; color: var(--paper-60); }

.coverage__sources { position: relative; margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.coverage__sources li {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.09);
  color: var(--paper-82);
}

/* ── 04 · Árak ────────────────────────────────────────────────────────── */
.section--pricing { padding: 0 0 76px; }
.section--pricing .section__head { margin-bottom: 40px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }

.plan {
  padding: 30px 28px 32px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line);
}
.plan.is-hero {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 24px 54px oklch(0.24 0.03 277 / 0.26);
  transform: translateY(-10px);
}

.plan__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo);
}
.plan.is-hero .plan__tag { background: var(--amber); color: var(--amber-ink-deep); }

.plan__name { font-size: 30px; font-weight: 800; letter-spacing: -0.035em; margin: 16px 0 8px; }
.plan__who { font-size: 14px; line-height: 1.55; margin-bottom: 20px; color: var(--ink-60); }
.plan.is-hero .plan__who { color: var(--paper-65); }

.plan__price { display: flex; align-items: baseline; gap: 8px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.plan.is-hero .plan__price { border-bottom-color: oklch(1 0 0 / 0.16); }
.plan__amount { font-size: 42px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.plan__unit { font-size: 13.5px; color: var(--ink-60); }
.plan.is-hero .plan__unit { color: var(--paper-65); }

.plan__features { display: flex; flex-direction: column; gap: 11px; margin: 20px 0 24px; flex: 1; }
.plan__features li { display: grid; grid-template-columns: 18px 1fr; gap: 11px; font-size: 14px; line-height: 1.45; }
.feat-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--indigo-soft);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.feat-dot span { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); }
.plan.is-hero .feat-dot { background: oklch(1 0 0 / 0.14); }
.plan.is-hero .feat-dot span { background: var(--teal-bright); }

.plan__cta {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--indigo);
  color: oklch(1 0 0);
  box-shadow: 0 8px 20px oklch(0.55 0.17 277 / 0.28);
  transition: background 0.2s ease;
}
.plan__cta:hover { background: var(--indigo-600); color: oklch(1 0 0); }
.plan.is-hero .plan__cta { background: oklch(1 0 0); color: var(--ink); box-shadow: none; }
.plan.is-hero .plan__cta:hover { background: var(--paper); color: var(--ink); }

/* 13px bottom margin = the 1em the design inherits from the UA stylesheet. */
.plans__note { font-size: 13px; color: var(--ink-40); margin: 16px 0 13px; }

/* ── 05 · Referenciák ─────────────────────────────────────────────────── */
.section--quotes { padding: 0 0 76px; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { padding: 28px 26px 24px; border-radius: 26px; display: flex; flex-direction: column; gap: 18px; }
.quote:nth-child(1) { background: var(--indigo-soft); }
.quote:nth-child(2) { background: var(--teal-soft); }
.quote:nth-child(3) { background: var(--amber-soft); }
.quote__text { font-size: 19px; font-weight: 600; line-height: 1.4; letter-spacing: -0.02em; flex: 1; }
.quote__by { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: oklch(1 0 0);
  display: grid;
  place-items: center;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--indigo);
  flex: none;
}
.quote__name { display: block; font-size: 14.5px; font-weight: 700; }
.quote__role { display: block; font-size: 13px; color: var(--ink-60); }

/* ── 06 · GYIK ────────────────────────────────────────────────────────── */
.section--faq { padding: 0 0 76px; }

.faq { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.faq__intro { position: sticky; top: 96px; }
.faq__intro .section__title { margin-bottom: 16px; }
.faq__note { font-size: 15.5px; line-height: 1.6; color: var(--ink-60); }

.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  border-radius: 22px;
  background: oklch(1 0 0 / 0.6);
  box-shadow: 0 0 0 1px var(--line);
  overflow: hidden;
  transition: background 0.2s ease;
}
.faq__item.is-open { background: var(--card); }
.faq__item h3 { margin: 0; font-size: inherit; font-weight: inherit; }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.faq__icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--wash-07);
  position: relative;
  transition: background 0.2s ease;
}
.faq__item.is-open .faq__icon { background: var(--indigo); }
.faq__bar { position: absolute; top: 12.5px; left: 7px; width: 12px; height: 1.8px; border-radius: 2px; background: var(--ink-60); }
.faq__bar--v { left: 12.1px; top: 7px; width: 1.8px; height: 12px; transition: transform 0.25s ease; }
.faq__item.is-open .faq__bar { background: oklch(1 0 0); }
.faq__item.is-open .faq__bar--v { transform: scaleY(0); }

.faq__a { padding: 0 70px 24px 24px; font-size: 15px; line-height: 1.62; color: var(--ink-60); }

/* ── 07 · Hírek ───────────────────────────────────────────────────────── */
.section--posts { padding: 0 0 76px; }

.posts__head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.posts__head .section__title--solo { margin-bottom: 0; }
.posts__all { font-size: 14.5px; font-weight: 600; flex: none; }

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post {
  display: block;
  color: inherit;
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 0 0 1px var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.post:hover { color: inherit; box-shadow: 0 14px 34px oklch(0.24 0.03 277 / 0.10), 0 0 0 1px var(--line); }

.post__cover {
  height: 156px;
  display: block;
  position: relative;
  overflow: hidden;
}
.post__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.22 0.04 277 / 0.34), transparent 58%);
  pointer-events: none;
}
.post__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.post:hover .post__cover img { transform: scale(1.035); }
.post__source {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: oklch(1 0 0 / 0.9);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
  box-shadow: 0 5px 16px oklch(0.2 0.03 277 / 0.15);
}
.post__body { display: block; padding: 20px 22px 22px; }
.post__date { display: block; font-size: 11.5px; color: var(--ink-40); }
.post__title { display: block; font-size: 20px; font-weight: 700; letter-spacing: -0.025em; margin: 9px 0 8px; line-height: 1.25; }
.post__lead { display: block; font-size: 14px; line-height: 1.55; color: var(--ink-60); }

/* ── CookieConsent v3 ──────────────────────────────────────────────── */
#cc-main {
  --cc-font-family: "Plus Jakarta Sans", sans-serif;
  --cc-bg: var(--card);
  --cc-primary-color: var(--ink);
  --cc-secondary-color: var(--ink-60);
  --cc-link-color: var(--indigo);
  --cc-btn-primary-bg: var(--indigo);
  --cc-btn-primary-color: oklch(1 0 0);
  --cc-btn-primary-border-color: var(--indigo);
  --cc-btn-primary-hover-bg: var(--indigo-600);
  --cc-btn-primary-hover-color: oklch(1 0 0);
  --cc-btn-primary-hover-border-color: var(--indigo-600);
  --cc-btn-secondary-bg: var(--paper);
  --cc-btn-secondary-color: var(--ink);
  --cc-btn-secondary-border-color: var(--line);
  --cc-btn-secondary-hover-bg: var(--indigo-soft);
  --cc-btn-secondary-hover-color: var(--ink);
  --cc-btn-secondary-hover-border-color: var(--indigo-soft);
  --cc-cookie-category-block-bg: var(--paper);
  --cc-cookie-category-block-border: var(--line);
  --cc-cookie-category-block-hover-bg: var(--indigo-soft);
  --cc-cookie-category-block-hover-border: var(--indigo-soft);
  --cc-cookie-category-expanded-block-bg: var(--paper);
  --cc-toggle-on-bg: var(--indigo);
  --cc-toggle-readonly-bg: var(--ink-40);
  --cc-modal-border-radius: 24px;
  --cc-btn-border-radius: 999px;
  --cc-pm-toggle-border-radius: 999px;
  --cc-overlay-bg: oklch(0.17 0.03 277 / 0.52);
}

.footer__cookie-settings {
  display: inline;
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink-60);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.footer__cookie-settings:hover { color: var(--indigo); }
.footer__cookie-settings:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 4px;
  border-radius: 3px;
}
.footer__cookie-settings:active { color: var(--indigo-600); }

/* ── 08 · Kezdjük el ──────────────────────────────────────────────────── */
.section--signup { padding: 0 0 76px; }

.signup {
  border-radius: 34px;
  background: var(--indigo);
  color: oklch(1 0 0);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.signup__blob {
  position: absolute;
  left: -60px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.09);
}
.signup__copy { position: relative; }
.signup__title { font-size: 48px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 16px; }
.signup__lead { font-size: 17px; line-height: 1.6; color: oklch(1 0 0 / 0.8); max-width: 44ch; }

.signup__card {
  position: relative;
  border-radius: 28px;
  background: oklch(1 0 0);
  color: var(--ink);
  padding: 30px 28px 32px;
  box-shadow: 0 20px 50px oklch(0.3 0.1 277 / 0.3);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: block; }
.field--full { margin-top: 14px; }
.field__label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-40); margin-bottom: 7px; }
.field input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border-radius: 14px;
  border: 0;
  background: var(--wash-05);
  color: var(--ink);
}
.field input::placeholder { color: var(--ink-40); }

.signup__submit {
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 700;
  padding: 15px;
  border-radius: 999px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.2s ease;
}
.signup__submit:hover { background: var(--indigo); }
.signup__terms { margin-top: 14px; font-size: 12.5px; color: var(--ink-40); text-align: center; }

.signup__done { padding: 30px 0; text-align: center; }
.signup__done-mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: grid;
  place-items: center;
}
.signup__done-mark span { width: 14px; height: 14px; border-radius: 50%; background: var(--teal); animation: v2-blink 1.4s ease-in-out infinite; }
.signup__done-title { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.signup__done-text { font-size: 15px; line-height: 1.55; color: var(--ink-60); }

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); }
.footer__grid { padding: 46px 28px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.brand--footer { margin-bottom: 14px; }
.brand--footer .brand__name { font-size: 16px; }
.footer__about { font-size: 14px; line-height: 1.55; color: var(--ink-60); max-width: 34ch; }
.footer__heading { font-size: 12.5px; font-weight: 700; margin-bottom: 14px; color: var(--ink-40); }
.footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__bottom { border-top: 1px solid var(--line); }
.footer__bottom-row { padding: 18px 28px; display: flex; justify-content: space-between; gap: 20px; font-size: 13px; color: var(--ink-40); }

/* ── Legal pages ──────────────────────────────────────────────────────────
   Markup copied verbatim from boostwithdata.hu, restyled with this site's
   tokens. Class names are the source's (.legal, .prose, .stack, .legal__k …).
   ───────────────────────────────────────────────────────────────────────── */
.legal { max-width: 780px; margin: 0 auto; padding: 40px 0 96px; }

.legal__head { padding-bottom: 30px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal__head .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}
.legal__head .h1 { font-size: 44px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
.legal__head .small { font-size: 14.5px; line-height: 1.6; color: var(--ink-60); margin-top: 14px; }

.prose > section { margin-bottom: 34px; }
.prose > section:last-child { margin-bottom: 0; }
.prose h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; }
.prose p { font-size: 15.5px; line-height: 1.68; color: var(--ink-60); }
.prose p + p { margin-top: 12px; }
.prose a { font-weight: 600; }

.prose .stack { display: flex; flex-direction: column; gap: 12px; }
.prose .stack--tight { gap: 7px; }
.prose .stack p + p { margin-top: 0; }

.legal__k { font-weight: 700; color: var(--ink); margin-right: 6px; }

.prose ul { display: flex; flex-direction: column; gap: 10px; }
.legal__li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 15.5px; line-height: 1.68; color: var(--ink-60); }
.legal__marker { color: var(--indigo); font-weight: 700; }

.prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.prose th, .prose td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-weight: 700; color: var(--ink); }
.prose td { color: var(--ink-60); }

/* ==========================================================================
   Responsive — the design is specified at 1440px; these rules carry it down.
   ========================================================================== */

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .hero__title { font-size: 52px; max-width: 18ch; }
  .section__head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps__wire { display: none; }
  .step__card { min-height: 0; }
  .demo { grid-template-columns: 1fr; }
  .profile { position: static; }
  .faq { grid-template-columns: 1fr; gap: 28px; }
  .faq__intro { position: static; }
  .coverage { padding: 36px 32px 32px; }
  .coverage__stats { grid-template-columns: repeat(2, 1fr); }
  .signup { grid-template-columns: 1fr; gap: 36px; padding: 44px 34px; }
  .signup__title { font-size: 40px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .plans { grid-template-columns: 1fr; }
  .plan.is-hero { transform: none; }
  .quotes { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .shell { padding: 0 18px; }
  .legal { padding: 24px 0 64px; }
  .legal__head .h1 { font-size: 32px; }
  .prose h2 { font-size: 19px; }
  .prose table, .prose thead, .prose tbody, .prose tr, .prose th, .prose td { display: block; }
  .prose th { border-bottom: 0; padding-bottom: 4px; }
  .nav__bar { gap: 12px; padding: 0 8px 0 14px; height: 54px; }
  .hero__switch { flex-wrap: wrap; gap: 10px; }
  .hero__title { font-size: 38px; max-width: none; }
  .hero__lead { font-size: 16.5px; }
  .hero__stats { grid-template-columns: 1fr; gap: 18px; }
  .btn { padding: 14px 22px; font-size: 15px; }
  .panel { height: 452px; border-radius: 24px; }
  .feed { height: 244px; }
  .section__title, .section__title--sm { font-size: 32px; }
  .section--steps { padding: 56px 0; }
  .section--demo, .section--coverage, .section--pricing,
  .section--quotes, .section--faq, .section--posts, .section--signup { padding-bottom: 56px; }
  .steps { grid-template-columns: 1fr; }
  .match { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .match__score { text-align: left; }
  .match__title { font-size: 20px; }
  .coverage { padding: 30px 22px 26px; border-radius: 26px; }
  .coverage__stats { grid-template-columns: 1fr; }
  .signup { padding: 34px 22px; border-radius: 26px; }
  .signup__title { font-size: 32px; }
  .signup__card { padding: 24px 20px 26px; }
  .field-row { grid-template-columns: 1fr; }
  .faq__q { font-size: 16.5px; padding: 18px 20px; }
  .faq__a { padding: 0 20px 20px; }
  .posts__head { flex-direction: column; align-items: start; gap: 14px; }
  .footer__grid { grid-template-columns: 1fr; padding: 36px 18px 32px; }
  .footer__bottom-row { flex-direction: column; gap: 8px; padding: 16px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
