/* =====================================================
   PÉNZÜGYES — "AURORA" LANDING DESIGN SYSTEM
   v1 — a márkajel-render nyelve weben:
   fénymező (nem háttérszín) · éltelen felületek ·
   fekete tárgy + zöld kontakt-árnyék · lebegő gömbök · szemcse
   Önálló rendszer: az index.html CSAK ezt tölti be.
   ===================================================== */

/* ============ BETŰK ============ */
@font-face { font-family:'ResistSansDisplay'; src:url('assets/fonts/ResistSansDisplay-Regular.otf') format('opentype'); font-weight:400; font-display:swap; }
@font-face { font-family:'ResistSansDisplay'; src:url('assets/fonts/ResistSansDisplay-Medium.otf') format('opentype'); font-weight:500; font-display:swap; }
@font-face { font-family:'ResistSansDisplay'; src:url('assets/fonts/ResistSansDisplay-Bold.otf') format('opentype'); font-weight:700; font-display:swap; }
@font-face { font-family:'ResistSansText'; src:url('assets/fonts/ResistSansText-Regular.otf') format('opentype'); font-weight:400; font-display:swap; }
@font-face { font-family:'ResistSansText'; src:url('assets/fonts/ResistSansText-Medium.otf') format('opentype'); font-weight:500; font-display:swap; }
@font-face { font-family:'ResistSansText'; src:url('assets/fonts/ResistSansText-Bold.otf') format('opentype'); font-weight:700; font-display:swap; }

/* ============ TOKENEK ============ */
:root {
  /* tinta — a jel tiszta feketéje, épp csak zöldre hangolva */
  --ink:        #06110b;
  --ink-2:      #12271b;
  --body:       #55675c;
  --muted:      #8a998f;
  --faint:      #a9b6ac;

  /* fénymező */
  --paper:      #fbfdf8;
  --clearing:   #ffffff;

  /* márkafény */
  --lime:       #c6ff3d;
  --lime-2:     #a9ee2a;
  --lime-soft:  #e4ff9c;
  --lime-text:  #3c7500;   /* lime SZÖVEGKÉNT csak így — a nyers neon olvashatatlan */
  --mint:       #86ecd2;
  --aqua:       #5fd8e6;
  --pine:       #123829;

  /* éltelen felületek */
  --glass:      rgba(255, 255, 255, 0.72);
  --hair:       rgba(10, 40, 25, 0.07);
  --hair-2:     rgba(10, 40, 25, 0.12);

  /* árnyékok — a kontakt-árnyék mindig ZÖLD, sosem szürke */
  /* Halk emeles: az app egyaltalan nem hasznal arnyekot, itt is csak annyi kell,
     hogy a feher lap elvaljon a fenymezotol. */
  --lift-1: 0 1px 2px rgba(16,58,36,.03), 0 8px 18px -16px rgba(16,58,36,.16);
  --lift-2: 0 1px 0 rgba(255,255,255,.85) inset, 0 1px 3px -2px rgba(16,58,36,.05),
            0 16px 30px -26px rgba(22,74,44,.16), 0 34px 60px -54px rgba(140,215,60,.26);
  --lift-3: 0 1px 0 rgba(255,255,255,.85) inset, 0 2px 6px -3px rgba(16,58,36,.07),
            0 24px 44px -32px rgba(22,74,44,.2), 0 46px 80px -64px rgba(140,215,60,.34);
  --glow-lime: 0 12px 28px -18px rgba(150,225,45,.4);

  --r-sm: 16px;
  --r:    26px;
  --r-lg: 38px;
  --r-xl: 48px;

  --display: 'ResistSansDisplay', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --text:    'ResistSansText', system-ui, -apple-system, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);

  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  color: var(--ink);
  background: transparent;
  font-family: var(--text);
  font-size: 15.5px;
  line-height: 1.6;
  /* `clip`, NEM `hidden`: az `overflow: hidden` a body-t gorgeto konteneerre
     valtja, ami MEGOLI a leszarmazottak `position: sticky`-jet (ez nemitotta el
     a kalkulatorok ragado eredmeny-paneljet). A `clip` ugyanugy levagja a
     vizszintes tullogast, de nem hoz letre scrollportot. */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--lime); color: var(--ink); }

/* =====================================================
   1. A FÉNYMEZŐ — nem háttérszín, hanem világítás.
   Széles, ellentétes sarkokból beúszó lime + aqua mezők,
   középen majdnem tiszta fehér tisztás. Semmi éle nincs.
   ===================================================== */
.aurora {
  position: fixed;
  inset: -20vh -10vw;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: var(--paper);
}
.aurora::after {
  /* a középső tisztás: kivilágosítja a lap magját, hogy a szöveg mindig fehéren üljön */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(64% 54% at 50% 40%, #ffffff 0%, rgba(255,255,255,.94) 40%, rgba(255,255,255,.55) 64%, rgba(255,255,255,0) 84%);
}
.wave {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.wave-lime {
  width: 84vw; height: 78vw;
  top: -32vw; left: -30vw;
  background: radial-gradient(circle at 50% 50%,
    rgba(205,255,80,.82) 0%, rgba(219,255,130,.48) 32%, rgba(234,255,180,.2) 56%, rgba(255,255,255,0) 74%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.wave-aqua {
  width: 64vw; height: 60vw;
  top: 4vw; left: -28vw;
  background: radial-gradient(circle at 50% 50%,
    rgba(120,226,236,.42) 0%, rgba(158,240,218,.26) 40%, rgba(255,255,255,0) 72%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
.wave-lime-2 {
  width: 92vw; height: 84vw;
  right: -36vw; bottom: -40vw; left: auto; top: auto;
  background: radial-gradient(circle at 50% 50%,
    rgba(200,255,70,.78) 0%, rgba(220,255,135,.46) 34%, rgba(238,255,195,.18) 58%, rgba(255,255,255,0) 76%);
  animation: drift-c 30s ease-in-out infinite alternate;
}
.wave-aqua-2 {
  width: 48vw; height: 46vw;
  right: -14vw; top: 36vw; left: auto;
  background: radial-gradient(circle at 50% 50%,
    rgba(135,232,232,.32) 0%, rgba(175,244,222,.16) 45%, rgba(255,255,255,0) 72%);
  animation: drift-b 38s ease-in-out infinite alternate-reverse;
}
@keyframes drift-a { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(4vw, 3vw, 0) scale(1.08); } }
@keyframes drift-b { from { transform: translate3d(0,0,0) scale(1.04); } to { transform: translate3d(-3vw, 4vw, 0) scale(1); } }
@keyframes drift-c { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-5vw,-3vw, 0) scale(1.07); } }

/* Szemcse — ez fogja meg a sávosodást, és ettől lesz "fotós" a felület */
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .38;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

/* Szekciónkénti lebegő gömbök — mélység és lépték, mint a renderen */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.5) 22%, rgba(255,255,255,0) 46%),
    radial-gradient(circle at 62% 74%, rgba(198,255,61,.55) 0%, rgba(214,255,130,.32) 45%, rgba(240,255,205,.12) 72%, rgba(255,255,255,0) 100%);
  box-shadow: 0 24px 44px -34px rgba(120,190,60,.34), 0 0 0 1px rgba(255,255,255,.35) inset;
  filter: blur(.4px);
  animation: bob 14s ease-in-out infinite alternate;
}
.orb-aqua {
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.5) 22%, rgba(255,255,255,0) 46%),
    radial-gradient(circle at 62% 74%, rgba(95,216,230,.5) 0%, rgba(150,238,220,.3) 45%, rgba(226,250,246,.1) 72%, rgba(255,255,255,0) 100%);
  box-shadow: 0 24px 44px -34px rgba(70,180,190,.28), 0 0 0 1px rgba(255,255,255,.35) inset;
}
.orb-blur { filter: blur(6px); opacity: .8; }
@keyframes bob { from { transform: translate3d(0,0,0); } to { transform: translate3d(0,-22px,0); } }

/* =====================================================
   2. TIPOGRÁFIA
   ===================================================== */
