:root {
  --bg: #080a0d;
  --bg-deep: #040506;
  --surface: rgba(15, 19, 24, 0.8);
  --surface-strong: rgba(10, 13, 17, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-accent: rgba(216, 167, 103, 0.08);
  --border: rgba(236, 221, 195, 0.12);
  --border-strong: rgba(236, 221, 195, 0.2);
  --text: #f5efe5;
  --text-strong: #fffaf4;
  --muted: #baa991;
  --muted-soft: #9d8f7d;
  --accent: #d8a767;
  --accent-strong: #efc58a;
  --accent-soft: rgba(216, 167, 103, 0.16);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: min(1200px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 14%, rgba(216, 167, 103, 0.22), transparent 26%),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #10151d 0%, #080a0d 38%, #040506 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(circle at 20% 80%, rgba(216, 167, 103, 0.12), transparent 24%),
    radial-gradient(circle at 80% 72%, rgba(216, 167, 103, 0.08), transparent 18%);
  opacity: 0.8;
}

body::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 12%, transparent 78%);
  opacity: 0.08;
}

main,
section,
header,
footer {
  position: relative;
  z-index: 1;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
.button {
  touch-action: manipulation;
}

::selection {
  background: rgba(216, 167, 103, 0.3);
  color: #fff;
}

.skip-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(7, 9, 12, 0.96);
  color: var(--text-strong);
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

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

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

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  padding: 7px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 34px rgba(0, 0, 0, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

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

.brand-copy strong {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-strong);
}

.brand-copy span {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(216, 167, 103, 0.55);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

:where(a, button, input, textarea):focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b1208;
  box-shadow: 0 16px 48px rgba(216, 167, 103, 0.26);
}

.button--secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

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

.button--block {
  width: 100%;
}

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

.panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(10, 13, 17, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.site-footer a:hover {
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].delay-1 {
  transition-delay: 0.08s;
}

[data-reveal].delay-2 {
  transition-delay: 0.16s;
}

[data-reveal].delay-3 {
  transition-delay: 0.24s;
}

.landing-page .site-frame {
  width: min(1240px, calc(100% - 40px));
}

.landing-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-bottom: 44px;
}

.hero-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  padding: 22px 26px;
}

.hero-banner .brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 20px;
}

.hero-banner .brand-copy strong {
  font-size: 1.08rem;
}

.hero-banner .brand-copy span {
  font-size: 0.82rem;
}

.hero-banner__brand {
  display: grid;
  gap: 10px;
}

.hero-banner__brand p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-banner__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 4vw, 68px);
  padding: 34px 0 72px;
}

.hero-copy {
  max-width: 540px;
}

.hero-title {
  margin: 24px 0 20px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: var(--text-strong);
  text-wrap: balance;
}

.hero-title em {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "SOFT" 80;
}

.hero-summary {
  margin: 0 0 30px;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.8;
}

.hero-note {
  margin-top: 16px;
  color: var(--muted-soft);
  font-size: 0.84rem;
}

.hero-proof {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.hero-proof li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}

.device-stage {
  position: relative;
  min-height: 640px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: 8% 14% 6% 12%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(216, 167, 103, 0.22), transparent 60%);
  filter: blur(30px);
}

.device-stage__base {
  position: absolute;
  left: 10%;
  right: 6%;
  bottom: 10%;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  opacity: 0.55;
}

