:root {
  color-scheme: dark;
  --ink: #fff7e6;
  --paper: #f3d8a7;
  --muted: rgba(255, 247, 230, 0.74);
  --deep: #06110d;
  --green-950: #081914;
  --green-900: #0d261d;
  --green-800: #123829;
  --green-700: #18563e;
  --gold: #dca84a;
  --gold-soft: #f4d48a;
  --terracotta: #bb4e36;
  --indigo: #1b315c;
  --teal: #1f8b77;
  --line: rgba(244, 212, 138, 0.28);
  --panel: rgba(8, 25, 20, 0.78);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--deep);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #07140f 0%, #06110d 58%, #081914 100%),
    var(--deep);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.08;
  background-image:
    linear-gradient(30deg, transparent 36%, rgba(244, 212, 138, 0.26) 37%, transparent 38%),
    linear-gradient(150deg, transparent 36%, rgba(244, 212, 138, 0.22) 37%, transparent 38%);
  background-size: 58px 58px;
  background-position: center;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 17, 13, 0.22), #06110d 72%);
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.page-glow {
  position: fixed;
  inset: auto 0 0;
  height: 18rem;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(220, 168, 74, 0.12), transparent);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem max(1rem, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(244, 212, 138, 0.18);
  background: rgba(6, 17, 13, 0.34);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(6, 17, 13, 0.88);
  border-color: rgba(244, 212, 138, 0.34);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  font-weight: 900;
}

.brand img,
.footer-brand img {
  width: 2.55rem;
  height: 2.55rem;
  object-fit: cover;
  border-radius: 0.78rem;
  box-shadow: 0 0 0 1px rgba(244, 212, 138, 0.38);
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 0.18rem;
  padding: 0.2rem;
  border: 1px solid rgba(244, 212, 138, 0.13);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.main-nav a,
.sound-toggle {
  min-height: 2.6rem;
  border-radius: 999px;
  border: 0;
  padding: 0.62rem 0.86rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.sound-toggle:hover,
.sound-toggle:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(244, 212, 138, 0.24);
  background: rgba(8, 25, 20, 0.66);
  cursor: pointer;
}

.sound-icon {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(187, 78, 54, 0.16);
}

.sound-toggle.is-playing .sound-icon {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(31, 139, 119, 0.18), 0 0 18px rgba(31, 139, 119, 0.7);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-slider,
.hero-slide,
.slide-bg,
.hero-layer {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: -4;
  background: var(--deep);
}

.hero-slide {
  overflow: hidden;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.04);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 13, 0.08), rgba(6, 17, 13, 0.22));
}

.hero-layer {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 17, 13, 0.96) 0%, rgba(6, 17, 13, 0.82) 38%, rgba(6, 17, 13, 0.28) 72%, rgba(6, 17, 13, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 17, 13, 0.18) 0%, rgba(6, 17, 13, 0.34) 54%, #06110d 100%);
}

.slide-showcase {
  position: absolute;
  z-index: 1;
  top: 7.4rem;
  right: max(1rem, calc((100% - 1180px) / 2));
  bottom: 4.8rem;
  width: min(47vw, 42rem);
  pointer-events: none;
}

.slide-showcase img {
  user-select: none;
}

.hero-logo-mark {
  position: absolute;
  top: 1rem;
  right: 0;
  width: min(30vw, 23rem);
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.42));
}

.hero-card-fan {
  position: absolute;
  right: 3.5rem;
  bottom: 0.4rem;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-card-fan img {
  width: clamp(4.9rem, 8.2vw, 8.4rem);
  margin-left: -2.3rem;
  border-radius: 0.55rem;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.55));
  animation: floatCard 7s ease-in-out infinite;
}

.hero-card-fan img:nth-child(1) {
  transform: rotate(-24deg) translateY(1.2rem);
}

.hero-card-fan img:nth-child(2) {
  transform: rotate(-12deg) translateY(0.1rem);
  animation-delay: -1.2s;
}

.hero-card-fan img:nth-child(3) {
  transform: rotate(0deg) translateY(-0.8rem);
  animation-delay: -2.4s;
}

.hero-card-fan img:nth-child(4) {
  transform: rotate(12deg) translateY(0.1rem);
  animation-delay: -3.6s;
}

.hero-card-fan img:nth-child(5) {
  transform: rotate(24deg) translateY(1.2rem);
  animation-delay: -4.8s;
}

.rank-table,
.mode-card {
  position: absolute;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.56));
}

.rank-table-main {
  right: 0;
  top: 8%;
  width: min(42vw, 35rem);
  transform: rotate(-2deg);
}

.rank-table-second {
  right: 7rem;
  bottom: 4%;
  width: min(35vw, 29rem);
  opacity: 0.94;
  transform: rotate(4deg);
}

.mode-card-main {
  right: 14rem;
  top: 0;
  width: min(22vw, 17.2rem);
  transform: rotate(-6deg);
}

