/* ============================================
   BANNER RECOVERY v3 — Dark Premium Theme
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.45);
  --text-dim: rgba(255,255,255,0.25);
  --accent: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Shared Typography ---------- */
.label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

/* ---------- Buttons ---------- */
.btn--primary {
  background: #ffffff;
  color: #080808;
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}

.btn--primary:hover {
  opacity: 0.8;
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}

.btn--ghost:hover {
  opacity: 0.8;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

.service-card:hover,
.audience-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
  transition: transform 0.2s ease, border-color 0.2s ease;
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  pointer-events: none;
}

.nav__pill {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: all;
  position: relative;
  z-index: 1001;
}

.nav__brand {
  display: flex;
  align-items: center;
  margin-right: 8px;
  flex-shrink: 0;
}

.nav__logo {
  height: 26px;
  width: auto;
  display: block;
}

.nav__logo-fallback {
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: #ffffff;
}

.nav__cta {
  background: #ffffff;
  color: #080808;
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 400;
  font-family: inherit;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  margin-left: 4px;
}

.nav__cta:hover {
  opacity: 0.8;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 40px 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: all;
}

.nav__mobile-menu.open {
  opacity: 1;
}

.mobile-link {
  display: block;
  font-size: 36px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease;
  letter-spacing: -0.01em;
}

.mobile-link:first-child {
  border-top: 1px solid var(--border);
}

.mobile-link:hover {
  color: #ffffff;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.3) 60%,
    rgba(8,8,8,0.1) 100%
  );
  z-index: 1;
}

.hero__content {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.hero__label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  display: block;
}

.hero__h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.hero__note {
  font-size: 13px;
  color: var(--text-muted);
}


/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
}

.stats__item {
  padding: 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stats__item:last-child {
  border-right: none;
}

.stats__number {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stats__label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}


/* ============================================
   THE VAN
   ============================================ */
.van {
  background: var(--bg);
  padding-top: 96px;
}

.van__video-wrap {
  width: 100%;
}

.van__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.van__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.van__left .label {
  margin-bottom: 12px;
}

.van__h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 40px;
}

.van__features {
  margin-bottom: 40px;
}

.van__feature {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.van__feature:first-child {
  border-top: 1px solid var(--border);
}

.van__feature-num {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-top: 2px;
}

.van__feature-name {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
}

.van__feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.van__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 60px;
}

.van__right-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--bg);
  padding: 96px 0;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.services__header {
  margin-bottom: 48px;
}

.services__header .label {
  margin-bottom: 16px;
}

.services__h2 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 16px;
}

.services__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Service Cards */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card--featured {
  background: #ffffff;
  color: #080808;
  border-color: transparent;
}

.service-card__num {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.service-card--featured .service-card__num {
  color: rgba(8,8,8,0.45);
}

.service-card__title {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
}

.service-card--featured .service-card__title {
  color: #080808;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card--featured .service-card__desc {
  color: rgba(8,8,8,0.6);
}

.service-card__benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin-top: auto;
}

.service-card__benefit {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-card__benefit::before {
  content: '→ ';
  color: inherit;
}

.service-card--featured .service-card__benefit {
  color: rgba(8,8,8,0.6);
}


/* ============================================
   WORKING WITH
   ============================================ */
.audience {
  background: var(--bg);
  padding: 0 0 96px;
}

.audience__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.audience__header {
  margin-bottom: 48px;
}

.audience__header .label {
  margin-bottom: 16px;
}

.audience__h2 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 16px;
}

.audience__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.audience-card__title {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}

.audience-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.audience-card__tag {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: auto;
}


/* ============================================
   LOGO TICKER
   ============================================ */
.ticker-section {
  background: var(--bg);
  padding: 0 0 96px;
}

.ticker-section__header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 40px;
}

.ticker-section__header .label {
  margin-bottom: 12px;
}

.ticker-section__h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
}

.ticker__wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
  cursor: pointer;
}