h1, h2, h3 { font-family: var(--display); font-weight: 500; color: var(--ink); }

/* A méretskála NEM megy rá a saját tipográfiát hozó különálló oldalakra
   (.own-typo) — ott a 84px-es h1 kilógatta a sort. */
body:not(.own-typo) h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: .98;
  letter-spacing: -.045em;
}
body:not(.own-typo) h2 {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
body:not(.own-typo) h3 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.025em;
}
/* ott is fekete szó + fénytócsa legyen a kiemelés, ne zöld szöveg */
.own-typo h1 .hl, .own-typo h2 .hl, .own-typo h3 .hl { color: var(--ink); }

/* Két tónus — a mondat halkuló folytatása */
.dim { color: var(--faint); }

/* A márka-pillanat: a szó FEKETE TÁRGY, alatta zöld fénytócsa — mint a jel a renderen */
.hl {
  position: relative;
  z-index: 0;
  white-space: nowrap;
  background: none;      /* a styles.css filc-gradiensét kell leszedni */
  border-radius: 0;
}
.hl::before {
  content: '';
  position: absolute;
  left: -.1em; right: -.1em;
  bottom: -.04em;
  height: .44em;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(158,245,26,.9) 0%, rgba(198,255,61,.5) 42%, rgba(224,255,150,.16) 68%, rgba(255,255,255,0) 100%);
  filter: blur(13px);
}

/* Görgetésre színeződő szavak */
.tint-w { color: #bfc9c1; transition: color .45s ease; }
.tint-w.lit { color: var(--ink-2); }

/* Szekciócímke — halk, kapszula nélkül (AI-slop pill TILOS) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--text);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow {
  border: none;
  background: none;
  padding: 0;
  border-radius: 0;
}
.eyebrow::before {
  content: '';
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198,255,61,.28), 0 4px 10px rgba(150,220,50,.55);
}
.eyebrow.center { justify-content: center; }

/* =====================================================
   3. LAYOUT
   ===================================================== */
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; }
section { position: relative; }
.section-pad { padding: 112px 0; }
@media (max-width: 860px) { .section-pad { padding: 78px 0; } }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p {
  margin-top: 20px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.62;
}

.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--lime-2), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9999;
  transition: transform .08s linear;
  pointer-events: none;
}

/* =====================================================
   4. FELÜLETEK — se keret, se él. Fehér lap zöld fényárnyékon.
   ===================================================== */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 100%);
  border-radius: var(--r-lg);
  box-shadow: var(--lift-2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--lift-3); }

/* Sötét változat — a "fekete tárgy a fényben" */
.card-ink {
  background: linear-gradient(168deg, #0d1c14 0%, #06110b 100%);
  color: #eef4ef;
  box-shadow: 0 24px 48px -34px rgba(10,40,24,.36), 0 54px 90px -70px rgba(140,215,60,.3);
}
.card-ink h3, .card-ink h2 { color: #fff; }

/* =====================================================
   5. GOMBOK — fekete tárgy, alatta zöld fény
   ===================================================== */
.btn {
  --pad-y: 13px;
  --pad-x: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: var(--text);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -.012em;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  will-change: transform;
}
.btn-ink {
  background: var(--ink);
  color: #fff;
  padding-right: 8px;
  box-shadow: 0 10px 24px -16px rgba(6,17,11,.45), var(--glow-lime);
}
.btn-ink:hover { box-shadow: 0 14px 30px -16px rgba(6,17,11,.55), 0 18px 38px -20px rgba(150,225,45,.55); }
.btn-ink .arrow {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  transition: transform .3s var(--ease);
}
.btn-ink:hover .arrow { transform: translateX(3px); }

.btn-glass {
  background: var(--glass);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--hair) inset, 0 1px 0 rgba(255,255,255,.9) inset, 0 14px 28px -18px rgba(16,58,36,.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  backdrop-filter: blur(14px) saturate(1.5);
}
.btn-glass:hover { background: rgba(255,255,255,.92); box-shadow: 0 0 0 1px var(--hair-2) inset, 0 18px 34px -18px rgba(16,58,36,.5); }
.btn-glass .arrow { transition: transform .3s var(--ease); }
.btn-glass:hover .arrow { transform: translateX(4px); }

/* =====================================================
   6. NAV — folyékony üveg, keret nélkül
   ===================================================== */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 28px;
  width: calc(100% - 32px);
  max-width: 1160px;
  height: 62px;
  padding: 0 10px 0 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  -webkit-backdrop-filter: blur(22px) saturate(1.7);
  backdrop-filter: blur(22px) saturate(1.7);
  box-shadow: 0 0 0 1px rgba(255,255,255,.6) inset, 0 1px 0 rgba(255,255,255,.9) inset,
              0 10px 26px -16px rgba(16,58,36,.35);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.nav.nav-shrunk {
  height: 56px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 0 0 1px rgba(255,255,255,.7) inset, 0 1px 0 rgba(255,255,255,.9) inset,
              0 16px 40px -20px rgba(16,58,36,.45);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-right: auto;
}
.nav-logo .mark { height: 21px; width: auto; flex: none; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: color .25s ease, background .25s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.75); }
.nav-chip {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  vertical-align: 1px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px -12px rgba(6,17,11,.45), 0 10px 22px -14px rgba(150,225,45,.38);
  transition: transform .2s var(--ease), box-shadow .3s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 11px 24px -12px rgba(6,17,11,.55), 0 14px 30px -16px rgba(150,225,45,.5); }
@supports (animation-timeline: scroll()) {
  .nav {
    animation: nav-shrink linear both;
    animation-timeline: scroll();
    animation-range: 0 140px;
  }
  @keyframes nav-shrink {
    to {
      height: 56px;
      background: rgba(255,255,255,.84);
      box-shadow: 0 0 0 1px rgba(255,255,255,.7) inset, 0 1px 0 rgba(255,255,255,.9) inset,
                  0 16px 40px -20px rgba(16,58,36,.45);
    }
  }
}
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav { padding-left: 18px; }
}

/* =====================================================
   7. HERO — a jel a fényben áll, ahogy a renderen
   ===================================================== */
.hero {
  position: relative;
  padding: 168px 0 90px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 860px) { .hero { padding: 130px 0 60px; } }

.hero .orb-1 { width: 168px; height: 168px; top: 140px; right: 4%; }
.hero .orb-2 { width: 104px; height: 104px; top: 470px; left: 5%; animation-delay: -6s; }
.hero .orb-3 { width: 58px; height: 58px; top: 300px; left: 16%; animation-delay: -3s; }
@media (max-width: 1100px) { .hero .orb-1, .hero .orb-2, .hero .orb-3 { display: none; } }

/* A jel talapzata: fekete tárgy + zöld kontakt-árnyék alatta */
.mark-stage {
  position: relative;
  display: inline-grid;
  place-items: center;
  margin-bottom: 44px;
}
.mark-stage .mark {
  height: 86px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 16px 22px rgba(6,17,11,.18));
  animation: mark-float 7s ease-in-out infinite alternate;
}
.mark-stage::after {
  /* a szignatúra: az árnyék nem szürke, hanem telített lime — színes fény veti */
  content: '';
  position: absolute;
  bottom: -20px;
  width: 150px; height: 46px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(126,236,20,.85) 0%, rgba(170,245,70,.45) 42%, rgba(220,255,160,.14) 68%, rgba(255,255,255,0) 100%);
  filter: blur(13px);
  z-index: 1;
  animation: shadow-breathe 7s ease-in-out infinite alternate;
}
@keyframes mark-float { from { transform: translateY(0); } to { transform: translateY(-9px); } }
@keyframes shadow-breathe { from { transform: scale(1); opacity: 1; } to { transform: scale(.88); opacity: .78; } }

.hero h1 { max-width: 15ch; margin: 0 auto; }
.hero-sub {
  max-width: 54ch;
  margin: 26px auto 0;
  color: var(--body);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.62;
}
.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 34px;
  font-size: 13.5px;
  color: var(--body);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .check {
  display: grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(150,220,50,.5);
}

