:root {
  color-scheme: light;
  --ink: #141412;
  --muted: #686861;
  --subtle: #6d6d66;
  --canvas: #f6f6f2;
  --surface: #ffffff;
  --surface-soft: #efefe9;
  --line: #ddddd6;
  --line-dark: #c8c8c0;
  --accent: #3047e8;
  --accent-dark: #1f32c0;
  --danger: #bd4a3f;
  --success: #26724c;
  --dark: #181816;
  --on-ink: #ffffff;
  --button-primary-text: #ffffff;
  --header-bg: rgba(246, 246, 242, 0.92);
  --control-bg: rgba(255, 255, 255, 0.72);
  --control-hover: #ffffff;
  --nav-panel-bg: rgba(255, 255, 255, 0.98);
  --nav-text: #5e5e57;
  --hero-secondary: #73736c;
  --detail-text: #4f4f49;
  --footer-link: #5b5b55;
  --announcement-bg: #181816;
  --announcement-text: #d8d8d2;
  --announcement-link: #ffffff;
  --brand-bg: #141412;
  --brand-text: #ffffff;
  --disabled-text: #989890;
  --unavailable-border: #e7d2ce;
  --unavailable-bg: #fbf3f1;
  --unavailable-text: #9a4f46;
  --draft-border: #e7cfc9;
  --draft-bg: #fbf2ef;
  --draft-title: #95483f;
  --draft-text: #755b56;
  --legal-footer: #efefe9;
  --accent-soft-border: #c9cef7;
  --accent-soft-bg: #f0f2ff;
  --panel-shadow: 0 24px 60px rgba(25, 25, 22, 0.14);
  --radius: 14px;
  --container: 1160px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f2f2ec;
  --muted: #b1b1a9;
  --subtle: #92928a;
  --canvas: #11110f;
  --surface: #1b1b18;
  --surface-soft: #161614;
  --line: #32322d;
  --line-dark: #494941;
  --accent: #95a3ff;
  --accent-dark: #b0b9ff;
  --danger: #e88d82;
  --success: #72c49a;
  --dark: #080807;
  --on-ink: #151513;
  --button-primary-text: #111325;
  --header-bg: rgba(17, 17, 15, 0.9);
  --control-bg: rgba(29, 29, 26, 0.84);
  --control-hover: #252521;
  --nav-panel-bg: rgba(27, 27, 24, 0.98);
  --nav-text: #b7b7af;
  --hero-secondary: #9b9b93;
  --detail-text: #bdbdb5;
  --footer-link: #b7b7af;
  --announcement-bg: #080807;
  --announcement-text: #cfcfc7;
  --announcement-link: #ffffff;
  --brand-bg: #f2f2ec;
  --brand-text: #171715;
  --disabled-text: #73736c;
  --unavailable-border: #59413e;
  --unavailable-bg: #251c1b;
  --unavailable-text: #e7a098;
  --draft-border: #624641;
  --draft-bg: #281d1b;
  --draft-title: #efaaa1;
  --draft-text: #cba8a2;
  --legal-footer: #151513;
  --accent-soft-border: #4c578f;
  --accent-soft-bg: #252b4a;
  --panel-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.04;
}

:focus-visible {
  outline: 3px solid #f2a900;
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--button-primary-text);
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--on-ink);
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 750;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.availability-bar {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px max(18px, env(safe-area-inset-right)) 8px max(18px, env(safe-area-inset-left));
  background: var(--announcement-bg);
  color: var(--announcement-text);
  font-size: 12px;
  text-align: center;
}

.availability-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e48073;
  box-shadow: 0 0 0 4px rgba(228, 128, 115, 0.12);
}

.availability-bar a {
  margin-left: 5px;
  color: var(--announcement-link);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: #60605b;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 74px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.wordmark-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--brand-bg);
  color: var(--brand-text);
  font-size: 13px;
  letter-spacing: 0;
}

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

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 9px;
  padding: 0 12px;
  color: var(--nav-text);
  font-size: 13px;
  font-weight: 650;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface);
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 0 0 1px var(--line);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.settings-menu {
  position: relative;
}