.mode-card-second {
  right: 1rem;
  bottom: 0;
  width: min(22vw, 17.2rem);
  transform: rotate(5deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 5.8rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.05rem;
  font-size: clamp(3.4rem, 8.2vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 41rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 247, 230, 0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0.72rem;
  background: transparent;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  overflow: visible;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.store-badge::after {
  content: none;
}

.store-badge img {
  display: block;
  width: auto;
  max-width: min(100%, 13rem);
  height: 3.9rem;
  object-fit: contain;
}

.play-store img {
  height: 4rem;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.56);
  outline: none;
}

.store-note {
  margin: 0.82rem 0 0;
  color: rgba(255, 247, 230, 0.78);
  font-weight: 700;
}

.hero-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.hero-dots span {
  width: 1.85rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 247, 230, 0.28);
  transition: width 240ms ease, background 240ms ease;
}

.hero-dots span.is-active {
  width: 3.2rem;
  background: var(--gold-soft);
}

.signal-bar {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: -2.8rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.72rem;
}

.signal-bar div,
.feature-card,
.rank-card,
.trust-card,
.timeline-item,
.ornament-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 48%),
    rgba(8, 25, 20, 0.82);
  box-shadow: var(--shadow);
}

.signal-bar div {
  min-height: 5.6rem;
  padding: 1rem;
  border-radius: 0.8rem;
}

.signal-bar span,
.timeline-item span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-bar strong {
  display: block;
  margin-top: 0.28rem;
  font-size: 1.12rem;
}

.section,
.feature-band,
.cards-section,
.rank-section,
.timeline-section,
.trust-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.4rem;
  align-items: center;
}

.section-copy p,
.cards-copy p {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.75;
}

.ornament-panel {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(6, 17, 13, 0.42), rgba(6, 17, 13, 0.86)),
    url("assets/showcase/bg-table.jpg") center / cover;
}

.ornament-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(244, 212, 138, 0.42);
  border-radius: 0.8rem;
}

.panel-logo {
  position: relative;
  z-index: 1;
  width: min(18rem, 56%);
  border-radius: 2rem;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.46));
}

.panel-cards {
  position: absolute;
  bottom: 2rem;
  display: flex;
  align-items: end;
  justify-content: center;
}

.panel-cards img {
  width: clamp(4rem, 8vw, 6.8rem);
  margin-left: -1.35rem;
  border-radius: 0.45rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.42);
}

.panel-cards img:nth-child(1) {
  transform: rotate(-13deg);
}

.panel-cards img:nth-child(2) {
  transform: translateY(-0.6rem);
}

.panel-cards img:nth-child(3) {
  transform: rotate(13deg);
}

.band-heading {
  max-width: 52rem;
  margin-bottom: 1.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-card,
.rank-card,
.trust-card,
.timeline-item {
  border-radius: 0.78rem;
  padding: 1.1rem;
}

.feature-card {
  min-height: 17rem;
}

.feature-number {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #241303;
  font-weight: 1000;
}

.feature-card h3,
.rank-card h3,
.trust-card h3 {
  margin: 1.1rem 0 0.55rem;
}

.feature-card p,
.rank-card p,
.trust-card p,
.timeline-item p {
  color: var(--muted);
  line-height: 1.62;
}

.cards-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid rgba(244, 212, 138, 0.18);
  border-bottom: 1px solid rgba(244, 212, 138, 0.18);
}

.card-gallery {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.card-gallery::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(24, 86, 62, 0.88), rgba(6, 17, 13, 0.28) 68%),
    linear-gradient(45deg, rgba(244, 212, 138, 0.15), transparent);
  border: 1px solid rgba(244, 212, 138, 0.22);
}

.card-gallery img {
  position: relative;
  width: clamp(4.6rem, 9vw, 7.6rem);
  margin-left: -1rem;
  border-radius: 0.55rem;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.5);
  transition: transform 220ms ease;
}

.card-gallery img:nth-child(1) {
  transform: rotate(-20deg) translateY(0.8rem);
}

.card-gallery img:nth-child(2) {
  transform: rotate(-9deg) translateY(-0.2rem);
}

.card-gallery img:nth-child(3) {
  transform: rotate(0deg) translateY(-1rem);
}

.card-gallery img:nth-child(4) {
  transform: rotate(10deg) translateY(-0.2rem);
}

.card-gallery img:nth-child(5) {
  transform: rotate(20deg) translateY(0.8rem);
}

.card-gallery:hover img {
  transform: translateY(-0.7rem);
}

.rank-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.rank-card {
  min-height: 25rem;
  overflow: hidden;
}

.rank-card img {
  display: block;
  width: 100%;
  height: 15rem;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.42));
}

.timeline-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  min-height: 7.4rem;
}

.timeline-item p {
  margin: 0.5rem 0 0;
}

.trust-section {
  padding-bottom: 7rem;
}

.trust-grid {
  margin-top: 1.5rem;
}