/* Halk feature-sor */
.proof-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 34px;
  margin-top: 58px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--faint);
}
.proof-item { display: inline-flex; align-items: center; }
.proof-item + .proof-item::before {
  content: '';
  flex: none;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(150,220,50,.9);
  box-shadow: 0 0 6px rgba(170,235,60,.9);
  margin-left: -19px;
  margin-right: 15px;
}

/* Hero vizuál: a telefon is TÁRGY a fényben */
.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 46px;
  margin-top: 82px;
  text-align: left;
}
@media (max-width: 900px) { .hero-stage { grid-template-columns: 1fr; gap: 40px; } }

.hero-panel {
  position: relative;
  padding: 40px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: var(--lift-2);
}
.hero-panel-copy {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.22;
  letter-spacing: -.032em;
  color: var(--ink);
}
.hero-panel-team {
  display: block;
  /* a jelenet kifut a lap széléig — így kép helyett SZÍNTÉR lesz belőle;
     a hattere tiszta feherre van vilagositva, a multiply beleolvasztja a lapba */
  width: calc(100% + 44px);
  height: auto;   /* kulonben a HTML height-attributum prezentacios hintje nyujtja a kepet */
  max-width: none;
  margin: 10px -22px 20px;
  mix-blend-mode: multiply;
}
.hero-panel .hero-store-btns { display: none; }
@media (max-width: 560px) {
  .hero-panel-team { width: calc(100% + 28px); margin: 6px -14px 16px; }
}
@media (max-width: 900px) {
  /* telefonon a QR-t nem tudod beszkennelni: helyette a bolti gombok.
     .hero-panel .qr-card kell — a .qr-card alap-szabalya KESOBB all a fajlban,
     azonos specificitassal feluliírna. */
  .hero-panel .qr-card { display: none; }
  .hero-panel .hero-store-btns { display: flex; justify-content: center; margin-top: 4px; }
}
@media (max-width: 560px) {
  .hero-panel { padding: 26px 22px; }
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--r);
  background: rgba(250,252,246,.9);
  box-shadow: 0 0 0 1px var(--hair) inset, 0 12px 26px -18px rgba(16,58,36,.4);
}
.qr-card img { width: 68px; height: 68px; flex: none; border-radius: 10px; }
.qr-card-title { font-weight: 700; font-size: 14px; color: var(--ink); }
.qr-card-desc { font-size: 12.5px; color: var(--body); line-height: 1.45; margin-top: 3px; }

.phone-stage { position: relative; display: grid; place-items: center; }
.phone-stage::after {
  content: '';
  position: absolute;
  bottom: -30px;
  width: 78%; height: 90px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(126,236,20,.6) 0%, rgba(170,245,70,.3) 45%, rgba(255,255,255,0) 100%);
  filter: blur(24px);
}
.phone {
  position: relative;
  z-index: 1;
  width: 274px;
  aspect-ratio: 9 / 19.5;
  border-radius: 44px;
  padding: 8px;
  background: linear-gradient(160deg, #16241c 0%, #05100a 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14) inset,
    0 26px 48px -34px rgba(6,17,11,.38),
    0 50px 84px -66px rgba(140,215,60,.5);
  overflow: hidden;
  animation: mark-float 9s ease-in-out infinite alternate;
}
.phone-screen { width: 100%; height: 100%; border-radius: 37px; overflow: hidden; background: #0a0a0a; }
.phone-screenshot-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* =====================================================
   8. MISSZIÓ + PILLÉREK
   ===================================================== */
.statement-quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.13;
  letter-spacing: -.04em;
  color: var(--ink);
  max-width: 20ch;
}
.statement-quote .dim { color: var(--faint); }

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px var(--hair) inset, 0 16px 34px -22px rgba(16,58,36,.5);
}
.avatar-stack { display: flex; }
.avatar-stack span {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  margin-right: -10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #fff, 0 4px 10px -4px rgba(16,58,36,.4);
  font-size: 15px;
}
.avatar-stack .plus {
  background: var(--lime);
  font-family: var(--text);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink);
  margin-right: 0;
}
.trust-pill-text { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.trust-pill-text small { display: block; font-size: 12px; font-weight: 400; color: var(--body); }
.trust-note { font-size: 14px; color: var(--body); max-width: 30ch; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
}
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  padding: 34px 30px 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.84) 100%);
  box-shadow: var(--lift-2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--lift-3); }
.pillar-num {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.pillar-num::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(198,255,61,.3);
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--body); font-size: 15px; line-height: 1.6; }

/* =====================================================
   9. SZIMULÁTOR + KASSZÁK
   ===================================================== */
.simulator-card { padding: 34px 36px; margin-bottom: 22px; }
@media (max-width: 700px) { .simulator-card { padding: 26px 22px; } }
.sim-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}
.sim-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.sim-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(198,255,61,.3);
}
.sim-title { font-family: var(--display); font-weight: 500; font-size: 24px; letter-spacing: -.03em; }
.sim-value-display {
  font-family: var(--display);
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
}
.sim-value-display .currency { font-family: var(--text); font-size: 14px; font-weight: 700; color: var(--body); letter-spacing: 0; }

.sim-controls { display: grid; gap: 26px; }
.sim-slider-wrapper input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--lime-2) 0%, var(--lime) var(--sim-progress, 30%), rgba(10,40,25,.07) var(--sim-progress, 30%));
  outline: none;
  box-shadow: 0 1px 3px rgba(16,58,36,.12) inset;
}
.sim-slider-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  cursor: grab;
  box-shadow: 0 0 0 4px #fff, 0 10px 22px -8px rgba(6,17,11,.7), 0 14px 26px -10px rgba(150,225,45,.8);
  transition: transform .18s var(--ease);
}
.sim-slider-wrapper input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.12); cursor: grabbing; }
.sim-slider-wrapper input[type="range"]::-moz-range-thumb {
  width: 30px; height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px #fff, 0 10px 22px -8px rgba(6,17,11,.7);
}
.sim-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--faint);
}
.sim-ratios-wrapper { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.sim-ratios-label { font-size: 13px; color: var(--body); font-weight: 500; }
.sim-ratio-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.sim-ratio-btn {
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 0 0 1px var(--hair) inset;
  font-size: 13px;
  font-weight: 700;
  color: var(--body);
  transition: all .25s var(--ease);
}
.sim-ratio-btn:hover { color: var(--ink); box-shadow: 0 0 0 1px var(--hair-2) inset; }
.sim-ratio-btn.active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(6,17,11,.7), 0 14px 28px -14px rgba(150,225,45,.7);
}

.budget-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .budget-grid { grid-template-columns: 1fr; } }
.budget-card {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 100%);
  box-shadow: var(--lift-2);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.budget-card::before {
  /* a kassza "színe" fényként ül a lap tetején, nem sávként */
  content: '';
  position: absolute;
  top: -70px; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 140px;
  border-radius: 50%;
  filter: blur(38px);
  opacity: .7;
  pointer-events: none;
}
.budget-spend::before     { background: rgba(198,255,61,.75); }
.budget-save::before      { background: rgba(134,236,210,.8); }
.budget-emergency::before { background: rgba(255,145,124,.6); }
.budget-card:hover { transform: translateY(-5px); box-shadow: var(--lift-3); }
.budget-tag {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.budget-name {
  position: relative;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.03em;
  margin: 6px 0 14px;
}
.budget-amount {
  position: relative;
  font-family: var(--display);
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--ink);
}
.budget-amount span { font-family: var(--text); font-size: 15px; font-weight: 700; color: var(--body); letter-spacing: 0; }
.budget-meter {
  position: relative;
  height: 9px;
  margin: 20px 0 12px;
  border-radius: 999px;
  background: rgba(10,40,25,.07);
  overflow: hidden;
}
.budget-meter-fill {
  height: 100%;
  width: var(--w, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime-2), var(--lime));
  box-shadow: 0 0 14px rgba(170,235,60,.9);
  transition: width .5s var(--ease);
}
.budget-save .budget-meter-fill      { background: linear-gradient(90deg, #4fd6b4, var(--mint)); box-shadow: 0 0 14px rgba(110,225,200,.9); }
.budget-emergency .budget-meter-fill { background: linear-gradient(90deg, #ff8a72, #ffb09e); box-shadow: 0 0 14px rgba(255,150,128,.85); }
.budget-meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  color: var(--body);
}
.budget-desc { position: relative; margin-top: 18px; font-size: 14px; line-height: 1.6; color: var(--body); }

/* =====================================================
   10. STAT-SÁV
   ===================================================== */
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 44px 40px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.74) 100%);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: var(--lift-2);
  text-align: center;
}
@media (max-width: 780px) { .stats-band { grid-template-columns: 1fr; gap: 26px; padding: 32px 24px; } }
.stat-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 56px);
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--ink);
}
.stat-num small { font-family: var(--text); font-size: 15px; font-weight: 700; color: var(--body); letter-spacing: 0; margin-left: 5px; }
.stat-label { margin-top: 12px; font-size: 13.5px; color: var(--body); line-height: 1.5; }