.device-cluster {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.device-shell {
  position: absolute;
  background: linear-gradient(145deg, #31343a, #10141a 68%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.device-shell::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 22%);
  opacity: 0.36;
  pointer-events: none;
}

.device-shell__screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #05070a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device-media {
  width: 100%;
  height: 100%;
  display: block;
}

.device-shell--ipad {
  width: min(700px, 92vw);
  aspect-ratio: 1.54;
  left: 2%;
  top: 10%;
  padding: 15px;
  border-radius: 38px;
  transform: translate3d(0, 1%, -70px) rotateX(5deg) rotateY(-4deg) rotateZ(-1.4deg);
}

.device-shell--ipad .device-shell__screen {
  border-radius: 28px;
}

.device-shell--ipad .device-shell__camera {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 52px;
  height: 8px;
  margin-left: -26px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.device-shell__screen--ipad {
  background: #05070a;
}

.device-media--ipad {
  object-fit: cover;
  object-position: center top;
}

.device-shell--iphone {
  width: min(238px, 44vw);
  aspect-ratio: 0.487;
  right: 9%;
  bottom: 5%;
  padding: 8px;
  border-radius: 44px;
  transform: translate3d(0, 0, 110px) rotateX(4deg) rotateY(-4deg) rotateZ(3deg);
}

.device-shell--iphone .device-shell__screen {
  border-radius: 36px;
}

.device-shell--iphone .device-shell__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 98px;
  height: 26px;
  margin-left: -49px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06);
}

