@font-face {
  font-family: Geist;
  src: url("/assets/fonts/Geist/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Geist;
  src: url("/assets/fonts/Geist/Geist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --accent: #85c7bb;
  --accent-strong: #3e9f91;
  --accent-soft: #e9f7f4;
  --text-on-accent: #000;
  --bg: #f7fbfa;
  --bg-2: #edf6f3;
  --card: rgb(255 255 255 / 82%);
  --card-solid: #fff;
  --text: #0e1516;
  --muted: #55686e;
  --border: rgb(20 43 46 / 8%);
  --shadow: 0 12px 28px rgb(28 56 57 / 8%);
  --shadow-soft: 0 8px 18px rgb(28 56 57 / 8%);
  --radius-card: 26px;
  --radius-md: 14px;
  --content: 1100px;
  --inner: 1080px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0f10;
    --bg-2: #0e1416;
    --card: rgb(18 25 26 / 82%);
    --card-solid: #12191a;
    --text: #e7f0f0;
    --muted: #a5b6ba;
    --border: rgb(255 255 255 / 8%);
    --shadow: 0 14px 24px rgb(0 0 0 / 18%);
    --shadow-soft: 0 10px 22px rgb(0 0 0 / 16%);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

#app:focus {
  outline: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0 10px;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 88%, transparent), color-mix(in srgb, var(--bg) 62%, transparent));
}

.header-inner {
  width: min(var(--content), calc(100vw - 24px));
  margin: 0 auto;
  min-height: 58px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
  border-radius: 22px;
  background: color-mix(in srgb, var(--card-solid) 78%, transparent);
  box-shadow: 0 8px 18px rgb(34 67 68 / 5%);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 700;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgb(28 56 57 / 10%);
}

.desktop-nav,
.footer nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.desktop-nav a,
.menu-link,
.footer a,
.footer span,
.text-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 160ms ease, opacity 160ms ease, background 160ms ease;
}

.desktop-nav a,
.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
}

.donate-nav-link span[aria-hidden="true"] {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgb(255 255 255 / 70%), transparent 36%),
    linear-gradient(135deg, rgb(247 209 255 / 92%), rgb(255 189 218 / 92%));
  color: #9b2fb2;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 6px 14px rgb(190 76 169 / 18%);
}

.desktop-nav a:hover,
.menu-link:hover,
.footer a:hover,
.text-link:hover {
  color: var(--text);
}

.desktop-nav a:hover,
.menu-link:hover {
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}

.desktop-nav a.active,
.footer a.active {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}

.menu-link {
  padding: 7px 12px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: none;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.icon-button span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--text);
}

.page {
  width: min(var(--content), calc(100vw - 24px));
  margin: 0 auto;
  padding: 24px 0 0;
}

.inner {
  width: min(var(--inner), 100%);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 22px;
  align-items: stretch;
}

.card {
  margin: 10px 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--card);
  box-shadow: var(--shadow);
}

.about-card {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pill,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 18%, white);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 22%, transparent);
}

.badge.available {
  background: color-mix(in srgb, var(--accent) 18%, white);
  color: var(--text);
}

.badge.soon {
  background: color-mix(in srgb, var(--muted) 10%, transparent);
  color: var(--muted);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--muted) 16%, transparent);
}

.kaspa-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  padding: 5px;
  border-radius: 999px;
  background: var(--accent);
}

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

h1 {
  margin: 20px 0 18px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
}

h3 {
  margin: 24px 0 10px;
  font-size: 17px;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 14px;
}

.card > :last-child,
.card p:last-child {
  margin-bottom: 0;
}

.lead {
  max-width: 62ch;
  margin-bottom: 20px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px;
}

.ghost-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--card-solid) 52%, transparent);
  color: var(--muted);
  font-weight: 700;
}

.ghost-link:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--accent) 58%, transparent);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--card-solid) 58%, transparent);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.feature-list li:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 46%, transparent);
  background: color-mix(in srgb, var(--accent) 7%, var(--card-solid));
}

