* { box-sizing: border-box; }

html {
  color-scheme: light dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--site-text);
  background: var(--site-bg);
}

body.legal-page {
  color-scheme: normal;
  color: var(--site-text);
  background: var(--site-bg);
}

a {
  color: var(--site-text);
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: var(--site-text);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--site-focus);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-card);
  background: var(--site-surface);
  color: var(--site-text);
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 4vw, 42px);
  backdrop-filter: none;
  background: var(--site-surface);
  border-bottom: 1px solid var(--site-border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: none;
}

.brand-word {
  font-size: 1.2rem;
}

main {
  overflow: hidden;
}

section {
  position: relative;
}

.home-hero,
.placeholder-hero {
  max-width: var(--content-width);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 86px clamp(20px, 4vw, 42px) 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.home-hero-copy h1,
.placeholder-copy h1,
.pricing-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.home-hero-copy p,
.placeholder-copy p {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--site-secondary);
  font-size: 1.12rem;
  line-height: 1.72;
}

.home-bars,
.placeholder-bars {
  position: relative;
  width: min(100%, 512px);
  aspect-ratio: 1;
  justify-self: center;
}

.home-bar {
  position: absolute;
  height: 13.28125%;
  border-radius: 18px;
  box-shadow: none;
}

.home-bar-1 { top: 18.359375%; left: 31.640625%; width: 40.234375%; background: var(--c-brand-bar-1); }
.home-bar-2 { top: 34.765625%; left: 23.046875%; width: 44.53125%; background: var(--c-brand-bar-2); }
.home-bar-3 { top: 51.953125%; left: 33.984375%; width: 44.53125%; background: var(--c-brand-bar-3); }
.home-bar-4 { top: 69.53125%; left: 21.09375%; width: 49.21875%; background: var(--bronze); }

.home-products {
  padding-top: 54px;
}

.product-gateway {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: block;
  min-height: 250px;
}

.placeholder-hero {
  min-height: calc(100vh - 72px);
}

.hero {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 42px) 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.hero::after,
.layer-section::before,
.proof-section::before,
.workflow-section::before,
.plans-section::before {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  height: 44px;
  pointer-events: none;
  background: var(--site-surface);
  opacity: 0.42;
}

.hero::after {
  bottom: -22px;
}

.layer-section::before,
.proof-section::before,
.workflow-section::before,
.plans-section::before {
  top: -22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--site-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--site-bronze-wash);
}

.hero h1,
.section-heading h2,
.cta-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
}

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

.hero-text,
.section-heading p,
.cta-card p,
.report-copy p,
.contrast-card p,
.workflow-card p,
.plan-card p,
.proof-card p {
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--site-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  background: var(--site-surface);
  color: var(--site-text);
  box-shadow: none;
}

.button-secondary {
  border: 1px solid var(--site-border);
  background: var(--site-surface);
  color: var(--site-text);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-notes span,
.story-kicker,
.screen-chip,
.report-status,
.plan-name,
.contrast-tag,
.report-label,
.proof-label,
.screen-kicker,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-notes span {
  color: var(--site-secondary);
  border: 1px solid var(--site-border);
  background: var(--site-surface);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-orbit-a {
  inset: 12% 10% auto auto;
  width: 180px;
  height: 180px;
  background: var(--site-surface);
}

.hero-orbit-b {
  inset: auto auto 12% 4%;
  width: 220px;
  height: 220px;
  background: var(--site-surface);
}

.device-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 600px;
  padding: 22px;
  border-radius: 36px;
  border: 1px solid var(--site-border);
  background: var(--site-surface);
  box-shadow: none;
  overflow: hidden;
}

.device-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--site-surface);
  pointer-events: none;
}

.device-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--site-secondary);
}

.pill {
  background: var(--site-bronze-wash);
  border: 1px solid var(--site-border);
  color: var(--site-text);
}

.hero-stack {
  position: absolute;
  inset: 92px 28px auto;
  height: 360px;
  pointer-events: none;
}

.stack-band {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 64px;
  border-radius: 20px;
  box-shadow: none;
}

