:root {
  --bg: #000000;
  --surface: rgba(17, 11, 31, 0.78);
  --surface-strong: rgba(15, 8, 28, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-soft: #d7cfef;
  --text-muted: #a89cc9;
  --primary: #8a2be2;
  --primary-strong: #bc4cff;
  --primary-deep: #5610c0;
  --gold: #f1c979;
  --shadow: 0 24px 90px rgba(91, 17, 185, 0.22);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(138, 43, 226, 0.26), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(221, 64, 255, 0.15), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(138, 43, 226, 0.18), transparent 28%),
    var(--bg);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
  scroll-margin-top: 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.statement-card h2,
.trust-copy h2,
.final-cta-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.section-heading p,
.statement-card p,
.trust-copy p,
.final-cta-card p,
.hero-subheadline,
.proof-card p,
.value-card p,
.scenario-content p,
.scenario-content li,
.speaker-copy p,
.highlight-card p,
.ticket-card li,
.ticket-subtitle,
.ticket-note,
.checkout-note,
.faq-item p,
.footer p,
.timeline-card p {
  color: var(--text-soft);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--text);
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow:
    0 16px 42px rgba(138, 43, 226, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button-secondary,
.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand span {
  display: block;
  font-size: 0.95rem;
}

.brand small {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-soft);
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--primary-strong), transparent);
  transition: transform 180ms ease;
}

.topnav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(18px);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  padding-bottom: 16px;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 6px 0 12px;
}

.mobile-nav a,
.footer-nav a {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  text-align: center;
  font-weight: 700;
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  padding: clamp(70px, 11vw, 120px) 0 80px;
}

.hero-video-bg,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.1) brightness(0.58);
}

.hero-gradient {
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.93) 16%, rgba(18, 9, 30, 0.74) 48%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(circle at right center, rgba(138, 43, 226, 0.34), transparent 32%);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.35;
}

.hero-orbit-a {
  width: 520px;
  height: 520px;
  top: -220px;
  right: -120px;
}

.hero-orbit-b {
  width: 380px;
  height: 380px;
  bottom: -150px;
  left: -100px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.7rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero-copy h1 span,
.statement-card h2 span {
  color: var(--gold);
}

.hero-subheadline {
  max-width: 620px;
  margin: 22px 0 30px;
  font-size: 1.1rem;
}

.hero-flags,
.price-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-flags span,
.price-phases span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-card,
.value-card,
.moment-card,
.highlight-card,
.timeline-card,
.trust-card,
.faq-item,
.statement-card,
.video-panel,
.seal-panel,
.ticket-card,
.scenario-card {
  border: 1px solid var(--stroke);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 20px;
  border-radius: var(--radius-sm);
}

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.video-panel,
.seal-panel,
.statement-card {
  border-radius: var(--radius);
}

.video-panel {
  overflow: hidden;
}

.video-panel video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #050505;
}

.panel-tag,
.ticket-chip,
.scenario-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 18px 18px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seal-panel {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 22px;
  align-items: center;
}

.seal-panel img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

.statement {
  padding-top: 20px;
}

.statement-card {
  padding: clamp(28px, 6vw, 44px);
}

.statement-card p {
  max-width: 860px;
}

.moments-grid,
.value-grid,
.speakers-grid,
.talk-highlights {
  display: grid;
  gap: 18px;
}

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

.moment-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.moment-card-featured {
  grid-column: 1 / -1;
}

.moment-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.moment-card-featured img {
  aspect-ratio: 16 / 9;
}

.moment-card figcaption {
  padding: 18px 18px 20px;
}

.moment-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.moment-card span {
  display: block;
  color: var(--text-soft);
  line-height: 1.6;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: 24px;
  border-radius: var(--radius-sm);
}

.value-card h3,
.timeline-card h3,
.highlight-card h3,
.speaker-copy h3,
.scenario-content h3,
.ticket-card h3,
.trust-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.scenarios-grid {
  display: grid;
  gap: 22px;
}

.scenario-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  padding: 20px;
  border-radius: var(--radius);
  align-items: stretch;
}

.scenario-card.featured {
  box-shadow:
    0 0 0 1px rgba(188, 76, 255, 0.22),
    0 26px 90px rgba(138, 43, 226, 0.25);
}

.scenario-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 280px;
  height: 100%;
}

.scenario-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scenario-content .scenario-label {
  margin: 0 0 18px;
}

.scenario-content ul,
.ticket-card ul {
  padding-left: 20px;
  margin: 16px 0 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.timeline-card {
  padding: 24px;
  border-radius: 22px;
}

.timeline-day,
.speaker-copy span,
.highlight-speaker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.speakers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.speaker-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(10, 8, 16, 0.98));
}

.speaker-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.speaker-copy {
  padding: 18px;
}

.speaker-copy h3 {
  margin-top: 10px;
}