/* =====================================================
   11. SZOKÁS — lépések, széria, XP
   ===================================================== */
.habit-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
@media (max-width: 900px) { .habit-grid { grid-template-columns: 1fr; } }
.habit-flow { padding: 12px 34px 20px; }
@media (max-width: 700px) { .habit-flow { padding: 10px 22px 16px; } }
.habit-step { display: flex; gap: 20px; padding: 24px 0; position: relative; }
.habit-step + .habit-step::before {
  content: '';
  position: absolute;
  top: 0; left: 21px;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, rgba(10,40,25,.1), rgba(10,40,25,0));
}
.habit-step-num {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px var(--hair) inset, 0 10px 22px -14px rgba(16,58,36,.6);
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.habit-step:first-child .habit-step-num {
  background: var(--lime);
  box-shadow: 0 10px 24px -10px rgba(150,225,45,.9);
}
.habit-step-title { font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 5px; }
.habit-step-desc { font-size: 14px; color: var(--body); line-height: 1.55; }

.habit-side { display: grid; gap: 20px; align-content: start; }
.streak-card { padding: 30px 26px; text-align: center; }
.streak-flame { font-size: 34px; line-height: 1; }
.streak-count {
  font-family: var(--display);
  font-weight: 500;
  font-size: 62px;
  letter-spacing: -.05em;
  line-height: 1;
  margin-top: 10px;
  color: var(--ink);
}
.streak-label { font-size: 13px; color: var(--body); margin-top: 4px; }
.streak-days { display: flex; justify-content: center; gap: 6px; margin: 22px 0 16px; }
.streak-day {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(10,40,25,.05);
  font-size: 11px;
  font-weight: 700;
  color: var(--faint);
  transition: all .3s var(--ease);
}
.streak-day.on { background: var(--lime); color: var(--ink); box-shadow: 0 8px 18px -8px rgba(150,225,45,.9); }
.streak-day.today {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0 0 2px var(--lime), 0 8px 18px -10px rgba(150,225,45,.8);
  cursor: pointer;
}
.streak-day.today:hover { transform: scale(1.08); }
.streak-foot { font-size: 12.5px; color: var(--body); line-height: 1.5; }

.xp-card { padding: 26px; }
.xp-row { display: flex; align-items: center; gap: 16px; }
.xp-avatar {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff, #f2f7ec);
  box-shadow: 0 0 0 1px var(--hair) inset, 0 10px 22px -12px rgba(16,58,36,.5);
  font-size: 24px;
}
.xp-name { font-weight: 700; font-size: 14.5px; color: var(--ink); margin-bottom: 8px; }
.xp-bar { height: 8px; border-radius: 999px; background: rgba(10,40,25,.07); overflow: hidden; }
.xp-fill {
  height: 100%;
  width: var(--w, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime-2), var(--lime));
  box-shadow: 0 0 12px rgba(170,235,60,.9);
}
.xp-meta { font-size: 12px; color: var(--body); margin-top: 8px; }
.badges-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 22px; }
.badge {
  padding: 12px 6px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.8);
  box-shadow: 0 0 0 1px var(--hair) inset;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--body);
}
.badge span { display: block; font-size: 19px; margin-bottom: 5px; }
.badge.locked { opacity: .38; }

/* Gondoskodás-trió */
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 940px) { .care-grid { grid-template-columns: 1fr; } }
.care-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 100%);
  box-shadow: var(--lift-2);
}
.care-ink .notif,
.care-light .care-light-badge { margin-top: auto; }
.care-shot { display: grid; place-items: center; gap: 22px; overflow: hidden; }
.care-shot-head { text-align: center; }
.care-shot-num { font-family: var(--display); font-weight: 500; font-size: 38px; letter-spacing: -.045em; line-height: 1; }
.care-shot-label { font-size: 12.5px; color: var(--body); margin-top: 8px; }
.care-shot .phone { width: 208px; margin-bottom: -78px; animation: none; }
.care-ink {
  background: linear-gradient(168deg, #0d1c14 0%, #06110b 100%);
  color: #dfe9e2;
  box-shadow: 0 24px 48px -36px rgba(10,40,24,.38), 0 54px 90px -70px rgba(140,215,60,.32);
}
.care-ink-title { font-family: var(--display); font-weight: 500; font-size: 24px; letter-spacing: -.03em; color: #fff; }
.care-ink-desc { font-size: 14.5px; line-height: 1.6; color: rgba(223,233,226,.72); margin: 12px 0 26px; }
.notif {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.notif-icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 11px;
  background: var(--lime);
  font-size: 19px;
}
.notif-head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(223,233,226,.55);
  margin-bottom: 4px;
}
.notif-title { font-weight: 700; font-size: 14px; color: #fff; }
.notif-body { font-size: 13px; color: rgba(223,233,226,.72); line-height: 1.45; }
.care-light-num { font-family: var(--display); font-weight: 500; font-size: 44px; letter-spacing: -.05em; line-height: 1; }
.care-light-label { font-size: 13px; color: var(--body); margin-top: 6px; }
.care-light-bar { height: 9px; margin: 20px 0 10px; border-radius: 999px; background: rgba(10,40,25,.07); overflow: hidden; }
.care-light-fill {
  height: 100%;
  width: var(--w, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #3fc6d8, var(--aqua));
  box-shadow: 0 0 12px rgba(95,216,230,.9);
}
.care-light-meta { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--body); }
.care-light-desc { margin-top: 18px; font-size: 14px; line-height: 1.6; color: var(--body); }
.care-light-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(198,255,61,.3);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--lime-text);
}

/* =====================================================
   12. AI COACH
   ===================================================== */
.coach-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }
@media (max-width: 940px) { .coach-section { grid-template-columns: 1fr; gap: 36px; } }
.coach-text p { margin-top: 20px; color: var(--body); font-size: 17px; line-height: 1.62; }
.coach-prompts { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 30px; }
.coach-prompt {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 0 0 1px var(--hair) inset;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  text-align: left;
  transition: all .28s var(--ease);
}
.coach-prompt:hover { color: var(--ink); transform: translateX(3px); }
.coach-prompt.active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(6,17,11,.8), 0 18px 36px -16px rgba(150,225,45,.7);
}
.coach-chat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 340px;
  max-height: 460px;
  overflow-y: auto;
  padding: 30px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: var(--lift-2);
}
.coach-msg {
  max-width: 86%;
  padding: 14px 18px;
  border-radius: 22px;
  font-size: 14.5px;
  line-height: 1.55;
}
.coach-msg.user {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: 8px;
  box-shadow: 0 14px 28px -16px rgba(6,17,11,.7);
}
.coach-msg.bot {
  align-self: flex-start;
  background: rgba(240,250,230,.9);
  color: var(--ink-2);
  border-bottom-left-radius: 8px;
  box-shadow: 0 0 0 1px rgba(150,220,50,.22) inset;
}
.coach-msg.bot strong { color: var(--lime-text); font-weight: 700; }
.coach-msg .label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.typing { display: flex; gap: 5px; align-self: flex-start; padding: 16px 20px; border-radius: 22px; background: rgba(240,250,230,.9); }
.typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime-2);
  animation: typing-bounce 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: .18s; }
.typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typing-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-5px); opacity: 1; } }

/* =====================================================
   13. TUDÁS — leckék + közösség
   ===================================================== */
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 940px) { .learn-grid { grid-template-columns: 1fr; } }
.learn-card { padding: 32px 30px; }
.learn-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.lesson-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: 20px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 0 0 1px var(--hair) inset;
  transition: all .3s var(--ease);
}
.lesson-card:hover { background: #fff; transform: translateX(4px); box-shadow: 0 0 0 1px var(--hair-2) inset, 0 14px 26px -18px rgba(16,58,36,.5); }
.lesson-icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 12px;
  background: rgba(10,40,25,.05);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--faint);
}
.lesson-icon.done { background: var(--lime); color: var(--ink); box-shadow: 0 8px 18px -8px rgba(150,225,45,.9); }
.lesson-icon.active { background: var(--ink); color: #fff; box-shadow: 0 8px 18px -8px rgba(6,17,11,.7); }
.lesson-title { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.lesson-meta { font-size: 12px; color: var(--body); margin-top: 2px; }
.lesson-arrow { margin-left: auto; color: var(--faint); transition: transform .3s var(--ease); }
.lesson-card:hover .lesson-arrow { transform: translateX(3px); color: var(--ink); }
.learn-progress { margin-top: 22px; }
.learn-progress-track { height: 8px; border-radius: 999px; background: rgba(10,40,25,.07); overflow: hidden; }
.learn-progress-fill {
  height: 100%;
  width: var(--w, 20%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime-2), var(--lime));
  box-shadow: 0 0 12px rgba(170,235,60,.9);
}
.learn-progress-meta { font-size: 12.5px; color: var(--body); margin-top: 10px; }

.community-card { padding: 34px 32px; }
.community-badge {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 1px rgba(255,255,255,.14) inset;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(223,233,226,.85);
}
.community-card p { color: rgba(223,233,226,.72); font-size: 15px; line-height: 1.62; }
.community-card .lime { color: var(--lime); }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 26px 0; border-radius: var(--r); overflow: hidden; }
.community-stat { padding: 20px 18px; background: rgba(255,255,255,.06); }
.community-stat-num { font-family: var(--display); font-weight: 500; font-size: 28px; letter-spacing: -.04em; color: #fff; }
.community-stat-label { font-size: 12px; color: rgba(223,233,226,.62); margin-top: 4px; }
.community-quote { position: relative; padding-left: 20px; }
.community-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(170,235,60,.8);
}
.community-quote p { font-size: 14.5px; color: rgba(223,233,226,.86); font-style: italic; }
.community-quote-author { font-size: 12px; color: rgba(223,233,226,.5); margin-top: 10px; }

/* =====================================================
   14. KALKULÁTOR-KÁRTYÁK
   ===================================================== */
/* FIGYELEM: a `.kalk-grid` osztaly a KALKULATOR-OLDALAKON az input/eredmeny
   ketosztatu elrendezese (kalkulator.css). Ez a negy oszlopos rács CSAK a
   fooldal kartyasoraé, ezert sajat neven fut — kulonben szethuzza a paneleket. */
.kalk-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .kalk-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .kalk-card-grid { grid-template-columns: 1fr; } }
.kalk-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.84) 100%);
  box-shadow: var(--lift-2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.kalk-card:hover { transform: translateY(-6px); box-shadow: var(--lift-3); }
.kalk-emoji {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 15px;
  background: rgba(198,255,61,.22);
  font-size: 22px;
  margin-bottom: 18px;
}
.kalk-title { font-family: var(--display); font-weight: 500; font-size: 19px; letter-spacing: -.03em; margin-bottom: 8px; }
.kalk-desc { font-size: 13.5px; line-height: 1.55; color: var(--body); flex: 1; }
.kalk-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-size: 13px; font-weight: 700; color: var(--lime-text); }
.kalk-card:hover .kalk-cta .arrow { transform: translateX(4px); }
.kalk-cta .arrow { transition: transform .3s var(--ease); }
.kalk-card-feature { background: linear-gradient(168deg, #0d1c14 0%, #06110b 100%); }
.kalk-card-feature .kalk-title { color: #fff; }
.kalk-card-feature .kalk-desc { color: rgba(223,233,226,.7); }
.kalk-card-feature .kalk-cta { color: var(--lime); }
.kalk-card-feature .kalk-emoji { background: rgba(255,255,255,.1); }

/* =====================================================
   15. KEZDÉS — accordion
   ===================================================== */
.how-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
/* a keskeny hasabban a 56px-es cim negy sorra tort — sajat lepteke van */
.how-wrap h2 { font-size: clamp(28px, 3.2vw, 42px); }
@media (max-width: 900px) { .how-wrap { grid-template-columns: 1fr; gap: 34px; } }
.how-step {
  border-radius: var(--r);
  background: rgba(255,255,255,.72);
  box-shadow: 0 0 0 1px var(--hair) inset;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all .3s var(--ease);
}
.how-step[open] { background: rgba(255,255,255,.95); box-shadow: var(--lift-2); }
.how-step summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
}
.how-step summary::-webkit-details-marker { display: none; }
.how-step-num { font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--faint); }
.how-step-title { font-weight: 700; font-size: 16.5px; color: var(--ink); }
.how-step-plus {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(10,40,25,.05);
  font-size: 16px;
  color: var(--body);
  transition: transform .3s var(--ease), background .3s ease;
}
.how-step[open] .how-step-plus { transform: rotate(45deg); background: var(--lime); color: var(--ink); }
.how-step-body { padding: 0 24px 24px 53px; font-size: 14.5px; line-height: 1.65; color: var(--body); }

.store-btns { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 22px; }

/* Hivatalos App Store / Google Play badge-ek — a műalkotást NEM módosítjuk,
   csak a mögé vetett zöld fényárnyékot adjuk hozzá (a lap nyelve). */
.store-badge {
  display: inline-block;
  line-height: 0;
  transition: transform .2s var(--ease), filter .3s var(--ease);
  filter: drop-shadow(0 8px 16px rgba(6,17,11,.18)) drop-shadow(0 10px 22px rgba(150,225,45,.24));
}
.store-badge img { height: 54px; width: auto; }
.store-badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 11px 20px rgba(6,17,11,.24)) drop-shadow(0 14px 28px rgba(150,225,45,.36));
}
.store-badge-sm img { height: 44px; }
.store-badge.is-soon { position: relative; cursor: default; filter: drop-shadow(0 10px 20px rgba(6,17,11,.16)); }
.store-badge.is-soon:hover { transform: none; }
.soon-tag {
  position: absolute;
  top: -9px; right: -8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--lime);
  font-family: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
  color: var(--ink);
  box-shadow: 0 6px 14px -4px rgba(150,225,45,.9);
}
@media (max-width: 460px) { .store-badge img { height: 46px; } }

/* =====================================================
   16. ZÁRÓ CTA — a jel újra a fényben
   ===================================================== */
.final-cta {
  position: relative;
  padding: 96px 40px 100px;
  border-radius: 56px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(198,255,61,.34) 0%, rgba(255,255,255,0) 68%),
    radial-gradient(60% 80% at 88% 100%, rgba(95,216,230,.26) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.8) 100%);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: var(--lift-3);
}
@media (max-width: 700px) { .final-cta { padding: 62px 22px 66px; border-radius: 36px; } }
.final-cta h2 { max-width: 16ch; margin: 0 auto; }
.final-cta p { max-width: 46ch; margin: 22px auto 0; color: var(--body); font-size: 17px; line-height: 1.6; }
.final-cta .store-btns { justify-content: center; margin-top: 36px; }
.final-cta .mark-stage { margin-bottom: 52px; }
.final-cta .mark-stage .mark { height: 58px; width: auto; }
.final-cta .mark-stage::after { width: 140px; height: 42px; bottom: -16px; }
.final-cta .orb-1 { width: 96px; height: 96px; top: 60px; left: 8%; }
.final-cta .orb-2 { width: 62px; height: 62px; bottom: 70px; right: 10%; animation-delay: -5s; }
@media (max-width: 900px) { .final-cta .orb-1, .final-cta .orb-2 { display: none; } }

