:root {
  color-scheme: dark;
  --bg: #0b1220;
  --bg-elevated: rgba(15, 23, 42, 0.88);
  --surface: rgba(15, 23, 42, 0.72);
  --surface-strong: rgba(30, 41, 59, 0.88);
  --border: rgba(148, 163, 184, 0.2);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --primary: #22c55e;
  --primary-strong: #16a34a;
  --secondary: #38bdf8;
  --warning: #f59e0b;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 30%),
    linear-gradient(180deg, #0f172a 0%, #0b1220 55%, #060c18 100%);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(11, 18, 32, 0.7);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

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

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #04111f;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card {
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  font-size: 0.94rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.15rem;
}

.lead {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 60ch;
}

.cta-row,
.button-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.button:focus-visible,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #04111f;
}

.button-secondary {
  background: rgba(56, 189, 248, 0.14);
  border-color: rgba(56, 189, 248, 0.28);
  color: #e0f2fe;
}

.button-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.subtle-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}

.subtle-link:hover,
.subtle-link:focus-visible {
  color: var(--text);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 24px rgba(2, 6, 23, 0.28));
}

.store-badge img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
}

.button[aria-disabled="true"],
.button-secondary[aria-disabled="true"],
.button-ghost[aria-disabled="true"],
.store-badge[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.58;
}

.fine-print {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.stack {
  display: grid;
  gap: 18px;
}

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

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.09);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--text-muted);
}

.hero-list,
.legal-list,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-list li,
.legal-list li,
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
  line-height: 1.6;
}

.check {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  flex: 0 0 auto;
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
}

section {
  padding: 34px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--text-muted);
  max-width: 65ch;
  line-height: 1.7;
}

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

.card,
.faq-item,
.legal-card,
.contact-card,
.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.card {
  padding: 24px;
}

.card p,
.legal-card p,
.contact-card p,
.download-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.reward-banner {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(34, 197, 94, 0.12)),
    var(--surface);
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  border: 0;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  color: var(--text-muted);
  font-size: 1.3rem;
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer[hidden] {
  display: none;
}

.download-hero,
.legal-hero {
  padding: 64px 0 34px;
}

.download-layout,
.legal-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.download-card,
.legal-card,
.contact-card {
  padding: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: #dbeafe;
}

.status-pill.warning {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.26);
  color: #fde68a;
}

.status-pill.success {
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.24);
  color: #bbf7d0;
}

.note {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--text-muted);
  line-height: 1.7;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.16);
  color: #0f766e;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-kicker-inverse {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ccfbf1;
}

.section-lead {
  margin: 18px 0 0;
  color: #526174;
  line-height: 1.7;
  font-size: 1.05rem;
}

body[data-page="home"] {
  color-scheme: light;
  color: #132235;
  background:
    radial-gradient(circle at top left, rgba(13, 148, 136, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 20%),
    linear-gradient(180deg, #f8fbfb 0%, #eef4f5 30%, #f7fbfb 100%);
}

body[data-page="home"] .site-header {
  background: rgba(248, 251, 251, 0.84);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

body[data-page="home"] .brand {
  color: #0f172a;
}

body[data-page="home"] .brand-mark {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #f8fafc;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

body[data-page="home"] .site-nav a {
  color: #5f6f81;
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a:focus-visible {
  color: #132235;
}

body[data-page="home"] section {
  padding: 46px 0;
}

body[data-page="home"] .hero {
  padding: 68px 0 32px;
}

body[data-page="home"] .panel,
body[data-page="home"] .faq-item {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

body[data-page="home"] .home-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 26px;
}

body[data-page="home"] .home-hero-copy {
  padding: 40px;
}

body[data-page="home"] h1,
body[data-page="home"] h2,
body[data-page="home"] h3 {
  color: #132235;
}

body[data-page="home"] h1 {
  max-width: 11ch;
}

body[data-page="home"] .lead,
body[data-page="home"] .section-heading p,
body[data-page="home"] .card p,
body[data-page="home"] .faq-answer,
body[data-page="home"] .fine-print {
  color: #526174;
}

body[data-page="home"] .eyebrow {
  background: rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.16);
  color: #0f766e;
}

body[data-page="home"] .check {
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
}

body[data-page="home"] .button-ghost {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(148, 163, 184, 0.24);
  color: #132235;
}

body[data-page="home"] .button-ghost:hover,
body[data-page="home"] .button-ghost:focus-visible {
  border-color: rgba(15, 118, 110, 0.28);
}

body[data-page="home"] .store-badge:hover,
body[data-page="home"] .store-badge:focus-visible {
  filter: drop-shadow(0 14px 26px rgba(15, 23, 42, 0.14));
}

.hero-highlights,
.detail-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-highlights li,
.detail-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #526174;
  line-height: 1.65;
}

body[data-page="home"] .home-hero-visual {
  padding: 22px;
}

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

.hero-visual-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.visual-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #132235;
}

.visual-subtitle {
  margin-top: 6px;
  color: #526174;
  line-height: 1.5;
}

.visual-pill,
.visual-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.16);
  color: #0f766e;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.visual-chip-muted {
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(148, 163, 184, 0.16);
  color: #526174;
}

