:root {
  color-scheme: light;
  --bg: #f4f1ea;
  --bg-elevated: #f8f7f3;
  --surface: rgba(248, 247, 243, 0.9);
  --surface-strong: #f8f7f3;
  --surface-dark: #2a2a2f;
  --surface-dark-soft: #35353b;
  --line: rgba(14, 14, 17, 0.1);
  --line-strong: rgba(14, 14, 17, 0.18);
  --text: #2f2f34;
  --text-strong: #0e0e11;
  --text-muted: #66666d;
  --text-soft: #8e8e95;
  --accent: #10b981;
  --accent-strong: #087f5b;
  --accent-soft: rgba(16, 185, 129, 0.1);
  --navy: #2a2a2f;
  --navy-soft: #e9e9ec;
  --danger-soft: rgba(164, 62, 53, 0.1);
  --hero-shadow: 0 28px 80px rgba(21, 27, 38, 0.08);
  --card-shadow: 0 18px 40px rgba(21, 27, 38, 0.07);
  --radius-xs: 14px;
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --content-width: min(1160px, calc(100vw - 32px));
  --content-tight: min(860px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.site-body {
  min-height: 100vh;
}

.page-shell {
  position: relative;
  padding: 20px 0 120px;
}

.shell {
  width: var(--content-width);
  margin: 0 auto;
}

.shell--tight {
  width: var(--content-tight);
}

.surface {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);
}

.section-stack {
  display: grid;
  gap: 22px;
}

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--navy), #324052);
  color: #f6fbff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-title {
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-strong);
}

.brand-subtitle {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

.site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text-muted);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.button:hover,
.button:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-1px);
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  color: var(--text-strong);
}

.site-nav-link[aria-current="page"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #f8fbff;
}

.header-cta {
  display: inline-flex;
}

.page-root,
.dynamic-page {
  display: grid;
  gap: 24px;
}

.hero {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 5vw, 44px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero--split {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: stretch;
}

.hero-panel {
  display: grid;
  gap: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--accent-strong);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.hero-title,
.section-title,
.card-title,
.cta-title,
.legal-title,
.not-found h1 {
  margin: 0;
  color: var(--text-strong);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-title {
  max-width: 11ch;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
}

.hero-copy,
.section-intro,
.card-copy,
.cta-copy,
.meta-copy,
.download-note,
.legal-copy,
.not-found-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-actions,
.button-row,
.chip-row,
.meta-row,
.footer-chip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-strong);
  text-decoration: none;
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button--primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #f7fbff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #2a3340;
  border-color: #2a3340;
}

.button--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #f6fffb;
}

.button--accent:hover,
.button--accent:focus-visible {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button--ghost {
  background: transparent;
}

.button--dark-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #edf4fb;
}

.hero-side {
  display: grid;
  gap: 18px;
  align-content: stretch;
}

.stat-grid,
.feature-grid,
.card-grid,
.related-grid,
.footer-grid,
.summary-grid {
  display: grid;
  gap: 16px;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid,
.card-grid,
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.card,
.related-card,
.cta-band,
.section-panel,
.hero-side-card,
.download-card,
.blog-empty,
.legal-panel,
.not-found,
.download-bar-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--card-shadow);
}

.stat-card,
.card,
.related-card,
.hero-side-card,
.download-card,
.section-panel,
.blog-empty,
.legal-panel {
  padding: 22px;
}