.settings-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--control-bg);
  padding: 0;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.settings-toggle:hover,
.settings-toggle[aria-expanded="true"] {
  border-color: var(--line-dark);
  background: var(--control-hover);
  color: var(--ink);
}

.settings-icon {
  display: grid;
  width: 18px;
  gap: 4px;
}

.settings-icon > span {
  display: block;
  height: 1.5px;
  border-radius: 3px;
  background: currentColor;
}

.settings-icon > span:nth-child(2) {
  width: 12px;
  margin-left: 6px;
}

.settings-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 70;
  width: min(292px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--panel-shadow);
}

.settings-panel[hidden] {
  display: none;
}

.settings-panel-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 6px 20px;
}

.settings-panel-header strong {
  font-size: 13px;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.settings-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  font-weight: 350;
  line-height: 1;
  cursor: pointer;
}

.settings-close:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.settings-group {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 18px 20px;
}

.settings-group legend,
.settings-copy strong {
  padding: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 740;
}

.settings-group > p,
.settings-copy > span {
  display: block;
  margin: 3px 0 13px;
  color: var(--subtle);
  font-size: 10px;
  line-height: 1.5;
}

.theme-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: 10px;
  background: var(--surface-soft);
  padding: 4px;
}

.theme-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.theme-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.theme-options span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.theme-options input:checked + span {
  border-color: var(--accent-soft-border);
  background: var(--accent-soft-bg);
  color: var(--accent-dark);
}

.theme-options input:focus-visible + span {
  outline: 3px solid #f2a900;
  outline-offset: 2px;
}

.settings-row {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.settings-copy > span {
  margin-bottom: 0;
}

.sound-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 10px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.switch-track {
  display: flex;
  width: 42px;
  height: 26px;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: var(--surface-soft);
  padding: 2px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.switch-thumb {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--subtle);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  transition: transform 180ms var(--ease), background-color 160ms ease;
}

.sound-toggle[aria-checked="true"] .switch-track {
  border-color: var(--accent);
  background: var(--accent);
}

.sound-toggle[aria-checked="true"] .switch-thumb {
  background: var(--button-primary-text);
  transform: translateX(16px);
}

.sound-toggle:hover .switch-track {
  border-color: var(--ink);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-3px);
}

.nav-toggle span:last-child {
  transform: translateY(3px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  padding: clamp(100px, 13vw, 170px) 0 0;
}

.hero-inner {
  text-align: center;
}

.kicker {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto 30px;
  font-size: clamp(3.8rem, 8.8vw, 7.6rem);
  font-weight: 720;
  line-height: 0.91;
}

.hero h1 span {
  color: var(--hero-secondary);
}

.hero-copy {
  max-width: 630px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 11px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 760;
  transition: transform 160ms var(--ease), background-color 160ms ease;
}

.button-primary {
  background: var(--accent);
  color: var(--button-primary-text);
  box-shadow: 0 8px 20px rgba(48, 71, 232, 0.17);
}

.button-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-disabled {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--disabled-text);
  cursor: not-allowed;
}

.section {
  padding: clamp(88px, 10vw, 130px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2,
.faq-layout h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.service-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 25px;
  transition: border-color 180ms ease, transform 180ms var(--ease);
}

.service-card:hover {
  border-color: var(--line-dark);
  transform: translateY(-2px);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.service-number {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 750;
}

.unavailable-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--unavailable-border);
  border-radius: 999px;
  background: var(--unavailable-bg);
  padding: 0 10px;
  color: var(--unavailable-text);
  font-size: 9px;
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 700;
}

.service-card > p {
  min-height: 76px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--detail-text);
  font-size: 12px;
  font-weight: 650;
}

.service-card li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.store-notice {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 14px 18px;
}

.store-notice > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.store-notice strong {
  font-size: 13px;
}

