@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&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%; }
input, button, select, textarea { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:   #0d0d0d;
  --white:   #f5f4f0;
  --concrete:#e8e6df;
  --yellow:  #e8d500;
  --yellow-dk:#b8a800;
  --red:     #d42b2b;
  --red-dk:  #a81f1f;
  --green:   #2e9e5b;
  --border:  #0d0d0d;
  --radius:  0px;
  --shadow-hard: 4px 4px 0 var(--black);
  --shadow-hard-lg: 6px 6px 0 var(--black);
  --ff-sans: 'Space Grotesk', system-ui, sans-serif;
  --ff-mono: 'Space Mono', monospace;
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw,  0.9rem);
  --step-0:  clamp(1rem,    0.96rem + 0.2vw,   1.1rem);
  --step-1:  clamp(1.2rem,  1.1rem  + 0.5vw,   1.4rem);
  --step-2:  clamp(1.44rem, 1.28rem + 0.8vw,   1.8rem);
  --step-3:  clamp(1.73rem, 1.48rem + 1.2vw,   2.4rem);
  --step-4:  clamp(2.07rem, 1.68rem + 2vw,     3.2rem);
  --step-5:  clamp(2.5rem,  1.8rem  + 3.5vw,   4.8rem);
  --space-xs: clamp(0.5rem,  0.4rem + 0.5vw, 0.75rem);
  --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);
  --space-md: clamp(1rem,    0.8rem + 1vw,    1.75rem);
  --space-lg: clamp(1.5rem,  1.2rem + 1.5vw,  2.5rem);
  --space-xl: clamp(2rem,    1.5rem + 2.5vw,  4rem);
  --space-2xl:clamp(3rem,    2rem   + 5vw,    6rem);
}

/* ─── BASE ───────────────────────────────────────────────── */
body {
  font-family: var(--ff-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-sans);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p  { max-width: 68ch; }
strong { font-weight: 700; }
code, .mono {
  font-family: var(--ff-mono);
  font-size: 0.88em;
  background: var(--concrete);
  padding: 0.1em 0.35em;
  border: 1px solid var(--black);
}

/* ─── LINKS ──────────────────────────────────────────────── */
a.link-ul {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.15s;
}
a.link-ul:hover { color: var(--red); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: 0.01em;
  padding: 0.7em 1.4em;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s, background 0.15s, color 0.15s;
  box-shadow: var(--shadow-hard);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--black); }
.btn:active { transform: translate(1px, 1px);   box-shadow: 2px 2px 0 var(--black); }

.btn-primary   { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dk); }

.btn-dark      { background: var(--black);  color: var(--white); }
.btn-dark:hover { background: #2a2a2a; }

.btn-red       { background: var(--red);    color: var(--white); }
.btn-red:hover { background: var(--red-dk); }

.btn-ghost     { background: transparent;   color: var(--black); }
.btn-ghost:hover { background: var(--concrete); }

.btn-sm {
  font-size: var(--step--1);
  padding: 0.5em 1em;
  box-shadow: 3px 3px 0 var(--black);
}
.btn-sm:hover { box-shadow: 5px 5px 0 var(--black); }

/* ─── TOP ALERT BAR ──────────────────────────────────────── */
.top-bar {
  background: var(--yellow);
  border-bottom: 2px solid var(--black);
  padding: 0.45rem 0;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
}
.top-bar a { text-decoration: underline; }
.top-bar a:hover { color: var(--red); }

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--black);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-brand__wordmark {
  font-family: var(--ff-mono);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}
.nav-brand__wordmark span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  flex-wrap: nowrap;
}
.nav-links__item {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.15s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links__item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s;
}
.nav-links__item:hover { color: var(--black); }
.nav-links__item:hover::after { width: 100%; }
.nav-links__item--active::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle__bar {
  width: 26px;
  height: 3px;
  background: var(--black);
  transition: transform 0.2s, opacity 0.2s;
}

/* mobile nav */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--black);
  background: var(--white);
}
.nav-drawer.is-open { display: flex; }
.nav-drawer__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-weight: 700;
  font-size: var(--step-1);
  border-bottom: 1px solid var(--concrete);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.nav-drawer__link:hover { background: var(--yellow); }
.nav-drawer__cta {
  margin: var(--space-sm) var(--space-md) var(--space-md);
  display: block;
  text-align: center;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
  padding-block: var(--space-2xl);
  background: var(--white);
  border-bottom: 3px solid var(--black);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: var(--space-md); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--black);
  padding: 0.3em 0.8em;
  width: fit-content;
}
.hero-eyebrow::before { content: '▶'; font-size: 0.7em; }