.talk-highlights {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.highlight-card {
  padding: 22px;
  border-radius: 22px;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.ticket-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
}

.ticket-card.featured {
  border-color: rgba(188, 76, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(188, 76, 255, 0.24),
    0 28px 100px rgba(138, 43, 226, 0.28);
}

.ticket-card h3 {
  font-size: 2rem;
}

.ticket-chip.muted {
  background: rgba(255, 255, 255, 0.04);
}

.ticket-card .ticket-chip {
  margin: 0 0 18px;
}

.ticket-price {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.95;
}

.ticket-subtitle {
  margin: 10px 0 0;
}

.ticket-note {
  margin: 20px 0 26px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.ticket-card .button {
  width: fit-content;
  margin-top: auto;
}

.price-phases {
  margin: 18px 0 24px;
}

.checkout-note {
  margin: 24px 0 0;
  color: var(--text-muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.trust-points {
  display: grid;
  gap: 16px;
}

.trust-card {
  padding: 22px;
  border-radius: 22px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
  border-radius: 18px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0 0 22px;
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 6vw, 40px);
  border-radius: 30px;
  border: 1px solid rgba(188, 76, 255, 0.4);
  background:
    linear-gradient(135deg, rgba(188, 76, 255, 0.11), rgba(0, 0, 0, 0.55)),
    var(--surface-strong);
  box-shadow:
    0 0 0 1px rgba(188, 76, 255, 0.16),
    0 28px 100px rgba(138, 43, 226, 0.28);
}

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

.countdown-box {
  padding: 18px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.countdown-box span {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.countdown-box small {
  color: var(--text-muted);
}

.footer {
  padding: 0 0 190px;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.85fr);
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(22, 17, 42, 0.94), rgba(10, 7, 20, 0.96)),
    var(--surface-strong);
  box-shadow:
    0 0 0 1px rgba(188, 76, 255, 0.1),
    0 28px 100px rgba(138, 43, 226, 0.16);
}

.footer-brand-block,
.footer-cta-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-badge img {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  object-fit: cover;
}

.footer-title strong {
  display: block;
  font-size: 1.28rem;
}

.footer-title span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-copy {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 12px;
}

.footer-meta-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.footer-meta-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-meta-card strong,
.footer-meta-card a {
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 700;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-cta-block .button {
  width: 100%;
}

.sticky-cta {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(700px, calc(100vw - 24px));
  padding: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 4, 12, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.sticky-cta span {
  flex: 1;
  padding-left: 10px;
  color: var(--text-soft);
  font-weight: 700;
}

.sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .trust-grid,
  .final-cta-card,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .value-grid,
  .moments-grid,
  .timeline,
  .speakers-grid,
  .talk-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topnav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 820px) {
  .hero-proof-grid,
  .moments-grid,
  .value-grid,
  .timeline,
  .tickets-grid,
  .speakers-grid,
  .talk-highlights {
    grid-template-columns: 1fr;
  }

  .moment-card-featured {
    grid-column: auto;
  }

  .scenario-card {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }

  .scenario-content {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .scenario-media {
    order: 2;
    min-height: 260px;
  }

  .scenario-content ul {
    width: min(100%, 520px);
    margin: 16px auto 0;
    text-align: left;
  }

  .topbar-cta {
    display: none;
  }

  .final-cta-card {
    padding-bottom: 28px;
  }

  .ticket-card {
    align-items: center;
    text-align: center;
  }

  .ticket-card .ticket-chip {
    margin: 0 auto 18px;
  }

  .ticket-card ul {
    width: min(100%, 520px);
    margin: 16px auto 0;
    text-align: left;
  }

  .price-phases {
    justify-content: center;
  }

  .ticket-card .button {
    width: 100%;
    align-self: stretch;
  }

  .checkout-note {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100vw - 24px, var(--container));
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 18vw, 4.7rem);
  }

  .topbar-inner {
    min-height: 76px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .video-panel video {
    aspect-ratio: 10 / 14;
  }

  .mobile-menu {
    padding-bottom: 14px;
  }

  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-heading,
  .statement-card,
  .proof-card,
  .seal-panel,
  .moment-card figcaption,
  .value-card,
  .timeline-card,
  .highlight-card,
  .speaker-copy,
  .trust-copy,
  .trust-card,
  .final-cta-card > :first-child {
    text-align: center;
  }

  .section-heading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subheadline,
  .statement-card p,
  .trust-copy p,
  .final-cta-card > :first-child p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-flags,
  .hero-actions,
  .final-actions {
    justify-content: center;
  }

  .seal-panel {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .scenario-card {
    padding: 16px;
  }

  .scenario-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .moment-card img,
  .moment-card-featured img {
    aspect-ratio: 4 / 3;
  }

  .ticket-card {
    padding: 22px 18px;
  }

  .ticket-card h3 {
    font-size: 1.8rem;
  }

  .ticket-price {
    font-size: clamp(2.75rem, 14vw, 3.9rem);
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .sticky-cta {
    width: calc(100vw - 16px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 22px;
    padding: 10px;
    gap: 8px;
  }

  .sticky-cta span {
    display: none;
  }

  .sticky-cta .button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
  }

  .footer {
    padding-bottom: 156px;
  }

  .footer-panel {
    padding: 22px 18px;
    text-align: center;
  }

  .footer-badge {
    justify-content: center;
    text-align: left;
  }

  .footer-brand-block,
  .footer-cta-block {
    align-items: center;
  }

  .footer-nav {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-copy,
  .footer-meta-card {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