.ticker__track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 14px;
  width: 152px;
  height: 88px;
  margin-right: 16px;
}

.ticker__item--clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ticker__item--clickable:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.ticker__logo {
  height: 56px;
  width: auto;
  max-width: 116px;
  object-fit: contain;
  display: block;
}

.ticker__item:hover .ticker__logo {
  opacity: 1;
}

/* Club Modal */
.club-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.club-modal.open {
  opacity: 1;
  pointer-events: all;
}

.club-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.85);
}

.club-modal__card {
  position: relative;
  z-index: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: calc(100% - 48px);
  text-align: center;
}

.club-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.club-modal__close:hover {
  color: #ffffff;
  border-color: var(--border-strong);
}

.club-modal__logo {
  height: 80px;
  width: auto;
  margin: 0 auto 24px;
  display: block;
}

.club-modal__name {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.club-modal__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg);
  padding: 0 0 96px;
}

.how-it-works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.how-it-works__header {
  margin-bottom: 48px;
}

.how-it-works__header .label {
  margin-bottom: 16px;
}

.how-it-works__h2 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step__num {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-top: 4px;
}

.step__title {
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__left .label {
  margin-bottom: 16px;
}

.contact__h2 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 440px;
}

.contact__options {
  display: flex;
  flex-direction: column;
}

.contact__option {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.15s ease;
}

.contact__option:hover {
  opacity: 0.75;
}

.contact__option-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}

.contact__option-icon svg {
  width: 16px;
  height: 16px;
}

.contact__option-label {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 2px;
}

.contact__option-value {
  font-size: 13px;
  color: var(--text-muted);
}

/* Contact Form Card */
.contact__form-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.contact__form-title {
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1.3;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-field select option {
  background: var(--surface-2);
  color: #ffffff;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-dim);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255,255,255,0.3);
}

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

.form-submit {
  width: 100%;
  background: #ffffff;
  color: #080808;
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.15s ease;
  margin-top: 8px;
  margin-bottom: 12px;
}

.form-submit:hover {
  opacity: 0.8;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer__brand-fallback {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.footer__brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}

.footer__social:hover {
  color: #ffffff;
  border-color: var(--border-strong);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer__link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__contact-item {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
  transition: color 0.15s ease;
}

a.footer__contact-item:hover {
  color: #ffffff;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid var(--border);
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}


/* ============================================
   RESPONSIVE — 900px
   ============================================ */
@media (max-width: 900px) {

  /* Nav */
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__content {
    padding: 0 24px;
    bottom: 60px;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__item:nth-child(2) {
    border-right: none;
  }

  .stats__item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .stats__item:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--border);
  }

  /* Van */
  .van__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px 64px;
  }

  .van__right {
    padding-top: 0;
  }

  /* Services */
  .services__inner {
    padding: 0 24px;
  }

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

  /* Audience */
  .audience__inner {
    padding: 0 24px;
  }

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

  /* Ticker */
  .ticker-section__header {
    padding: 0 24px 40px;
  }

  /* How it works */
  .how-it-works__inner {
    padding: 0 24px;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .footer__bottom {
    padding: 24px 24px 0;
  }

  .footer__brand {
    grid-column: span 2;
  }
}


/* ============================================
   RESPONSIVE — 600px
   ============================================ */
@media (max-width: 600px) {

  /* Hero */
  .hero__h1 {
    font-size: clamp(36px, 10vw, 64px);
  }

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

  /* Stats */
  .stats__item {
    padding: 24px 16px;
  }

  /* Services headings */
  .services__h2,
  .audience__h2,
  .how-it-works__h2,
  .contact__h2 {
    font-size: 36px;
  }

  /* Van */
  .van {
    padding-top: 64px;
  }

  /* Ticker header */
  .ticker-section__h2 {
    font-size: 28px;
  }

  /* Steps */
  .step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__brand-desc {
    max-width: 100%;
  }
}
