/* ═════════════════════════════════════════════════════════════════════════
   AIBP ACADEMY — Landing styles
   Notebook brand (cream paper), 3 témaváltozat data-theme attribútumon:
   - mauve   → AI Budapest mentorship-szín (#C4A7E7)
   - purple  → 1337 / notebook lila (#783FF3)
   - terra   → warm peach (#E8A87C)
   A globális theme-notebook.css és handdrawn.css változókat felülírja
   ott, ahol az accent-szín áthatol az UI-n.
   ═════════════════════════════════════════════════════════════════════════ */

/* Inter + DM Mono — a shared/fonts.css nem importálja ezeket, így pótoljuk. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* ─────────── THEME TOKENS ─────────── */
:root {
  --academy-accent: #783FF3;         /* default = purple (V2) */
  --academy-accent-soft: rgba(120,63,243,0.12);
  --academy-accent-strong: #5d24d0;
  --academy-highlight-class: 'purple';
  --hd-highlight-bg: rgba(181,145,255,0.50);
  --paper-warm: #FBFAF4;
  --paper-warm-tint: #F5F3EA;
  --aibp-dark: #0a0a0a;
  --aibp-cream: #F5F0E8;
  --aibp-mauve: #C4A7E7;
}

/* A hd-circle körvonal-színe az accent változón át követhető */
.hd-circle.themed::before { border-color: var(--academy-accent); }

/* ─────────── RESET / GLOBALS ─────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.75rem;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.75rem;
}
.container-reading {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ─────────── LOGO ─────────── */
.aibp-academy-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.aibp-academy-logo .aibp {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.aibp-academy-logo .academy {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  color: var(--academy-accent);
  transform: rotate(-2deg);
  transform-origin: left center;
  letter-spacing: 0.005em;
  position: relative;
  top: 2px;
}
.aibp-academy-logo:hover .academy { color: var(--academy-accent-strong); }

/* V2 — stacked variant */
.aibp-academy-logo-stacked {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18em;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
  position: relative;
}
.aibp-academy-logo-stacked .aibp {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6660;
}
.aibp-academy-logo-stacked .academy {
  font-family: 'Caveat', cursive;
  font-size: 48px;
  font-weight: 700;
  color: var(--academy-accent);
  transform: rotate(-2.5deg);
  letter-spacing: 0.005em;
  margin-left: -2px;
}

/* ─────────── HEADER (sticky) ─────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 250, 244, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-header .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header nav a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6660;
  text-decoration: none;
  transition: color 0.15s;
}
.site-header nav a:hover { color: var(--ink); }
.site-header .nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1.5px solid var(--ink);
  background: var(--academy-accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 2px;
  transform: rotate(-0.5deg);
  transition: transform 0.15s, box-shadow 0.15s;
}
.site-header .nav-cta:hover {
  transform: rotate(-0.5deg) translate(-1px, -1px);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.18);
}
@media (max-width: 860px) {
  .site-header nav { display: none; }
}

/* ─────────── §1 HERO ─────────── */
.hero {
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero .kicker {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #6b6660;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 0 0 1.5rem;
  color: var(--ink);
  max-width: 17ch;
}
.hero .lede {
  font-family: 'Inter', sans-serif;
  font-size: 1.22rem;
  line-height: 1.55;
  color: #2a2722;
  max-width: 56ch;
  margin: 0 0 2rem;
}
.hero .lede strong { font-weight: 600; }

.signup-form {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  max-width: 560px;
  margin: 0 0 0.8rem;
  flex-wrap: wrap;
}
.signup-form input[type="email"] {
  flex: 1 1 280px;
  min-width: 0;
  padding: 0.95rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: rgba(255,255,255,0.7);
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.signup-form input[type="email"]:focus {
  border-color: var(--academy-accent);
  box-shadow: 0 0 0 3px var(--academy-accent-soft);
}
/* Hero / final-CTA submit gomb — sárga ferde (a 00-intro .continue-cta-ból) */
.signup-form button {
  padding: 0.95rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  background: #FFE94D;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  cursor: pointer;
  transform: rotate(-0.5deg);
  transition: transform 0.15s, box-shadow 0.15s;
}
.signup-form button:hover {
  transform: rotate(-0.5deg) translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.18);
}

/* Általános újrahasznosítható ferde sárga CTA — pricing kártyáknál is */
.btn-tilted-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--ink);
  background: #FFE94D;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  border-radius: 2px;
  transform: rotate(-0.5deg);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.btn-tilted-yellow:hover {
  transform: rotate(-0.5deg) translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.18);
}
.btn-tilted-yellow .arrow {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  line-height: 1;
}

