:root {
  --paper: #f7f0e5;
  --paper-light: #fffaf1;
  --ink: #1f2427;
  --muted: #65645f;
  --ember: #b9472b;
  --ember-deep: #8f311e;
  --ember-light: #e57b4f;
  --night: #202529;
  --night-soft: #2b3033;
  --wood: #7d3c21;
  --line: rgba(31, 36, 39, 0.14);
  --shadow: 0 28px 70px rgba(54, 31, 19, 0.2);
  --header-height: 84px;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 2%, rgba(225, 168, 109, 0.16), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--ember-light);
  outline-offset: 4px;
  border-radius: 5px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 11px 16px;
  color: white;
  background: var(--night);
  border-radius: 8px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 240, 229, 0.88);
  box-shadow: 0 8px 28px rgba(54, 31, 19, 0.05);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand.is-active span {
  color: var(--ember);
}

.brand img,
.mobile-menu-toggle img,
.footer-brand img {
  border-radius: 10px;
  box-shadow: 0 5px 13px rgba(62, 33, 21, 0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  font-size: 14px;
  font-weight: 670;
}

.nav-links a {
  text-decoration: none;
}

.nav-links .nav-section-link:not(.nav-support) {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-links .nav-section-link:not(.nav-support)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--ember);
  border-radius: 3px 3px 0 0;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links .nav-section-link.is-active:not(.nav-support) {
  color: var(--ember);
}

.nav-links .nav-section-link.is-active:not(.nav-support)::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:not(.nav-support):hover {
  color: var(--ember);
}

.nav-support {
  padding: 10px 17px;
  color: var(--paper-light);
  background: var(--ink);
  border-radius: 999px;
}

.nav-support.is-active {
  background: var(--ember);
}

.mobile-menu-toggle,
.mobile-brand,
.mobile-header-support,
.mobile-nav-layer {
  display: none;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
  padding-block: 76px 82px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ember);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f2a07b;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 680px;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: white;
  background: var(--ember);
  box-shadow: 0 12px 28px rgba(185, 71, 43, 0.24);
}

.button-primary:hover {
  background: var(--ember-deep);
  box-shadow: 0 15px 34px rgba(143, 49, 30, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.52);
}

.button-secondary:hover {
  background: var(--paper-light);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 28px;
  margin: 28px 0 0;
  padding: 0;
  color: #555551;
  font-size: 13px;
  font-weight: 640;
  list-style: none;
}

.proof-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--ember);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
}

.sun-disc {
  position: absolute;
  width: min(35vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #d95c36, #a83823);
  box-shadow: inset -40px -30px 90px rgba(89, 24, 15, 0.2), 0 30px 90px rgba(140, 57, 32, 0.2);
}

.phone {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 7px solid #15191b;
  border-radius: 38px;
  background: #15191b;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 30%;
  height: 23px;
  border-radius: 999px;
  background: #111517;
  transform: translateX(-50%);
}

.phone-hero {
  z-index: 2;
  width: min(325px, 66vw);
  transform: rotate(2deg);
}

.hero-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(53, 30, 19, 0.18);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

.hero-note strong {
  display: block;
  font-size: 13px;
}

.hero-note-top {
  top: 21%;
  right: 0;
}

.hero-note-bottom {
  bottom: 19%;
  left: -2%;
}

.note-icon {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ember);
  border-radius: 10px;
  font-weight: 800;
}

.books-ribbon {
  height: 112px;
  background-color: var(--night);
  background-image: linear-gradient(90deg, rgba(30, 34, 37, 0.06), rgba(30, 34, 37, 0.06)), url("community-assets/player-reddit-banner.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 112px;
}

.import-section {
  padding: 120px 0 0;
  color: #fff8ed;
  background:
    radial-gradient(circle at 86% 16%, rgba(185, 71, 43, 0.24), transparent 27rem),
    var(--night);
  overflow: hidden;
}

.import-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.import-copy {
  padding-bottom: 82px;
}

.section-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 27px 0 0;
  color: #c9c9c3;
  font-size: 18px;
  line-height: 1.7;
}

.steps {
  display: grid;
  gap: 20px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.step-number {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--serif);
  font-size: 17px;
}

.steps strong,
.steps span:not(.step-number) {
  display: block;
}

.steps strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.steps span:not(.step-number) {
  color: #aeb0ad;
  font-size: 14px;
  line-height: 1.4;
}

.compatibility-note {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.compatibility-note a {
  display: inline-block;
  margin-top: 7px;
  color: #f2a07b;
  font-weight: 720;
}

.import-visuals {
  position: relative;
  align-self: end;
  min-height: 730px;
}

.phone-import {
  position: absolute;
  bottom: -70px;
  width: 286px;
}

.phone-import figcaption {
  position: absolute;
  right: 11px;
  bottom: 11px;
  left: 11px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.9);
  border-radius: 11px;
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 730;
  text-align: center;
}

