/* reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; }
img, video { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

/* tokens */
/* Syne (headings) + Onest (body) — geometric sharpness meets humanist warmth; fits gaming-club not corporate */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Onest:wght@400;500;600&display=swap');

:root {
  /* colors */
  --clr-bg:          #0a0a0f;
  --clr-bg-2:        #111118;
  --clr-bg-3:        #18181f;
  --clr-surface:     #1e1e28;
  --clr-border:      #2a2a38;
  --clr-accent:      #7c3aed;
  --clr-accent-2:    #9d5cf5;
  --clr-neon:        #4ade80;
  --clr-neon-dim:    #22c55e;
  --clr-text:        #e8e8f0;
  --clr-text-muted:  #8888a8;
  --clr-text-dim:    #5a5a7a;
  --clr-white:       #ffffff;
  --clr-error:       #f87171;

  /* typography */
  --ff-head:    'Syne', system-ui, sans-serif;
  --ff-body:    'Onest', system-ui, sans-serif;
  --fs-xs:      0.75rem;
  --fs-sm:      0.875rem;
  --fs-base:    1rem;
  --fs-md:      1.125rem;
  --fs-lg:      1.25rem;
  --fs-xl:      1.5rem;
  --fs-2xl:     2rem;
  --fs-3xl:     2.75rem;
  --fs-4xl:     3.75rem;
  --fs-5xl:     5rem;

  /* spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* layout */
  --max-w:         1200px;
  --max-w-narrow:  760px;
  --header-h:      68px;
  --logo-w:        160px;
  --logo-h:        40px;

  /* radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-pill: 999px;

  /* shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,.4);
  --shadow-md:    0 4px 16px rgba(0,0,0,.5);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.6);
  --shadow-glow:  0 0 24px rgba(124,58,237,.35);
  --shadow-neon:  0 0 16px rgba(74,222,128,.3);

  /* transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.25s ease;
  --t-slow:   0.4s ease;

  /* z-index */
  --z-base:    1;
  --z-above:   10;
  --z-header:  100;
  --z-modal:   200;
  --z-cookie:  300;
  --z-top:     400;
}

/* base */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.65;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-white);
}
p { max-width: 68ch; }
strong { font-weight: 600; color: var(--clr-white); }
a:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container--narrow {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
main {
  padding-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
}
section { padding-block: var(--sp-24); }
.section-label {
  font-family: var(--ff-head);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  margin-bottom: var(--sp-4);
}
.section-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  margin-bottom: var(--sp-4);
}
.section-sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* header */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
  transition: background var(--t-base);
}
#site-header.scrolled { background: rgba(10,10,15,.97); }
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: var(--sp-6);
  overflow: hidden;
}
.trp-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.trp-logo img {
  max-width: var(--logo-w);
  max-height: var(--logo-h);
  width: auto;
  height: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-left: auto;
}
.nav-links a {
  font-family: var(--ff-head);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
  background: var(--clr-surface);
}
.nav-links a.active { color: var(--clr-accent-2); }
.nav-actions { display: flex; align-items: center; }
.btn-nav {
  font-family: var(--ff-head);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-2) var(--sp-6);
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: var(--r-pill);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--clr-accent-2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10,10,15,.98);
  border-bottom: 1px solid var(--clr-border);
  z-index: var(--z-header);
  padding: var(--sp-6);
  flex-direction: column;
  gap: var(--sp-2);
  animation: slideDown var(--t-base) ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-text-muted);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--clr-white); background: var(--clr-surface); }
.mobile-menu .btn-primary { margin-top: var(--sp-4); text-align: center; }

/* buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-head);
  font-size: var(--fs-base);
  font-weight: 700;
  padding: var(--sp-3) var(--sp-8);
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: var(--r-pill);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  border: none;
}
.btn-primary:hover {
  background: var(--clr-accent-2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-head);
  font-size: var(--fs-base);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-8);
  background: transparent;
  color: var(--clr-text);
  border-radius: var(--r-pill);
  border: 1px solid var(--clr-border);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.btn-secondary:hover {
  border-color: var(--clr-accent);
  color: var(--clr-white);
  background: rgba(124,58,237,.1);
}
.btn-ghost {
  font-family: var(--ff-head);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-accent-2);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.btn-ghost:hover { border-color: var(--clr-accent-2); }

/* breadcrumb */
.breadcrumb {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-12);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
}
.breadcrumb li {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.breadcrumb li a { color: var(--clr-text-muted); transition: color var(--t-fast); }
.breadcrumb li a:hover { color: var(--clr-accent-2); }
.breadcrumb li:last-child { color: var(--clr-text); }
.breadcrumb li + li::before { content: '›'; color: var(--clr-text-dim); }

/* station selector — unique component */
.station-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.station-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-6);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
  text-align: left;
}
.station-btn:hover { border-color: var(--clr-accent); background: rgba(124,58,237,.08); transform: translateY(-2px); }
.station-btn.active { border-color: var(--clr-accent); background: rgba(124,58,237,.15); box-shadow: var(--shadow-glow); }
.station-btn .station-icon { font-size: 1.75rem; line-height: 1; }
.station-btn .station-name {
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-white);
}
.station-btn .station-from { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.station-preview {
  margin-top: var(--sp-6);
  padding: var(--sp-8);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  display: none;
}
.station-preview.active { display: block; animation: fadeIn var(--t-base) ease; }
.station-preview h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-4);
}
.station-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.spec-item {
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-bg-3);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
}
.spec-item span { display: block; color: var(--clr-text-muted); font-size: var(--fs-xs); margin-bottom: 2px; }