/* Semleges CTA (ingyenes oszlophoz, kontrasztban a sárgával) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s, transform 0.15s;
}
.btn-outline:hover {
  background: rgba(0,0,0,0.06);
  transform: translate(-1px, -1px);
}
.signup-note {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  color: #6b6660;
  margin: 0.5rem 0 0;
  transform: rotate(-1deg);
  transform-origin: left center;
  display: inline-block;
}
.hero .sub-cta {
  display: inline-block;
  margin-top: 1.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  text-decoration-color: var(--academy-accent);
}
.hero .sub-cta:hover { color: var(--academy-accent-strong); }

.hero-margin-note {
  position: absolute;
  right: 3%;
  top: 36%;
  max-width: 200px;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--ink);
  transform: rotate(2deg);
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero-margin-note { display: none; }
}

/* ─────────── SIDE-NOTE (újrahasznosított margó-jegyzet a landinghez) ─────────── */
.side-note {
  position: absolute;
  max-width: 200px;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  z-index: 3;
  pointer-events: none;
}
.side-note.right { right: 1.5rem; transform: rotate(2deg); transform-origin: left center; }
.side-note.left  { left: 1.5rem;  transform: rotate(-2deg); transform-origin: right center; text-align: right; }
.side-note.purple { color: var(--academy-accent-strong); }
.side-note.muted  { color: #6b6660; }
.side-note .arrow-curl {
  display: block;
  font-size: 1.6rem;
  margin-top: 0.2rem;
}

/* A landing sok szekciója `position: relative`, hogy a side-note-ok rögzüljenek. */
.hero, .manifesto, .pillars, .course-preview, .audience, .journey, .behind-academy, .faq, .final-cta {
  position: relative;
}

@media (max-width: 1280px) {
  .side-note { max-width: 160px; font-size: 1.15rem; }
}
@media (max-width: 1024px) {
  .side-note { display: none; }
}

/* ─────────── §2 MANIFESTO ─────────── */
.manifesto {
  padding: 4.5rem 0 4rem;
  border-top: 1px dashed rgba(0,0,0,0.18);
}
.manifesto .section-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #6b6660;
  margin-bottom: 1.3rem;
}
.manifesto h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 2rem;
  color: var(--ink);
  max-width: 22ch;
}
.manifesto p {
  font-size: 1.12rem;
  line-height: 1.7;
  margin: 0 0 1.4rem;
  color: #2a2722;
  max-width: 60ch;
}
.manifesto .tagline-pull {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--academy-accent);
  line-height: 1.25;
  margin: 2.5rem 0 0;
  transform: rotate(-1deg);
  display: inline-block;
}

/* ─────────── §3 PILLARS (4 cards) ─────────── */
.pillars {
  padding: 5rem 0 4.5rem;
  border-top: 1px dashed rgba(0,0,0,0.18);
}
.pillars .section-head {
  margin-bottom: 3rem;
  max-width: 60ch;
}
.pillars .section-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #6b6660;
  margin-bottom: 0.9rem;
}
.pillars h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.pillars .section-lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2a2722;
  margin: 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1024px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pillars-grid { grid-template-columns: 1fr; } }

.pillar-card {
  position: relative;
  padding: 1.6rem 1.4rem 1.7rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.18);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pillar-card:nth-child(odd)  { transform: rotate(-0.3deg); }
.pillar-card:nth-child(even) { transform: rotate(0.3deg); }
.pillar-card:hover {
  border-color: rgba(0,0,0,0.4);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.pillar-card .pillar-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--academy-accent-strong);
  margin-bottom: 0.6rem;
}
.pillar-card .pillar-kicker.muted { color: #888; }
.pillar-card h3 {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.pillar-card .pillar-body {
  font-size: 0.97rem;
  line-height: 1.55;
  color: #444;
  margin: 0 0 1.3rem;
  flex: 1;
}
.pillar-card .pillar-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--academy-accent-strong);
  margin-top: auto;
}

