:root {
  /* Gold and black palette */
  --bg: #050508;
  --bg-soft: #0c0c0c;
  --surface: #121212;
  --surface-elevated: #1a1a1a;
  --card: #141414;
  --card-border: rgba(255, 183, 3, 0.2);
  --text: #f4f0fa;
  --muted: #9a93a8;
  --black: #0a0a0a;
  --black-deep: #050505;
  --black-light: #1a1a1a;
  --black-dim: rgba(10, 10, 10, 0.5);
  --black-glow: rgba(0, 0, 0, 0.4);
  --gold: #ffb703;
  --gold-mid: #ff9f1c;
  --gold-light: #ffd166;
  --gold-dim: rgba(255, 183, 3, 0.14);
  --gold-glow: rgba(255, 183, 3, 0.38);
  --accent-blue: #00d4ff;
  --gold-gradient: linear-gradient(135deg, #ffd166 0%, #ffb703 42%, #ff9f1c 100%);
  --brand-gradient: linear-gradient(135deg, #ffd166 0%, #ffb703 35%, #1a1a1a 100%);
  --danger: #c45c4a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font: "Proza Libre", sans-serif;
  --font-display: "Proza Libre", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
  scrollbar-color: var(--gold-mid) var(--bg);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--bg);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-mid));
  border-radius: 999px;
  border: 2px solid var(--bg);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-mid));
}

button,
input,
select,
textarea {
  font-family: var(--font);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.5) 0%, rgba(5, 5, 8, 0.85) 55%, var(--bg) 100%),
    url('../assets/vani-banner.png') no-repeat top center / 100% auto,
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 183, 3, 0.15) 0%, transparent 58%),
    radial-gradient(ellipse 70% 45% at 85% 15%, rgba(255, 183, 3, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
    var(--bg);
  background-attachment: fixed, fixed, fixed, fixed, fixed, fixed;
  max-height: 85vh;
}

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

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

/* ── Header + progress bar (unchanged behavior) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
}

.scroll-progress {
  width: 100%;
  height: 3px;
  flex-shrink: 0;
  background: var(--purple-dim);
}

.scroll-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
      var(--gold-mid) 0%,
      var(--gold-light) 50%,
      var(--gold) 100%);
  box-shadow: 0 0 14px var(--gold-glow);
  transition: width 0.06s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress__fill {
    transition: none;
  }
}

.header-shell {
  padding: 0.85rem 4% 0.5rem;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.55rem 0.65rem 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(255, 183, 3, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav a:not(.btn) {
  color: var(--muted);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
  display: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  background: var(--gold-gradient);
  color: #1a1208;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255, 183, 3, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 183, 3, 0.35);
}

.site-nav a.btn {
  color: #1a1208;
}

.site-nav a.btn:hover {
  color: #1a1208;
}

.btn-sm {
  padding: 0.75rem 1.35rem;
  font-size: 0.85rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 183, 3, 0.5);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(255, 183, 3, 0.1);
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
}

.btn-ghost:hover {
  border-color: rgba(243, 207, 122, 0.7);
  color: var(--gold-light);
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.2);
}

.btn-block {
  width: 100%;
}

/* ── Glass panels ── */
.panel {
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.95), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(255, 183, 3, 0.25);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel--wide {
  padding: 2rem 2rem 2.25rem;
}

.panel--glow {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, var(--gold-dim) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, var(--gold-dim) 0%, transparent 50%),
    linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(255, 183, 3, 0.3);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.eyebrow.pill {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 183, 3, 0.45);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.65);
  backdrop-filter: blur(8px);
}

.hero-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 5.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 20ch;
}

.hero-headline span {
  display: block;
  margin-bottom: 0.25rem;
}

.hero-headline span:last-child {
  margin-bottom: 0;
}

.hero-video {
  width: 100%;
  max-width: 820px;
  margin: 2.25rem 0 0;
}

.hero-video__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 183, 3, 0.3);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 183, 3, 0.1);
}

.hero-video__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-actions {
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  ;
}

.hero-footnote {
  margin: 2.25rem 0 0;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
}

.hero-footnote__dot {
  margin: 0 0.45rem;
  color: var(--gold-light);
}

h1 {
  margin: 0;
}

/* ── Stats showcase (hero) ── */
.stats-showcase {
  width: 100%;
  max-width: 920px;
  margin: 2rem 0 0;
}