/* cards */
.card-grid {
  display: grid;
  gap: var(--sp-6);
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.card:hover { border-color: var(--clr-accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card a.card { display: block; color: inherit; }
.card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: var(--clr-bg-3);
}
.card-body { padding: var(--sp-6); }
.card-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  margin-bottom: var(--sp-2);
}
.card-title {
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.card-excerpt { font-size: var(--fs-sm); color: var(--clr-text-muted); line-height: 1.6; }
.card-meta {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

/* price card */
.price-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: border-color var(--t-base), transform var(--t-base);
}
.price-card--featured {
  border-color: var(--clr-accent);
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(10,10,15,0));
  box-shadow: var(--shadow-glow);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--ff-head);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-pill);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-name {
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.price-amount {
  font-family: var(--ff-head);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.price-amount sup { font-size: var(--fs-xl); vertical-align: top; margin-top: var(--sp-2); }
.price-amount sub { font-size: var(--fs-sm); font-weight: 400; color: var(--clr-text-muted); }
.price-desc { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-bottom: var(--sp-6); }
.price-features { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.price-feature svg { flex-shrink: 0; margin-top: 2px; }
.price-feature strong { color: var(--clr-text); }

/* counters */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--ff-head);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-number .accent { color: var(--clr-accent-2); }
.stat-label { font-size: var(--fs-sm); color: var(--clr-text-muted); }

/* testimonials */
.testimonial {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.testimonial-text {
  font-size: var(--fs-md);
  color: var(--clr-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--sp-4);
}
.testimonial-author { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.testimonial-author strong { color: var(--clr-white); display: block; }

/* accordion */
.accordion-item {
  border-bottom: 1px solid var(--clr-border);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-6) 0;
  font-family: var(--ff-head);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-text);
  text-align: left;
  gap: var(--sp-4);
  transition: color var(--t-fast);
}
.accordion-trigger:hover { color: var(--clr-white); }
.accordion-trigger.open { color: var(--clr-accent-2); }
.accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--t-base);
}
.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-slow), padding var(--t-base);
}
.accordion-body.open { max-height: 400px; }
.accordion-content { padding-bottom: var(--sp-6); color: var(--clr-text-muted); line-height: 1.7; }

/* tabs */
.tabs-nav {
  display: flex;
  gap: var(--sp-2);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-8);
}
.tab-btn {
  font-family: var(--ff-head);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-3) var(--sp-6);
  color: var(--clr-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.tab-btn:hover { color: var(--clr-text); }
.tab-btn.active { color: var(--clr-accent-2); border-color: var(--clr-accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn var(--t-base) ease; }

/* page-specific: hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-24);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(124,58,237,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-question {
  font-family: var(--ff-head);
  font-size: clamp(var(--fs-3xl), 7vw, var(--fs-5xl));
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.05;
  margin-bottom: var(--sp-4);
}
.hero-question .hl {
  color: var(--clr-accent-2);
  display: inline;
}
.hero-sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 52ch;
  margin-bottom: var(--sp-10);
}
.hero-choices {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}
.hero-choice-btn {
  font-family: var(--ff-head);
  font-size: var(--fs-base);
  font-weight: 700;
  padding: var(--sp-3) var(--sp-6);
  background: var(--clr-surface);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-base);
}
.hero-choice-btn:hover,
.hero-choice-btn.selected {
  background: rgba(124,58,237,.2);
  border-color: var(--clr-accent);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }
.hero-note { font-size: var(--fs-sm); color: var(--clr-text-dim); }

/* page-specific: article */
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-12);
  background: var(--clr-bg-3);
}
.article-body h2 { font-size: var(--fs-2xl); margin: var(--sp-10) 0 var(--sp-4); }
.article-body h3 { font-size: var(--fs-xl); margin: var(--sp-8) 0 var(--sp-3); color: var(--clr-text); }
.article-body p { margin-bottom: var(--sp-6); color: var(--clr-text-muted); }
.article-body ul, .article-body ol { margin: var(--sp-4) 0 var(--sp-6) var(--sp-6); }
.article-body li { margin-bottom: var(--sp-2); color: var(--clr-text-muted); }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-toc {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-10);
}
.article-toc h4 { font-size: var(--fs-sm); letter-spacing: .1em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: var(--sp-4); }
.article-toc ol { display: flex; flex-direction: column; gap: var(--sp-2); padding-left: var(--sp-4); }
.article-toc li { list-style: decimal; }
.article-toc a { font-size: var(--fs-sm); color: var(--clr-text-muted); transition: color var(--t-fast); }
.article-toc a:hover { color: var(--clr-accent-2); }
.reading-progress {
  position: fixed;
  top: var(--header-h);
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-neon));
  width: 0%;
  z-index: var(--z-header);
  transition: width .1s linear;
}

