/* ══════════════════════════════════════════
   Prague Phantoms · NIGHT — human edition
   ══════════════════════════════════════════ */
:root {
  --bg:       #0C0826;
  --bgDeep:   #080518;
  --surface:  #161033;
  --surface2: #1F1741;
  --line:     #2C2350;
  --lineDim:  #1C1640;
  --text:     #F1ECE4;
  --dim:      #B3ABCF;
  --faint:    #5E5780;
  --accent:   #F2D75E;

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 65px; }
body { background: var(--bg); color: var(--text); font-family: var(--body); font-size: 14px; line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── util ── */
.mono      { font-family: var(--mono); }
.accent    { color: var(--accent); }
.dim       { color: var(--dim); }
.faint     { color: var(--faint); }
.text-bright { color: var(--text); }
.dot-sep   { width: 4px; height: 4px; background: var(--faint); border-radius: 50%; display: inline-block; margin: 0 8px; vertical-align: middle; }
.border-r  { border-right: 1px solid var(--line); }
.border-b  { border-bottom: 1px solid var(--line); }
.mt-14     { margin-top: 14px; }
.mb-22     { margin-bottom: 22px; }
.body-text { font-size: 17px; line-height: 1.7; color: var(--dim); }
.body-sm   { font-size: 13px; }
.display-sm { font-family: var(--display); font-size: 22px; font-weight: 600; line-height: 1; text-transform: uppercase; letter-spacing: .5px; }

/* ── buttons — square, decisive ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--bg);
  border: none; border-radius: 2px;
  font-family: var(--body); font-size: 13px; font-weight: 800;
  padding: 10px 18px; cursor: pointer;
  transition: background .15s, transform .12s;
  white-space: nowrap; letter-spacing: .02em;
}
.btn-primary:hover { background: #f8e07c; }
.btn-primary.btn-lg { font-size: 15px; padding: 13px 24px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--text);
  border: 1px solid rgba(241,236,228,.3); border-radius: 2px;
  font-family: var(--body); font-size: 15px; font-weight: 600;
  padding: 12px 24px; cursor: pointer;
  transition: border-color .15s, transform .12s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(241,236,228,.7); }

/* ── nav ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled { background: rgba(8,5,24,.98); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 40px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  width: 48px; height: 48px; object-fit: contain; flex-shrink: 0;
}
.nav-brand-name { font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 13px; color: var(--dim); font-weight: 500; cursor: pointer; transition: color .15s; letter-spacing: .03em; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active { border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

/* next training — understated, text-only */
.nav-next {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
  color: var(--accent); padding: 0 4px; white-space: nowrap;
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--text); transition: .2s; }
.nav-mobile { display: none; flex-direction: column; gap: 0; padding: 0 40px 20px; border-top: 1px solid var(--line); }
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 12px 0; border-bottom: 1px solid var(--lineDim); }
.nav-mobile .btn-primary { margin-top: 16px; justify-content: center; border-radius: 2px; }

/* ── hero ── */
.hero {
  margin-top: 65px;
  padding: 80px 40px 64px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  background: var(--bgDeep);
}
/* thin horizontal rule as design element instead of stars/blobs */
.hero::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--line);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 64px; align-items: center; }

.hero-text {}
.hero-eyebrow { display: flex; align-items: center; gap: 0; margin-bottom: 20px; font-size: 10px; letter-spacing: 2.5px; }
.hero-title {
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 112px);
  line-height: .88;
  letter-spacing: -2px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
.hero-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  margin-top: 20px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}
.hero-desc { font-size: 17px; line-height: 1.6; color: rgba(241,236,228,.75); max-width: 460px; margin-top: 24px; }
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; align-items: center; flex-wrap: wrap; }

/* ── stats bar ── */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); background: var(--bgDeep); }
.stat-item { padding: 32px 36px; }
.stat-n { font-family: var(--display); font-size: clamp(40px, 5vw, 60px); line-height: .9; letter-spacing: -2px; font-weight: 800; color: var(--text); }
.stat-n.accent { color: var(--accent); }
.stat-l { font-size: 12px; letter-spacing: .5px; color: var(--dim); margin-top: 10px; text-transform: uppercase; }