.stats-showcase__bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 183, 3, 0.2);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  text-align: left;
}

.stats-showcase__col {
  padding: 1.5rem 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stats-showcase__col:last-child {
  border-right: none;
}

.stats-showcase__col--accent {
  background:
    radial-gradient(ellipse 90% 100% at 50% 50%, var(--gold-dim) 0%, transparent 70%),
    radial-gradient(ellipse 80% 80% at 50% 50%, var(--gold-dim) 0%, transparent 65%),
    rgba(0, 0, 0, 0.35);
  text-align: center;
}

.stats-showcase__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-showcase__title--light {
  margin-top: 0.15rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: none;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--text);
}

.stats-showcase__value {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-showcase__meta {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.stats-showcase__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.stats-showcase__desc {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 26ch;
}

/* ── Sections ── */
.section {
  padding: 3.5rem 0;
}

.section--faq {
  padding-top: 2rem;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.section-title--center {
  text-align: center;
}

.section-title--large {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
}

.section-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── About ── */
.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 2rem;
  align-items: center;
  margin-top: 1.25rem;
}

.about__media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about__photo {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 183, 3, 0.25);
}

.about__meta {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__copy {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.about__copy:last-of-type {
  margin-bottom: 0;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.about__btn-icon {
  flex-shrink: 0;
  display: block;
}

/* ── Inside The Empire (curriculum) ── */
.inside {
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, var(--gold-dim) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 100%, var(--gold-dim) 0%, transparent 50%),
    linear-gradient(145deg, rgba(22, 22, 22, 0.98), rgba(8, 8, 8, 0.99));
}

.inside__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.inside__label {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.inside__title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: none;
}

.inside__desc {
  margin: 0;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.inside__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.inside-stat {
  padding: 1.35rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 183, 3, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.inside-stat__value {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.inside-stat__label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}

/* ── Membership / pricing ── */
.section--pricing {
  padding-bottom: 4rem;
}

.membership-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.75rem 2.5rem 2.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 183, 3, 0.3);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(212, 175, 55, 0.16) 0%, transparent 55%),
    linear-gradient(165deg, rgba(28, 24, 18, 0.98) 0%, rgba(12, 11, 10, 0.99) 45%, rgba(8, 8, 8, 1) 100%);
  box-shadow:
    0 0 80px rgba(212, 175, 55, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.membership-card__label {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.membership-card__title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: none;
}

.membership-card__desc {
  margin: 0 auto 1.75rem;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.membership-card__features {
  margin: 0 auto 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
  max-width: 480px;
  text-align: left;
}

.membership-card__features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.membership-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.membership-card__price {
  margin: 0 0 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
}

.membership-card__amount {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.membership-card__period {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold-light);
}

.membership-card__cta {
  min-width: min(100%, 280px);
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}

/* ── Testimonials ── */
.testimonial-carousel {
  margin-top: 1.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-subtitle {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.5rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 80s linear infinite;
  width: max-content;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.testimonial-slide {
  flex-shrink: 0;
  width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-slide img {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 183, 3, 0.35);
  object-fit: contain;
  object-position: center;
}

.testimonial-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  text-align: center;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.quote {
  margin: 0;
  padding: 1.35rem 1.25rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

.quote cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.95rem;
}

/* ── FAQ ── */
.section--faq {
  padding-bottom: 5rem;
}

.faq {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq details {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 183, 3, 0.2);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  color: var(--muted);
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
}

.faq a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq a:hover {
  color: var(--gold);
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--card-border);
  padding: 1.5rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.footer-links {
  margin: 0;
  font-size: 0.85rem;
}

.footer-link {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .inside__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 720px) {
  .nav-pill {
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 999px;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-5px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(5px);
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding-top: 0.5rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 0.65rem 0.75rem;
  }

  .site-nav .btn {
    margin-top: 0.35rem;
    width: 100%;
  }

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

  .stats-showcase__col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stats-showcase__col:last-child {
    border-bottom: none;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about__media {
    justify-content: center;
  }

  .panel--wide {
    padding: 1.35rem 1.15rem;
  }

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

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

  .membership-card {
    padding: 2rem 1.35rem 1.75rem;
  }

  .membership-card__features {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero {
    padding-top: 2.5rem;
  }

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

  .footer-note {
    text-align: left;
  }
}