/* =====================================================
   17. FOOTER
   ===================================================== */
.footer { position: relative; padding: 96px 0 0; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.04em;
  color: var(--ink);
}
.footer-brand .mark { height: 24px; width: auto; }
.footer-tag { margin: 16px 0 22px; max-width: 34ch; font-size: 14px; line-height: 1.6; color: var(--body); }
.footer-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col a { display: block; padding: 5px 0; font-size: 14px; color: var(--body); transition: color .25s ease, transform .25s var(--ease); }
.footer-col a:hover { color: var(--ink); transform: translateX(3px); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
  padding: 24px 0;
  font-size: 13px;
  color: var(--faint);
  box-shadow: 0 -1px 0 var(--hair);
}
.footer-wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 15.5vw, 232px);
  line-height: .82;
  letter-spacing: -.055em;
  text-align: center;
  color: transparent;
  background: linear-gradient(180deg, rgba(10,40,25,.19) 0%, rgba(10,40,25,0) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
  pointer-events: none;
  margin-top: 20px;
}

/* =====================================================
   18. REVEAL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }

/* Örökölt osztályok (animations.js) */
.rw-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.4em);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal-words].rw-in .rw-word { opacity: 1; transform: translateY(0); }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(10,40,25,.15); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(10,40,25,.28); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* =====================================================
   19. HÍD AZ ÖRÖKÖLT OLDALAKHOZ
   A ~100 aloldal a styles.css + components.css (+ blog.css / kalkulator.css)
   rendszeren fut. Ez a réteg UTOLSÓKÉNT töltődik be, és a régi tokeneket
   ráhangolja az aurora palettára — így a meglévő komponensek maguktól
   átveszik az új nyelvet, markup-átírás nélkül.
   ===================================================== */
:root {
  --bg:            transparent;          /* a hátteret a fénymező adja */
  --bg-2:          #ffffff;
  --bg-3:          rgba(255, 255, 255, .74);
  --fg:            #06110b;
  --fg-dim:        #55675c;
  /* #a9b6ac volt — 1,9:1 kontraszt feheren, a 10–12px-es jegyzetek es
     tengelyfeliratok gyakorlatilag eltuntek. #74837a ≈ 3,5:1: meg halk,
     de mar olvashato. */
  --fg-faint:      #74837a;
  --line:          rgba(10, 40, 25, .055);
  --line-2:        rgba(10, 40, 25, .09);
  --pine:          #06110b;               /* a sötét gomb/kártya mostantól a jel feketéje */
  --pine-2:        #000000;
  --pine-ink:      #06110b;               /* headline: fekete, nem fenyőzöld */
  --lime-on:       #06110b;
  --glass:         rgba(10, 40, 25, .03);
  --glass-2:       rgba(10, 40, 25, .05);
  --shadow-soft:   rgba(16, 58, 36, .10);
  --shadow-strong: rgba(16, 58, 36, .18);
  --radius:        26px;
  --radius-lg:     38px;
  --radius-sm:     16px;
  --grid-pattern:  none;
}

html { background: var(--paper); }
body { background: transparent; }

/* A régi szerkesztőségi díszek nem férnek össze az éltelen fénymezővel */
body::after { display: none !important; }
.sec-ghost,
.deco-bar,
.glow-blob,
.footer-brand .logo-dot,
.nav-logo .logo-dot { display: none !important; }

/* Régi szekciócímke → az aurora halk pontos címkéje */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--text);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.sec-eyebrow::before {
  content: '';
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198,255,61,.28), 0 4px 10px rgba(150,220,50,.55);
}
.sec-eyebrow b { color: var(--ink); }

/* Régi gombok → fekete tárgy zöld fényen / üveg */
.btn-lime {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px -16px rgba(6,17,11,.45), var(--glow-lime);
}
.btn-lime:hover { background: #000; box-shadow: 0 14px 30px -16px rgba(6,17,11,.55), 0 18px 38px -20px rgba(150,225,45,.55); }
.btn-lime .arrow { background: var(--lime); color: var(--ink); }
.btn-ghost {
  background: var(--glass);
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border: none;
  box-shadow: 0 0 0 1px var(--hair) inset, 0 1px 0 rgba(255,255,255,.9) inset, 0 14px 28px -18px rgba(16,58,36,.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  backdrop-filter: blur(14px) saturate(1.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.92); box-shadow: 0 0 0 1px var(--hair-2) inset, 0 18px 34px -18px rgba(16,58,36,.5); }
.btn-pu {
  border: none;
  box-shadow: 0 12px 26px -16px rgba(6,17,11,.5), var(--glow-lime);
}

/* Aktív navigációs elem */
.nav-links a.active {
  color: var(--ink);
  font-weight: 700;
  background: rgba(255,255,255,.8);
}

/* ---- ÖRÖKÖLT FELÜLETEK: keret helyett zöld fényárnyék ---- */
/* CSAK a valodi kartyak — a .kalk-stage / .article-hero / .related layout-burok,
   azokat kartyava tenni eltolta a lapot. */
.kalk-panel,
.kalk-hub-card,
.kalk-related-card,
.blog-card,
.cta-box {
  border: none !important;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 100%);
  box-shadow: var(--lift-2);
}
.kalk-table-wrap { border: none !important; border-radius: var(--r); box-shadow: 0 0 0 1px var(--hair) inset; }

/* Cikk-fejléc: a vissza-link kapjon sajat sort, kulonben a szint-cimkehez tapad */
.article-hero .article-back { display: flex; width: fit-content; margin-bottom: 16px; }
.article-hero .persona-badge { margin-bottom: 4px; }
.kalk-hub-card:hover,
.kalk-related-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lift-3);
}
/* .blog-kviz / .blog-pick csak szekcio-burok (padding) — a kartya a .kviz-band.
   A `.kalk-explain-aside` sem doboz: az a szakaszcimke („03 · Hogyan számolunk?”),
   dobozzá téve üres keretként lógott a szöveg mellett. */
.kalk-callout,
.kalk-disclaimer,
.kviz-band {
  border: none !important;
  border-radius: var(--r);
  box-shadow: 0 0 0 1px var(--hair) inset, 0 18px 40px -26px rgba(16,58,36,.5);
}

/* ===== „Hogyan számolunk?” szakasz =====
   A bal hasáb eredetileg 1fr volt (~435px) egyetlen apró címkének — laptopon
   üres katyúnak látszott. Most keskeny, ragadós címke-hasáb + olvasható
   szélességű szövegtörzs. */
@media (min-width: 900px) {
  .kalk-explain-grid { grid-template-columns: 200px minmax(0, 1fr); gap: 52px; }
  .kalk-explain-aside { position: sticky; top: 100px; }
  .kalk-explain-body { max-width: 760px; }
}
/* A cim itt 56px-es, de a kalkulator.css-ben nincs alatta terkoz: a lelogo
   betuszarak („gy”, „?”) a bekezdes elso soraba ertek. */
.kalk-explain h2 { margin-bottom: 18px; }
.kalk-panel-lime {
  /* a szín itt FÉNY, nem festék — a panel világos marad, hogy a benne lévő
     (világos felülethez tervezett) szövegszínek olvashatók maradjanak */
  background: linear-gradient(168deg, rgba(222,255,168,.6) 0%, rgba(255,255,255,.94) 58%);
  box-shadow: var(--lift-2);
}
/* A `.kalk-field` NEM vezerlo, hanem a mezo LAYOUT-BUROKA (cimke + csuszka).
   Dobozkent kezelve minden beallitas kore keret kerult — kikerult a listabol. */
.kalk-input,
.kalk-toggle,
.kalk-chip {
  border: none !important;
  background: rgba(255,255,255,.8);
  box-shadow: 0 0 0 1px var(--hair) inset;
}
.kalk-input:focus { box-shadow: 0 0 0 2px var(--lime-2) inset, 0 10px 24px -14px rgba(150,225,45,.8); }