.store-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(440px, 1.3fr);
  align-items: start;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 48px 16px 0;
  font-size: 16px;
  font-weight: 720;
  letter-spacing: -0.015em;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  right: 6px;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 600px;
  margin: -4px 0 25px;
  padding-right: 45px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 65px 0 max(25px, env(safe-area-inset-bottom));
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.footer-main p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--footer-link);
  font-size: 12px;
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--subtle);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Legal pages */

.legal-main {
  padding: clamp(70px, 9vw, 120px) 0 clamp(90px, 11vw, 150px);
}

.legal-container {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.draft-notice {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  margin-bottom: clamp(70px, 8vw, 100px);
  border: 1px solid var(--draft-border);
  border-radius: 12px;
  background: var(--draft-bg);
  padding: 20px 22px;
}

.draft-notice strong {
  color: var(--draft-title);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.draft-notice p {
  margin: 0;
  color: var(--draft-text);
  font-size: 12px;
  line-height: 1.7;
}

.legal-heading {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}

.legal-heading h1 {
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 710;
  line-height: 0.94;
}

.legal-heading > p:last-child {
  margin: 0;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 680;
}

.legal-document {
  counter-reset: legal-section;
}

.legal-document > section {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}

.legal-document > section > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.legal-document h2 {
  margin-bottom: 13px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.legal-document p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.legal-document p strong {
  color: var(--ink);
  font-weight: 720;
}

.legal-document p a {
  color: var(--accent);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 22px 24px;
}

.legal-next > span {
  color: var(--subtle);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-next a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 740;
}

.site-footer-legal {
  background: var(--legal-footer);
}

.privacy-coming-soon {
  display: flex;
  min-height: clamp(590px, 72vh, 820px);
  align-items: center;
}

.policy-coming-soon {
  max-width: 760px;
  padding-block: 40px;
}

.policy-coming-soon h1 {
  margin: 0 0 28px;
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 710;
  line-height: 0.9;
}

.policy-coming-soon h1 span {
  color: var(--hero-secondary);
}

.policy-coming-soon > p:not(.kicker) {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.coming-soon-actions .text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--accent);
  font-size: 12px;
  font-weight: 720;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    z-index: 3;
    display: grid;
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: grid;
    visibility: hidden;
    max-height: calc(100dvh - 130px);
    overflow-x: hidden;
    overflow-y: auto;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--nav-panel-bg);
    padding: 7px;
    box-shadow: var(--panel-shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 50px;
    padding-inline: 14px;
  }

  .header-actions {
    position: absolute;
    right: 76px;
  }

  .settings-panel {
    right: -56px;
  }

  .section-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

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

  .service-card-top {
    margin-bottom: 45px;
  }

  .service-card > p {
    min-height: 0;
  }

  .faq-layout {
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .container,
  .legal-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .availability-bar {
    min-height: 44px;
    align-items: flex-start;
    padding-block: 9px;
    text-align: left;
  }

  .availability-bar a {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-actions {
    right: 68px;
  }

  .settings-panel {
    right: -54px;
    width: min(292px, calc(100vw - 28px));
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  .hero {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.1rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section {
    padding-block: 78px;
  }

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

  .section-heading h2,
  .faq-layout h2 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .service-card {
    padding: 21px;
  }

  .store-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
  }

  .footer-main {
    flex-direction: column;
    gap: 35px;
  }

  .footer-links {
    width: 100%;
  }

  .draft-notice {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legal-heading {
    padding-bottom: 45px;
  }

  .legal-heading h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .policy-coming-soon h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .legal-document > section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 34px;
  }

  .legal-next {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (any-pointer: coarse) {
  .button,
  .site-nav a,
  .footer-links a,
  .settings-toggle,
  .settings-close,
  .theme-options span,
  .sound-toggle,
  .nav-toggle {
    min-width: 48px;
    min-height: 48px;
  }

  .button-primary:hover,
  .service-card:hover {
    transform: none;
  }
}

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

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

@media print {
  .availability-bar,
  .site-header,
  .site-footer,
  .settings-menu,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .legal-main {
    padding: 20px 0;
  }

  .draft-notice,
  .legal-next {
    box-shadow: none;
  }

  .privacy-coming-soon {
    min-height: 0;
  }
}
