:root {
  --primary: #1d4ed8;
  --bg: #fbf9f4;
  --ink: #16203a;
  --accent: #f59e0b;
  --paper: #ffffff;
  --line: #e5e2da;
  --mute: #5a6070;
  --deep: #0f2169;
  --display: 'Rubik', system-ui, sans-serif;
  --body: 'Rubik', system-ui, sans-serif;
  --r: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--bg); color: var(--ink); line-height: 1.55; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1160px, 92vw); margin-inline: auto; }
h1 { font-size: clamp(28px, 4.8vw, 52px); font-weight: 900; line-height: 1.05; }
h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; line-height: 1.1; }
h3 { font-size: 18px; font-weight: 700; line-height: 1.2; }
p { color: var(--mute); font-size: 15px; }

.eyebrow-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* nav-bar */
.nav-bar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251,249,244,.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--line);
}
.nav-bar__in { display: flex; align-items: center; gap: 20px; height: 64px; }
.logotype {
  font-weight: 900;
  font-size: 22px;
  text-decoration: none;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.logotype__dot {
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
}
.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--mute); transition: color .15s; }
.site-nav a:hover { color: var(--primary); }

/* action buttons */
.action-btn {
  display: inline-flex; align-items: center;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--r);
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: background .15s, transform .12s;
}
.action-btn:hover { background: var(--deep); transform: translateY(-1px); }
.action-btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.action-btn--ghost:hover { background: var(--primary); color: #fff; }
.action-btn--white { background: #fff; color: var(--primary); border: 2px solid #fff; }
.action-btn--white:hover { background: #eef2ff; }
.action-btn--lg { padding: 15px 28px; font-size: 15px; }

/* fullbleed hero */
.fullbleed { padding-bottom: clamp(48px, 6vw, 80px); }
.fullbleed__img { position: relative; }
.fullbleed__img img {
  width: 100%;
  height: clamp(380px, 50vw, 600px);
  object-fit: cover;
  display: block;
}
.fullbleed__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,33,105,.82) 0%, rgba(0,0,0,.15) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}
.fullbleed__text { color: #fff; }
.chip {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.fullbleed__text h1 { color: #fff; max-width: 20ch; }
.fullbleed__sub { padding-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.fullbleed__lead { font-size: clamp(14px, 1.3vw, 17px); max-width: 60ch; }
.fullbleed__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* numbers bar */
.numbers-bar {
  background: var(--ink);
  padding: 28px 0;
}
.numbers-bar__grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.nb-val {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.nb-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.6); margin-top: 4px; display: block; }

/* courts section */
.courts-sec { padding: clamp(52px, 7vw, 84px) 0; background: var(--paper); border-block: 1px solid var(--line); }
.courts-sec__intro { color: var(--mute); max-width: 54ch; margin: 10px 0 32px; }
.courts-sec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.crt {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}
.crt__tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.crt h3 { color: var(--ink); }
.crt p { font-size: 14px; }

/* ranks section */
.ranks-sec {
  padding: clamp(52px, 7vw, 84px) 0;
  background: var(--ink);
}
.ranks-sec__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.ranks-sec__text h2 { color: #fff; margin: 8px 0 14px; }
.ranks-sec__text > p { color: rgba(255,255,255,.72); max-width: 44ch; margin-bottom: 14px; }
.ranks-sec__table { display: grid; gap: 10px; }
.rank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--r);
  background: rgba(255,255,255,.06);
  border-left: 4px solid transparent;
}
.rank-row--1 { border-color: #9ca3af; }
.rank-row--2 { border-color: #6ee7b7; }
.rank-row--3 { border-color: var(--accent); }
.rank-row--4 { border-color: #60a5fa; }
.rank-row--5 { border-color: #f472b6; }
.rr-name { font-weight: 700; font-size: 15px; color: #fff; }
.rr-desc { font-size: 13px; color: rgba(255,255,255,.55); }

/* training section */
.training-sec { padding: clamp(52px, 7vw, 84px) 0; }
.training-sec__sub { color: var(--mute); max-width: 54ch; margin: 10px 0 32px; }
.training-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tg-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.tg-card h3 { font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.tg-card p { font-size: 13.5px; flex: 1; }
.tg-price { margin-top: 14px; font-weight: 700; font-size: 16px; color: var(--primary); display: block; }
.tg-price--free { color: #16a34a; }

/* prices section */
.prices-sec { padding: clamp(44px, 6vw, 72px) 0; background: var(--paper); border-block: 1px solid var(--line); }
.prices-sec__in > h2 { margin-bottom: 24px; }
.prices-list { display: grid; gap: 0; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.price-row span { color: var(--mute); }
.price-row strong { color: var(--ink); font-weight: 700; }

/* come section */
.come-sec { padding: clamp(44px, 6vw, 72px) 0; }
.come-sec__in {
  background: linear-gradient(130deg, var(--primary), var(--deep));
  border-radius: calc(var(--r) + 6px);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.come-sec__in h2 { color: #fff; }
.come-sec__in > div > p { color: rgba(255,255,255,.8); margin-top: 8px; font-size: 14px; }

/* site-foot */
.site-foot { background: var(--ink); padding: 28px 0; }
.site-foot__in { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.5); }

@media (max-width: 900px) {
  .courts-sec__grid { grid-template-columns: 1fr 1fr; }
  .ranks-sec__in { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-bar__grid { gap: 20px; justify-content: flex-start; }
  .site-nav { display: none; }
}
@media (max-width: 520px) {
  .courts-sec__grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .fullbleed__img img { height: 280px; }
}
