@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=DM+Mono:wght@400;500&display=swap');

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

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ink:       #0a0a0a;
  --ink-2:     #2e2e2e;
  --ink-3:     #5a5a5a;
  --paper:     #ffffff;
  --paper-2:   #f5f5f5;
  --paper-3:   #ebebeb;
  --red:       #e8000d;
  --red-dark:  #b5000a;
  --red-pale:  #fff0f0;
  --rule:      #d4d4d4;

  --ff-sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ff-mono:   'DM Mono', 'Courier New', monospace;

  --sz-xs:  clamp(0.65rem, 0.6rem + 0.25vw, 0.75rem);
  --sz-sm:  clamp(0.8rem,  0.75rem + 0.25vw, 0.9rem);
  --sz-base:clamp(0.95rem, 0.9rem + 0.3vw,  1.05rem);
  --sz-md:  clamp(1.05rem, 1rem + 0.4vw,    1.2rem);
  --sz-lg:  clamp(1.2rem,  1.1rem + 0.6vw,  1.5rem);
  --sz-xl:  clamp(1.6rem,  1.3rem + 1.5vw,  2.4rem);
  --sz-2xl: clamp(2rem,    1.5rem + 2.5vw,  3.4rem);
  --sz-3xl: clamp(2.6rem,  2rem + 3.5vw,    5rem);
  --sz-4xl: clamp(3rem,    2.2rem + 5vw,    7rem);

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --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;

  --r-sm:  2px;
  --r-md:  4px;
  --r-lg:  8px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);

  --header-h: 64px;
  --max-w:    1240px;
  --gutter:   clamp(1rem, 4vw, 2.5rem);
}

/* ─── BASE ───────────────────────────────────────────────────── */
body {
  font-family: var(--ff-sans);
  font-size: var(--sz-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── CONTAINER ──────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-sans);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: var(--sz-4xl); }
h2 { font-size: var(--sz-3xl); }
h3 { font-size: var(--sz-xl); }
h4 { font-size: var(--sz-lg); }
h5 { font-size: var(--sz-md); font-weight: 700; }
h6 { font-size: var(--sz-base); font-weight: 600; }

p { color: var(--ink-2); line-height: 1.7; max-width: 68ch; }
p + p { margin-top: var(--sp-4); }

strong { font-weight: 700; color: var(--ink); }
em { font-style: italic; }

.mono {
  font-family: var(--ff-mono);
  font-size: var(--sz-sm);
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-5);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-label {
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-left: 3px solid var(--red);
  padding-left: var(--sp-3);
  margin-bottom: var(--sp-8);
}

/* ─── LINKS ──────────────────────────────────────────────────── */
a.text-link {
  color: var(--red);
  border-bottom: 1px solid currentColor;
  transition: color 0.15s, border-color 0.15s;
}
a.text-link:hover { color: var(--red-dark); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-sans);
  font-size: var(--sz-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--sp-3) var(--sp-6);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
  border-radius: var(--r-sm);
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-ghost:hover {
  background: var(--red);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--paper-2);
  border-color: var(--paper-2);
}

.btn-lg {
  font-size: var(--sz-base);
  padding: var(--sp-4) var(--sp-8);
}

/* ─── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.site-header__wordmark {
  font-size: var(--sz-md);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.site-header__wordmark span {
  color: var(--red);
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.site-header__nav-link {
  font-size: var(--sz-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site-header__nav-link:hover,
.site-header__nav-link[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--red);
}

.site-header__cta {
  margin-left: var(--sp-4);
}

/* Hamburger */
.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}
.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 1px;
}

/* ─── MOBILE NAV ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .site-header__toggle { display: flex; }

  .site-header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--red);
    padding: var(--sp-6) var(--gutter) var(--sp-8);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-5);
    box-shadow: var(--shadow-lg);
  }
  .site-header__nav.is-open { display: flex; }
  .site-header__nav-list { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
  .site-header__nav-link { font-size: var(--sz-base); }
  .site-header__cta { margin-left: 0; }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero-sec {
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-24);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12) var(--sp-16);
  align-items: center;
}

.hero-grid__copy { min-width: 0; }

.hero-grid__title {
  font-size: var(--sz-4xl);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-6);
  color: var(--ink);
}
.hero-grid__title em {
  font-style: normal;
  color: var(--red);
}

.hero-grid__subtitle {
  font-size: var(--sz-md);
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: var(--sp-10);
}

.hero-grid__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.hero-grid__media {
  position: relative;
  min-width: 0;
}

.hero-grid__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.hero-grid__media-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--ink);
  color: #fff;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.hero-grid__media-badge strong {
  display: block;
  font-size: var(--sz-xl);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.hero-grid__media-badge span {
  font-size: var(--sz-xs);
  font-family: var(--ff-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ccc;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .hero-grid__media { display: none; }
  .hero-sec { padding-top: var(--sp-16); padding-bottom: var(--sp-16); }
}

/* ─── GENERIC CONTENT SECTION ────────────────────────────────── */
.content-sec {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
}