.stack-band-1 { top: 8px; width: 56%; background: var(--c-brand-bar-1); }
.stack-band-2 { top: 96px; width: 70%; background: var(--c-brand-bar-2); left: 42%; }
.stack-band-3 { top: 190px; width: 76%; background: var(--c-brand-bar-3); left: 58%; }
.stack-band-4 { top: 288px; width: 84%; background: var(--bronze); left: 44%; }

.device-screen {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  margin-top: 348px;
}

.screen-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--site-border);
  backdrop-filter: none;
}

.screen-card-primary {
  background: var(--site-surface);
}

.screen-card-secondary {
  background: var(--site-surface);
}

.screen-card-top,
.report-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.screen-kicker,
.report-label {
  color: var(--site-secondary);
  background: var(--site-surface);
}

.screen-chip,
.report-status {
  color: var(--site-secondary);
  background: var(--site-bronze-wash);
  border: 1px solid var(--site-border);
}

.screen-chip-muted {
  background: var(--site-surface);
  border-color: var(--site-border);
}

.screen-card h3 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: 1.58rem;
  letter-spacing: 0;
}

.screen-card p,
.screen-card li {
  color: var(--site-secondary);
  line-height: 1.55;
}

.screen-card ul {
  margin: 12px 0 0 18px;
  padding: 0;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.screen-grid div {
  padding: 14px;
  border-radius: 18px;
  background: var(--site-surface);
  border: 1px solid var(--site-border);
}

.screen-grid strong,
.report-table strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.screen-grid span,
.report-table span {
  color: var(--site-secondary);
  font-size: 0.95rem;
}

.story-shell {
  max-width: var(--content-width);
  margin: 46px auto 0;
  padding: 26px;
  border-radius: var(--radius-card);
  border: 1px solid var(--site-border);
  background: var(--site-surface);
  box-shadow: none;
}

.story-slides {
  position: relative;
  min-height: 642px;
}

.story-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 54px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}

.story-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.story-copy {
  padding: 8px 0 8px 8px;
}

.story-kicker,
.proof-label {
  color: var(--site-text);
  background: var(--site-bronze-wash);
  border: 1px solid var(--site-border);
}

.story-copy h3 {
  margin: 18px 0 14px;
  font-family: var(--font-display);
  font-size: 2.42rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.story-copy p {
  margin: 0;
  color: var(--site-secondary);
  line-height: 1.64;
}

.story-copy ul {
  margin: 18px 0 0 18px;
  padding: 0;
  color: var(--site-secondary);
  line-height: 1.75;
}

.story-device {
  width: min(100%, 500px);
  min-height: 650px;
  margin-top: -72px;
  margin-bottom: 0;
  justify-self: end;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - 126px), transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - 126px), transparent 100%);
}

.story-device .device-screen {
  margin-top: 348px;
}

.story-device .screen-card-secondary {
  display: none;
}

.story-controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.story-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--site-border);
  background: transparent;
  cursor: pointer;
}

.story-dot.active {
  background: var(--bronze);
  border-color: var(--bronze);
}

.cred-strip {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 42px) 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cred-item,
.contrast-card,
.product-card,
.workflow-card,
.plan-card,
.proof-card,
.report-switcher,
.cta-card {
  border-radius: var(--radius-card);
}

.cred-item,
.contrast-card,
.product-card,
.workflow-card,
.plan-card,
.proof-card {
  padding: 22px;
  background: var(--site-surface);
  border: 1px solid var(--site-border);
  box-shadow: none;
}

.cred-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.cred-item span {
  color: var(--site-secondary);
  line-height: 1.6;
}