.feature-list li:hover .feature-icon {
  background: color-mix(in srgb, var(--accent) 28%, white);
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 18%, white);
  color: var(--accent-strong);
  font-weight: 800;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.media-card {
  min-height: 600px;
  display: grid;
  position: relative;
  overflow: hidden;
  background: var(--card);
}

.slides {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.slides::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 28px 54px 72px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.slide picture {
  display: grid;
  place-items: center;
  max-width: 100%;
  max-height: 100%;
}

.device-shot {
  display: block;
  width: auto;
  height: min(100%, 500px);
  max-width: min(100%, 430px);
  border-radius: 24px;
  background: var(--card-solid);
  object-fit: contain;
  box-shadow: 0 14px 30px rgb(23 44 45 / 10%);
  cursor: zoom-in;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card-solid) 86%, transparent);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 3;
}

.slider-button.prev {
  left: 8px;
}

.slider-button.next {
  right: 8px;
}

.slide-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 16px;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  z-index: 3;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  transition: width 180ms ease, background 180ms ease;
}

.dot.active {
  width: 20px;
  background: var(--accent);
}

.section-title {
  margin: 48px 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  font-weight: 700;
}

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

.store-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.store-card:not(.disabled):hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 90%, transparent);
  box-shadow: 0 14px 28px rgb(28 56 57 / 10%);
}

.store-card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.store-card-header strong {
  flex: 1;
  font-size: 18px;
  line-height: 1.15;
}

.store-card p {
  color: var(--muted);
  font-size: 14px;
}

.button-row {
  margin-top: auto;
}

.button,
.button-muted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.button {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent-strong) 72%, var(--accent)));
  color: var(--text-on-accent);
  box-shadow: 0 8px 16px rgb(133 199 187 / 18%);
}

.primary-action {
  min-width: 150px;
}

.button-muted {
  border-color: var(--border);
  background: transparent;
  color: var(--muted);
  cursor: default;
}

.footer {
  width: min(var(--inner), calc(100vw - 24px));
  margin: 0 auto;
  padding: 32px 0 28px;
  display: flex;
  justify-content: center;
}

.footer nav {
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card-solid) 58%, transparent);
}

.footer a,
.footer span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
}

.footer a:hover {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.footer span {
  cursor: default;
}

.menu-dialog {
  width: min(560px, 100vw);
  margin: auto auto 0;
  padding: 12px 14px 14px;
  border: 1px solid var(--border);
  border-radius: 28px 28px 0 0;
  background: var(--card);
  color: var(--text);
  box-shadow: 0 -18px 50px rgb(0 0 0 / 12%);
}

.menu-dialog::backdrop {
  background: rgb(0 0 0 / 18%);
}

.sheet-handle {
  width: 42px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: var(--text);
}

.menu-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--card-solid) 68%, transparent);
}

.menu-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.menu-list a span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent-strong);
}

.menu-list a strong {
  min-width: 0;
  font: inherit;
}

.menu-list a:hover,
.menu-list a.active {
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: var(--text);
}

.menu-list a:last-child {
  border-bottom: 0;
}

.language-panel {
  margin-top: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--card-solid) 58%, transparent);
}

.language-panel > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.language-options {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 9%, transparent);
}

.language-options button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.language-options button.active {
  background: var(--card-solid);
  color: var(--text);
  box-shadow: 0 6px 14px rgb(28 56 57 / 8%);
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px 0;
  color: var(--muted);
}

.menu-footer button {
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  cursor: pointer;
  font-weight: 700;
}

.policy-card {
  max-width: var(--inner);
  margin-inline: auto;
}

.policy-card section {
  margin-top: 28px;
}

.policy-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.donate-grid,
.feedback-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 22px;
  align-items: start;
}

.donate-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 18%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--card-solid) 94%, transparent), color-mix(in srgb, var(--accent-soft) 26%, var(--card-solid)));
}

.donate-card .donate-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.donate-copy {
  max-width: 700px;
}

.donate-copy h1 {
  max-width: 760px;
  margin: 26px 0 22px;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.94;
}

.donate-copy .lead {
  max-width: 66ch;
  margin-bottom: 0;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.58;
}