.stat-label,
.meta-label,
.label,
.footer-title,
.legal-meta {
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.stat-value {
  display: block;
  margin: 10px 0 8px;
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.stat-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

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

.section-heading {
  display: grid;
  gap: 10px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-title--compact {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

.section-intro {
  max-width: 66ch;
}

.card {
  display: grid;
  gap: 14px;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.card-title {
  font-size: 1.8rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--accent-strong);
  text-decoration: none;
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.bullet-list,
.check-list,
.step-list,
.footer-links,
.legal-list,
.document ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.bullet-list li,
.check-list li,
.step-list li,
.legal-list li,
.document li {
  color: var(--text-muted);
  line-height: 1.66;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: 900;
}

.step-list {
  padding-left: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-item {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--navy);
  color: #f8fbff;
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.step-title,
.faq-question,
.related-title,
.download-title,
.footer-title {
  margin: 0;
  color: var(--text-strong);
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: 800;
}

.step-title {
  font-size: 1.14rem;
}

.step-copy,
.faq-answer,
.related-copy,
.download-copy,
.footer-link,
.article-section-copy,
.topic-pill {
  color: var(--text-muted);
  line-height: 1.66;
}

.cta-band {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  background:
    radial-gradient(circle at top right, rgba(23, 123, 95, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.94));
}

.cta-band--dark {
  background:
    radial-gradient(circle at top right, rgba(23, 123, 95, 0.32), transparent 28%),
    linear-gradient(145deg, #202734, #2b3442);
  border-color: rgba(255, 255, 255, 0.08);
}

.cta-band--dark .cta-title,
.cta-band--dark .cta-copy,
.cta-band--dark .stat-label,
.cta-band--dark .footer-title {
  color: #edf4fb;
}

.cta-band--dark .cta-copy {
  color: rgba(237, 244, 251, 0.76);
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-muted);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.chip--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(237, 244, 251, 0.84);
}

.feature-rail {
  display: grid;
  gap: 12px;
}

.feature-rail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.feature-rail-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: 800;
}

.feature-rail-content {
  display: grid;
  gap: 6px;
}

.feature-rail-title,
.article-section-title {
  margin: 0;
  color: var(--text-strong);
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
}

.feature-rail-copy,
.article-section-copy {
  margin: 0;
}

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

.faq-item {
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.faq-question {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.faq-answer {
  margin: 0;
}

.meta-row {
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.article-layout {
  display: grid;
  gap: 24px;
}

.article-section-list {
  display: grid;
  gap: 22px;
}

.article-section {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.article-section-copy + .article-section-copy {
  margin-top: -2px;
}

.article-breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.88rem;
}

.article-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.article-breadcrumbs a:hover,
.article-breadcrumbs a:focus-visible {
  color: var(--text-strong);
}

.related-grid {
  align-items: stretch;
}

.related-card {
  display: grid;
  gap: 10px;
}

.related-title {
  font-size: 1.22rem;
}

.related-copy {
  margin: 0;
}

.related-card .chip-row {
  gap: 8px;
}

.topic-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px dashed var(--line-strong);
  background: rgba(255, 255, 255, 0.66);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-empty {
  display: grid;
  gap: 14px;
}

.download-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-card {
  display: grid;
  gap: 12px;
}

.download-title {
  font-size: 1.42rem;
}

.download-note {
  font-size: 0.94rem;
}

.download-page {
  display: grid;
  gap: clamp(52px, 8vw, 92px);
}

.download-hero-panel {
  min-height: min(620px, 72vh);
  padding: clamp(46px, 8vw, 96px) clamp(24px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: 32px;
  background: var(--surface-dark);
  color: #f8f7f3;
}

.download-hero-panel .eyebrow {
  color: var(--accent);
}

.download-hero-panel h1 {
  max-width: 12ch;
  margin: 22px 0 20px;
  color: inherit;
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.download-hero-copy {
  max-width: 62ch;
  margin: 0;
  color: #b8b8bd;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.72;
}

.store-badge-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.store-badge {
  width: 184px;
  min-height: 58px;
  padding: 8px 18px;
  display: grid;
  align-content: center;
  justify-items: start;
  border: 1px solid rgba(248, 247, 243, 0.22);
  border-radius: 12px;
  background: #17171a;
  color: #f8f7f3;
  cursor: not-allowed;
  opacity: 0.58;
  text-align: left;
}

.store-badge span {
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1.1;
}

.store-badge strong {
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.download-availability {
  margin: 16px 0 0;
  color: #85858c;
  font-size: 0.78rem;
}

.download-feature-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.download-feature-heading {
  max-width: 13ch;
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.download-feature-list {
  border-top: 1px solid var(--line-strong);
}

.download-feature {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.download-feature > span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 820;
}

.download-feature h2,
.download-feature p {
  margin: 0;
}

.download-feature h2 {
  color: var(--text-strong);
  font-size: 1.26rem;
  letter-spacing: -0.035em;
}

.download-feature p {
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.65;
}

.download-support {
  min-height: 92px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  color: var(--text-muted);
}

.download-support a {
  color: var(--accent-strong);
  font-weight: 780;
  text-decoration: none;
}

.site-footer-wrap {
  padding: 0 0 36px;
}

.site-footer {
  padding: 30px;
  border-radius: 36px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-copy {
  margin: 0;
  max-width: 34ch;
  color: var(--text-muted);
  line-height: 1.72;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-link {
  text-decoration: none;
}

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

.footer-footnote {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
}

.download-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 30;
  padding: 0 16px;
  pointer-events: none;
}

.download-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 16px 18px;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.download-bar-copy {
  display: grid;
  gap: 4px;
}

.download-bar-title {
  margin: 0;
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-strong);
}

.download-bar-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.legal-page {
  padding-top: 24px;
}

.legal-header {
  display: grid;
  gap: 16px;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  text-decoration: none;
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-nav-link[aria-current="page"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #f8fbff;
}

.legal-panel {
  padding: clamp(26px, 5vw, 38px);
}

.legal-title {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
}

.document {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 5vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--card-shadow);
}

.document .section {
  gap: 12px;
}

.document h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.24rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.document p,
.document li {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.76;
  font-size: 0.98rem;
}

.support-intro {
  max-width: 64ch;
}

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

.support-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface-strong) 92%, var(--accent-soft));
}

.support-card h2,
.support-card h3,
.support-card p {
  margin: 0;
}

.support-card h2,
.support-card h3 {
  color: var(--text-strong);
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
  letter-spacing: -0.025em;
}

.support-card p,
.support-card li {
  color: var(--text-muted);
  line-height: 1.65;
}

.support-card a,
.document a:not(.button) {
  color: var(--accent-strong);
  font-weight: 750;
  text-underline-offset: 0.18em;
}

.support-card--store {
  background: var(--surface-dark);
}

.support-card--store h2,
.support-card--store p,
.support-card--store a,
.support-card--store .eyebrow {
  color: #f4f7f5;
}

.support-card--store p {
  opacity: 0.78;
}

.language-menu {
  position: relative;
  width: max-content;
  z-index: 20;
}

.language-menu summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text-strong);
  box-shadow: 0 10px 28px rgba(13, 31, 28, 0.08);
  cursor: pointer;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 780;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "⌄";
  color: var(--accent-strong);
  font-size: 1rem;
  transform: translateY(-2px);
  transition: transform 180ms ease-out;
}

.language-menu[open] summary::after {
  transform: translateY(2px) rotate(180deg);
}

.language-menu summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 30%, transparent);
  outline-offset: 3px;
}

.language-menu-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 190px;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: 0 18px 44px rgba(13, 31, 28, 0.14);
}

.language-menu-list a {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 740;
  text-decoration: none;
}

.language-menu-list a:hover,
.language-menu-list a:focus-visible,
.language-menu-list a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.support-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.support-index a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.support-index a:hover,
.support-index a:focus-visible {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.support-section {
  scroll-margin-top: 24px;
}

.faq-stack {
  display: grid;
  gap: 10px;
}

.faq-disclosure {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.faq-disclosure summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 18px;
  color: var(--text-strong);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: 780;
  line-height: 1.35;
  position: relative;
}

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

.faq-disclosure summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 500;
}

.faq-disclosure[open] summary::after {
  content: "−";
}

.faq-disclosure p,
.faq-disclosure ul {
  margin: 0;
  padding: 0 18px 18px;
}

.faq-disclosure ul {
  padding-left: 38px;
}

.support-callout {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--surface-dark);
  color: #f4f7f5;
}

.support-callout h2,
.support-callout p {
  color: inherit;
}

.support-callout p {
  opacity: 0.82;
}

.support-resources {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
}

.support-resources h2,
.support-resources p {
  margin: 0;
}

.support-resource-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.support-resource-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text-strong);
  font-weight: 760;
  text-decoration: none;
}

.support-resource-links a::after {
  content: "↗";
  color: var(--accent-strong);
}

.not-found {
  width: min(760px, 100%);
  margin: 12vh auto 0;
  padding: clamp(30px, 6vw, 44px);
  display: grid;
  gap: 18px;
}

.not-found h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.not-found-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-note {
  margin: 0;
  color: var(--text-soft);
  font-family: "SF Pro Text", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.92rem;
}

.visually-hidden {
  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: 1040px) {
  .hero--split,
  .footer-grid,
  .feature-grid,
  .card-grid,
  .related-grid,
  .download-grid,
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-grid,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    border-radius: 28px;
    align-items: flex-start;
  }

  .site-header,
  .hero--split,
  .feature-grid,
  .card-grid,
  .related-grid,
  .footer-grid,
  .download-grid,
  .summary-grid,
  .stat-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

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

  .support-resources,
  .support-resource-links {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .header-cta {
    width: 100%;
  }

  .header-cta .button {
    width: 100%;
  }

  .download-bar-inner {
    display: grid;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding-bottom: 140px;
  }

  .shell,
  .shell--tight {
    width: min(100vw - 20px, 100%);
  }

  .site-header-wrap {
    padding-top: 10px;
  }

  .hero,
  .card,
  .related-card,
  .cta-band,
  .document,
  .legal-panel,
  .stat-card,
  .hero-side-card,
  .download-card,
  .blog-empty,
  .site-footer {
    border-radius: 24px;
  }

  .site-nav,
  .legal-nav,
  .hero-actions,
  .button-row,
  .chip-row,
  .meta-row,
  .not-found-actions {
    gap: 10px;
  }

  .button,
  .site-nav-link,
  .legal-nav-link {
    width: 100%;
  }
}

/* ShapeVision public direction — app-aligned, light and athletic. */
body {
  overflow-x: hidden;
}

.page-shell {
  padding: 44px 0 88px;
}

.page-root,
.dynamic-page {
  gap: 72px;
}

.site-header-wrap {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(18px);
}

.site-header {
  min-height: 76px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand {
  flex: 0 0 auto;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: none;
  object-fit: cover;
  box-shadow: none;
}

.brand-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-copy,
.brand-subtitle {
  display: none;
}

.site-nav {
  gap: 2px;
  flex-wrap: nowrap;
}

.site-nav-link {
  min-height: 40px;
  padding: 0 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 650;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  border: 0;
  background: var(--bg-elevated);
  transform: none;
}

.site-nav-link[aria-current="page"] {
  background: transparent;
  color: var(--text-strong);
}

.site-nav-link[aria-current="page"]::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.site-menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text-strong);
  font-weight: 750;
}