.section {
  padding: 86px clamp(20px, 4vw, 42px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.cta-card h2 {
  font-size: 3.45rem;
}

.section-heading p {
  max-width: 62ch;
  margin: 18px auto 0;
  color: var(--site-secondary);
}

.contrast-grid,
.proof-grid,
.workflow-grid,
.plans-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

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

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

.contrast-tag,
.plan-name,
.report-label,
.report-status {
  color: var(--site-text);
  background: var(--site-surface);
}

.contrast-card h3,
.product-card h3,
.workflow-card h3,
.plan-card h3,
.proof-card h3,
.report-copy h4 {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.contrast-card p,
.product-card p,
.workflow-card p,
.plan-card p,
.proof-card p {
  color: var(--site-secondary);
}

.contrast-card-strata,
.product-card-active,
.plan-card-featured {
  background: var(--site-surface);
  border-color: var(--site-border);
}

.proof-card ul,
.report-copy ul {
  margin: 16px 0 0 18px;
  padding: 0;
  color: var(--site-secondary);
  line-height: 1.75;
}

.report-switcher {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 28px;
  background: var(--site-surface);
  border: 1px solid var(--site-border);
  box-shadow: none;
}

.switcher-tabs {
  display: inline-flex;
  padding: 5px;
  border-radius: var(--radius-pill);
  background: var(--site-surface);
  gap: 6px;
}

.switcher-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--site-secondary);
  font-weight: 700;
  cursor: pointer;
}

.switcher-tab.active {
  background: var(--site-surface);
  color: var(--site-text);
}

.report-panels {
  margin-top: 24px;
}

.report-panel {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.report-panel.active {
  display: grid;
}

.report-preview,
.report-copy {
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--site-surface);
  border: 1px solid var(--site-border);
}

.report-switcher .report-preview,
.report-switcher .report-copy {
  padding: 0;
  background: transparent;
  border: 0;
}

.report-preview h3 {
  margin: 16px 0 18px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0;
}

.report-table {
  display: grid;
  gap: 14px;
}

.report-table div {
  padding: 16px 18px;
  border-radius: var(--radius-card);
  background: var(--site-surface);
  border: 1px solid var(--site-border);
}

.logo-table {
  align-items: start;
}

.report-table .logo-table-row {
  width: var(--row-width);
  height: 112px;
  margin-left: var(--row-offset);
  background: var(--row-bg);
  border-color: var(--site-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-table-row-1 {
  --row-width: 58%;
  --row-offset: 0%;
  --row-bg: var(--site-surface-alt);
}

.logo-table-row-2 {
  --row-width: 74%;
  --row-offset: 0%;
  --row-bg: var(--site-surface);
}

.logo-table-row-3 {
  --row-width: 66%;
  --row-offset: 0%;
  --row-bg: var(--site-slate-wash);
}

.logo-table-row-4 {
  --row-width: 86%;
  --row-offset: 0%;
  --row-bg: var(--site-bronze-wash);
}

.report-table strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.report-table span,
.report-copy p {
  color: var(--site-secondary);
}

.report-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cta-section {
  padding-top: 48px;
  padding-bottom: 92px;
}

.cta-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--site-border);
  background: var(--site-surface);
  text-align: center;
}

.cta-card p {
  color: var(--site-secondary);
}

.cta-card .hero-actions {
  justify-content: center;
}

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

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 42px) 42px;
}

.footer-copy {
  max-width: 720px;
}