.hero-visual-stage {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #0f172a;
}

.hero-fur {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  overflow: hidden;
}

.hero-fur::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-fur span {
  position: relative;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.46);
  color: #f8fafc;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-fur-natural {
  background: linear-gradient(180deg, #10151d 0%, #0f172a 100%);
}

.hero-fur-natural::before {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.16), transparent 22%),
    radial-gradient(circle at 70% 78%, rgba(255, 255, 255, 0.08), transparent 18%),
    repeating-linear-gradient(
      116deg,
      rgba(138, 91, 53, 0.26) 0 10px,
      rgba(42, 25, 18, 0.9) 10px 22px,
      rgba(17, 17, 17, 0.96) 22px 38px
    );
}

.hero-fur-filtered {
  background: linear-gradient(180deg, #12333c 0%, #0b4b55 100%);
}

.hero-fur-filtered::before {
  background:
    linear-gradient(0deg, rgba(13, 148, 136, 0.24), rgba(13, 148, 136, 0.24)),
    radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.08), transparent 18%),
    repeating-linear-gradient(
      116deg,
      rgba(216, 244, 239, 0.3) 0 10px,
      rgba(18, 95, 104, 0.82) 10px 22px,
      rgba(8, 63, 71, 0.98) 22px 38px
    );
}

.hero-focus-ring,
.hero-focus-dot {
  position: absolute;
  z-index: 2;
  left: 64%;
  top: 48%;
  transform: translate(-50%, -50%);
}

.hero-focus-ring {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  border: 2px solid rgba(245, 158, 11, 0.95);
  box-shadow: 0 0 0 12px rgba(245, 158, 11, 0.14);
}

.hero-focus-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f59e0b;
}

.hero-visual-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-note,
.insight-card,
.feature-card,
.download-banner {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
}

.mini-note {
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.mini-note strong {
  color: #132235;
}

.mini-note span {
  color: #526174;
  line-height: 1.55;
}

.problem-section {
  padding-top: 28px;
}

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

.insight-card,
.feature-card {
  border-radius: 24px;
  padding: 26px;
}

.insight-card p,
.feature-card p {
  color: #526174;
  line-height: 1.7;
}

.insight-chip,
.feature-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: #0f766e;
  font-size: 0.82rem;
  font-weight: 700;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: center;
}

.visual-canvas {
  padding: 22px;
}

.visual-canvas-frame {
  display: grid;
  gap: 16px;
}

.visual-canvas-header {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.visual-canvas-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(150deg, #1a1714 0%, #5b3418 20%, #bb834b 48%, #f0d3b3 78%, #fff3e8 100%);
}

.visual-canvas-stage::before {
  content: "";
  position: absolute;
  inset: -8% -10%;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 30%),
    repeating-linear-gradient(
      108deg,
      rgba(97, 55, 25, 0.55) 0 16px,
      rgba(247, 229, 206, 0.12) 16px 30px,
      rgba(253, 244, 234, 0.55) 30px 42px
    );
}

