/* ============================================================
   After Dark Supply — Main Stylesheet
   Owns: All page-wide visual design, typography, layout
   Does NOT own: Inline scripts, analytics injections
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  /* Palette */
  --bg:        #090909;
  --bg-alt:    #0f0d12;
  --bg-card:   #12101a;
  --bg-card-2: #160f1f;
  --surface:   #1a1626;
  --border:    rgba(255, 255, 255, 0.07);
  --border-m:  rgba(255, 255, 255, 0.12);

  /* Typography */
  --text-primary:   #f0ece4;
  --text-secondary: rgba(240, 236, 228, 0.55);
  --text-muted:     rgba(240, 236, 228, 0.32);

  /* Accents */
  --gold:     #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.18);
  --gold-glow:rgba(201, 169, 110, 0.08);
  --plum:     #4a1c5c;
  --plum-mid: #2d1240;
  --violet:   #8b5cf6;
  --violet-dim: rgba(139, 92, 246, 0.15);

  /* Typography scale */
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'Satoshi', system-ui, sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container:  1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---- Utility ---- */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: #0a0a0a;
}
.btn--primary:hover {
  background: #d4b47a;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-m);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-m);
}

.btn--nav {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 9px 20px;
  font-size: 0.8rem;
}
.btn--nav:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.btn--large {
  padding: 16px 36px;
  font-size: 0.95rem;
}

/* ---- Logo ---- */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

/* ---- Age Gate ---- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #060508;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate__inner {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.age-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-primary);
}

.age-gate__logo .logo-mark {
  font-size: 1.4rem;
}

.age-gate__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.age-gate__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.age-gate__legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(20px);
  border-color: var(--border);
  padding: 14px 0;
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav__link:hover {
  color: var(--text-primary);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #1a0d2e 0%, var(--bg) 70%);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__glow--left {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(74, 28, 92, 0.5) 0%, transparent 70%);
}

.hero__glow--right {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 64px) 80px;
  max-width: 780px;
  text-align: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s var(--ease) both;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 28px;
  animation: fadeInUp 0.9s var(--ease) 0.1s both;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.7;
  animation: fadeInUp 0.9s var(--ease) 0.2s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.9s var(--ease) 0.3s both;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeInUp 0.9s var(--ease) 0.4s both;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  padding: 20px 0;
  backdrop-filter: blur(8px);
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
  gap: 4px;
}

.meta-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
}

.meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border-m);
  flex-shrink: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease) 0.6s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- Value Props ---- */
.value-props {
  padding: var(--section-py) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.value-props__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.value-card {
  background: var(--bg);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
  transition: background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  background: var(--bg-card);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card__icon {
  color: var(--gold);
  margin-bottom: 24px;
  padding: 14px;
  background: var(--gold-dim);
  display: inline-flex;
  border-radius: 3px;
  transition: transform 0.2s;
}

.value-card:hover .value-card__icon {
  transform: translateY(-2px);
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.value-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Categories ---- */
.categories {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.categories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.category-card {
  grid-column: span 1;
  min-height: 280px;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}

.category-card--wide {
  grid-column: span 2;
  min-height: 240px;
}

.category-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
}

.category-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.category-card:hover .category-card__bg {
  transform: scale(1.04);
}

.category-card__bg--couples {
  background: linear-gradient(135deg, #2d1240 0%, #4a1c5c 40%, #1a0a28 100%);
}

.category-card__bg--solo {
  background: linear-gradient(135deg, #0f0a1a 0%, #2a1035 60%, #1a0d24 100%);
}

.category-card__bg--accessories {
  background: linear-gradient(135deg, #120a0a 0%, #2c1520 60%, #1a0e14 100%);
}

.category-card__bg--wellness {
  background: linear-gradient(135deg, #0a100f 0%, #0e2320 50%, #0a1510 100%);
}

/* Add subtle pattern texture to category bgs */
.category-card__bg--couples::after,
.category-card__bg--solo::after,
.category-card__bg--accessories::after,
.category-card__bg--wellness::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 60%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 4, 12, 0.85) 0%, rgba(6, 4, 12, 0.3) 60%, transparent 100%);
  z-index: 1;
}

.category-card__content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 40px);
  width: 100%;
}

.category-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.8;
}

.category-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.1;
}