.footer-copy strong {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-copy p {
  margin: 0 0 10px;
  color: var(--site-secondary);
  line-height: 1.65;
}

.footer-links a {
  color: var(--site-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page .section {
  background: var(--site-bg);
}

.legal-page .section-heading {
  text-align: left;
}

.legal-page .section-heading p,
.legal-page .report-copy p {
  color: var(--site-secondary);
}

.legal-page .report-copy {
  max-width: 900px;
  margin: 0 auto;
  color: var(--site-text);
  background: var(--site-surface);
  border-color: var(--site-border);
}

.legal-page .report-copy h2 {
  font-size: 1.25rem;
  color: var(--site-text);
}

.legal-page .report-copy a {
  color: var(--site-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.last-updated {
  margin: 0 0 22px;
  color: var(--site-secondary);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 13ch;
  }

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

  .contrast-grid,
  .proof-grid,
  .plans-grid,
  .workflow-grid,
  .report-panel,
  .product-gateway,
  .cred-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-slide {
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 16px 18px;
  }

  .hero,
  .home-hero,
  .placeholder-hero,
  .section,
  .cta-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-hero,
  .placeholder-hero {
    min-height: auto;
    padding-top: 56px;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1,
  .home-hero-copy h1,
  .placeholder-copy h1,
  .pricing-hero h1 {
    max-width: none;
    font-size: 3.35rem;
  }

  .home-bars,
  .placeholder-bars {
    width: min(100%, 330px);
  }

  .home-bar {
    border-radius: 12px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .cta-card h2 {
    font-size: 2.35rem;
  }

  .section-heading p {
    margin-left: 0;
  }

  .hero-visual {
    min-height: auto;
  }

  .device-card {
    min-height: 560px;
    padding: 18px;
    border-radius: 28px;
  }

  .hero-stack {
    inset: 84px 22px auto;
  }

  .device-screen {
    margin-top: 320px;
  }

  .story-device .device-screen {
    margin-top: 348px;
  }

  .story-shell {
    margin-top: 24px;
    padding: 18px;
  }

  .story-slides {
    display: grid;
    min-height: 0;
  }

  .story-slide {
    position: relative;
    inset: auto;
    grid-area: 1 / 1;
    grid-template-columns: 1fr;
    align-content: start;
    row-gap: 56px;
  }

  .story-copy {
    padding: 0;
  }

  .story-copy h3 {
    font-size: 2rem;
  }

  .story-device {
    margin-top: -24px;
    margin-bottom: 0;
    justify-self: center;
    min-height: 650px;
  }

  .cred-strip,
  .contrast-grid,
  .proof-grid,
  .workflow-grid,
  .plans-grid,
  .product-gateway,
  .report-panel {
    grid-template-columns: 1fr;
  }

  .report-table .logo-table-row {
    width: 100%;
    margin-left: 0;
  }

  .switcher-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .switcher-tab {
    width: 100%;
  }

  .cta-card,
  .report-switcher,
  .contrast-card,
  .workflow-card,
  .plan-card,
  .product-card,
  .proof-card,
  .report-preview,
  .report-copy,
  .screen-card {
    padding: 22px;
  }

  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Shared shell and control consistency, preserving each product layout. */
body, body.legal-page { color: var(--site-text); background: var(--site-bg); }
body { font-family: var(--font-sans); }
h1, h2, h3, h4 { overflow-wrap: anywhere; font-weight: 600; }
.topbar { min-height: 88px; padding: 16px max(24px, calc((100% - 1160px) / 2)); background: var(--site-bg); gap: 24px; }
.brand { min-height: 44px; gap: 10px; color: var(--site-text); }
.brand-mark { width: 28px; height: 28px; border-radius: 0; box-shadow: none; }
.brand-word { font-size: 22px; font-weight: 650; }
.topbar .theme-control-slot { margin-left: 0; }
.button { border-radius: 12px; min-height: 44px; font-size: .8125rem; font-weight: 600; }
.button-primary { background: var(--slate-mid); color: var(--warm-surface); border: 1px solid var(--slate-mid); }
.button-primary:hover { background: var(--slate-deep); }
.button:hover, .button:focus-visible { transform: none; }
.eyebrow, .legal-page .eyebrow, .hero h1 span { color: var(--site-secondary); }
.hero::after, .layer-section::before, .proof-section::before, .workflow-section::before, .plans-section::before, .hero-orbit, .device-card::before { display: none; }
.footer-inner { max-width: 1160px; margin-inline: auto; }
:where(a,button,input,summary,[tabindex]):focus-visible { outline: 2px solid var(--site-focus); outline-offset: 3px; }
html:not([data-site-js]) .story-slide:not(.active) { display: none; }
@media (max-width: 1000px) {
  .topbar { padding: 10px 24px; min-height: 72px; flex-wrap: wrap; gap: 12px; }
  .topbar .brand { margin-right: auto; }
  .topbar .theme-control-slot { order: 2; }
}
@media (max-width: 600px) { .topbar { padding-inline: 20px; } .brand-word { font-size: 20px; } .brand-mark { width: 24px; height: 24px; } }
@media (max-width: 359px) { .topbar { padding-inline: 16px; gap: 6px; } .brand { gap: 6px; } }

.product-logo-display { width: min(100%, 360px); justify-self: center; }
.product-logo-display img { display: block; width: 100%; height: auto; }
@media (max-width: 760px) { .product-logo-display { width: min(100%, 260px); } }

/* Official Apple artwork: unchanged proportions and a quarter-height clear space. */
.app-store-badge { display: inline-flex; align-items: center; padding: 11px; margin: 0; width: fit-content; max-width: 100%; flex: 0 0 auto; }
.app-store-badge img { display: block; height: 44px; width: auto; max-width: none; }
.home-hero-copy > .app-store-badge { margin-top: 13px; }