.hero-title {
  font-size: var(--step-5);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-subtitle {
  font-size: var(--step-1);
  font-weight: 400;
  color: #3a3a3a;
  max-width: 52ch;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero-proof {
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  color: #555;
  margin-top: var(--space-xs);
}

.hero-image-slot {
  position: relative;
}
.hero-image-slot img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 3px solid var(--black);
  box-shadow: var(--shadow-hard-lg);
}
.hero-image-slot::before {
  content: '';
  position: absolute;
  inset: -8px -8px 8px 8px;
  border: 2px solid var(--yellow);
  z-index: -1;
}

/* ─── SECTION GENERIC ────────────────────────────────────── */
.section-pad { padding-block: var(--space-2xl); }
.section-pad--sm { padding-block: var(--space-xl); }

.section-label {
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-xs);
  display: block;
}
.section-title { margin-bottom: var(--space-sm); }
.section-lead {
  font-size: var(--step-1);
  color: #3a3a3a;
  margin-bottom: var(--space-md);
  max-width: 60ch;
}
.section-body { max-width: 72ch; }
.section-body p + p { margin-top: var(--space-sm); }

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider {
  height: 3px;
  background: var(--black);
  border: none;
  margin: 0;
}
.divider--yellow { background: var(--yellow); }
.divider--thin   { height: 1px; background: var(--concrete); }

/* ─── CARD GRID ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.card {
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-hard);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard-lg);
}
.card__icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
}
.card__tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  padding: 0.15em 0.55em;
  width: fit-content;
}
.card__tag--red { background: var(--red); color: var(--white); }
.card__tag--dark { background: var(--black); color: var(--white); }
.card__title {
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.2;
}
.card__text { font-size: var(--step--1); color: #3a3a3a; line-height: 1.6; }
.card__footer {
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1.5px solid var(--concrete);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.card__meta {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: #555;
}
.card--featured {
  background: var(--black);
  color: var(--white);
}
.card--featured .card__title { color: var(--white); }
.card--featured .card__text  { color: #ccc; }
.card--featured .card__footer { border-color: #333; }
.card--featured .card__meta { color: #aaa; }

/* ─── STATS ROW ──────────────────────────────────────────── */
.stats-band {
  background: var(--black);
  border-block: 3px solid var(--black);
  padding-block: var(--space-xl);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: var(--space-md);
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-item__number {
  font-family: var(--ff-mono);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-item__label {
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bbb;
}
.stat-item + .stat-item {
  border-left: 1px solid #333;
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--yellow);
  border-block: 3px solid var(--black);
  padding-block: var(--space-xl);
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: 'SHIP IT';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-mono);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  color: rgba(0,0,0,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text__label {
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.6;
  margin-bottom: 0.3em;
  display: block;
}
.cta-text__heading {
  font-size: var(--step-3);
  color: var(--black);
  max-width: 18ch;
  line-height: 1.1;
}
.cta-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border: 2px solid var(--black);
  border-bottom: none;
  background: var(--white);
}
.faq-item:last-child { border-bottom: 2px solid var(--black); }
.faq-item__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-md);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: var(--step-0);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  line-height: 1.3;
  transition: background 0.15s;
}
.faq-item__question:hover { background: var(--concrete); }
.faq-item__question[aria-expanded="true"] { background: var(--yellow); }
.faq-item__chevron {
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  font-family: var(--ff-mono);
}
.faq-item__question[aria-expanded="true"] .faq-item__chevron { transform: rotate(45deg); }
.faq-item__answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
  color: #3a3a3a;
  font-size: var(--step-0);
  line-height: 1.65;
  border-top: 1.5px solid var(--concrete);
  max-width: none;
}
.faq-item__answer.is-open { display: block; }

/* ─── LOGO STRIP ─────────────────────────────────────────── */
.logo-strip {
  background: var(--concrete);
  border-block: 2px solid var(--black);
  padding-block: var(--space-md);
  overflow: hidden;
}
.logo-strip__track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}
.logo-strip__item {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
}