/* ─────────── §4 COURSE PREVIEW ─────────── */
.course-preview {
  padding: 5rem 0 4.5rem;
  border-top: 1px dashed rgba(0,0,0,0.18);
}
.course-preview .section-head {
  margin-bottom: 2.5rem;
  max-width: 60ch;
}
.course-preview h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.course-preview .sub-headline {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--academy-accent);
  margin: 0;
  transform: rotate(-1deg);
  display: inline-block;
}
.module-strip-host {
  margin: 2.5rem 0 2rem;
  width: 100%;
  position: relative;
  min-height: 280px;
}
.module-strip-host svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.course-cta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.course-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.95rem 1.3rem;
  border: 1.5px solid var(--ink);
  background: #FFE94D;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  transform: rotate(-0.5deg);
  transition: transform 0.15s, box-shadow 0.15s;
}
.course-cta:hover {
  transform: rotate(-0.5deg) translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.18);
}
.course-cta .arrow { font-family: 'Caveat', cursive; font-size: 1.4rem; line-height: 1; }
.course-cta-aside {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: #6b6660;
}

/* ─────────── §5 AUDIENCE ─────────── */
.audience {
  padding: 4.5rem 0;
  border-top: 1px dashed rgba(0,0,0,0.18);
}
.audience .section-head { margin-bottom: 2.5rem; max-width: 60ch; }
.audience h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  position: relative;
  padding: 1.4rem 1.5rem 1.5rem 2rem;
  background: rgba(255,255,255,0.4);}
.audience-card h3 {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  color: var(--ink);
  transform: rotate(-0.5deg);
  display: inline-block;
}
.audience-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: #2a2722;
  margin: 0;
}

/* ─────────── §6 JOURNEY ─────────── */
.journey {
  padding: 5rem 0 4.5rem;
  border-top: 1px dashed rgba(0,0,0,0.18);
}
.journey .section-head {
  margin-bottom: 1.5rem;
  max-width: 60ch;
}
.journey h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.journey-host {
  margin: 2rem 0 1.5rem;
  width: 100%;
  position: relative;
  min-height: 240px;
}
.journey-host svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.journey-aside {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #6b6660;
  margin-top: 1rem;
  transform: rotate(-1deg);
  display: inline-block;
}

/* ─────────── §7 PRICING ─────────── */
.pricing {
  padding: 5.5rem 0 5rem;
  border-top: 1px dashed rgba(0,0,0,0.18);
  position: relative;
}
.pricing .section-head { margin-bottom: 3rem; max-width: 60ch; }
.pricing .section-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: #6b6660;
  margin-bottom: 0.9rem;
}
.pricing h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.pricing .section-lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2a2722;
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.8rem 1.6rem 2rem;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.55);
  transition: transform 0.18s, box-shadow 0.18s;
}
.price-card:nth-child(1) { transform: rotate(-0.3deg); }
.price-card:nth-child(2) { transform: rotate(0.3deg); }
.price-card:nth-child(3) { transform: rotate(-0.4deg); }

.price-card.featured {
  background: rgba(120, 63, 243, 0.05);
  border: 1.5px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.08);
}
.price-card.featured:hover {
  transform: rotate(-0.4deg) translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0,0,0,0.12);
}

.price-card .price-badge {
  position: absolute;
  top: -14px; left: 1.5rem;
  padding: 0.25rem 0.7rem;
  background: var(--academy-accent);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  transform: rotate(-2deg);
}
.price-card .price-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #6b6660;
  margin-bottom: 0.6rem;
}
.price-card.featured .price-kicker { color: var(--academy-accent-strong); }
.price-card h3 {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 0.4rem;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.price-card .price-target {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.4;
  color: #555;
  margin: 0 0 1.5rem;
  min-height: 2.6em;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 1.2rem 0 1.4rem;
}
.price-amount .num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-amount .unit {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #6b6660;
}
.price-amount .free {
  font-family: 'Caveat', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--academy-accent);
  line-height: 1;
  transform: rotate(-2deg);
  display: inline-block;
}
.price-amount.placeholder .num { color: #aaa; }
.price-note {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: #6b6660;
  margin: -0.6rem 0 1.3rem;
}
.price-discount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: -0.4rem 0 1.3rem;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 233, 77, 0.45);
  border: 1px dashed rgba(0,0,0,0.25);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  transform: rotate(-1deg);
  line-height: 1.3;
}
.price-discount .strong {
  font-weight: 700;
}
.price-strike {
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  color: #6b6660;
  margin: -0.6rem 0 0.5rem;
}
.price-strike .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.55);
  text-decoration-thickness: 1.5px;
  margin-right: 0.35em;
}
.price-strike .strong {
  color: var(--academy-accent-strong);
  font-weight: 700;
}