.donate-addresses {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 38px);
}

.donate-card .copy-row {
  margin-top: 0;
  padding: 12px 12px 12px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--border));
  border-radius: 18px;
  background: color-mix(in srgb, var(--card-solid) 72%, transparent);
}

.donate-card .mono {
  font-size: 15px;
  text-decoration-thickness: 1px;
}

.donate-card .coffee-link {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 13%, var(--card-solid)), color-mix(in srgb, var(--accent-soft) 56%, var(--card-solid)));
}

.qr-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 20px;
  width: min(100%, 420px);
  min-height: 480px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--border));
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 8%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 42%),
    color-mix(in srgb, var(--card-solid) 80%, transparent);
  box-shadow: 0 22px 60px rgb(28 56 57 / 10%);
  text-align: center;
}

.qr-card img {
  width: min(330px, 100%);
  height: auto;
  border: 1px solid color-mix(in srgb, var(--border) 76%, transparent);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgb(28 56 57 / 12%);
}

.qr-card strong {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  padding: 10px 0;
}

.coffee-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--border));
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent) 10%, var(--card-solid));
  color: var(--text);
}

.coffee-link strong,
.coffee-link small {
  display: block;
}

.coffee-link small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.coffee-link:hover {
  border-color: color-mix(in srgb, var(--accent) 68%, transparent);
}

.mono {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  text-decoration: underline dashed color-mix(in srgb, var(--accent) 55%, transparent);
  text-underline-offset: 4px;
}

.ghost-button {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card-solid) 56%, transparent);
  color: var(--text);
  cursor: pointer;
}

.feedback-form {
  display: grid;
  gap: 16px;
}

textarea {
  min-height: 220px;
  resize: vertical;
  border: 1.5px solid color-mix(in srgb, var(--accent) 24%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--card-solid) 70%, transparent);
  color: var(--text);
  padding: 16px;
}

textarea:focus {
  border-color: var(--accent);
  outline: 0;
}

.stars {
  display: flex;
  gap: 6px;
  margin: 8px 0 20px;
}

.star {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.star.active {
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent-strong);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgb(0 0 0 / 62%);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox span {
  position: fixed;
  bottom: 22px;
  color: rgb(255 255 255 / 74%);
}

.lightbox-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgb(0 0 0 / 45%);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 70;
  transform: translate(-50%, 24px);
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--text);
  color: var(--card);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 949px) {
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 799px) {
  .hero-grid,
  .donate-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .donate-card {
    padding: 18px;
    border-radius: 26px;
  }

  .donate-card .donate-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .donate-copy h1 {
    margin-top: 20px;
    font-size: clamp(42px, 14vw, 64px);
  }

  .donate-copy .lead {
    font-size: 17px;
  }

  .donate-card .copy-row {
    padding: 10px 10px 10px 12px;
  }

  .qr-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .qr-card img {
    width: min(292px, 100%);
  }

  .about-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 0 8px;
  }

  .header-inner {
    min-height: 54px;
    padding: 8px 10px;
    border-radius: 18px;
  }

  .brand span {
    font-size: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .icon-button {
    display: grid;
  }

  .page {
    width: min(100vw - 20px, var(--content));
    padding-top: 14px;
  }

  .card {
    margin: 8px 0;
    padding: 16px;
    border-radius: 22px;
  }

  h1 {
    margin: 16px 0 16px;
    font-size: clamp(40px, 14vw, 58px);
  }

  h3 {
    margin-top: 22px;
  }

  .lead {
    margin-bottom: 22px;
  }

  .section-title {
    margin: 34px 0 14px;
  }

  .media-card {
    height: min(580px, calc(100vh - 118px));
    min-height: 470px;
  }

  .slide {
    padding: 22px 42px 66px;
  }

  .device-shot {
    height: min(100%, 460px);
    max-width: min(100%, 330px);
    border-radius: 22px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button,
  .ghost-link {
    flex: 1 1 140px;
  }

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

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

  .footer nav {
    justify-content: flex-start;
    width: 100%;
    border-radius: 22px;
  }
}

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