.phone-back {
  left: 0;
  z-index: 1;
  transform: rotate(-4deg);
  opacity: 0.88;
}

.phone-front {
  right: 3%;
  z-index: 2;
  transform: rotate(4deg) translateY(-30px);
}

.drop-badge {
  position: absolute;
  top: 27%;
  left: 44%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--ink);
  background: #fff8ed;
  border-radius: 13px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 780;
  transform: rotate(-2deg);
}

.drop-badge span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ember);
  border-radius: 9px;
  font-size: 18px;
}

.import-alternatives {
  position: relative;
  z-index: 5;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.import-alternatives p {
  margin: 0;
  color: #bfc0bd;
  font-size: 14px;
  line-height: 1.5;
}

.import-alternatives strong {
  color: white;
}

.features-section {
  padding-block: 126px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 420px);
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 250, 241, 0.66);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(#914527, #5a2918);
  box-shadow: 0 -5px 12px rgba(59, 25, 12, 0.2);
}

.feature-card-large {
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 80% 74%, rgba(216, 105, 62, 0.16), transparent 48%),
    rgba(255, 250, 241, 0.7);
}

.feature-card-player {
  color: #f7f0e5;
  background: var(--night-soft);
}

.feature-card-review {
  background: #ead6c7;
}

.feature-card-copy {
  position: relative;
  z-index: 3;
  max-width: 430px;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--ember);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card-player .feature-kicker {
  color: #f2a07b;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.feature-card p {
  max-width: 390px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.feature-card-player p {
  color: #bbbdbb;
}

.phone-feature {
  position: absolute;
  z-index: 2;
  width: 270px;
  border-width: 6px;
  border-radius: 33px;
}

.feature-card-large .phone-feature {
  right: 8%;
  bottom: -230px;
  width: min(380px, 50%);
  transform: rotate(2deg);
}

.feature-card-player .phone-feature,
.feature-card-review .phone-feature {
  right: 8%;
  bottom: -300px;
  width: 210px;
  transform: rotate(3deg);
}

.feature-card-review .phone-feature {
  bottom: -330px;
  transform: rotate(-3deg);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  padding: 0;
  list-style: none;
}

.feature-pills li {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #52524e;
  background: rgba(255, 250, 241, 0.44);
  font-size: 13px;
  font-weight: 650;
}

.sources-section {
  padding-block: 116px 124px;
  border-block: 1px solid var(--line);
  background: #efe2d2;
}

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

.source-card {
  min-height: 325px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(82, 51, 33, 0.15);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.78);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.source-card:hover {
  background: var(--paper-light);
  box-shadow: 0 18px 45px rgba(78, 43, 24, 0.11);
  transform: translateY(-5px);
}

.source-type {
  color: var(--ember);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-card h3 {
  margin: 46px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.source-card p {
  margin: 13px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.source-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 760;
}

.rights-note {
  margin: 22px 0 0;
  color: #716d66;
  font-size: 12px;
  text-align: center;
}

.support-section {
  padding-block: 104px;
}

@media (min-width: 701px) {
  .support-section {
    min-height: calc(100vh - 214px);
    display: flex;
    align-items: center;
  }

  .support-card {
    width: 100%;
  }
}

.support-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(34px, 5vw, 60px);
  color: #fff8ed;
  border-radius: 30px;
  background:
    linear-gradient(110deg, rgba(185, 71, 43, 0.98), rgba(139, 46, 29, 0.94)),
    url("community-assets/player-reddit-banner.png") center / auto 100%;
  box-shadow: 0 26px 60px rgba(115, 44, 25, 0.22);
}

.support-card img {
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(53, 17, 9, 0.24);
}

.support-card h2 {
  font-size: clamp(35px, 4vw, 53px);
}

.support-card p:not(.eyebrow) {
  margin: 13px 0 0;
  color: #f1d4c7;
  font-size: 15px;
  line-height: 1.55;
}

.button-cream {
  color: var(--ink);
  background: var(--paper-light);
  white-space: nowrap;
}

.button-cream:hover {
  box-shadow: 0 14px 32px rgba(68, 20, 10, 0.23);
}

.site-footer {
  color: #d8d5cd;
  background: var(--night);
}

.books-ribbon-footer {
  height: 64px;
  background-size: auto 76px;
  background-position: center 45%;
  opacity: 0.72;
}

.footer-content {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: white;
  font-size: 15px;
}

.footer-brand span {
  margin-top: 2px;
  color: #979995;
  font-size: 11px;
}

.footer-content > p {
  color: #979995;
  font-family: var(--serif);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
  font-weight: 680;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 24px;
  }

  .hero-note {
    display: none;
  }

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

  .import-copy {
    max-width: 680px;
    padding-bottom: 10px;
  }

  .import-visuals {
    width: min(620px, 100%);
    min-height: 700px;
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .feature-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 700px 440px;
  }

  .feature-card-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .feature-card-large .phone-feature {
    bottom: -280px;
    width: 335px;
  }

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

  .source-card {
    min-height: 0;
  }

  .source-card h3 {
    margin-top: 30px;
  }

  .support-card {
    grid-template-columns: auto 1fr;
  }

  .support-card .button {
    grid-column: 1 / 3;
    justify-self: start;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content > p {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(100% - 30px, 560px);
  }

  .nav {
    min-height: 72px;
    justify-content: flex-start;
    gap: 10px;
  }

  .brand-home,
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    width: 34px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    align-items: center;
    padding: 0;
    color: var(--ink);
    border: 0;
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle:focus-visible {
    outline: 3px solid var(--ember-light);
    outline-offset: 3px;
  }

  .mobile-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-weight: 760;
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  .mobile-brand.is-active span {
    color: var(--ember);
  }

  .mobile-brand img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    box-shadow: 0 5px 13px rgba(62, 33, 21, 0.15);
  }

  .mobile-header-support {
    flex: 0 0 auto;
    display: inline-flex;
    margin-left: auto;
    text-decoration: none;
  }

  .menu-toggle-icon {
    width: 20px;
    height: 14px;
    display: grid;
    align-content: space-between;
  }

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

  .mobile-nav-open .menu-toggle-icon i:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-nav-open .menu-toggle-icon i:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-open .menu-toggle-icon i:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-open {
    overflow: hidden;
  }

  .mobile-nav-layer {
    position: fixed;
    z-index: 19;
    inset: calc(var(--header-height) + 1px) 0 0;
    display: block;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 240ms ease;
  }

  .mobile-nav-open .mobile-nav-layer {
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 0;
    border: 0;
    background: rgba(31, 36, 39, 0.44);
    opacity: 0;
    cursor: default;
    transition: opacity 220ms ease;
  }

  .mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
  }

  .mobile-nav-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(330px, 86vw);
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 28px 18px;
    background: var(--paper-light);
    box-shadow: 24px 0 55px rgba(41, 27, 19, 0.2);
    transform: translateX(-105%);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav-open .mobile-nav-panel {
    transform: translateX(0);
  }

  .mobile-nav-panel > p {
    margin: 0 10px 18px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .mobile-nav-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 14px;
    border-radius: 13px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-decoration: none;
  }

  .mobile-nav-panel a span:last-child {
    color: var(--ember);
    font-family: var(--sans);
    font-size: 15px;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-nav-panel a.is-active {
    color: var(--ember-deep);
    background: rgba(185, 71, 43, 0.1);
  }

  .mobile-nav-panel a.is-active span:last-child {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-support {
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: calc(var(--header-height) + 16px) 76px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 580px;
    margin-top: 18px;
  }

  .sun-disc {
    width: 90vw;
    max-width: 440px;
  }

  .phone-hero {
    width: min(300px, 74vw);
  }

  .books-ribbon {
    height: 86px;
    background-image: url("community-assets/player-reddit-banner-mobile.png");
    background-size: auto 86px;
  }

  .import-section,
  .features-section,
  .sources-section {
    padding-top: 88px;
  }

  .import-visuals {
    min-height: 600px;
  }

  .phone-import {
    bottom: -45px;
    width: min(230px, 61vw);
  }

  .phone-front {
    right: 0;
  }

  .drop-badge {
    top: 25%;
    left: 34%;
  }

  .import-alternatives {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .features-section,
  .sources-section {
    padding-bottom: 94px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: 650px repeat(2, 430px);
  }

  .feature-card-large {
    grid-column: auto;
  }

  .feature-card-large .phone-feature {
    right: 50%;
    bottom: -290px;
    width: 310px;
    transform: translateX(50%) rotate(2deg);
  }

  .feature-card-player .phone-feature,
  .feature-card-review .phone-feature {
    right: 9%;
  }

  .source-card {
    padding: 27px;
  }

  .support-section {
    min-height: calc(100vh - 266px);
    display: flex;
    align-items: center;
    padding-block: 76px;
  }

  .support-card {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 24px;
  }

  .support-card img {
    width: 80px;
    height: 80px;
    border-radius: 18px;
  }

  .support-card .button {
    grid-column: auto;
    justify-self: stretch;
    white-space: normal;
    text-align: center;
  }

  .footer-content {
    min-height: 180px;
    grid-template-columns: 1fr;
    padding-block: 30px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .button {
    width: 100%;
  }

  .proof-list {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .import-visuals {
    min-height: 520px;
  }

  .phone-import {
    width: 54vw;
    border-width: 5px;
    border-radius: 29px;
  }

  .phone-back {
    left: -7%;
  }

  .phone-front {
    right: -4%;
  }

  .drop-badge {
    left: 27%;
    font-size: 10px;
  }

  .feature-card-player .phone-feature,
  .feature-card-review .phone-feature {
    right: 4%;
    width: 185px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