/* ===== Csuszka =====
   A regi sin a `--bg-3` tokent hasznalta, amit a hid majdnem-feherre hangolt
   → feher panelen lathatatlan lett. Itt sajat, biztosan lathato sin all, es a
   megtett resz lime-mal ki is tolt (a `--fill`-t a kalkulator.js allitja). */
input[type="range"].kalk-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  outline: none;
  margin: 10px 0 2px;
  background: linear-gradient(90deg,
    var(--lime-2) 0%, var(--lime-2) var(--fill, 0%),
    rgba(10,40,25,.10) var(--fill, 0%), rgba(10,40,25,.10) 100%);
}
input[type="range"].kalk-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  cursor: grab;
  box-shadow: 0 2px 8px -2px rgba(6,17,11,.45);
  transition: transform .15s var(--ease);
}
input[type="range"].kalk-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"].kalk-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.06); }
input[type="range"].kalk-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  cursor: grab;
  box-shadow: 0 2px 8px -2px rgba(6,17,11,.45);
}
input[type="range"].kalk-slider:focus-visible {
  box-shadow: 0 0 0 4px rgba(198,255,61,.5);
}

/* ===== Laptop-ergonomia =====
   A kalkulator-hero eredetileg 150px felso paddinggal es 80px-es cimmel indult:
   egy 900px magas laptop-nezetbol a fel kepernyot elvitte, mielott a kalkulator
   egyaltalan latszott volna. */
.kalk-hero { padding: 116px 0 34px; }
.kalk-hero h1 { font-size: clamp(36px, 4.6vw, 62px); margin-bottom: 16px; }
.kalk-hero p { font-size: clamp(15px, 1.35vw, 17px); }
.kalk-hero-eyebrow { margin-bottom: 16px; }
.kalk-hero-meta { margin-top: 20px; }
.kalk-stage { padding-bottom: 72px; }

/* Az EREDMENY-panel kovesse a gorgetest, hogy a beallitasok allitasa kozben
   vegig lassad, mit valtoztattal. Ha magasabb lenne a nezetnel, sajat gorgetest
   kap — igy a ragadas SOHA nem vagja le az aljat (ez a sticky klasszikus csapdaja).
   A `.kalk-grid` mar `align-items: start`, ami a sticky felteteles. */
/* Merve: az eredmeny-panel tobb oldalon magasabb a beviteli panelnel, ott a
   ragadasnak nincs jatektere — ilyenkor a szabaly egyszeruen tetlen. Ahol van
   (pl. lakashitel, vesztartalek, adossag-snowball), ott vegig latszik az
   eredmeny, mikozben lejjebb allitod a bemeneteket.
   Belso gorgetes (max-height + overflow) SZANDEKOSAN NINCS: az egymasba agyazott
   gorgetosav rosszabb, mint ha a panel egyszeruen kigorog. */
@media (min-width: 1000px) {
  .kalk-grid > .kalk-panel-lime {
    position: sticky;
    top: 92px;
  }

  /* A legtobb oldalon az eredmeny-panel MAGASABB a beviteli panelnel, ott a
     fentinek nincs jatektere. Ezert a panelen BELUL a fo szam ragad meg: barhol
     jarsz a beallitasokban, a vegeredmeny latszik. Fagyos hatteret kap, hogy a
     panel tartalma olvashatoan fusson alatta.
     A `.kalk-panel` `overflow: hidden`-je `clip`-re valt — a `hidden` gorgeto
     konteneert csinal, ami megolne a gyerek sticky-jet, a `clip` viszont
     ugyanugy levagja a lekerekitett sarkoknal, scrollport nelkul. */
  .kalk-panel { overflow: clip; }
  .kalk-panel-lime .kalk-result-hero {
    position: sticky;
    top: 92px;
    z-index: 3;
    margin: 0 -32px;
    padding: 12px 32px 14px;
    /* Majdnem fedett: .82-nel a lecsuszo sorok szamai atutottek a nagy szamon */
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(10,40,25,.07), 0 14px 26px -22px rgba(10,40,25,.35);
  }
  /* Ragadva a nagy szam ne nyomja ki a panelt: rovidebb fokozat. */
  .kalk-panel-lime .kalk-result-value { font-size: clamp(40px, 4.4vw, 62px); }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  .kalk-panel-lime .kalk-result-hero { margin: 0 -22px; padding: 12px 22px 14px; }
}

/* Az `auto-fit` savok akkor is szethuzzak a racsot, ha egy elem min-content
   szelessege nagyobb a savnal (a grid-elem alapbol `min-width: auto`).
   Mobilon ettol logott ki a mutato-racs a panelbol. */
.kalk-result-grid > * { min-width: 0; }

/* ===== Szamok: SOHA nem torhetnek szamjegyek kozott =====
   Az `overflow-wrap: anywhere` a szam KOZEPEN tort sort („140 509 15 / 9 Ft”).
   Helyette: a szam egy sorban marad, es ha nem fer el, a kalkulator.js
   (initNumberFit) zsugoritja a betut a kartyahoz. */
.kalk-result-value,
.kalk-result-mini-value,
.kalk-kassza-amount,
.kalk-gauge-value,
[data-fit] {
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
  max-width: 100%;
}
.kalk-label { flex-wrap: wrap; }
.kalk-label-text { min-width: 0; }
.kalk-label-value {
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: lining-nums tabular-nums;
}

/* A csuszka melletti szammezo: a 110px-es fix oszlop levagta a hosszu
   osszegeket („57 500 00|0”). Az oszlop a tartalomhoz igazodik — a pontos
   szelesseget a kalkulator.js meri ki (initInputAutosize). */
.kalk-slider-row { grid-template-columns: 1fr minmax(116px, max-content); }
.kalk-slider-row .kalk-input {
  font-size: 16px;
  padding: 10px 12px;
  font-variant-numeric: lining-nums tabular-nums;
}

/* ===== Token-serulesek javitasa =====
   A hid `--bg: transparent`-je es majdnem-feher `--bg-3`-ja a regi rendszerben
   HATTER volt: a mutato-kartyak, a chart-doboz es a tabla-fejlec atlatszova
   valt (a panel-szinek atuttek rajtuk), a gauge es a sav-diagram sinje pedig
   eltunt. Itt konkret, mindig lathato szinek allnak. */
.kalk-result-mini,
.kalk-chart,
.kalk-kassza {
  background: rgba(255,255,255,.85);
  border: none;
  box-shadow: 0 0 0 1px var(--hair) inset;
}
.kalk-check {
  background: rgba(255,255,255,.8);
  border: none;
  box-shadow: 0 0 0 1px var(--hair) inset;
}
.kalk-check.checked {
  background: color-mix(in srgb, var(--lime) 16%, #fff);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--lime) 55%, #fff) inset;
}
.kalk-table th { background: #f2f6ee; }
.kalk-bar {
  background: rgba(10,40,25,.07);
  border: none;
  box-shadow: 0 0 0 1px var(--hair) inset;
}
.kalk-gauge-arc-bg { stroke: rgba(10,40,25,.08); }
.kalk-explain-body .formula {
  background: rgba(10,40,25,.045);
  border: none;
  box-shadow: 0 0 0 1px var(--hair) inset;
}

/* ===== Olvashatosag =====
   A hid `--fg-faint`-je (#a9b6ac) 1,9:1 kontrasztu feheren — nagy dekor-
   elemhez jo, a kalkulator 11px-es cimkeihez keves. Azok a dim fokozatot
   kapjak, ami 4,9:1. */
.kalk-panel-title,
.kalk-result-label,
.kalk-result-mini-label,
.kalk-label-hint,
.kalk-hero-eyebrow,
.kalk-gauge-text,
.kalk-kassza-pct,
.kalk-chart-head,
.kalk-input-suffix,
.kalk-table th,
.kalk-result-value .unit { color: var(--fg-dim); }
.kalk-chip.active,
.kalk-toggle.active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(6,17,11,.7), 0 14px 28px -14px rgba(150,225,45,.7);
}
.kalk-hero,
.blog-hero { position: relative; }
.persona-badge { border: none !important; box-shadow: 0 0 0 1px var(--hair) inset; }

/* Az aloldalak főcímei is a jel feketéjét kapják */
.kalk-hero h1, .blog-hero h1, .article-hero h1,
.section-head h2, .statement-quote { color: var(--ink); }

/* Régi .lime accent a címekben: a sötétzöld szöveg helyett fekete szó,
   alatta a lime fénytócsa — ugyanaz a gesztus, mint a .hl-nél. */
/* A specificitást fel kell tornászni: az aloldalak saját .act-hero h1 .lime (0,2,1)
   szabályai különben visszahozzák a régi sötétzöld szöveget. */
body:not(.x) h1 .lime, body:not(.x) h2 .lime, body:not(.x) h3 .lime,
body:not(.x) .statement-quote .lime, body:not(.x) .kalk-hero h1 .lime {
  position: relative;
  z-index: 0;
  color: var(--ink);
}
body:not(.x) h1 .lime::before, body:not(.x) h2 .lime::before, body:not(.x) h3 .lime::before,
body:not(.x) .statement-quote .lime::before, body:not(.x) .kalk-hero h1 .lime::before {
  content: '';
  position: absolute;
  left: -.1em; right: -.1em;
  bottom: -.04em;
  height: .42em;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(158,245,26,.9) 0%, rgba(198,255,61,.5) 42%, rgba(224,255,150,.16) 68%, rgba(255,255,255,0) 100%);
  filter: blur(13px);
}
/* Sötét kártyán a lime marad olvasható accent-szín */
.card-ink .lime, .community-card .lime {
  color: var(--lime);
}
.card-ink .lime::before, .community-card .lime::before { display: none; }