.header-cta {
  flex: 0 0 auto;
}

.header-cta .button {
  min-height: 42px;
  border-radius: 14px;
}

.button {
  border-radius: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

.button--primary {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
  color: #f8f7f3;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #35353b;
  border-color: #35353b;
}

.button--disabled,
.button--disabled:hover,
.button--disabled:focus-visible {
  border-color: color-mix(in srgb, var(--text-soft) 18%, transparent);
  background: color-mix(in srgb, var(--text-soft) 14%, var(--bg-elevated));
  color: color-mix(in srgb, var(--text-soft) 78%, var(--bg));
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}

.button--light {
  background: #f8f7f3;
  border-color: #f8f7f3;
  color: var(--text-strong);
}

.eyebrow {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  display: none;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(350px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(24px, 4vw, 58px);
  min-height: 740px;
  align-items: stretch;
}

.home-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 42px 0 30px;
}

.home-hero-title {
  max-width: 8.2ch;
  margin: 0 0 22px;
  color: var(--text-strong);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(4rem, 6.6vw, 6.6rem);
  font-weight: 850;
  letter-spacing: -0.078em;
  line-height: 0.87;
  text-transform: uppercase;
}

.home-hero-intro {
  max-width: 52ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.home-hero .hero-actions {
  margin-top: 30px;
}

.home-hero-facts {
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.home-hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.home-hero-facts li span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.home-model-stage {
  position: relative;
  min-width: 0;
  min-height: 740px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.home-model {
  position: absolute;
  z-index: 2;
  inset: 24px 0 40px;
  cursor: grab;
  touch-action: pan-y;
}

.home-model:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: -8px;
}

.home-model.is-interacting {
  cursor: grabbing;
}

.home-model canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.home-muscle-anchor {
  position: absolute;
  z-index: 6;
  width: 13px;
  height: 13px;
  border: 3px solid #f8f7f3;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(14, 14, 17, 0.2), 0 6px 18px rgba(16, 185, 129, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.home-muscle-bubble {
  position: absolute;
  z-index: 7;
  min-height: 42px;
  max-width: min(250px, calc(100% - 24px));
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(248, 247, 243, 0.14);
  border-radius: 14px;
  background: var(--surface-dark);
  color: #f8f7f3;
  box-shadow: 0 18px 42px rgba(14, 14, 17, 0.2);
  pointer-events: none;
}

.home-muscle-bubble[hidden],
.home-muscle-anchor[hidden] {
  display: none;
}

.home-muscle-bubble > span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.home-muscle-bubble strong {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.home-capabilities,
.home-resources {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.home-section-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 46px;
}

.home-section-heading--solo h2 {
  grid-column: 2;
}

.home-section-heading h2,
.home-flow h2,
.home-final-cta h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--text-strong);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.home-capability-list {
  border-top: 1px solid var(--line-strong);
}

.home-capability-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
}

.home-capability-index {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-capability-kicker {
  margin: 0 0 6px;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-capability-title {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.home-capability-copy {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.62;
}

.home-text-link,
.home-resource a {
  color: var(--text-strong);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.home-flow {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 62px;
  padding: 68px;
  border-radius: 32px;
  background: var(--surface-dark);
  color: #f8f7f3;
}

.home-flow .eyebrow {
  color: #9b9ba2;
}

.home-flow h2,
.home-final-cta h2 {
  color: #f8f7f3;
}

.home-flow-copy > p:last-child {
  max-width: 43ch;
  margin: 20px 0 0;
  color: #b8b8bd;
  line-height: 1.7;
}

.home-flow-list {
  border-top: 1px solid rgba(248, 247, 243, 0.14);
}

.home-flow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(248, 247, 243, 0.14);
}

.home-flow-step > span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

.home-flow-step h3 {
  margin: 0;
  color: #f8f7f3;
  font-size: 1.08rem;
}

.home-flow-step p {
  margin: 7px 0 0;
  color: #b8b8bd;
  line-height: 1.6;
}

.home-resource-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.home-resource {
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-elevated);
}

.home-resource:first-child {
  background: var(--surface-dark);
  color: #f8f7f3;
}

.home-resource-kicker {
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-resource:first-child .home-resource-kicker,
.home-resource:first-child a {
  color: var(--accent);
}

.home-resource h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--text-strong);
  font-size: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.home-resource:first-child h3 {
  color: #f8f7f3;
}

.home-resource > p:not(.home-resource-kicker) {
  margin: 16px 0 22px;
  color: var(--text-muted);
  line-height: 1.65;
}

.home-resource:first-child > p:not(.home-resource-kicker) {
  color: #b8b8bd;
}

.home-resource a {
  margin-top: auto;
}

.home-final-cta {
  min-height: 290px;
  padding: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-radius: 32px;
  background: var(--surface-dark);
}

.home-final-cta .eyebrow {
  color: var(--accent);
}

.home-final-cta h2 {
  margin-top: 18px;
}

.site-footer-wrap {
  padding: 0;
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}

.site-footer {
  padding: 54px 0 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-grid {
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand .brand {
  margin-bottom: 8px;
}

.footer-title {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.footer-link {
  font-size: 0.9rem;
}

.footer-footnote {
  font-size: 0.8rem;
}

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

  .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 8px 0 16px;
    flex-wrap: wrap;
  }

  .site-nav.is-open {
    display: flex;
  }

  .home-hero {
    grid-template-columns: minmax(310px, 0.88fr) minmax(440px, 1.12fr);
  }

  .home-hero-title {
    font-size: clamp(3.7rem, 7vw, 5rem);
  }
}

@media (max-width: 820px) {
  .page-root,
  .dynamic-page {
    gap: 54px;
  }

  .site-header {
    min-height: 68px;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .header-cta,
  .header-cta .button {
    width: auto;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-hero-copy {
    min-height: 570px;
  }

  .home-model-stage {
    min-height: 700px;
  }

  .home-section-heading,
  .home-flow {
    grid-template-columns: 1fr;
  }

  .home-section-heading {
    gap: 16px;
  }

  .home-section-heading--solo h2 {
    grid-column: 1;
  }

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

  .home-flow {
    gap: 40px;
    padding: 46px 30px;
  }

  .home-resource-grid {
    grid-template-columns: 1fr;
  }

  .home-resource {
    min-height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 28px 0 64px;
  }

  .shell,
  .shell--tight {
    width: min(100vw - 32px, 100%);
  }

  .site-header-wrap {
    padding-top: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    gap: 4px;
  }

  .site-nav-link {
    width: auto;
    flex: 1 1 46%;
    justify-content: flex-start;
    padding: 0 10px;
  }

  .home-hero-copy {
    min-height: 540px;
    padding-top: 34px;
  }

  .home-hero-title {
    max-width: 8.6ch;
    font-size: clamp(3.45rem, 16vw, 4.6rem);
  }

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

  .home-hero-facts {
    margin-top: 42px;
  }

  .home-model-stage {
    min-height: 620px;
  }

  .home-model {
    inset: 24px 0 44px;
  }

  .home-capabilities,
  .home-resources {
    padding: 56px 0;
  }

  .home-section-heading h2,
  .home-flow h2,
  .home-final-cta h2 {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
  }

  .home-capability-row {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .home-capability-row .home-text-link {
    grid-column: 2;
  }

  .home-flow {
    margin-right: -8px;
    margin-left: -8px;
    border-radius: 24px;
  }

  .home-final-cta {
    min-height: 340px;
    padding: 38px 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .home-final-cta .button {
    width: 100%;
  }

  .download-hero-panel {
    min-height: 560px;
    border-radius: 24px;
  }

  .store-badge-row,
  .store-badge {
    width: 100%;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Refined public pages: reduced hero scale, editorial legal documents, and launch states. */
.home-hero-title {
  max-width: 10.8ch;
  font-size: clamp(3.2rem, 4.8vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
  word-spacing: 0.08em;
}

.coming-soon-page {
  position: relative;
  min-height: min(680px, 72vh);
  padding: clamp(40px, 7vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  overflow: hidden;
  border-radius: 32px;
  background: var(--surface-dark);
  color: #f8f7f3;
}

.coming-soon-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(248, 247, 243, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 247, 243, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(135deg, #000, transparent 74%);
  pointer-events: none;
}

.coming-soon-marker {
  position: absolute;
  top: 42px;
  right: 42px;
  width: 110px;
  aspect-ratio: 1;
  border: 1px solid rgba(248, 247, 243, 0.16);
  border-radius: 50%;
}

.coming-soon-marker span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.coming-soon-marker span:nth-child(2) {
  width: 48px;
  height: 1px;
  border-radius: 0;
  background: rgba(248, 247, 243, 0.25);
}

.coming-soon-marker span:nth-child(3) {
  width: 1px;
  height: 48px;
  border-radius: 0;
  background: rgba(248, 247, 243, 0.25);
}

.coming-soon-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.coming-soon-copy .eyebrow {
  color: var(--accent);
}

.coming-soon-copy h1 {
  margin: 20px 0 24px;
  color: #f8f7f3;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-transform: uppercase;
}

.coming-soon-copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: #b8b8bd;
  line-height: 1.7;
}

.coming-soon-page .button--primary {
  border-color: #f8f7f3;
  background: #f8f7f3;
  color: var(--text-strong);
}

.coming-soon-index {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #77777f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.legal-page {
  padding-top: 0;
}

.legal-page .page-shell {
  padding: 0 0 clamp(72px, 9vw, 120px);
}

.legal-page .shell--tight {
  width: var(--content-width);
}

.legal-page .section-stack {
  gap: 0;
}

.legal-page .section-stack > * {
  min-width: 0;
}

.legal-page .legal-header {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: clamp(40px, 7vw, 76px) 0 clamp(52px, 8vw, 92px);
}

.legal-page .legal-nav {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 32px;
  gap: 12px clamp(16px, 2.1vw, 26px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-strong);
  view-transition-name: section-navigation;
}

.language-menu--header {
  flex: 0 0 auto;
  width: 146px;
  margin: 0;
  view-transition-name: language-selector;
}

.language-menu--header summary {
  width: 100%;
  justify-content: space-between;
}

.language-menu--header .language-menu-list {
  right: 0;
  left: auto;
}

.legal-page .legal-nav-link {
  position: relative;
  flex: 0 0 auto;
  min-height: auto;
  padding: 0 13px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms cubic-bezier(0.25, 1, 0.5, 1);
}

.legal-page .legal-nav-link[aria-current="page"] {
  background: transparent;
  color: var(--text-strong);
}

.legal-page .legal-nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.legal-page .legal-panel {
  min-height: 410px;
  padding: clamp(34px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  border-radius: 32px;
  background:
    linear-gradient(rgba(248, 247, 243, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 247, 243, 0.035) 1px, transparent 1px),
    var(--surface-dark);
  background-size: 48px 48px, 48px 48px, auto;
  box-shadow: none;
}

.legal-page .legal-panel .eyebrow {
  color: var(--accent);
}

.legal-page .legal-title {
  max-width: 15ch;
  margin: 18px 0 22px;
  color: #f8f7f3;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 840;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.legal-page .legal-copy {
  max-width: 68ch;
  margin: 0;
  color: #b8b8bd;
  font-size: 1rem;
  line-height: 1.72;
}

.legal-page .legal-panel .meta-row {
  margin-top: 28px;
}

.legal-page .legal-panel .meta-pill {
  border-color: rgba(248, 247, 243, 0.14);
  background: rgba(248, 247, 243, 0.07);
  color: #d7d7dc;
}

.legal-page .legal-panel .button--ghost {
  border-color: rgba(248, 247, 243, 0.22);
  background: transparent;
  color: #f8f7f3;
}

.legal-page .document {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-page .document .section {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 14px clamp(30px, 7vw, 92px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-page .document .section:first-child {
  border-top: 1px solid var(--line);
}

.legal-page .document .section > h2 {
  grid-column: 1;
  align-self: start;
  font-size: 1.1rem;
  line-height: 1.3;
}

.legal-page .document .section > :not(h2) {
  grid-column: 2;
}

.legal-page .document p,
.legal-page .document li {
  font-size: 0.98rem;
  line-height: 1.78;
}

.legal-page .document a {
  overflow-wrap: anywhere;
}

@view-transition {
  navigation: auto;
}

.site-header-wrap {
  view-transition-name: site-header;
}

::view-transition-old(root) {
  animation: 140ms cubic-bezier(0.4, 0, 1, 1) both shapevision-page-out;
}

::view-transition-new(root) {
  animation: 240ms cubic-bezier(0.22, 1, 0.36, 1) both shapevision-page-in;
}

::view-transition-group(site-header),
::view-transition-group(section-navigation),
::view-transition-group(language-selector) {
  animation-duration: 220ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

::view-transition-old(site-header),
::view-transition-new(site-header),
::view-transition-old(section-navigation),
::view-transition-new(section-navigation),
::view-transition-old(language-selector),
::view-transition-new(language-selector) {
  mix-blend-mode: normal;
}

@keyframes shapevision-page-out {
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes shapevision-page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  @view-transition {
    navigation: none;
  }
}

@media (max-width: 760px) {
  .coming-soon-page {
    min-height: 600px;
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .coming-soon-marker {
    top: 24px;
    right: 24px;
    width: 82px;
  }

  .coming-soon-copy h1 {
    font-size: clamp(3.4rem, 19vw, 5.6rem);
  }

  .coming-soon-index {
    display: none;
  }

  .legal-page .legal-nav-link {
    width: auto;
  }

  .legal-page .legal-panel {
    min-height: 360px;
    border-radius: 24px;
  }

  .legal-page .legal-title {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .legal-page .document .section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .legal-page .document .section > h2,
  .legal-page .document .section > :not(h2) {
    grid-column: 1;
  }
}

@media (max-width: 1040px) {
  .site-header:has(.language-menu--header) {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
  }

  .site-header:has(.language-menu--header) .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header:has(.language-menu--header) .site-menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header:has(.language-menu--header) .header-cta {
    grid-column: 3;
    grid-row: 1;
  }

  .site-header:has(.language-menu--header) .language-menu--header {
    grid-column: 4;
    grid-row: 1;
  }

  .site-header:has(.language-menu--header) .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  .site-header:has(.language-menu--header) {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .site-header:has(.language-menu--header) .site-menu-toggle {
    grid-column: 2;
  }

  .site-header:has(.language-menu--header) .language-menu--header {
    grid-column: 3;
    width: 46px;
  }

  .language-menu--header summary {
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .language-menu--header summary::after,
  .language-menu--header .language-menu-current {
    display: none;
  }
}

@media (max-width: 560px) {
  .home-hero-title {
    max-width: 9ch;
    font-size: clamp(3rem, 13.5vw, 4rem);
  }
}