/* ── sections ── */
.section { padding: 80px 40px; border-bottom: 1px solid var(--line); }
.section-deep { background: var(--bgDeep); }
/* section label — editorial, not badge */
.section-num { font-family: var(--mono); font-size: 10px; letter-spacing: 3px; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; }
.display-h2 { font-family: var(--display); font-size: clamp(38px, 5vw, 60px); line-height: .9; letter-spacing: -1px; font-weight: 800; text-transform: uppercase; }
.display-h3 { font-family: var(--display); font-size: 32px; letter-spacing: .3px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }

/* ── about ── */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; }
.about-left .body-text { max-width: 520px; margin-top: 28px; }
.about-left .body-text + .body-text { margin-top: 14px; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 36px; max-width: 520px; background: var(--line); border: 1px solid var(--line); }
.fact-card { padding: 18px 20px; background: var(--surface); }
.fact-label { font-size: 10px; letter-spacing: 2px; margin-bottom: 6px; }

/* ── sport — editorial, not equal boxes ── */
.sport-header { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: flex-end; margin-bottom: 48px; }
.sport-desc { margin: 0; font-size: 16px; line-height: 1.7; color: var(--dim); }

/* 4 features — asymmetric 2-row layout */
.features-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature-card {
  background: var(--surface);
  padding: 28px 26px 32px;
  transition: background .15s;
}
.feature-card:hover { background: var(--surface2); }
/* first feature spans two rows — bigger */
.feature-card:first-child { grid-row: span 2; padding: 36px 32px 40px; }

.feature-icon { width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 20px; }
.feature-key  { font-family: var(--display); font-size: clamp(28px, 4vw, 48px); line-height: .9; letter-spacing: -1px; font-weight: 800; }
.feature-card:first-child .feature-key { font-size: clamp(48px, 6vw, 72px); }
.feature-title { font-size: 14px; font-weight: 800; margin-top: 8px; text-transform: uppercase; letter-spacing: .5px; }
.feature-desc  { font-size: 13px; line-height: 1.55; margin-top: 6px; color: var(--dim); }

/* ── training ── */
.training-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 40px; }
/* next training — text strip, no pill/badge */
.next-strip {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase;
  border-top: 1px solid var(--accent); padding-top: 8px;
  white-space: nowrap;
}
.training-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--surface); padding: 32px; }