.price-features {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  font-size: 0.97rem;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
}
.price-features li {
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-top: 1px dashed rgba(0,0,0,0.10);
}
.price-features li:first-child { border-top: none; padding-top: 0; }
.price-features li::before {
  content: '+';
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--academy-accent);
  flex-shrink: 0;
}
.price-features li.muted {
  color: #999;
}
.price-features li.muted::before {
  content: '·';
  color: #ccc;
}

.price-card .price-cta {
  align-self: flex-start;
}

/* Pricing margó-jegyzet */
.pricing-aside {
  margin: 2rem 0 0;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #6b6660;
  text-align: center;
}
.pricing-aside a {
  color: var(--academy-accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────── §8a BEHIND THE ACADEMY (founders + transparency) ─────────── */
.behind-academy {
  padding: 5.5rem 0 4.5rem;
  position: relative;
}
.behind-academy .section-head {
  margin-bottom: 3rem;
  max-width: 60ch;
}
.behind-academy h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}
.behind-academy .transparency-block {
  max-width: 720px;
  margin: 0 0 3.5rem;
  padding: 1.4rem 1.6rem 1.4rem 1.8rem;  background: rgba(255,255,255,0.4);
}
.behind-academy .tp-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--academy-accent-strong);
  margin: 0 0 0.8rem;
}
.behind-academy .transparency-block p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2a2722;
  margin: 0 0 0.8rem;
}
.behind-academy .transparency-block p:last-child { margin-bottom: 0; }
.behind-academy .transparency-block strong { font-weight: 600; }
.behind-academy .team-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 920px;
}
.behind-academy .team-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.behind-academy .team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  filter: contrast(0.95) saturate(0.9);
}
.behind-academy .team-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.behind-academy .team-role {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6660;
  margin: 0 0 0.5rem;
}
.behind-academy .team-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #2a2722;
  margin: 0 0 0.6rem;
}
.behind-academy .team-quote {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 0.4rem 0 0;
}
@media (max-width: 720px) {
  .behind-academy .team-pair {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ─────────── §8 FAMILY (dark AI Budapest) ─────────── */
.family {
  background: var(--aibp-dark);
  color: var(--aibp-cream);
  padding: 5.5rem 0 5rem;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}
.family::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(196,167,231,0.06), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(196,167,231,0.04), transparent 60%);
  pointer-events: none;
}
.family .container { position: relative; }
.family .section-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aibp-mauve);
  margin-bottom: 1.5rem;
}
.family h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0 0 1.5rem;
  color: var(--aibp-cream);
  max-width: 22ch;
}
.family h2 em {
  font-style: italic;
  font-weight: 500;
}
.family .family-lede {
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(245,240,232,0.75);
  margin: 0 0 2.5rem;
  max-width: 60ch;
}
.family .family-lede a {
  color: var(--aibp-cream);
  text-decoration: underline;
  text-decoration-color: var(--aibp-mauve);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.family-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 860px) { .family-products { grid-template-columns: 1fr; } }
.family-product {
  padding: 1.5rem 1.4rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,240,232,0.10);
  text-decoration: none;
  color: var(--aibp-cream);
  transition: border-color 0.2s, transform 0.2s;
}
.family-product:hover {
  border-color: var(--aibp-mauve);
  transform: translateY(-3px);
}
.family-product .fp-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aibp-mauve);
  margin-bottom: 0.7rem;
}
.family-product h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 0.7rem;
  color: var(--aibp-cream);
}
.family-product h3 em { font-style: italic; }
.family-product p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(245,240,232,0.65);
  margin: 0;
}
.family-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.85rem 1.3rem;
  border: 1.5px solid var(--aibp-mauve);
  background: transparent;
  color: var(--aibp-cream);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.family-cta:hover {
  background: var(--aibp-mauve);
  color: var(--aibp-dark);
}

/* §10 SZELLŐS CSALÁD-VÁLTOZAT — bővített spacing, advisory-block, margin-note */
.family--expanded { padding: 7.5rem 0 7rem; margin-top: 6rem; }
.family--expanded .container-narrow { position: relative; max-width: 920px; }
.family--expanded .family-lede { margin: 0 0 3.2rem; max-width: 64ch; }
.family--expanded .family-products { gap: 1.8rem; margin-top: 1.4rem; }
.family--expanded .family-product { padding: 1.9rem 1.7rem; min-height: 240px; display: flex; flex-direction: column; }
.family--expanded .family-product p { margin-top: 0.4rem; font-size: 0.95rem; line-height: 1.6; }
.family--expanded .family-product p em {
  display: block;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(245,240,232,0.12);
  font-style: normal;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aibp-mauve);
}

