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

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --ink: #111111;
  --concrete: #3a3a3a;
  --dust: #7a7a7a;
  --fog: #d4d4d4;
  --paper: #f5f3ef;
  --white: #ffffff;
  --volt: #f5e000;
  --volt-dark: #d4c000;
  --accent: #e8003a;
  --accent-mid: #c0002e;
  --serif-head: 'Unbounded', sans-serif;
  --body-font: 'Manrope', sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-card: 4px 4px 0px #111111;
  --shadow-hover: 6px 6px 0px #111111;
  --border: 2px solid #111111;
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);
}

body {
  font-family: var(--body-font);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  overflow-x: hidden;
}

::selection {
  background: var(--volt);
  color: var(--ink);
}

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

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif-head);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
}

p {
  color: var(--concrete);
  max-width: 70ch;
  line-height: 1.75;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

strong {
  font-weight: 600;
  color: var(--ink);
}

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--serif-head);
  font-size: clamp(0.7rem, 1vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85em 1.75em;
  border: var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--volt);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.btn--primary:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px);
  color: var(--ink);
  background: var(--volt-dark);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 4px 4px 0px var(--accent-mid);
}

.btn--accent:hover {
  box-shadow: 6px 6px 0px var(--accent-mid);
  transform: translate(-2px, -2px);
  color: var(--white);
}

/* ─── HEADER / NAV ─────────────────────────────── */
.site-header {
  background: var(--ink);
  border-bottom: 3px solid var(--volt);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__wrap {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-md);
  height: 68px;
}

.site-header__nav--left,
.site-header__nav--right {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  list-style: none;
}

.site-header__nav--right {
  justify-content: flex-end;
}

.site-header__nav--left a,
.site-header__nav--right a {
  font-family: var(--serif-head);
  font-size: clamp(0.6rem, 0.85vw, 0.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fog);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-header__nav--left a:hover,
.site-header__nav--right a:hover,
.site-header__nav--left a.active,
.site-header__nav--right a.active {
  color: var(--volt);
  border-bottom-color: var(--volt);
}

.site-header__nav--right a.nav-support {
  background: var(--accent);
  color: var(--white);
  padding: 0.4em 0.9em;
  border-radius: var(--radius-sm);
  border-bottom: none;
}

.site-header__nav--right a.nav-support:hover {
  background: var(--accent-mid);
  color: var(--white);
  border-bottom: none;
}

.site-header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0;
}

.site-header__logo-mark {
  font-family: var(--serif-head);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-header__logo-mark span {
  color: var(--volt);
}

.site-header__logo-sub {
  font-family: var(--body-font);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dust);
  line-height: 1;
  margin-top: 2px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fog);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 3px solid var(--volt);
  padding-block: var(--space-xl) var(--space-lg);
  margin-top: var(--space-2xl);
}

.site-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;
}

.site-footer__brand-name {
  font-family: var(--serif-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
}

.site-footer__brand-name span {
  color: var(--volt);
}

.site-footer__tagline {
  font-size: 0.8125rem;
  color: var(--dust);
  margin-top: var(--space-xs);
  max-width: 28ch;
  line-height: 1.5;
}

.site-footer__desc {
  font-size: 0.8125rem;
  color: #5a5a5a;
  margin-top: var(--space-sm);
  max-width: 30ch;
  line-height: 1.65;
}

.site-footer__col-title {
  font-family: var(--serif-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--volt);
  margin-bottom: var(--space-sm);
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--volt);
}

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

.site-footer__copy {
  font-size: 0.75rem;
  color: #4a4a4a;
}

.site-footer__legal {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.site-footer__legal a {
  font-size: 0.75rem;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__legal a:hover {
  color: var(--volt);
}

/* ─── SECTIONS ─────────────────────────────── */
section {
  padding-block: var(--space-xl);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--serif-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  padding: 0.35em 0.75em;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  background: transparent;
}

.section-heading {
  margin-bottom: var(--space-md);
}

.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--concrete);
  max-width: 60ch;
  margin-bottom: var(--space-lg);
}

/* ─── HERO ─────────────────────────────── */
.hero-section {
  background: var(--paper);
  padding-block: var(--space-2xl) var(--space-xl);
  border-bottom: var(--border);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--volt);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
  opacity: 0.12;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5.25rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  color: var(--concrete);
  max-width: 50ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-xs);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: clamp(320px, 45vw, 560px);
  object-fit: cover;
  display: block;
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
}