/* Örökölt oldalak sajat, inline token-rendszere: a fenymezo lassek at */
body { background-image: none !important; }

/* Kalkulátor-hero kiemelt szava: fekete szó + lime fénytócsa (mint a .hl) */
.beat-quote em,
.hub-cta h2 em,
.hub-hero h1 em,
.kalk-explain h2 em,
.kalk-hero h1 em,
.security-dont-text em {
  font-style: normal;
  position: relative;
  z-index: 0;
  color: var(--ink);
}
.beat-quote em::before,
.hub-cta h2 em::before,
.hub-hero h1 em::before,
.kalk-explain h2 em::before,
.kalk-hero h1 em::before,
.security-dont-text em::before {
  content: '';
  position: absolute;
  left: -.08em; right: -.08em;
  bottom: -.02em;
  height: .4em;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(158,245,26,.85) 0%, rgba(198,255,61,.45) 42%, rgba(255,255,255,0) 100%);
  filter: blur(13px);
}

/* Sajtószoba saját gombjai (inline rendszer) az aurora nyelvére */
.btn.primary {
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 10px 24px -16px rgba(6,17,11,.45), var(--glow-lime);
}
.btn.primary:hover { background: #000 !important; }
nav.top ~ * .btn:not(.primary),
.btn:not(.primary):not(.btn-lime):not(.btn-ink) {
  border: none;
  background: rgba(255,255,255,.75);
  box-shadow: 0 0 0 1px var(--hair) inset, 0 14px 28px -18px rgba(16,58,36,.4);
}

/* Dekoratív márkapont a címekben — grafikai elem, nem olvasandó szöveg */
.accent-dot { color: var(--lime-2); text-shadow: 0 6px 18px rgba(150,225,45,.8); }
h1 .accent-dot::before, h2 .accent-dot::before { display: none; }  /* egy pont alá nem kell fénytócsa */

/* Űrlapmezők: szürke doboz helyett fehér üveg */
input[type="text"], input[type="email"], input[type="number"], input[type="tel"],
input[type="search"], textarea, select {
  border: none;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.85);
  box-shadow: 0 0 0 1px var(--hair) inset;
  color: var(--ink);
  font-family: var(--text);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px var(--lime-2) inset, 0 12px 26px -16px rgba(150,225,45,.8);
}
::placeholder { color: var(--faint); }

/* A különálló oldalak korábban sticky/statikus navval éltek — a fix nav alá
   csúszott a hero első sora. Ennyi levegő pótolja a kiesett nav-magasságot. */
body.own-typo { padding-top: 58px; }
@media (max-width: 940px) { body.own-typo { padding-top: 48px; } }

/* A fiók-törlés hero-jának sosem volt felső belsője — a fix nav alá csúszott a cím */
.security-hero { padding-top: 148px; }
@media (max-width: 860px) { .security-hero { padding-top: 112px; } }

/* Minden örökölt „zöld szó a címben" szabály felülírása: fekete szó + lime fénytócsa.
   A body:not(.x) prefix csak a specificitást emeli (mindig igaz). */
body:not(.x) .act-hero h1 .lime,
body:not(.x) .closing-h2 .lime,
body:not(.x) .coach-text h2 .lime,
body:not(.x) .contact-faq-head h2 .lime,
body:not(.x) .contact-hero h1 .lime,
body:not(.x) .cookie-closing h2 .lime,
body:not(.x) .cookie-hero h1 .lime,
body:not(.x) .cookie-section-head h2 .lime,
body:not(.x) .final-cta h2 .lime,
body:not(.x) .hero h1 .lime,
body:not(.x) .hero-text-col h1 .lime,
body:not(.x) .hub-cta h2 em,
body:not(.x) .hub-hero h1 em,
body:not(.x) .kalk-explain h2 em,
body:not(.x) .kalk-hero h1 em,
body:not(.x) .legal-hero h1 .lime,
body:not(.x) .numbers-card-v2 h2 .lime,
body:not(.x) .section-head h2 .lime,
body:not(.x) .security-final-cta h2 .lime,
body:not(.x) .security-hero h1 .lime,
body:not(.x) .security-section-head h2 .lime,
body:not(.x) .values-intro h2 .lime {
  font-style: normal;
  position: relative;
  z-index: 0;
  color: var(--ink);
}
body:not(.x) .act-hero h1 .lime::before,
body:not(.x) .closing-h2 .lime::before,
body:not(.x) .coach-text h2 .lime::before,
body:not(.x) .contact-faq-head h2 .lime::before,
body:not(.x) .contact-hero h1 .lime::before,
body:not(.x) .cookie-closing h2 .lime::before,
body:not(.x) .cookie-hero h1 .lime::before,
body:not(.x) .cookie-section-head h2 .lime::before,
body:not(.x) .final-cta h2 .lime::before,
body:not(.x) .hero h1 .lime::before,
body:not(.x) .hero-text-col h1 .lime::before,
body:not(.x) .hub-cta h2 em::before,
body:not(.x) .hub-hero h1 em::before,
body:not(.x) .kalk-explain h2 em::before,
body:not(.x) .kalk-hero h1 em::before,
body:not(.x) .legal-hero h1 .lime::before,
body:not(.x) .numbers-card-v2 h2 .lime::before,
body:not(.x) .section-head h2 .lime::before,
body:not(.x) .security-final-cta h2 .lime::before,
body:not(.x) .security-hero h1 .lime::before,
body:not(.x) .security-section-head h2 .lime::before,
body:not(.x) .values-intro h2 .lime::before {
  content: '';
  position: absolute;
  left: -.08em; right: -.08em;
  bottom: -.02em;
  height: .4em;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(158,245,26,.85) 0%, rgba(198,255,61,.45) 42%, rgba(255,255,255,0) 100%);
  filter: blur(13px);
}

/* Teljes címek (nem inline akcentus): csak a szín kerül tintára, fénytócsa nélkül */
body:not(.x) .medium > h3 { color: var(--ink); }
/* A társalapítói sztori dőlt kiemelése SZÁNDÉKOSAN dőlt — csak a szín változik */
body:not(.x) .founder-story h2 em { font-style: italic; color: var(--ink); }

/* Jogi oldalak (adatvedelem-styles.css): a fenyozold cimek is tintara valtanak */
.privacy-content h1, .privacy-content h2, .privacy-content h3, .privacy-content h4 { color: var(--ink); }
.privacy-content a { color: var(--lime-text); }