/* form */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.form-group label { font-size: var(--fs-sm); font-weight: 600; color: var(--clr-text); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  color: var(--clr-text);
  font-size: var(--fs-base);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,.2);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-captcha {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.form-captcha label { font-size: var(--fs-sm); font-weight: 600; color: var(--clr-text-muted); display: block; margin-bottom: var(--sp-3); }
.captcha-row { display: flex; gap: var(--sp-3); align-items: center; }
.captcha-row input {
  max-width: 120px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  color: var(--clr-text);
}
.form-error {
  font-size: var(--fs-sm);
  color: var(--clr-error);
  margin-top: var(--sp-2);
  display: none;
}
.form-error.visible { display: block; }
.form-success {
  padding: var(--sp-6);
  background: rgba(74,222,128,.1);
  border: 1px solid var(--clr-neon-dim);
  border-radius: var(--r-lg);
  color: var(--clr-neon);
  font-weight: 600;
  display: none;
}
.form-success.visible { display: block; }

/* location block */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.location-details { display: flex; flex-direction: column; gap: var(--sp-6); }
.location-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.location-item svg { flex-shrink: 0; margin-top: 2px; }
.location-item-content h4 { font-size: var(--fs-base); font-weight: 700; color: var(--clr-white); margin-bottom: var(--sp-1); }
.location-item-content p { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  text-align: center;
  padding: var(--sp-8);
}

/* page hero (inner pages) */
.page-hero {
  padding: var(--sp-16) 0 var(--sp-12);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(124,58,237,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  font-weight: 800;
  margin-bottom: var(--sp-4);
}
.page-hero-sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 52ch;
}

/* author bio */
.author-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-6);
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
}
.author-initials {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--clr-white);
}
.author-info h4 { font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-1); }
.author-info p { font-size: var(--fs-sm); color: var(--clr-text-muted); }

/* services list */
.service-block {
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--clr-border);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-12);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-meta {}
.service-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid rgba(157,92,245,.3);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.service-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: var(--sp-4);
}
.service-audience {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  font-style: italic;
}
.service-body p { margin-bottom: var(--sp-4); color: var(--clr-text-muted); }
.service-includes {
  margin-top: var(--sp-6);
  padding: var(--sp-6);
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
}
.service-includes h4 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .1em; color: var(--clr-text-muted); margin-bottom: var(--sp-4); }
.service-includes ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.service-includes li { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-sm); color: var(--clr-text-muted); }
.service-includes li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--clr-neon); flex-shrink: 0; }
.service-note {
  margin-top: var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  border-left: 2px solid var(--clr-border);
  padding-left: var(--sp-4);
}

/* footer */
footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-20);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  padding-bottom: var(--sp-16);
}
.footer-slogan {
  font-family: var(--ff-head);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: var(--sp-6);
}
.footer-slogan .hl { color: var(--clr-accent-2); }
.footer-brand-text { font-size: var(--fs-sm); color: var(--clr-text-muted); max-width: 40ch; margin-top: var(--sp-4); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.footer-col h5 {
  font-family: var(--ff-head);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--clr-white); }
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-block: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-copy { font-size: var(--fs-xs); color: var(--clr-text-dim); }
.footer-brand .[prefix]-logo img {
  max-width: calc(var(--logo-w) * 0.9);
  max-height: calc(var(--logo-h) * 0.9);
  width: auto;
  height: auto;
  display: block;
}

/* cookie */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-6);
  display: none;
  animation: slideUp var(--t-slow) ease;
}
#cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.cookie-text { font-size: var(--fs-sm); color: var(--clr-text-muted); flex: 1; min-width: 240px; }
.cookie-text a { color: var(--clr-accent-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }
#cookie-accept {
  font-family: var(--ff-head);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-2) var(--sp-6);
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: var(--r-pill);
  transition: background var(--t-fast);
}
#cookie-accept:hover { background: var(--clr-accent-2); }
#cookie-decline {
  font-family: var(--ff-head);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: var(--sp-2) var(--sp-6);
  background: transparent;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-pill);
  transition: color var(--t-fast), border-color var(--t-fast);
}
#cookie-decline:hover { color: var(--clr-text); border-color: var(--clr-text-muted); }

/* back to top */
#back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 44px;
  height: 44px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-top);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base), background var(--t-fast);
  box-shadow: var(--shadow-glow);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--clr-accent-2); transform: translateY(-3px); }

/* reading progress */
#reading-progress {
  position: fixed;
  top: var(--header-h);
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-neon));
  width: 0%;
  z-index: var(--z-header);
  transition: width .1s linear;
}

/* animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* responsive */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .location-block { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .station-selector { grid-template-columns: 1fr; }
  .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; }
  .hero-question { font-size: clamp(var(--fs-2xl), 8vw, var(--fs-3xl)); }
  section { padding-block: var(--sp-16); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-inner { flex-direction: column; gap: var(--sp-4); }
  .hero-choices { flex-direction: column; }
  .hero-choice-btn { text-align: center; }
}
@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .hero { min-height: 80vh; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