.hero-visual-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--volt);
  border: var(--border);
  padding: 0.6rem 1rem;
  font-family: var(--serif-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

/* ─── CARD GRID ─────────────────────────────── */
.card-grid-section {
  background: var(--white);
  border-top: var(--border);
  border-bottom: var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.card {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px);
}

.card__number {
  font-family: var(--serif-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.card__title {
  font-family: var(--serif-head);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.card__text {
  font-size: 0.9rem;
  color: var(--concrete);
  line-height: 1.65;
  max-width: none;
}

.card--dark {
  background: var(--ink);
}

.card--dark .card__title {
  color: var(--white);
}

.card--dark .card__text {
  color: var(--fog);
}

.card--volt {
  background: var(--volt);
  box-shadow: 4px 4px 0px var(--ink);
}

.card--volt .card__number {
  color: var(--ink);
  opacity: 0.6;
}

.card--volt .card__title {
  color: var(--ink);
}

.card--volt .card__text {
  color: var(--ink);
  opacity: 0.75;
}

/* ─── STATS ROW ─────────────────────────────── */
.stats-section {
  background: var(--ink);
  padding-block: var(--space-xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: var(--space-md);
  border-left: 3px solid var(--volt);
}

.stat-item__number {
  font-family: var(--serif-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-item__number span {
  color: var(--volt);
}

.stat-item__label {
  font-size: 0.8125rem;
  color: var(--dust);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ─── CTA BAND ─────────────────────────────── */
.cta-section {
  background: var(--accent);
  padding-block: var(--space-xl);
  border-top: var(--border);
  border-bottom: var(--border);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-band__text h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}

.cta-band__text p {
  color: rgba(255,255,255,0.8);
  margin-top: var(--space-xs);
  max-width: 50ch;
}

.cta-band__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn--white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.25);
}

.btn--white:hover {
  background: var(--paper);
  color: var(--accent);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
  transform: translate(-2px, -2px);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.25);
  transform: translate(-2px, -2px);
}

/* ─── FAQ ─────────────────────────────── */
.faq-section {
  background: var(--paper);
}

.faq-list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: var(--border);
}

.faq-item {
  border-bottom: var(--border);
  padding-block: var(--space-md);
}

.faq-item__question {
  font-family: var(--serif-head);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  user-select: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}

details[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  font-size: 0.9375rem;
  color: var(--concrete);
  line-height: 1.75;
  max-width: 65ch;
  padding-top: var(--space-sm);
}

/* ─── CONTENT SECTION ─────────────────────────────── */
.content-section {
  background: var(--white);
  border-bottom: var(--border);
}

.content-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  align-items: start;
}

.content-body__sidebar {}

.content-body__main p {
  margin-bottom: var(--space-md);
}

.content-body__main p:last-child {
  margin-bottom: 0;
}

/* ─── IMAGES ─────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── FORMS ─────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--serif-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--concrete);
}

.form-input,
.form-textarea {
  font-family: var(--body-font);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75em 1em;
  width: 100%;
  transition: box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  box-shadow: 3px 3px 0 var(--volt);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ─── UTILITY ─────────────────────────────── */
.text-accent { color: var(--accent); }
.text-volt { color: var(--volt); }
.text-dust { color: var(--dust); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.divider {
  border: none;
  border-top: var(--border);
  margin-block: var(--space-lg);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .site-header__wrap {
    grid-template-columns: auto 1fr auto;
    position: relative;
  }

  .site-header__nav--left,
  .site-header__nav--right {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-md) clamp(1rem, 4vw, 2.5rem);
    gap: var(--space-sm);
    border-top: 1px solid #222;
    z-index: 200;
  }

  .site-header__nav--right {
    top: calc(68px + 200px);
    border-top: none;
    padding-top: 0;
  }

  .site-header__nav--left.open,
  .site-header__nav--right.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    grid-column: 3;
  }

  .site-header__logo {
    grid-column: 1;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .content-body {
    grid-template-columns: 1fr;
  }
}

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__text p {
    margin-inline: auto;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-visual-badge {
    left: 0.5rem;
    bottom: 0.5rem;
  }
}html{-webkit-text-size-adjust:100%}img,svg,video{max-width:100%;height:auto}*{box-sizing:border-box}