:root {
  --banana: #ffd21f;
  --banana-deep: #e9ae00;
  --warm-accent: #b97624;
  --blue: #129ed4;
  --coral: #ed6548;
  --ink: #1d1d1b;
  --muted: #63645d;
  --canvas: #fffdf7;
  --surface: #ffffff;
  --line: #e6e1d5;
  --soft: #f7f4eb;
  --night: #1f1b18;
  --night-surface: #2d2822;
  --night-muted: #decda5;
  --mist: #fff8e5;
  --signal: rgba(233, 174, 0, 0.18);
  --signal-soft: rgba(255, 210, 31, 0.14);
  --page-width: 1120px;
  --radius: 6px;
  --shadow-sm:
    0 5px 14px rgba(233, 174, 0, 0.07), 0 2px 8px rgba(34, 27, 7, 0.03);
  --shadow:
    0 14px 30px rgba(233, 174, 0, 0.1), 0 6px 18px rgba(34, 27, 7, 0.04);
  --shadow-hover:
    0 18px 34px rgba(233, 174, 0, 0.15), 0 8px 22px rgba(34, 27, 7, 0.05);
  --motion: 180ms ease-out;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
summary:focus-visible,
.featured-grid:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.22;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.6vw, 44px);
}
h3 {
  margin-bottom: 8px;
  font-size: 21px;
}
p {
  color: var(--muted);
}
.content {
  width: min(calc(100% - 32px), var(--page-width));
  margin: 0 auto;
}
.narrow-content {
  max-width: 820px;
}
.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(233, 174, 0, 0.14);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 3px 14px rgba(233, 174, 0, 0.05);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(calc(100% - 32px), var(--page-width));
  margin: 0 auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 21px;
  font-weight: 800;
}
.brand-logo {
  width: 28px;
  height: 28px;
  flex: none;
  object-fit: contain;
}
.header-download,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
  transition:
    transform var(--motion),
    background-color var(--motion),
    box-shadow var(--motion),
    color var(--motion);
}
.button-icon {
  width: 18px;
  height: 18px;
  flex: none;
  margin-right: 8px;
}
.header-download {
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: var(--banana);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.header-download:hover {
  transform: translateY(-1px);
  background: var(--banana-deep);
  box-shadow: 0 7px 16px rgba(34, 27, 7, 0.12);
}
.header-download:active,
.button-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.site-nav {
  display: none;
}
.site-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  border-radius: 4px;
  color: #45453f;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition:
    background-color var(--motion),
    color var(--motion),
    box-shadow var(--motion);
}
.site-nav a:hover {
  background: var(--signal-soft);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--banana);
}
.hero::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(92, 75, 0, 0.18);
  content: "";
}
.hero-halftone {
  position: absolute;
  z-index: 0;
  width: clamp(300px, 39vw, 680px);
  aspect-ratio: 1.12;
  opacity: 0.58;
  background-image: radial-gradient(ellipse, rgba(92, 75, 0, 0.72) 0 1.65px, transparent 2.4px);
  background-size: 10px 13px;
  pointer-events: none;
}
.hero-halftone-left {
  top: -152px;
  left: -168px;
  clip-path: polygon(0 0, 90% 0, 72% 35%, 100% 62%, 58% 92%, 0 75%);
  transform: rotate(-17deg);
  -webkit-mask-image: radial-gradient(ellipse 88% 74% at 25% 27%, #000 4%, transparent 94%);
  mask-image: radial-gradient(ellipse 88% 74% at 25% 27%, #000 4%, transparent 94%);
}
.hero-halftone-right {
  right: -168px;
  bottom: -164px;
  clip-path: polygon(22% 0, 100% 17%, 100% 100%, 0 87%, 31% 55%, 0 24%);
  transform: rotate(15deg);
  -webkit-mask-image: radial-gradient(ellipse 88% 76% at 78% 73%, #000 4%, transparent 94%);
  mask-image: radial-gradient(ellipse 88% 76% at 78% 73%, #000 4%, transparent 94%);
}
.hero-halftone-top {
  top: -110px;
  right: 12%;
  width: clamp(220px, 26vw, 440px);
  opacity: 0.4;
  transform: rotate(9deg);
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 62% 25%, #000 3%, transparent 94%);
  mask-image: radial-gradient(ellipse 78% 78% at 62% 25%, #000 3%, transparent 94%);
}
.hero-halftone-bottom {
  bottom: -128px;
  left: 7%;
  width: clamp(220px, 27vw, 450px);
  opacity: 0.42;
  transform: rotate(-11deg);
  -webkit-mask-image: radial-gradient(ellipse 80% 76% at 30% 78%, #000 3%, transparent 94%);
  mask-image: radial-gradient(ellipse 80% 76% at 30% 78%, #000 3%, transparent 94%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 590px;
  gap: 28px;
  align-items: center;
  padding: 72px 0;
}
.hero-grid > * {
  min-width: 0;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
}
.hero-summary {
  max-width: 35em;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: #4d430e;
  font-size: 18px;
}
.cta-group {
  width: 100%;
  display: grid;
  gap: 10px;
  max-width: none;
}
.cta-group .button {
  width: 100%;
}
.button {
  padding: 12px 18px;
  border: 2px solid var(--ink);
  text-align: center;
}
.button-primary {
  border-color: #272c39;
  background: #272c39;
  box-shadow: 0 7px 16px rgba(233, 174, 0, 0.18);
  color: #fff;
}
.button-primary:hover {
  transform: translateY(-1px);
  border-color: #3c4252;
  background: #3c4252;
  box-shadow: 0 7px 16px rgba(34, 27, 7, 0.12);
}
.button-secondary {
  background: rgba(255, 253, 247, 0.38);
  color: var(--ink);
}
.button-secondary:hover {
  background: rgba(255, 253, 247, 0.68);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.button-secondary:active {
  transform: translateY(0);
  box-shadow: none;
}
.media-slot {
  pointer-events: none;
}
.hero-media {
  position: relative;
  isolation: isolate;
  background: transparent;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.hero-media > img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: contain;
}
.hero-float-card {
  position: absolute;
  z-index: 2;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid rgba(233, 174, 0, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 12px 24px rgba(120, 92, 24, 0.12);
  transform-style: preserve-3d;
}
.hero-float-card > span:last-child {
  white-space: nowrap;
}
.hero-float-card strong,
.hero-float-card small {
  display: block;
}
.hero-float-card strong {
  margin-bottom: 3px;
  font-size: 15px;
}
.hero-float-card small {
  color: var(--muted);
  font-size: 14px;
}
.hero-float-card-top {
  top: 0;
  right: 0;
  transform: perspective(480px) rotateY(-9deg) rotateZ(3deg);
  transform-origin: left center;
}
.hero-float-card-bottom {
  bottom: 0;
  left: 0;
  transform: perspective(480px) rotateY(8deg) rotateZ(-3deg);
  transform-origin: right center;
}
.hero-card-symbol {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  flex: none;
  border-radius: 5px;
  background: #ffe58b;
  overflow: hidden;
}
.hero-card-signal::before,
.hero-card-cover::before {
  position: absolute;
  content: "";
}
.hero-card-signal::before {
  width: 12px;
  height: 12px;
  top: 9px;
  left: 9px;
  border-radius: 50%;
  background: var(--banana-deep);
  box-shadow: 8px -7px 0 rgba(255, 253, 247, 0.84);
}
.hero-card-cover {
  background: #f4c49d;
}
.hero-card-cover::before {
  width: 18px;
  height: 22px;
  right: -3px;
  bottom: -5px;
  border-radius: 12px 0 0;
  background: #fff0dc;
}

.section {
  position: relative;
  padding: 76px 0;
}
.section-tint {
  border-block: 1px solid rgba(233, 174, 0, 0.1);
  background: var(--soft);
}
.section-heading {
  max-width: 660px;
  margin-bottom: 34px;
}
.section-heading h2::before {
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--banana);
  content: "";
}
.centered-heading h2::before {
  margin-inline: auto;
}
.section-heading p:last-child {
  margin-bottom: 0;
}
.split-heading {
  display: grid;
  gap: 14px;
  max-width: none;
}
.centered-heading {
  margin-inline: auto;
  text-align: center;
}
.featured-grid {
  display: grid;
  grid-auto-columns: minmax(268px, 78vw);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.feature-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(233, 174, 0, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transition:
    transform var(--motion),
    box-shadow var(--motion),
    border-color var(--motion),
    background-color var(--motion);
}
.feature-card:hover {
  border-color: rgba(233, 174, 0, 0.42);
  background: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.cover-slot {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(233, 174, 0, 0.22);
  border-radius: 5px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 7px 16px rgba(233, 174, 0, 0.12);
}
.cover-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-kicker {
  margin-bottom: 6px;
  color: var(--warm-accent);
  font-size: 14px;
  font-weight: 800;
}
.feature-card h3 {
  margin-bottom: 10px;
}
.feature-card p:not(.card-kicker) {
  margin-bottom: 0;
  font-size: 15px;
}

.showcase-grid {
  display: grid;
  gap: 18px;
}
.topic-panel,
.rank-panel {
  border: 1px solid rgba(233, 174, 0, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}
.topic-panel {
  padding: 26px;
}
.topic-panel > p {
  margin-bottom: 20px;
  font-size: 16px;
}
.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.topic-list span {
  box-sizing: border-box;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(233, 174, 0, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform var(--motion),
    border-color var(--motion),
    background-color var(--motion),
    box-shadow var(--motion);
}
.topic-ornament {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.topic-ornament h4 {
  margin: 0 0 10px;
  color: var(--warm-accent);
  font-size: 14px;
}
.topic-recommendations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.topic-recommendations a {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(233, 174, 0, 0.14);
  border-radius: 4px;
  background: rgba(255, 248, 220, 0.58);
  color: var(--ink);
  transition:
    background-color var(--motion),
    border-color var(--motion),
    transform var(--motion);
}
.topic-recommendations strong {
  font-size: 16px;
}
.topic-recommendations small {
  color: var(--muted);
  font-size: 14px;
}
.topic-recommendations a:hover {
  border-color: rgba(233, 174, 0, 0.34);
  background: rgba(255, 213, 43, 0.42);
  transform: translateY(-1px);
}
.rank-panel {
  overflow: hidden;
  padding: 22px 26px;
}
.panel-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.panel-title h3 {
  margin: 0;
}
.panel-title span {
  color: var(--muted);
  font-size: 13px;
}
.rank-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rank-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 12px 6px;
  border-top: 1px solid rgba(233, 174, 0, 0.14);
  transition: background-color var(--motion);
}
.rank-list li:hover {
  background: var(--mist);
}
.rank-swatch {
  position: relative;
  width: 42px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(233, 174, 0, 0.16);
  border-radius: 3px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.rank-swatch::before,
.rank-swatch::after {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.46);
  content: "";
  opacity: 0.58;
}
.swatch-one {
  background: var(--banana);
}
.swatch-one::before {
  width: 27px;
  height: 27px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
}
.swatch-one::after {
  width: 15px;
  height: 15px;
  top: 9px;
  left: 7px;
  border-radius: 50% 50% 5px 50%;
  background: rgba(255, 253, 247, 0.66);
}
.swatch-two {
  background: var(--warm-accent);
}
.swatch-two::before {
  width: 26px;
  height: 26px;
  top: 14px;
  left: 8px;
  border-radius: 5px;
  transform: rotate(22deg);
}
.swatch-two::after {
  width: 13px;
  height: 13px;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  background: rgba(255, 239, 191, 0.58);
}
.swatch-three {
  background: var(--coral);
}
.swatch-three::before {
  width: 25px;
  height: 25px;
  right: -5px;
  bottom: 7px;
  border-radius: 4px;
  transform: rotate(45deg);
}
.swatch-three::after {
  width: 13px;
  height: 19px;
  top: 7px;
  left: 7px;
  border-radius: 8px 8px 3px 8px;
  background: rgba(255, 245, 235, 0.58);
}
.swatch-four {
  background: #5d5f8f;
}
.swatch-four::before {
  width: 30px;
  height: 19px;
  top: 17px;
  left: 7px;
  border-radius: 14px 4px 14px 4px;
}
.swatch-four::after {
  width: 12px;
  height: 12px;
  bottom: 6px;
  right: 6px;
  border-radius: 50%;
  background: rgba(255, 249, 221, 0.52);
}
.rank-copy {
  min-width: 0;
  display: grid;
}
.rank-copy strong {
  font-size: 16px;
}
.rank-copy small {
  color: var(--muted);
  font-size: 14px;
}

.update-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.update-heading h2 {
  margin-bottom: 0;
}
.more-updates {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffe68a;
  font-weight: 800;
  transition:
    color var(--motion),
    border-color var(--motion),
    background-color var(--motion);
  white-space: nowrap;
}
.more-updates:hover {
  border-color: #fff0b6;
  background: rgba(255, 210, 31, 0.12);
  color: #fff;
}
.more-updates::after {
  margin-left: 8px;
  content: "→";
}
.update-intro {
  max-width: 38em;
  margin: 14px 0 24px;
  color: var(--night-muted);
}
.update-heading h2 {
  color: #fff;
}
.update-heading {
  color: #fff;
}
.update-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.update-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 230, 138, 0.12);
  border-left: 5px solid var(--banana);
  border-radius: 4px;
  background: var(--night-surface);
  box-shadow: inset 0 1px 0 rgba(255, 230, 138, 0.06);
  transition:
    background-color var(--motion),
    box-shadow var(--motion),
    border-color var(--motion);
}
.update-list li:hover {
  border-color: rgba(255, 230, 138, 0.26);
  background: #383128;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.16),
    0 0 20px rgba(255, 210, 31, 0.08);
}
.update-list strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 17px;
}
.update-list p {
  margin: 0;
  color: var(--night-muted);
  font-size: 16px;
}
.section:has(.update-list) {
  background: var(--night);
}
.section:has(.update-list) .content {
  padding-top: 0;
}

.benefit-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 24px;
  padding: 22px 10px 10px;
}
.benefit-grid article {
  position: relative;
  min-height: 180px;
  display: flex;
  overflow: visible;
  padding: 30px 16px 16px;
  border: 1px solid rgba(233, 174, 0, 0.12);
  border-radius: 22px;
  background: #fffefa;
  box-shadow:
    0 20px 36px rgba(120, 92, 24, 0.12),
    0 4px 10px rgba(34, 27, 7, 0.06);
  transition:
    transform var(--motion),
    box-shadow var(--motion);
}
.benefit-grid article::before {
  position: absolute;
  z-index: 2;
  top: -14px;
  left: 50%;
  width: 23px;
  height: 23px;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: var(--coral);
  box-shadow:
    0 5px 0 rgba(150, 73, 45, 0.24),
    0 10px 14px rgba(34, 27, 7, 0.13);
  content: "";
  transform: translateX(-50%);
}
.benefit-content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 24px 16px;
  border-radius: 12px;
  background: linear-gradient(to bottom, #ffe3cd 0%, #fff6ee 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}
.benefit-grid article:hover {
  box-shadow:
    0 24px 40px rgba(120, 92, 24, 0.16),
    0 5px 14px rgba(34, 27, 7, 0.06);
  transform: translateY(-2px);
}
.benefit-grid article:nth-child(2)::before {
  background: var(--blue);
  box-shadow:
    0 5px 0 rgba(35, 116, 166, 0.24),
    0 10px 14px rgba(34, 27, 7, 0.13);
}
.benefit-grid article:nth-child(2) .benefit-content {
  background: linear-gradient(to bottom, #dfeaff 0%, #f5f8ff 100%);
}
.benefit-grid article:nth-child(3)::before {
  background: #8962c9;
  box-shadow:
    0 5px 0 rgba(86, 55, 145, 0.24),
    0 10px 14px rgba(34, 27, 7, 0.13);
}
.benefit-grid article:nth-child(3) .benefit-content {
  background: linear-gradient(to bottom, #efdfff 0%, #faf4ff 100%);
}
.benefit-content h3 {
  margin-bottom: 10px;
}
.benefit-content p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(233, 174, 0, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 3px 10px rgba(120, 92, 24, 0.04);
  transition: border-color var(--motion), background-color var(--motion), box-shadow var(--motion), transform var(--motion);
}
.faq-list details:hover {
  border-color: rgba(233, 174, 0, 0.38);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.faq-list details[open] {
  border-color: rgba(233, 174, 0, 0.44);
  background: var(--mist);
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  margin-left: auto;
  border: 1px solid rgba(185, 118, 36, 0.42);
  border-radius: 50%;
  color: var(--warm-accent);
  content: "+";
  transition: background-color var(--motion), color var(--motion);
}
.faq-list details[open] summary::after {
  background: var(--warm-accent);
  color: #fff;
  content: "-";
}
.faq-list details p {
  max-width: 720px;
  margin: 0;
  padding: 0 56px 22px 18px;
}
.download-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(92, 75, 0, 0.2);
  background: var(--banana);
  padding: 56px 0;
}
.download-halftone {
  position: absolute;
  z-index: 0;
  width: clamp(260px, 33vw, 560px);
  aspect-ratio: 1.1;
  opacity: 0.48;
  background-image: radial-gradient(ellipse, rgba(92, 75, 0, 0.65) 0 1.65px, transparent 2.4px);
  background-size: 10px 13px;
  pointer-events: none;
}
.download-halftone-left {
  top: -168px;
  left: -150px;
  transform: rotate(-14deg);
  -webkit-mask-image: radial-gradient(ellipse 88% 76% at 25% 25%, #000 3%, transparent 94%);
  mask-image: radial-gradient(ellipse 88% 76% at 25% 25%, #000 3%, transparent 94%);
}
.download-halftone-right {
  right: -154px;
  bottom: -168px;
  transform: rotate(13deg);
  -webkit-mask-image: radial-gradient(ellipse 86% 75% at 78% 74%, #000 3%, transparent 94%);
  mask-image: radial-gradient(ellipse 86% 75% at 78% 74%, #000 3%, transparent 94%);
}
.download-section h2 {
  max-width: 16ch;
  margin-bottom: 0;
}
.download-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}
.download-section .button {
  min-width: 226px;
}
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 28px 0;
  background: var(--ink);
}
.footer-inner {
  display: grid;
  gap: 6px;
}
.site-footer .brand {
  color: #fff;
}
.footer-inner p {
  margin: 0;
  color: #d2d0c9;
  font-size: 14px;
}

@media (max-width: 1023px) {
  .featured-grid {
    grid-auto-columns: 220px;
  }
}

@media (min-width: 768px) {
  .content,
  .header-inner {
    width: min(calc(100% - 64px), var(--page-width));
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    min-height: 610px;
    padding: 88px 0;
  }
  .hero-copy {
    margin-inline: 0;
    text-align: left;
  }
  .hero-summary {
    margin-inline: 0;
  }
  .cta-group {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cta-group .button {
    width: auto;
  }
  .cta-group .button-primary {
    padding-inline: 26px;
  }
  .cta-group .button-secondary {
    width: auto;
    padding-inline: 18px;
  }
  .feature-card {
    grid-template-columns: 1fr;
  }
  .cover-slot {
    min-height: 0;
  }
  .split-heading {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }
  .split-heading > p {
    justify-self: end;
  }
  .showcase-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }
  .rank-list li {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .update-list li {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    padding: 16px 32px;
  }
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 30px);
    padding: 48px 16px 16px;
    background-image: repeating-linear-gradient(
      to bottom,
      transparent 0 43px,
      rgba(120, 92, 24, 0.055) 43px 44px
    );
  }
  .benefit-grid article {
    min-height: 220px;
  }
  .benefit-grid article:first-child {
    transform: rotate(-2deg);
  }
  .benefit-grid article:nth-child(2) {
    margin-top: 0;
    transform: rotate(2deg);
  }
  .benefit-grid article:nth-child(3) {
    margin-top: 0;
    transform: rotate(-1deg);
  }
  .benefit-grid article:first-child:hover {
    transform: rotate(-2deg) translateY(-2px);
  }
  .benefit-grid article:nth-child(2):hover {
    transform: rotate(2deg) translateY(-2px);
  }
  .benefit-grid article:nth-child(3):hover {
    transform: rotate(-1deg) translateY(-2px);
  }
  .download-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .site-nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 0;
  }
  .site-nav a {
    padding: 6px 10px;
  }
  .header-download {
    grid-column: 3;
    grid-row: 1;
  }
  .hero-grid {
    min-height: 640px;
  }
  .section {
    padding: 104px 0;
  }
  .featured-grid {
    grid-auto-columns: auto;
    grid-auto-flow: row;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }
  .cover-slot {
    min-height: 0;
  }
  .benefit-grid {
    width: min(100%, 960px);
    margin-inline: auto;
    padding: 48px 32px 32px;
    gap: clamp(24px, 4vw, 48px);
  }
  .benefit-grid article {
    min-height: 240px;
    margin-top: 0;
  }
  .benefit-grid article:nth-child(2) {
    margin-top: 0;
    transform: rotate(2deg);
  }
  .benefit-grid article:nth-child(3) {
    grid-column: auto;
    margin-top: 0;
    transform: rotate(-1deg);
  }
  .benefit-grid article:nth-child(2):hover {
    transform: rotate(2deg) translateY(-2px);
  }
  .benefit-grid article:nth-child(3):hover {
    transform: rotate(-1deg) translateY(-2px);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(32px, 8.8vw, 48px);
  }
  .hero-grid {
    padding: 56px 0;
  }
  .hero-float-card {
    gap: 6px;
    padding: 8px;
  }
  .hero-float-card-top {
    right: 0;
  }
  .hero-float-card-bottom {
    left: 0;
  }
  .hero-float-card strong {
    font-size: 14px;
  }
  .hero-float-card small {
    font-size: 12px;
  }
  .update-heading {
    flex-wrap: wrap;
    gap: 8px;
  }
  .update-heading h2 {
    font-size: 28px;
  }
  .more-updates {
    padding-inline: 0;
  }
  .update-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }
  .faq-list summary {
    padding-block: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