.content-sec--alt {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.content-sec__header {
  margin-bottom: var(--sp-8);
  max-width: 72ch;
}

.content-sec__title {
  font-size: var(--sz-3xl);
  margin-bottom: var(--sp-5);
}

.content-sec__lead {
  font-size: var(--sz-md);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 64ch;
}

.content-sec__body {
  columns: 2;
  column-gap: var(--sp-12);
  max-width: 100%;
}
.content-sec__body p {
  break-inside: avoid;
  margin-bottom: var(--sp-5);
}

@media (max-width: 680px) {
  .content-sec__body { columns: 1; }
}

/* ─── CARD GRID ──────────────────────────────────────────────── */
.cards-sec {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
}

.cards-sec--dark {
  background: var(--ink);
  color: #fff;
}
.cards-sec--dark h2,
.cards-sec--dark h3,
.cards-sec--dark h4 { color: #fff; }
.cards-sec--dark p { color: #ccc; }
.cards-sec--dark .section-label { color: #888; border-color: var(--red); }

.cards-sec__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.cards-sec__title { font-size: var(--sz-3xl); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
  transform: translateY(-2px);
}

.cards-sec--dark .card {
  background: #1a1a1a;
  border-color: #333;
  color: #fff;
}
.cards-sec--dark .card:hover { border-color: var(--red); }

.card__num {
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  color: var(--red);
  letter-spacing: 0.1em;
}

.card__icon {
  width: 40px;
  height: 40px;
  background: var(--red-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards-sec--dark .card__icon { background: rgba(232,0,13,0.15); }
.card__icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; }

.card__title {
  font-size: var(--sz-lg);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cards-sec--dark .card__title { color: #fff; }

.card__text {
  font-size: var(--sz-sm);
  color: var(--ink-3);
  line-height: 1.65;
  flex: 1;
}
.cards-sec--dark .card__text { color: #999; }

.card__link {
  font-size: var(--sz-sm);
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  letter-spacing: 0.02em;
  margin-top: auto;
}
.card__link::after { content: '→'; transition: transform 0.15s; }
.card__link:hover::after { transform: translateX(3px); }

@media (max-width: 860px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ─── STATS ROW ──────────────────────────────────────────────── */
.stats-sec {
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
  background: var(--ink);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.stat-item {
  padding: var(--sp-6);
  border-left: 3px solid var(--red);
}

.stat-item__num {
  font-size: var(--sz-3xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.stat-item__num em {
  font-style: normal;
  color: var(--red);
}

.stat-item__label {
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-sec {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
  background: var(--red);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.cta-sec::before {
  content: 'START';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-inner__copy {}

.cta-inner__label {
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-3);
}

.cta-inner__title {
  font-size: var(--sz-2xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  max-width: 22ch;
  margin-bottom: var(--sp-3);
}

.cta-inner__sub {
  font-size: var(--sz-base);
  color: rgba(255,255,255,0.8);
  max-width: 48ch;
}

.cta-inner__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-sec {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-16);
  align-items: start;
}

.faq-layout__sidebar {}

.faq-layout__sidebar-title {
  font-size: var(--sz-2xl);
  margin-bottom: var(--sp-4);
}

.faq-layout__sidebar-sub {
  font-size: var(--sz-sm);
  color: var(--ink-3);
  max-width: 32ch;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  font-size: var(--sz-base);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
}

.faq-item__q::after {
  content: '+';
  font-size: var(--sz-lg);
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.is-open .faq-item__q::after { transform: rotate(45deg); }

.faq-item__a {
  display: none;
  padding-bottom: var(--sp-6);
  font-size: var(--sz-sm);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 60ch;
}
.faq-item.is-open .faq-item__a { display: block; }

@media (max-width: 760px) {
  .faq-layout { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding-top: var(--sp-16);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid #222;
}

.site-footer__brand-col {}

.site-footer__wordmark {
  font-size: var(--sz-lg);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: var(--sp-4);
  display: block;
}
.site-footer__wordmark span { color: var(--red); }

.site-footer__tagline {
  font-size: var(--sz-sm);
  color: #888;
  max-width: 28ch;
  line-height: 1.5;
  margin-bottom: var(--sp-8);
}

.site-footer__social {
  display: flex;
  gap: var(--sp-3);
}
.site-footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: border-color 0.15s, color 0.15s;
}
.site-footer__social-link:hover { border-color: var(--red); color: var(--red); }
.site-footer__social-link svg { width: 16px; height: 16px; fill: currentColor; }

.site-footer__col-title {
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: var(--sp-5);
}

.site-footer__col-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.site-footer__col-link {
  font-size: var(--sz-sm);
  color: #888;
  transition: color 0.15s;
}
.site-footer__col-link:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}

.site-footer__copy {
  font-size: var(--sz-xs);
  color: #555;
  font-family: var(--ff-mono);
}

.site-footer__legal {
  display: flex;
  gap: var(--sp-5);
}
.site-footer__legal-link {
  font-size: var(--sz-xs);
  color: #555;
  font-family: var(--ff-mono);
  transition: color 0.15s;
}
.site-footer__legal-link:hover { color: #fff; }

@media (max-width: 860px) {
  .site-footer__main { grid-template-columns: 1fr 1fr; }
  .site-footer__brand-col { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer__main { grid-template-columns: 1fr; }
}

/* ─── COURSE CARDS (reuse card-grid) ─────────────────────────── */
.course-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}
.course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.course-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--paper-3);
}

.course-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.course-card__track {
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.course-card__title {
  font-size: var(--sz-md);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.course-card__meta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--paper-3);
}

.course-card__meta-item {
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

/* ─── PRICING CARDS ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.pricing-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.pricing-card--featured {
  border-color: var(--red);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: var(--sp-6);
  background: var(--red);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
}

.pricing-card__tier {
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.pricing-card__price {
  line-height: 1;
}
.pricing-card__price strong {
  font-size: var(--sz-3xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.pricing-card__price span {
  font-size: var(--sz-sm);
  color: var(--ink-3);
  margin-left: var(--sp-1);
}

.pricing-card__desc {
  font-size: var(--sz-sm);
  color: var(--ink-3);
  line-height: 1.6;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule);
}

.pricing-card__feat {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--sz-sm);
  color: var(--ink-2);
}
.pricing-card__feat::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--sz-sm);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--sz-base);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,0,13,0.1);
}
.form-input::placeholder { color: #bbb; }

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-3);
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── INLINE BADGE / TAG ─────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px var(--sp-3);
  border-radius: var(--r-sm);
  background: var(--paper-2);
  color: var(--ink-3);
  border: 1px solid var(--rule);
}
.tag--red { background: var(--red-pale); color: var(--red); border-color: transparent; }
.tag--dark { background: var(--ink); color: #fff; border-color: transparent; }

/* ─── DIVIDER ────────────────────────────────────────────────── */
.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: var(--sp-12) 0;
}
.rule--red { border-color: var(--red); }

/* ─── SCROLL REVEAL (utility) ────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ─── LOGO STRIP ─────────────────────────────────────────────── */
.logo-strip {
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.logo-strip__label {
  font-family: var(--ff-mono);
  font-size: var(--sz-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: var(--sp-6);
}
.logo-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-8) var(--sp-12);
}
.logo-strip__item {
  font-family: var(--ff-sans);
  font-size: var(--sz-lg);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--paper-3);
  transition: color 0.15s;
  user-select: none;
}
.logo-strip__item:hover { color: var(--ink-3); }

/* ─── TESTIMONIAL ────────────────────────────────────────────── */
.testimonial-sec {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.testi-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.testi-card__quote {
  font-size: var(--sz-base);
  color: var(--ink);
  line-height: 1.7;
  flex: 1;
  position: relative;
  padding-top: var(--sp-5);
}
.testi-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 0;
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}
.testi-card__author { display: flex; align-items: center; gap: var(--sp-3); }
.testi-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--paper-3);
  flex-shrink: 0;
  object-fit: cover;
}
.testi-card__name { font-size: var(--sz-sm); font-weight: 700; color: var(--ink); }
.testi-card__role { font-family: var(--ff-mono); font-size: var(--sz-xs); color: var(--ink-3); }

@media (max-width: 760px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ─── FOCUS VISIBLE ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}