.family-margin-note {
  position: absolute;
  top: 0.5rem;
  right: -0.5rem;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--aibp-mauve);
  transform: rotate(3deg);
  pointer-events: none;
  max-width: 11ch;
}
@media (max-width: 1100px) {
  .family-margin-note { display: none; }
}

.family-advisory-block { margin-top: 4rem; padding-top: 3rem; border-top: 1px dashed rgba(245,240,232,0.15); }
.family-advisory-block .advisory-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aibp-mauve);
  margin-bottom: 1rem;
}
.family--expanded .advisory-card {
  display: block;
  padding: 2.2rem 2rem;
  background: rgba(196,167,231,0.04);
}
.family--expanded .advisory-card h3 { font-size: 1.6rem; margin: 0 0 0.9rem; }
.family--expanded .advisory-card p { font-size: 1rem; line-height: 1.65; margin: 0 0 1.1rem; }
.family--expanded .advisory-card .advisory-cta {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--aibp-mauve);
  border-bottom: 1.5px solid var(--aibp-mauve);
  padding-bottom: 0.1rem;
}

.family--expanded .family-cta { margin-top: 3rem; }

/* AI Budapest wordmark a family szekcióban */
.aibp-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--aibp-cream);
  line-height: 1;
  letter-spacing: 0.005em;
}
.aibp-wordmark em {
  font-style: italic;
  font-weight: 500;
}

/* ─────────── §9 FAQ ─────────── */
.faq {
  padding: 5rem 0 4.5rem;
  border-top: 1px dashed rgba(0,0,0,0.18);
}
.faq .section-head { margin-bottom: 2.5rem; max-width: 60ch; }
.faq h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.faq-list { max-width: 720px; }
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.15);
  padding: 1.2rem 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.15); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--ink);
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--academy-accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '–';
  transform: translateY(-1px);
}
.faq-item .faq-body {
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #2a2722;
  max-width: 64ch;
}
.faq-item .faq-body a {
  color: var(--academy-accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────── §10 FINAL CTA ─────────── */
.final-cta {
  padding: 5.5rem 0 5rem;
  border-top: 1px dashed rgba(0,0,0,0.18);
  text-align: left;
}
.final-cta h2 {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 1.5rem;
  transform: rotate(-1deg);
  display: inline-block;
}
.final-cta .final-lede {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #2a2722;
  max-width: 56ch;
  margin: 0 0 2rem;
}
.final-cta .signup-form { max-width: 560px; }
.final-cta .fine-print {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6b6660;
  margin: 0.9rem 0 0;
  max-width: 56ch;
}

/* ─────────── §11 FOOTER ─────────── */
.site-footer {
  background: var(--paper-bg-dark);
  border-top: 1px solid rgba(0,0,0,0.10);
  padding: 3.5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand .footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: #6b6660;
  margin-top: 1rem;
  max-width: 28ch;
  line-height: 1.3;
}
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6660;
  margin: 0 0 1rem;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin: 0.45rem 0; }
.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--academy-accent-strong); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(0,0,0,0.12);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .copyright {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: #888;
}
.footer-bottom .family-link {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  color: var(--academy-accent-strong);
  text-decoration: none;
}
.footer-bottom .family-link em { font-style: italic; }

/* ═════════════════════════════════════════════════════════════════════════
   §margin-note hardening — side-note csak elég széles viewport-on jelenik meg
   ═════════════════════════════════════════════════════════════════════════ */
.side-note { max-width: clamp(170px, 14vw, 200px); }

/* Manifesto + audience side-note-ok közel kerülnek a content-hez 1440px körül
   — toljuk őket kifelé a viewport jobb széléhez (manifesto/audience max-width
   restrictive, így a side-note negatív offset-tel megy kívülre). */
.manifesto .side-note { right: -10rem; }
.audience .side-note { right: -2rem; }

@media (max-width: 1280px) {
  .side-note,
  .hero-margin-note { display: none; }
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 760px) {
  .hero { padding: 3.5rem 0 3.5rem; }
  .manifesto, .pillars, .course-preview, .audience, .journey, .faq, .final-cta { padding: 3.5rem 0; }
  .family { padding: 4rem 0; }
}