/* timeline */
.timeline-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; }
.timeline { position: relative; padding-left: 28px; }
.timeline-line { position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.tl-item { position: relative; }
.tl-dot { position: absolute; left: -28px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); }
.tl-dot-hi { background: var(--accent); border-color: var(--accent); }
.tl-content {}
.tl-row { display: flex; align-items: baseline; gap: 16px; }
.tl-time { font-size: 12px; letter-spacing: .5px; min-width: 52px; font-weight: 800; font-family: var(--mono); }
.tl-name  { font-size: 16px; font-weight: 600; }
.tl-desc  { font-size: 13px; color: var(--dim); margin-top: 4px; margin-left: 68px; }
.tl-tags  { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
/* tags — square, minimal */
.tag { padding: 4px 10px; background: transparent; border: 1px solid var(--line); font-size: 11px; color: var(--dim); letter-spacing: .3px; }

/* map card */
.map-head  { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.coords    { font-size: 10px; letter-spacing: 1px; font-family: var(--mono); }
.map-transport { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 14px; background: var(--line); border: 1px solid var(--line); }
.transport-item { padding: 10px 14px; background: var(--surface); }
.transport-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.transport-val   { font-size: 13px; font-weight: 600; }

/* ── join ── */
.join-section { position: relative; }
.join-header  { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 40px; }
.steps-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step-card    { background: var(--surface); padding: 32px 28px 36px; display: flex; flex-direction: column; transition: background .15s; }
.step-card:hover { background: var(--surface2); }
.step-head    { display: flex; align-items: center; gap: 12px; }
/* step number — large, typographic, not a circle badge */
.step-num { font-family: var(--display); font-size: 13px; font-weight: 800; color: var(--accent); letter-spacing: 1px; min-width: 28px; }
.step-label { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; color: var(--faint); text-transform: uppercase; }
.step-title { font-family: var(--display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-top: 24px; letter-spacing: -.5px; text-transform: uppercase; line-height: .9; }
.step-desc  { font-size: 14px; color: var(--dim); margin-top: 10px; line-height: 1.55; }
.join-ctas  { display: flex; gap: 20px; margin-top: 32px; align-items: center; flex-wrap: wrap; }
.inline-link { font-size: 14px; font-weight: 500; color: var(--dim); transition: color .15s; }
.inline-link:hover { color: var(--text); }

/* ── footer ── */
.footer { padding: 64px 40px 28px; background: var(--bgDeep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img {
  width: 58px; height: 58px; object-fit: contain; flex-shrink: 0;
}
.footer-brand-name { font-family: var(--display); font-size: 24px; letter-spacing: 1px; line-height: 1; font-weight: 800; text-transform: uppercase; }
.footer-brand-desc { font-size: 14px; color: var(--dim); line-height: 1.65; max-width: 360px; margin: 0; }
.col-label { font-family: var(--mono); font-size: 9px; letter-spacing: 2.5px; color: var(--faint); margin-bottom: 16px; text-transform: uppercase; }
.footer-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--lineDim); font-size: 14px; }
.footer-support-desc { font-size: 13px; color: var(--dim); line-height: 1.65; margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-family: var(--mono); font-size: 9px; letter-spacing: 2px; color: var(--faint); text-transform: uppercase; }

/* ── responsive ── */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-title       { font-size: clamp(56px, 11vw, 88px); }
  .about-grid       { grid-template-columns: 1fr; gap: 48px; }
  .sport-header     { grid-template-columns: 1fr; gap: 24px; }
  .features-wrap    { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .feature-card:first-child { grid-row: span 1; }
  .training-grid    { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand     { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links        { display: none; }
  .nav-hamburger    { display: flex; }
  .nav-inner        { padding: 6px 20px; }
  .hero, .section, .footer { padding-left: 20px; padding-right: 20px; }
  .hero             { padding-top: 52px; padding-bottom: 52px; }
  .stats-bar        { grid-template-columns: repeat(2,1fr); }
  .stats-bar .border-r:nth-child(2)                       { border-right: none; }
  .stats-bar .stat-item:nth-child(1), .stats-bar .stat-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps-grid       { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom    { flex-direction: column; gap: 8px; text-align: center; }
  .training-header, .join-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-facts      { grid-template-columns: 1fr; }
  .features-wrap    { grid-template-columns: 1fr; }
  .feature-card:first-child { grid-row: span 1; }
}
@media (max-width: 480px) {
  .section { padding-top: 52px; padding-bottom: 52px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   Homepage redesign — based on the 2026 visual direction
   ══════════════════════════════════════════ */
.home-page {
  --bg: #15102F;
  --bgDeep: #120B29;
  --surface: #1F1846;
  --surface2: #2A2159;
  --line: rgba(241,236,228,.12);
  --lineDim: rgba(241,236,228,.07);
  --text: #F1ECE4;
  --dim: #BBB3D6;
  --faint: #948CB5;
  --accent: #F2D75E;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
  background: var(--bg);
  font-family: var(--body);
  font-size: 16px;
}
.home-page #nav { background: rgba(21,16,47,.92); backdrop-filter: blur(14px); border-color: var(--line); }
.home-page .nav-inner { padding: 12px 64px; }
.home-page .nav-logo-img { width: 54px; height: 54px; }
.home-page .nav-brand-name { font-family: var(--display); font-size: 21px; letter-spacing: 1.5px; }
.home-page .nav-links { gap: 8px; }
.home-page .nav-link { padding: 7px 14px; font-family: var(--mono); font-size: 11px; }
.home-page .nav-link.active { color: var(--accent); border-bottom: 2px solid var(--accent); }
.home-page .nav-next { margin-left: 10px; }
.home-page .btn-primary { border-radius: 0; background: var(--accent); color: #15102F; font-family: var(--mono); text-transform: uppercase; font-size: 11px; letter-spacing: .04em; }

.home-page .hero {
  min-height: 720px;
  margin-top: 79px;
  padding: 72px 64px;
  background: linear-gradient(165deg, #15102F 0%, #1A1238 52%, #2A1644 100%);
  display: flex;
  align-items: center;
}
.home-page .hero-inner { width: 100%; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); gap: 72px; }
.home-page .hero-eyebrow { margin-bottom: 20px; color: var(--accent); }
.home-page .hero-title { font-size: clamp(72px, 8vw, 118px); line-height: .86; letter-spacing: -1px; }
.home-page .hero-sub { margin-top: 22px; color: var(--accent); }
.home-page .hero-desc { max-width: 520px; margin-top: 26px; font-size: 19px; color: var(--dim); }
.home-page .hero-ctas { margin-top: 40px; gap: 16px; }
.home-page .hero-ctas .btn-primary,
.home-page .hero-ctas .btn-ghost { padding: 15px 28px; font-family: var(--display); font-size: 20px; text-transform: uppercase; border-radius: 0; }
.home-page .hero-media { width: 100%; aspect-ratio: 1; max-height: 620px; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; }
.home-page .hero-team-photo { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; }

.home-page .stats-bar { max-width: none; padding: 48px 64px; gap: 16px; background: var(--bgDeep); border: 0; }
.home-page .stat-item { padding: 28px 18px; text-align: center; background: linear-gradient(160deg, rgba(241,236,228,.06), rgba(241,236,228,.012)); border: 1px solid var(--line) !important; border-radius: 4px; transition: border-color .15s; }
.home-page .stat-item:hover { border-color: rgba(242,215,94,.35) !important; }
.home-page .stat-n { font-size: 56px; color: var(--accent); letter-spacing: 0; }
.home-page .stat-l { margin-top: 6px; font-family: var(--mono); font-size: 10px; }

.home-page .section { padding: 120px 64px; border-color: var(--line); }
.home-page .section-num { font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.home-page .display-h2 { font-size: clamp(44px, 5vw, 64px); line-height: 1.05; letter-spacing: .01em; }
.home-page .display-h3 { font-size: 38px; }
.home-page .body-text { font-size: 18px; color: var(--dim); }
.home-page .about-grid { grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); align-items: center; gap: 80px; }
.home-page .about-left .body-text { max-width: 650px; }
.home-page .about-facts { margin-top: 42px; padding-left: 18px; border: 0; border-left: 2px solid var(--accent); background: transparent; gap: 36px; }
.home-page .fact-card { padding: 0; background: transparent; }
.home-page .about-photo-wrap { aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; }
.home-page .about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s; }
.home-page .about-photo-wrap:hover .about-photo { transform: scale(1.025); }

.home-page .section-deep { background: var(--bgDeep); }
.home-page .sport-header { display: block; text-align: center; margin-bottom: 56px; }
.home-page .sport-desc { max-width: 800px; margin: 26px auto 0; }
.home-page .features-wrap { grid-template-columns: repeat(4,1fr); grid-template-rows: auto; gap: 24px; background: transparent; border: 0; }
.home-page .feature-card,
.home-page .feature-card:first-child { grid-row: auto; padding: 34px 28px; text-align: center; background: rgba(19,19,21,.72); border: 1px solid var(--line); border-radius: 4px; }
.home-page .feature-icon { margin: 0 auto 18px; }
.home-page .feature-key,
.home-page .feature-card:first-child .feature-key { font-size: 36px; letter-spacing: 0; }
.home-page .feature-title { color: var(--accent); }
.home-page .feature-card:hover { border-color: rgba(242,215,94,.4); }

.home-page .training-header { display: block; margin-bottom: 56px; }
.home-page .next-strip { margin-top: 20px; width: fit-content; }
.home-page .training-grid { display: block; max-width: 980px; margin: 0 auto; border: 0; background: transparent; }
.home-page .training-grid .card { padding: 0; background: transparent; }
.home-page .training-grid .card:first-child { padding-left: 52px; border-left: 1px solid rgba(205,199,176,.24); }
.home-page .timeline-head { margin-bottom: 34px; }
.home-page .timeline { padding-left: 0; }
.home-page .timeline-line { display: none; }
.home-page .tl-item { margin-bottom: 42px !important; }
.home-page .tl-dot { left: -60px; top: 7px; width: 15px; height: 15px; background: var(--bg); border: 2px solid rgba(205,199,176,.35); }
.home-page .tl-dot-hi { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 14px rgba(242,215,94,.35); }
.home-page .tl-row { gap: 28px; }
.home-page .tl-time { min-width: 92px; font-family: var(--display); font-size: 48px; font-weight: 800; color: var(--text); }
.home-page .tl-name { font-size: 21px; text-transform: uppercase; }
.home-page .tl-desc { margin-left: 120px; font-size: 15px; }
.home-page .tl-tags { display: none; }
.home-page .training-grid .card:nth-child(2) { margin-top: 68px; padding: 28px; background: var(--surface2); border-top: 2px solid var(--accent); border-radius: 4px; }
.home-page .map-transport { border: 0; }

.home-page .join-header { display: block; }
.home-page .join-header .body-text { max-width: 620px !important; margin-top: 22px !important; }
.home-page .steps-grid { gap: 24px; background: transparent; border: 0; overflow: visible; }
.home-page .step-card { position: relative; min-height: 260px; padding: 34px 30px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 4px; }
.home-page .step-card:hover { border-color: var(--accent); background: var(--surface); }
.home-page .step-num { position: absolute; top: -18px; right: 12px; font-size: 92px; color: rgba(205,199,176,.055); }
.home-page .step-label { display: none; }
.home-page .step-title { margin-top: 40px; color: var(--accent); font-size: 38px; }
.home-page .step-desc { font-size: 16px; }
.home-page .join-ctas { margin-top: 36px; }

.home-page .footer { padding: 88px 64px 24px; background: linear-gradient(180deg, #0F0B24 0%, #1F1140 100%); }
.home-page .footer-grid { align-items: center; }
.home-page .footer-logo-img { width: 64px; height: 64px; padding: 0; background: transparent; border: 0; }
.home-page .footer-brand-name { font-size: 34px; }
.home-page .footer-row { border-color: var(--line); }

@media (max-width: 1100px) {
  .home-page .nav-inner { padding-left: 28px; padding-right: 28px; }
  .home-page .nav-links { gap: 2px; }
  .home-page .nav-link { padding-left: 8px; padding-right: 8px; }
  .home-page .hero { padding-left: 32px; padding-right: 32px; }
  .home-page .hero-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .home-page .section, .home-page .footer { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 900px) {
  .home-page .hero { min-height: 0; padding-top: 54px; }
  .home-page .hero-inner { grid-template-columns: 1fr; }
  .home-page .hero-media { max-height: 520px; }
  .home-page .about-grid { grid-template-columns: 1fr; }
  .home-page .features-wrap { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .home-page .nav-inner { padding: 8px 16px; }
  .home-page .nav-logo-img { width: 46px; height: 46px; }
  .home-page .hero { margin-top: 63px; padding: 48px 16px 64px; }
  .home-page .hero-title { font-size: clamp(40px, 14vw, 72px); }
  .home-page .hero-desc { font-size: 17px; }
  .home-page .hero-media { aspect-ratio: 4 / 3; border-radius: 4px; }
  .home-page .stats-bar { padding: 32px 16px; }
  .home-page .section { padding: 84px 16px; }
  .home-page .features-wrap { grid-template-columns: 1fr; }
  .home-page .training-grid .card:first-child { padding-left: 34px; }
  .home-page .tl-dot { left: -42px; }
  .home-page .tl-time { min-width: 72px; font-size: 38px; }
  .home-page .tl-desc { margin-left: 100px; }
  .home-page .footer { padding-left: 16px; padding-right: 16px; }
}
