:root {
  color-scheme: light;
  --ink: #14202a;
  --muted: #5d6974;
  --surface: #ffffff;
  --surface-soft: #f4f7f5;
  --line: #dbe3df;
  --line-strong: #bdcac4;
  --brand: #a83217;
  --brand-dark: #8f2b15;
  --brand-on-dark: #ff8a5d;
  --teal: #117b76;
  --navy: #10212a;
  --navy-2: #19313b;
  --cream: #fff8ee;
  --shadow: 0 18px 50px rgba(16, 33, 42, 0.16);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface-soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.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;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-link {
  flex: 0 1 auto;
}

.brand-link img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(168, 50, 23, 0.2);
}

.brand-link span {
  font-weight: 850;
  white-space: nowrap;
}

.brand-name {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

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

.language-picker {
  position: relative;
}

.language-trigger,
.language-option,
.mobile-language-option,
.mobile-menu-toggle {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-trigger {
  min-height: 40px;
  width: 48px;
  min-width: 48px;
  padding: 0;
  border-radius: 8px;
  font-size: 1.18rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 56px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.language-option {
  width: 100%;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 1.12rem;
  line-height: 1;
  text-align: center;
}

.language-option:hover,
.language-option.is-active,
.mobile-language-option.is-active {
  background: #eaf3f1;
  color: var(--teal);
}

.mobile-menu-toggle {
  display: none;
  flex: 0 0 42px;
  width: 42px;
  height: 40px;
  border-radius: 8px;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-menu-toggle span + span {
  margin-top: 5px;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: auto;
  right: 0;
  width: min(248px, calc(100vw - 24px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-menu-links {
  display: grid;
  gap: 4px;
}

.mobile-menu-links a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu-links a:hover,
.mobile-menu-links a[aria-current="page"] {
  background: var(--surface-soft);
}

.mobile-language-menu {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.mobile-language-option {
  width: auto;
  flex: 1 1 0;
  height: 38px;
  border-radius: 8px;
  font-size: 1.12rem;
  line-height: 1;
}

.hero-section {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  background: var(--navy);
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 38px;
}

.hero-copy {
  color: white;
}

.hero-copy,
.section-heading,
.hardware-copy,
.buy-copy,
.feature-card,
.legal-card,
.faq-item,
.footer-inner {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.buy-copy .eyebrow {
  color: var(--brand-on-dark);
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.legal-hero h1 {
  margin: 0;
  max-width: 760px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: 4.15rem;
  line-height: 0.98;
}

.section-heading h2 br {
  display: block;
}

.hero-lede {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.button-primary,
.button-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 28px rgba(168, 50, 23, 0.24);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.store-actions {
  display: grid;
  gap: 7px;
}

.store-coming-soon {
  margin: 0;
  color: var(--brand-on-dark);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-secondary.is-disabled {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  cursor: not-allowed;
  pointer-events: none;
}

.split-actions .button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  position: relative;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-proof li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-on-dark);
  box-shadow: 0 0 0 4px rgba(255, 138, 93, 0.16);
}

.product-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  align-content: center;
  justify-items: center;
}

.hero-gallery {
  width: min(100%, 660px);
  gap: 12px;
  isolation: isolate;
}

.gallery-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-tab {
  appearance: none;
  min-height: 32px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.gallery-tab.is-active {
  background: var(--surface);
  color: var(--ink);
}

.gallery-stage {
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(248, 253, 255, 0.96), rgba(230, 242, 248, 0.94)),
    #eaf4f7;
  box-shadow: 0 24px 62px rgba(3, 18, 26, 0.38);
}

.hero-gallery[data-active-group="app"] .gallery-stage {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.gallery-slide {
  height: clamp(460px, 42vw, 560px);
  margin: 0;
}

.gallery-slide[hidden] {
  display: none;
}

.gallery-slide[data-gallery-group="app"].is-active {
  display: grid;
  place-items: center;
}

.gallery-frame {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(9, 25, 34, 0.15);
  border-radius: 6px;
  background: #0d171d;
}

.gallery-frame picture,
.gallery-frame img {
  width: 100%;
  height: 100%;
}

.gallery-frame picture {
  display: block;
}

.gallery-frame img {
  object-fit: cover;
  object-position: center;
}

.gallery-frame--app {
  position: relative;
  width: min(100%, 256px);
  height: auto;
  aspect-ratio: 426 / 911;
  margin: 0 auto;
  padding: 6px;
  border: 0;
  border-radius: 28px;
  background: #070b0f;
  box-shadow:
    0 18px 38px rgba(3, 18, 26, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.gallery-frame--app::before,
.gallery-frame--app::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.gallery-frame--app::before {
  top: 8px;
  width: 44px;
  height: 3px;
}

.gallery-frame--app::after {
  display: none;
}

.gallery-frame--app picture {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  border-radius: 22px;
  background: #f7fafb;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.gallery-frame--app img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateZ(0);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-arrow {
  appearance: none;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.gallery-dots {
  min-width: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.gallery-dot {
  appearance: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.gallery-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.gallery-dot.is-active::before {
  width: 22px;
  background: #37d2d0;
}

.stat-label,
.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.hardware-section,
.buy-section,
.feature-section,
.faq-section,
.legal-content {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

.section.soft {
  width: 100%;
  background: var(--surface);
}

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

.feature-section {
  width: 100%;
  margin: 0;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-section {
  background: #edf5f2;
}

.feature-section > .section-heading,
.feature-section > .feature-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.feature-section > .section-heading {
  align-items: start;
  gap: 14px;
}

.feature-section > .section-heading {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.feature-section > .section-heading .eyebrow,
.feature-section > .section-heading h2 {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.feature-section > .section-heading h2 {
  grid-column: 1 / -1;
  justify-self: stretch;
  max-width: none;
  width: 100%;
  white-space: nowrap;
}

.feature-section .feature-card {
  background: rgba(255, 255, 255, 0.9);
}

.summary-band {
  width: 100%;
  padding: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.summary-inner > div {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: var(--surface);
}

.stat-value {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1;
  color: var(--teal);
  font-weight: 950;
  white-space: nowrap;
}

.hardware-section {
  padding-top: 68px;
}

.hardware-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 34px;
  align-items: center;
}

.hardware-copy h2,
.buy-copy h2,
.download-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 3.6vw, 3.3rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.hardware-copy > p:not(.eyebrow),
.buy-copy p,
.download-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hardware-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hardware-points li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: var(--surface);
}

.hardware-points strong,
.hardware-points span {
  display: block;
}

.hardware-points strong {
  color: var(--ink);
  font-weight: 950;
}

.hardware-points span {
  margin-top: 2px;
  color: var(--muted);
}

.hardware-figure {
  margin: 0;
}

.hardware-figure picture,
.hardware-figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.hardware-figure picture {
  display: block;
}

.hardware-figure img {
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hardware-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.buy-section {
  padding-top: 32px;
}

.buy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
}

.buy-copy h2 {
  color: white;
}

.buy-copy p,
.buy-form p {
  color: rgba(255, 255, 255, 0.76);
}

.buy-form {
  display: grid;
  gap: 10px;
}

.buy-location-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-on-dark);
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.buy-location-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.buy-search-status {
  min-height: 1.4em;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
}

.buy-results {
  display: grid;
  gap: 10px;
}

.buy-result {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.buy-result h3,
.buy-result p {
  margin: 0;
  color: white;
}

.buy-result h3 {
  font-size: 1rem;
}

.buy-result p {
  font-size: 0.9rem;
}

.buy-result-meta,
.buy-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.buy-result-meta {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.buy-availability {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.buy-availability-available {
  background: rgba(82, 210, 150, 0.2);
  color: #bff5dc;
}

.buy-availability-out_of_stock {
  background: rgba(255, 143, 126, 0.18);
  color: #ffd0c9;
}

.buy-result-actions a,
.buy-result-link {
  color: var(--brand-on-dark);
  font-weight: 900;
  text-underline-offset: 3px;
}

.buy-coming-soon {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-on-dark);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
}

.buy-form label {
  color: white;
  font-weight: 900;
}

.buy-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.buy-search-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.buy-search-row input:focus {
  outline: 3px solid rgba(255, 138, 93, 0.4);
  outline-offset: 1px;
}

.buy-search-row input:disabled {
  border-color: rgba(255, 255, 255, 0.16);
  background: #e4e8e6;
  color: #737d82;
  cursor: not-allowed;
  opacity: 1;
}

.buy-search-row input:disabled::placeholder {
  color: #8d969b;
}

.buy-form .button-primary {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.buy-form .button-primary:disabled {
  background: #d1d7d5;
  color: #737d82;
  box-shadow: none;
  cursor: not-allowed;
}

.download-section {
  padding-top: 36px;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download-store-panel {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.download-store-panel .store-coming-soon {
  color: var(--brand);
}

.download-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  min-width: 174px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #eef2f1;
  color: #737d82;
  font-weight: 950;
  text-decoration: none;
}

.store-badge.is-disabled {
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.68;
}

.store-badge-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: currentColor;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.split-copy h2 {
  font-size: clamp(1.9rem, 3.65vw, 3.45rem);
  line-height: 1;
}

.legal-hero h1 {
  font-size: clamp(1.85rem, 3.8vw, 3.35rem);
  line-height: 1.05;
}

.feature-grid,
.legal-card-grid {
  display: grid;
  gap: 14px;
}

.feature-grid,
.legal-card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.feature-card h3,
.legal-card h2 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.feature-card p,
.legal-card p,
.legal-card li,
.split-copy p {
  color: var(--muted);
  overflow-wrap: break-word;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.45fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 68px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.split-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.faq-section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 245, 0.92));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
}

.faq-heading {
  display: block;
  max-width: 540px;
  margin-bottom: 0;
}

.faq-heading h2 {
  margin: 0 0 14px;
  max-width: 520px;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.04;
  font-weight: 900;
}

.faq-heading p:not(.eyebrow) {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 33, 42, 0.06);
}

.faq-item summary {
  min-height: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-item summary span:first-child {
  min-width: 0;
  overflow-wrap: break-word;
}

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

.faq-item summary:focus-visible {
  outline: 2px solid rgba(17, 123, 118, 0.32);
  outline-offset: -4px;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-indicator {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(240, 90, 42, 0.22);
  border-radius: 999px;
  background: rgba(240, 90, 42, 0.1);
  color: var(--brand);
}

.faq-indicator::before,
.faq-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-indicator::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.legal-main {
  background: var(--surface-soft);
}

.legal-hero {
  background: var(--navy);
  color: white;
}

.legal-hero-inner {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 54px;
}

.updated,
.intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  overflow-wrap: break-word;
}

.legal-content {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0 86px;
}

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

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.contact-grid {
  display: grid;
  gap: 10px;
}

.contact-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  background: var(--surface-soft);
  font-weight: 800;
}

.contact-pill span {
  color: var(--muted);
}

.contact-pill a,
.legal-card a {
  color: var(--teal);
  font-weight: 900;
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 112px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.footer-brand strong {
  display: block;
}

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

.footer-legal {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .nav-actions {
    margin-left: auto;
  }

  .nav-links {
    display: none;
  }

  .language-picker {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    align-content: center;
  }
}

@media (max-width: 900px) {
  .hero-section {
    background: var(--navy);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-visual {
    min-height: 560px;
  }

  .section-heading,
  .hardware-layout,
  .buy-panel,
  .download-layout,
  .split-section,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .feature-section > .section-heading {
    grid-template-columns: 1fr;
  }

  .feature-section > .section-heading .eyebrow,
  .feature-section > .section-heading h2 {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .feature-section > .section-heading h2 {
    justify-self: stretch;
    width: 100%;
  }

  .hero-gallery {
    width: min(100%, 640px);
    justify-items: center;
  }

  .gallery-slide {
    height: min(68vh, 520px);
    min-height: 430px;
  }

  .gallery-frame--app {
    width: min(100%, 236px);
    height: auto;
    min-height: 0;
  }

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

  .split-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    width: min(100% - 24px, var(--max));
    min-height: 64px;
    gap: 10px;
  }

  .brand-link span {
    max-width: min(180px, calc(100vw - 130px));
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-inner,
  .section,
  .section-inner,
  .legal-hero-inner,
  .legal-content,
  .footer-inner,
  .footer-legal {
    width: min(100% - 24px, var(--max));
  }

  .hero-inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .product-visual {
    min-height: 520px;
  }

  .gallery-slide {
    height: min(72vh, 500px);
    min-height: 420px;
  }

  .gallery-frame--app {
    width: min(100%, 228px);
    height: auto;
    min-height: 0;
    padding: 5px;
    border-radius: 25px;
  }

  .gallery-frame--app picture {
    border-radius: 20px;
  }

  .gallery-frame--app::before {
    top: 7px;
    width: 38px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .hero-actions,
  .split-actions {
    display: grid;
  }

  .store-actions,
  .store-buttons {
    display: grid;
  }

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

  .hero-proof {
    flex-wrap: nowrap;
    gap: 10px;
    width: calc(100% + 12px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0 12px 6px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-proof::-webkit-scrollbar,
  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .hero-proof li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .summary-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .summary-inner > div {
    min-height: 94px;
  }

  .hardware-copy h2,
  .buy-copy h2,
  .download-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .buy-panel {
    padding: 24px;
  }

  .download-layout {
    padding: 24px 0;
  }

  .download-store-panel,
  .download-store-badges {
    display: grid;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .buy-search-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .feature-section {
    width: 100%;
    padding: 56px 0;
  }

  .feature-section > .section-heading,
  .feature-section > .feature-grid {
    width: min(100% - 24px, var(--max));
  }

  .feature-section > .section-heading h2 {
    max-width: none;
    font-size: clamp(1.04rem, 4.9vw, 1.35rem);
    line-height: 1.08;
    white-space: nowrap;
  }

  .feature-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .feature-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  .split-section {
    width: min(100% - 24px, var(--max));
    padding: 22px;
    margin-bottom: 48px;
  }

  .faq-section {
    padding: 56px 0;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 16px;
  }

  .faq-item p {
    padding: 0 16px 16px;
  }

  .footer-inner {
    min-height: auto;
    padding: 26px 0 18px;
    align-items: flex-start;
    flex-direction: column;
  }
}

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