.visual-canvas-glow,
.visual-canvas-focus {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
}

.visual-canvas-glow {
  width: 170px;
  height: 170px;
  left: 16%;
  top: 14%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 70%);
}

.visual-canvas-focus {
  width: 150px;
  height: 150px;
  right: 18%;
  top: 34%;
  border: 2px solid rgba(15, 118, 110, 0.9);
  box-shadow: 0 0 0 14px rgba(13, 148, 136, 0.14);
}

.visual-canvas-card {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.visual-canvas-card strong {
  color: #132235;
}

.visual-canvas-card span {
  color: #526174;
  line-height: 1.55;
}

.visual-copy h2 {
  max-width: 12ch;
  margin-top: 16px;
}

.feature-section {
  padding-top: 30px;
}

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

.feature-card-featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.96);
}

.feature-card-featured h3 {
  max-width: 12ch;
}

.feature-meter {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.feature-meter span {
  height: 6px;
  flex: 1;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
}

.feature-meter .is-active {
  background: linear-gradient(90deg, #0f766e, #14b8a6);
}

.section-heading-centered {
  justify-content: center;
  text-align: center;
}

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

.steps-section {
  background: linear-gradient(180deg, #18273f 0%, #112039 100%);
}

body[data-page="home"] .steps-section h2,
body[data-page="home"] .steps-section h3 {
  color: #f8fafc;
}

body[data-page="home"] .steps-section .section-heading p,
body[data-page="home"] .steps-section .step-card p {
  color: rgba(226, 232, 240, 0.82);
}

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

.step-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.step-number {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.22);
  color: #99f6e4;
  font-weight: 700;
}

.download-cta-section {
  padding-top: 34px;
}

.download-banner {
  border-radius: 32px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.94);
}

.download-banner-copy h2 {
  margin-top: 16px;
}

.download-banner-copy p {
  margin: 14px 0 0;
  color: #526174;
  line-height: 1.7;
  max-width: 58ch;
}

.download-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.faq-section {
  padding-top: 26px;
}

body[data-page="home"] .faq-question {
  color: #132235;
}

body[data-page="home"] .faq-question span:last-child {
  color: #0f766e;
}

body[data-page="home"] .site-footer {
  padding-top: 10px;
}

body[data-page="home"] .site-footer-inner {
  border-top-color: rgba(148, 163, 184, 0.18);
  color: #64748b;
}

body[data-page="home"] .footer-links a:hover,
body[data-page="home"] .footer-links a:focus-visible {
  color: #132235;
}

.site-footer {
  padding: 26px 0 48px;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding-top: 20px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .reward-banner {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-page="home"] .home-hero-grid,
  .visual-grid,
  .insight-grid,
  .feature-layout,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .download-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero-copy,
  .hero-card,
  .card,
  .reward-banner,
  .download-card,
  .legal-card,
  .contact-card {
    padding: 22px;
  }

  .hero {
    padding-top: 44px;
  }

  .site-shell {
    width: min(100% - 22px, var(--max-width));
  }

  .cta-row,
  .button-row,
  .footer-links {
    gap: 10px;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .home-hero-copy,
  .home-hero-visual,
  .visual-canvas,
  .insight-card,
  .feature-card,
  .step-card,
  .download-banner {
    padding: 22px;
  }

  .store-badge img {
    height: 44px;
    width: auto;
    max-width: 100%;
  }

  .hero-visual-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual-stage {
    min-height: 280px;
  }

  .hero-visual-notes {
    grid-template-columns: 1fr;
  }

  .visual-canvas-stage {
    min-height: 320px;
  }

  .download-banner-actions {
    width: 100%;
  }

  .site-nav {
    gap: 12px;
  }
}

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

  .button,
  .button-secondary,
  .button-ghost,
  .store-badge {
    transition: none;
  }
}