.category-card__desc {
  font-size: 0.875rem;
  color: rgba(240, 236, 228, 0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}

.category-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
  display: block;
}

.category-card:hover .category-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ---- How It Works ---- */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  position: relative;
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step__connector {
  position: absolute;
  top: 52px;
  right: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-m), transparent);
}

.step__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
  transition: color 0.3s;
}

.step:hover .step__number {
  color: rgba(201, 169, 110, 0.35);
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
}

/* ---- Trust Section ---- */
.trust {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.trust__headline-col .section-tag,
.trust__headline-col .section-title,
.trust__headline-col .section-sub {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.trust__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.trust-pillar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.25s, background 0.25s;
}

.trust-pillar:hover {
  border-color: rgba(201, 169, 110, 0.25);
  background: var(--bg-card-2);
}

.trust-pillar__icon {
  color: var(--gold);
  display: inline-flex;
  padding: 10px;
  background: var(--gold-dim);
  border-radius: 3px;
  width: fit-content;
}

.trust-pillar__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

.trust-pillar__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Email Signup ---- */
.signup {
  padding: var(--section-py) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.signup__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 8vw, 80px) clamp(28px, 5vw, 64px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.signup__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 28, 92, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.signup__content {
  position: relative;
  z-index: 1;
}

.signup__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.signup__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.signup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.signup__input-group {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--border-m);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.signup__input-group:focus-within {
  border-color: var(--gold);
}

.signup__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.signup__input::placeholder {
  color: var(--text-muted);
}

.signup__submit {
  border-radius: 0;
  flex-shrink: 0;
}

.signup__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.signup__success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 20px;
}

/* ---- Footer ---- */
.footer {
  background: #060508;
  border-top: 1px solid var(--border);
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.footer__links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer__link:hover {
  color: var(--text-primary);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0;
  text-align: center;
}

.footer__age-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  color: var(--text-muted);
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- Scroll Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger value cards */
.value-card:nth-child(2).reveal { transition-delay: 0.1s; }
.value-card:nth-child(3).reveal { transition-delay: 0.2s; }
.value-card:nth-child(4).reveal { transition-delay: 0.3s; }

.step:nth-child(2).reveal { transition-delay: 0.15s; }
.step:nth-child(3).reveal { transition-delay: 0.3s; }

.trust-pillar:nth-child(2).reveal { transition-delay: 0.1s; }
.trust-pillar:nth-child(3).reveal { transition-delay: 0.2s; }
.trust-pillar:nth-child(4).reveal { transition-delay: 0.3s; }

/* ---- Keyframes ---- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .trust__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .trust__headline-col .section-title,
  .trust__headline-col .section-sub,
  .trust__headline-col .section-tag {
    text-align: center;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: span 2;
  }
  .steps {
    flex-direction: column;
    gap: 32px;
    max-width: 560px;
  }
  .step {
    padding: 0 0 32px;
    border-bottom: 1px solid var(--border);
  }
  .step--last {
    border-bottom: none;
    padding-bottom: 0;
  }
  .step__connector {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav__links {
    gap: 16px;
  }
  .nav__link {
    display: none;
  }
  .categories__grid {
    grid-template-columns: 1fr;
  }
  .category-card--wide {
    grid-column: span 1;
  }
  .category-card {
    min-height: 220px;
  }
  .trust__pillars {
    grid-template-columns: 1fr;
  }
  .hero__meta {
    flex-direction: column;
    gap: 0;
  }
  .hero__meta-item {
    padding: 16px 36px;
  }
  .hero__meta-divider {
    width: 80%;
    height: 1px;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: span 1;
  }
  .age-gate__actions {
    flex-direction: column;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .btn--large {
    width: 100%;
    max-width: 320px;
  }
  .value-props__grid {
    grid-template-columns: 1fr;
  }
}