/* ─── COURSE CARD SPECIAL ────────────────────────────────── */
.course-card {
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.course-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard-lg);
}
.course-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 2px solid var(--black);
  background: var(--concrete);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: var(--step-3);
  color: #bbb;
}
.course-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}
.course-card__level {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.course-card__title { font-size: var(--step-1); line-height: 1.2; }
.course-card__desc { font-size: var(--step--1); color: #444; line-height: 1.55; margin-top: 0.25rem; }
.course-card__footer {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  border-top: 1.5px solid var(--concrete);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.course-card__price {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: var(--step-1);
  color: var(--black);
}
.course-card__price s { color: #999; font-size: 0.8em; margin-right: 0.3em; }

/* ─── TESTIMONIAL ────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.testimonial-card {
  border: 2px solid var(--black);
  padding: var(--space-md);
  background: var(--white);
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.testimonial-card__quote {
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--black);
  max-width: none;
}
.testimonial-card__quote::before { content: '"'; font-size: 2em; line-height: 0.5; vertical-align: -0.4em; color: var(--yellow); margin-right: 0.1em; }
.testimonial-card__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1.5px solid var(--concrete);
  padding-top: var(--space-sm);
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--concrete);
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: var(--step--1); display: block; }
.testimonial-card__role { font-size: 0.75rem; color: #666; display: block; }

/* ─── PRICING CARD ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
  align-items: start;
}
.pricing-card {
  border: 2px solid var(--black);
  box-shadow: var(--shadow-hard);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.pricing-card--highlight {
  background: var(--black);
  color: var(--white);
  transform: scale(1.02);
}
.pricing-card__head {
  padding: var(--space-md);
  border-bottom: 2px solid var(--black);
}
.pricing-card--highlight .pricing-card__head { border-color: #333; }
.pricing-card__plan {
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pricing-card--highlight .pricing-card__plan { color: var(--yellow); }
.pricing-card__price-val {
  font-family: var(--ff-mono);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}
.pricing-card--highlight .pricing-card__price-val { color: var(--yellow); }
.pricing-card__period { font-size: var(--step--1); color: #777; }
.pricing-card--highlight .pricing-card__period { color: #aaa; }
.pricing-card__body { padding: var(--space-md); flex: 1; }
.pricing-card__features { display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-card__feature {
  font-size: var(--step--1);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}
.pricing-card__feature::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-card--highlight .pricing-card__feature { color: #ccc; }
.pricing-card__foot {
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group + .form-group { margin-top: var(--space-sm); }
.form-label {
  font-weight: 700;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7em 1em;
  border: 2px solid var(--black);
  background: var(--white);
  font-size: var(--step-0);
  font-family: var(--ff-sans);
  color: var(--black);
  outline: none;
  transition: box-shadow 0.15s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  box-shadow: 4px 4px 0 var(--yellow);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.78rem; color: #666; }

/* ─── NEWSLETTER INLINE ──────────────────────────────────── */
.newsletter-form {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: var(--space-md);
  max-width: 480px;
}
.newsletter-form .form-input {
  flex: 1 1 220px;
  border-right: none;
  min-width: 0;
}
.newsletter-form .btn { flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 3px solid var(--yellow);
  padding-block: var(--space-2xl) var(--space-lg);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid #2a2a2a;
}
.footer-brand__wordmark {
  font-family: var(--ff-mono);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.footer-brand__wordmark span { color: var(--yellow); }
.footer-brand__tagline {
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}
.footer-brand__desc {
  font-size: var(--step--1);
  color: #aaa;
  line-height: 1.65;
  max-width: 36ch;
}
.footer-col__heading {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-sm);
  display: block;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links__item {
  font-size: var(--step--1);
  color: #aaa;
  transition: color 0.15s;
  font-weight: 500;
}
.footer-links__item:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-bottom__copy {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: #555;
  letter-spacing: 0.05em;
}
.footer-bottom__links {
  display: flex;
  gap: var(--space-md);
}
.footer-bottom__links a {
  font-size: 0.72rem;
  font-family: var(--ff-mono);
  color: #555;
  transition: color 0.15s;
}
.footer-bottom__links a:hover { color: var(--yellow); }

/* ─── BADGE / TAG UTILITIES ──────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
  border: 1.5px solid currentColor;
  line-height: 1.4;
}
.badge-yellow { color: var(--black); background: var(--yellow); border-color: var(--black); }
.badge-red    { color: var(--white); background: var(--red); border-color: var(--red-dk); }
.badge-dark   { color: var(--white); background: var(--black); border-color: var(--black); }
.badge-outline{ color: var(--black); background: transparent; border-color: var(--black); }

/* ─── UTILITY ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-mono   { font-family: var(--ff-mono); }
.text-red    { color: var(--red); }
.text-yellow { color: var(--yellow); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.bg-concrete { background: var(--concrete); }
.bg-black    { background: var(--black); color: var(--white); }
.bg-yellow   { background: var(--yellow); }
.border-top  { border-top: 3px solid var(--black); }
.border-bot  { border-bottom: 3px solid var(--black); }

/* ─── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border: 2px solid var(--black);
  z-index: 9999;
  transition: top 0.1s;
}
.skip-link:focus { top: 1rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-slot { display: none; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid #333; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .pricing-card--highlight { transform: none; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .card-grid  { grid-template-columns: 1fr; }
} body{margin:0} img,svg,video{max-width:100%;height:auto} *{box-sizing:border-box} 