.device-shell--iphone .device-shell__button {
  position: absolute;
  right: -3px;
  top: 98px;
  width: 4px;
  height: 76px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.device-shell--iphone .device-shell__button--small {
  top: 188px;
  height: 52px;
}

.device-shell__screen--iphone {
  position: relative;
  background:
    radial-gradient(circle at 50% 14%, rgba(106, 72, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #120d25 0%, #0d0f1b 36%, #07090d 100%);
}

.device-shell__screen--iphone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 12%, transparent 88%, rgba(255, 209, 149, 0.06));
  pointer-events: none;
}

.device-media--iphone {
  object-fit: cover;
  object-position: 55% 52%;
}

.device-caption {
  position: absolute;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(9, 11, 15, 0.78);
  backdrop-filter: blur(16px);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.device-caption--ipad {
  left: -2%;
  top: 14%;
}

.device-caption--iphone {
  right: 2%;
  bottom: 4%;
}

.section-block {
  padding: clamp(82px, 10vw, 126px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: start;
}

.section-copy h2 {
  margin: 18px 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-copy p {
  margin: 0;
  max-width: 32rem;
  color: var(--muted);
  line-height: 1.82;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-list li {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: 1.08rem;
  font-weight: 600;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.detail-column {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.detail-column h3 {
  margin: 0 0 10px;
  color: var(--text-strong);
  font-size: 1.05rem;
  font-weight: 600;
}

.detail-column p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.promise-block {
  text-align: center;
}

.promise-block h2 {
  margin: 18px auto 16px;
  max-width: 14ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.promise-block p {
  margin: 0 auto;
  max-width: 45rem;
  color: var(--muted);
  line-height: 1.84;
}

.cta-panel {
  padding: clamp(32px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  max-width: 36rem;
}

.sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  width: min(700px, calc(100% - 24px));
  transform: translate(-50%, 140%);
  z-index: 20;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(7, 9, 12, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.sticky-bar.show {
  transform: translate(-50%, 0);
}

.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sticky-bar__copy {
  color: var(--muted);
  font-size: 0.84rem;
}

.share-page,
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.share-shell {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 380px);
  gap: 24px;
}

.share-panel,
.share-aside {
  padding: clamp(28px, 4vw, 38px);
}

.share-panel h1,
.error-panel h1 {
  margin: 18px 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.share-panel > p,
.error-panel > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.share-list {
  margin: 28px 0 32px;
  display: grid;
  gap: 12px;
}

.share-list-item {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.share-list-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.share-list-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 600;
}

.share-list-item span {
  color: var(--muted);
  line-height: 1.72;
}

.share-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.share-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.share-mini-device {
  width: min(235px, 62vw);
  margin: 0 auto;
  aspect-ratio: 0.487;
  padding: 10px;
  border-radius: 40px;
  background: linear-gradient(145deg, #2d3035, #0b0f16 65%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  position: relative;
}

.share-mini-device::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 110px;
  height: 28px;
  margin-left: -55px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2;
}

.share-mini-device img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.share-meta {
  display: grid;
  gap: 12px;
}

.share-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.share-meta-row strong {
  color: var(--text-strong);
}

.share-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.share-footnote {
  color: var(--muted-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.status-message {
  min-height: 1.2rem;
  margin: 14px 0 0;
  color: var(--muted-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.status-message[data-state="error"] {
  color: #ffb0b0;
}

.status-panel {
  text-align: center;
  padding: 50px 0 18px;
}

.status-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}

.spinner {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-panel {
  width: min(560px, 100%);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}

.error-panel .button-row {
  justify-content: center;
  margin-top: 26px;
}

.legal-page {
  padding: 24px 0 80px;
}

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

.legal-hero {
  padding: 8px 0 26px;
}

.legal-hero .brand-lockup {
  margin-bottom: 34px;
}

.legal-hero h1 {
  margin: 18px 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.legal-hero p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.8;
}

.legal-meta {
  margin-top: 16px;
  color: var(--muted-soft);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-card {
  padding: clamp(26px, 4vw, 42px);
}

.legal-card .back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.legal-card .back-link:hover {
  color: var(--text);
}

.legal-prose {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.84;
}

.legal-prose h2,
.legal-prose h3,
.legal-prose h4 {
  color: var(--text-strong);
}

.legal-prose h2 {
  margin: 48px 0 16px;
  font-size: 1.56rem;
  line-height: 1.2;
}

.legal-prose h3 {
  margin: 32px 0 12px;
  font-size: 1.14rem;
  line-height: 1.3;
}

.legal-prose p,
.legal-prose ul,
.legal-prose ol,
.legal-prose table {
  margin: 0 0 16px;
}

.legal-prose a {
  color: var(--accent-strong);
}

.legal-prose ul,
.legal-prose ol {
  padding-left: 22px;
}

.legal-prose li + li {
  margin-top: 8px;
}

.legal-prose table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.legal-prose th,
.legal-prose td {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.legal-prose th {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.03);
}

.legal-prose td {
  background: rgba(255, 255, 255, 0.02);
}

.legal-prose .summary-box {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.legal-support {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.legal-support a {
  color: var(--accent-strong);
}

@media (max-width: 1060px) {
  .hero-grid,
  .section-grid,
  .share-shell,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 540px;
  }

  .share-shell {
    max-width: 760px;
    margin: 0 auto;
  }

  .cta-panel {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100%, calc(100% - 28px));
  }

  body::after {
    background-size: 44px 44px;
  }

  .hero-banner {
    align-items: flex-start;
  }

  .hero-grid {
    padding: 24px 0 54px;
  }

  .device-stage {
    min-height: 500px;
  }

  .device-shell--ipad {
    width: min(560px, 96vw);
    left: 50%;
    top: 8%;
    transform: translate3d(-56%, 2%, -60px) rotateX(6deg) rotateY(-4deg) rotateZ(-2deg);
  }

  .device-shell--iphone {
    width: min(210px, 42vw);
    right: 3%;
    bottom: 7%;
  }

  .device-caption--ipad {
    top: 4%;
  }

  .device-caption--iphone {
    right: -1%;
    bottom: 0;
  }

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

  .sticky-bar {
    border-radius: 26px;
  }

  .sticky-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-bar .button {
    width: 100%;
  }

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

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

  .hero-banner__meta {
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero-proof {
    gap: 10px;
  }

  .hero-proof li {
    width: 100%;
    justify-content: center;
  }

  .device-stage {
    min-height: 400px;
  }

  .device-shell--iphone {
    width: min(180px, 46vw);
    right: 1%;
    bottom: 10%;
  }

  .share-panel,
  .share-aside,
  .legal-card {
    padding: 24px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .device-cluster,
  .sticky-bar {
    transition: none;
  }

  .spinner {
    animation: none;
  }
}