.trust-card a {
  display: inline-flex;
  margin-top: 0.65rem;
  color: var(--gold-soft);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 2.6rem;
  border-top: 1px solid rgba(244, 212, 138, 0.18);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.site-footer a {
  color: var(--muted);
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-soft);
  outline: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.coming-modal {
  position: relative;
  width: min(32rem, 100%);
  padding: 1.35rem;
  border: 1px solid rgba(244, 212, 138, 0.42);
  border-radius: 0.95rem;
  background:
    linear-gradient(180deg, rgba(18, 56, 41, 0.98), rgba(6, 17, 13, 0.98)),
    var(--green-900);
  box-shadow: var(--shadow);
}

.coming-modal h2 {
  font-size: 2.4rem;
}

.coming-modal p:last-child {
  color: var(--muted);
  line-height: 1.68;
}

.modal-close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(244, 212, 138, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.legal-body {
  background: var(--deep);
}

.legal-main {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 4rem;
}

.legal-main article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(8, 25, 20, 0.84);
  box-shadow: var(--shadow);
}

.legal-main h1 {
  max-width: 100%;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal-main h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.15;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-main a {
  color: var(--gold-soft);
  font-weight: 850;
}

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

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

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.75rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    overflow-x: auto;
  }

  .main-nav a {
    flex: 1 0 auto;
    text-align: center;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-layer {
    background:
      linear-gradient(180deg, rgba(6, 17, 13, 0.36), rgba(6, 17, 13, 0.78) 58%, #06110d 100%),
      linear-gradient(90deg, rgba(6, 17, 13, 0.82), rgba(6, 17, 13, 0.24));
  }

  .slide-showcase {
    top: 8.6rem;
    right: 1rem;
    bottom: 2.5rem;
    width: min(54vw, 32rem);
    opacity: 0.82;
  }

  .hero-logo-mark {
    width: min(34vw, 18rem);
  }

  .hero-card-fan {
    right: 1rem;
  }

  .rank-table-second {
    right: 3rem;
  }

  .mode-card-main {
    right: 9rem;
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 8.7rem;
    padding-bottom: 3.6rem;
  }

  .signal-bar,
  .feature-grid,
  .rank-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .cards-section,
  .timeline-section {
    grid-template-columns: 1fr;
  }

  .signal-bar,
  .section,
  .feature-band,
  .cards-section,
  .rank-section,
  .timeline-section,
  .trust-section,
  .site-footer {
    width: auto;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .ornament-panel {
    min-height: 24rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 0.55rem;
    padding: 0.62rem 0.75rem;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: calc(100vw - 1.5rem);
    justify-self: center;
    gap: 0;
    padding: 0.16rem;
    overflow: hidden;
  }

  .main-nav a[href="#privacy"] {
    display: none;
  }

  .main-nav a {
    min-width: 0;
    min-height: 2.35rem;
    padding: 0.52rem 0.58rem;
    font-size: 0.84rem;
  }

  .brand span,
  .sound-toggle span:last-child {
    display: none;
  }

  .sound-toggle {
    width: 2.55rem;
    justify-content: center;
    padding: 0;
  }

  .slide-bg {
    object-position: 58% center;
  }

  .slide-showcase {
    top: 6.9rem;
    right: -4.6rem;
    bottom: auto;
    width: 25rem;
    height: 20rem;
    opacity: 0.42;
  }

  .hero-logo-mark {
    top: 0;
    right: 3.8rem;
    width: 16rem;
  }

  .hero-card-fan {
    right: 4rem;
    bottom: 0;
  }

  .hero-card-fan img {
    width: 5.2rem;
    margin-left: -2rem;
  }

  .rank-table-main {
    top: 1rem;
    right: 2rem;
    width: 23rem;
  }

  .rank-table-second {
    right: 6rem;
    bottom: 0;
    width: 19rem;
  }

  .mode-card-main {
    right: 12rem;
    width: 9rem;
  }

  .mode-card-second {
    right: 4.5rem;
    width: 9rem;
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 8.25rem;
  }

  .hero-copy {
    max-width: 21rem;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .store-note {
    max-width: 21rem;
    overflow-wrap: break-word;
  }

  .store-badge {
    max-width: 46%;
    min-width: 0;
  }

  .store-badge img,
  .play-store img {
    max-width: 100%;
    height: 3.25rem;
  }

  .hero-dots {
    margin-top: 0.9rem;
  }

  .signal-bar,
  .feature-grid,
  .rank-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .signal-bar,
  .section,
  .feature-band,
  .cards-section,
  .rank-section,
  .timeline-section,
  .trust-section,
  .site-footer {
    width: 340px;
    max-width: calc(100vw - 2rem);
    margin-left: auto;
    margin-right: auto;
  }

  .section,
  .feature-band,
  .cards-section,
  .rank-section,
  .timeline-section,
  .trust-section {
    padding: 4.2rem 0;
  }

  .card-gallery {
    min-height: 18rem;
    padding-inline: 0;
  }

  .card-gallery img {
    width: 5rem;
    margin-left: -1.65rem;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}
