@font-face {
  font-family: Antonio;
  src: url("/assets/antonio-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/dm-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #0c0e13;
  --surface: #131720;
  --raised: #1b202c;
  --text: #edeaf0;
  --muted: #a6adbf;
  --amber: #dcc5a8;
  --violet: #b5b2dd;
  --mauve: #c6b8c9;
  --peach: #d3b7ab;
  --line: #2b303d;
  --display: "DM Sans", Arial, sans-serif;
  --console: Antonio, "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 var(--body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
p {
  margin: 0 0 20px;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
svg {
  display: block;
}
[hidden] {
  display: none !important;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 5px;
}
::selection {
  background: var(--mauve);
  color: var(--bg);
}
.wrap {
  width: min(1240px, calc(100% - 88px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 24px;
  z-index: 100;
  background: var(--amber);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 24px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 13px;
  font: 500 25px/1 var(--body);
  letter-spacing: -1.1px;
  color: var(--text);
}
.wordmark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  color: var(--amber);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.desktop-nav > a {
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 26px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
}
.desktop-nav > a:first-child {
  background: transparent;
}
.desktop-nav > a.nav-contact {
  color: var(--amber);
  border: 1px solid #625b51;
  gap: 22px;
  min-width: 156px;
  padding-inline: 21px;
}
.desktop-nav > a:hover {
  background: var(--surface);
  color: var(--text);
}
.nav-contact svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.opening {
  padding-top: 58px;
}
.hero,
.trust-section,
.wprism-section,
.orbit-section,
.contact-inner {
  --rail: var(--amber);
  position: relative;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 44px 0 0 24px;
  padding: 48px 0 48px 48px;
}
.hero:before,
.trust-section:before,
.wprism-section:before,
.orbit-section:before,
.contact-inner:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 108px;
  height: 58px;
  border-top: 3px solid var(--rail);
  border-left: 3px solid var(--rail);
  border-radius: 44px 0 0 0;
  pointer-events: none;
}
.hero:after,
.trust-section:after,
.wprism-section:after,
.orbit-section:after,
.contact-inner:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 63%;
  width: 36px;
  height: 1px;
  background: var(--bg);
  pointer-events: none;
}
.hero {
  padding-block: 66px;
}
.hero h1 {
  font: 400 clamp(60px, 7.6vw, 110px) / 1.12 var(--body);
  letter-spacing: -0.055em;
  max-width: 1090px;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 75px;
  margin-top: 48px;
}
.hero-bottom > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 570px;
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  min-width: 253px;
  padding-right: 2px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 52px;
  padding: 13px 23px;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.button-rose {
  background: var(--amber);
  color: var(--bg);
}
.button:hover {
  background: var(--text);
  color: var(--bg);
}
.hero-actions > span {
  font-size: 12px;
  color: var(--muted);
}
.trust-section {
  --rail: var(--violet);
  margin-top: 64px;
}
.trust-heading {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: flex-end;
  margin-bottom: 38px;
}
.trust-heading h2 {
  font-size: 34px;
  line-height: 1.23;
  color: var(--text);
}
.trust-heading > p {
  font-size: 16px;
  color: var(--muted);
  max-width: 380px;
  margin: 0;
}
.trust-explorer {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 34px;
  align-items: stretch;
}
.trust-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}
.trust-choice {
  --choice: var(--violet);
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 105px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  text-align: left;
}
.trust-choice:hover {
  background: var(--raised);
}
.trust-choice[aria-pressed="true"] {
  background: #1d1e2b;
  border-color: #777491;
  color: var(--text);
  box-shadow: inset 3px 0 var(--violet);
}
.choice-icon {
  width: 28px;
  color: var(--choice);
  flex: none;
}
.choice-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.trust-choice[aria-pressed="true"] .choice-icon {
  color: var(--violet);
}
.trust-choice > span:nth-child(2) {
  flex: 1;
  min-width: 0;
}
.trust-choice strong {
  display: block;
  font: 500 18px/1.4 var(--body);
  letter-spacing: -0.02em;
}
.trust-choice > span > span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 5px;
}
.trust-choice[aria-pressed="true"] > span > span {
  color: var(--muted);
}
.choice-arrow {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  flex: none;
  opacity: 0;
}
.trust-choice[aria-pressed="true"] .choice-arrow {
  opacity: 1;
}
.change-record {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.record-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 27px;
  background: transparent;
  border-bottom: 1px solid var(--line);
  color: var(--violet);
  font-size: 13px;
}
.record-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}
.record-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  flex: none;
}
.example-label {
  font-size: 12px;
  white-space: nowrap;
  font-weight: 400;
  color: var(--muted);
}
.record-content {
  padding: 32px 29px;
  min-height: 375px;
  flex: 1;
}
.record-question {
  font: 400 25px/1.35 var(--display);
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.record-explanation {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 24px;
}
.record-timeline {
  margin-left: 4px;
}
.record-timeline > div {
  position: relative;
  border-left: 1px solid #4b4c65;
  padding: 0 0 24px 25px;
}
.record-timeline > div:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}
.timeline-node {
  position: absolute;
  left: -4px;
  top: 7px;
  width: 7px;
  height: 7px;
  background: var(--violet);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--surface);
}
.timeline-actor {
  display: block;
  font-size: 12px;
  color: var(--mauve);
  margin-bottom: 3px;
}
.record-timeline strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.timeline-detail {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.record-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 15px 24px;
  font-size: 12px;
  color: var(--muted);
}
.record-signature {
  font: 600 15px/1 var(--body);
  letter-spacing: -0.6px;
  color: var(--violet);
}
.view-scene {
  animation: view-in 0.18s ease-out;
}
.fact-list {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 15px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.fact-row:last-child {
  border: 0;
}
.fact-row > span {
  color: var(--muted);
}
.fact-row > strong {
  text-align: right;
  font-weight: 600;
}
.record-disclosure {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin: 16px 0 0;
}
.evidence-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.evidence-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.7;
  flex: none;
  margin-top: 2px;
}
.evidence-row strong {
  display: block;
  font-weight: 600;
}
.evidence-row span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.recovery-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}
.recovery-block > div {
  border-top: 1px solid #7e6d6b;
  padding-top: 12px;
}
.recovery-block strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--peach);
}
.recovery-block p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin: 8px 0 0;
}
.wprism-section {
  --rail: var(--amber);
  margin-top: 96px;
  padding-block: 48px;
}
.product-intro {
  font: 400 16px/1.4 var(--console);
  text-transform: uppercase;
  color: var(--amber);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}
.wprism-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: start;
}
.wprism-copy {
  min-width: 0;
}
.wprism-brand {
  display: flex;
  gap: 0.2em;
  align-items: center;
  font-size: 82px;
  letter-spacing: -0.055em;
  line-height: 1.15;
  margin-bottom: 30px;
}
.wprism-brand img {
  display: block;
  width: 0.75em;
  height: 0.75em;
  flex: none;
}
.wprism-copy .product-lead {
  font-size: 32px;
  line-height: 1.24;
  margin-bottom: 23px;
}
.product-copy {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 540px;
  margin: 0;
}
.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}
.product-benefits > div {
  position: relative;
  padding-left: 23px;
}
.product-benefits > div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--amber);
  border-radius: 50%;
}
.product-benefits strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
.product-benefits p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 500px;
  margin: 5px 0 0;
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  color: var(--amber);
  border: 1px solid #625b51;
  border-radius: 10px;
  padding: 13px 21px;
  font: 500 14px/1.3 var(--body);
  letter-spacing: 0;
  min-height: 46px;
  margin-top: 32px;
}
.product-cta:hover {
  background: var(--raised);
  border-color: var(--amber);
}
.product-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.release-brief {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 6px;
  min-width: 0;
}
.release-brief-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  background: transparent;
  border-bottom: 1px solid var(--line);
  color: var(--amber);
  padding: 19px 26px;
  font-size: 13px;
}
.release-brief-body {
  padding: 32px 26px;
}
.release-brief h3 {
  font-size: 27px;
  color: var(--text);
  margin-bottom: 10px;
}
.release-subtitle {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}
.release-branch > span {
  font-size: 12px;
  color: var(--mauve);
  padding-left: 55px;
}
.release-branch > svg {
  display: block;
  width: 100%;
  height: 60px;
  fill: none;
  stroke-width: 1.4;
  margin-top: 7px;
}
.main-line {
  stroke: #576178;
}
.branch-line {
  stroke: var(--mauve);
}
.release-branch circle {
  fill: var(--mauve);
  stroke: var(--surface);
  stroke-width: 3;
}
.release-branch circle.merge-point {
  fill: var(--amber);
}
.branch-labels {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 23px;
}
.release-facts {
  margin: 0;
}
.release-facts > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 17px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13px;
}
.release-facts dt {
  color: var(--muted);
}
.release-facts dd {
  margin: 0;
  font-weight: 500;
}
.business-state {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1e1d27;
  padding: 17px;
  margin-top: 15px;
  border: 1px solid #44404c;
  border-radius: 12px;
}
.business-state svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--mauve);
  stroke-width: 1.5;
  flex: none;
}
.business-state strong {
  display: block;
  font-size: 14px;
  line-height: 1.6;
}
.business-state span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.release-brief-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 23px;
  font-size: 12px;
  color: var(--muted);
}
.compatibility-note {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin: 32px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}
.orbit-section {
  --rail: var(--violet);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  margin-top: 80px;
  padding-block: 48px;
}
.orbit-copy,
.orbit-platform {
  min-width: 0;
}
.orbit-intro {
  font: 400 16px/1.4 var(--console);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin-bottom: 22px;
}
.orbit-section h2 {
  font-size: 68px;
  letter-spacing: -0.055em;
  margin-bottom: 21px;
  line-height: 1.1;
}
.orbit-section h3 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 22px;
}
.orbit-copy > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 500px;
  margin: 0;
}
.orbit-copy .product-cta {
  background: transparent;
  color: var(--violet);
  border-color: #5f5d78;
}
.orbit-copy .product-cta:hover {
  background: var(--raised);
  border-color: var(--violet);
}
.orbit-platform {
  margin: 0;
  align-self: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  overflow: hidden;
}
.orbit-platform-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 19px 26px;
  background: transparent;
  border-bottom: 1px solid var(--line);
  color: var(--violet);
  font-size: 13px;
  font-weight: 500;
}
.orbit-hosted-site {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border-bottom: 1px solid var(--line);
  padding: 19px 23px;
}
.orbit-hosted-site svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.5;
  flex: none;
}
.orbit-hosted-site strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.orbit-hosted-site span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.orbit-conversation {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 25px 23px;
}
.orbit-speaker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--violet);
}
.orbit-request {
  background: #212130;
  padding: 15px 17px;
  border: 1px solid #444359;
  border-radius: 14px 14px 3px 14px;
}
.orbit-request p,
.orbit-response > p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: var(--muted);
}
.orbit-request p {
  color: var(--text);
}
.orbit-speaker svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex: none;
}
.orbit-prepared-page {
  padding: 19px 20px;
  margin-top: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
}
.orbit-prepared-page > span:first-child {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 11px;
}
.orbit-prepared-page > strong {
  display: block;
  font: 400 27px/1.25 var(--display);
  color: var(--mauve);
}
.orbit-prepared-page > p {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 18px;
}
.orbit-review-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #252432;
  border: 1px solid #535066;
  color: var(--violet);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 12px;
}
.orbit-review-status svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex: none;
}
.orbit-foundation {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border-top: 1px solid var(--line);
  padding: 17px 23px;
}
.orbit-foundation img {
  width: 26px;
  height: 26px;
  flex: none;
}
.orbit-foundation p {
  margin: 0;
  line-height: 1.65;
}
.orbit-foundation strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.orbit-foundation span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.contact-section {
  padding-top: 80px;
}
.contact-inner {
  --rail: var(--amber);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 75px;
  padding-block: 56px;
}
.contact-inner h2 {
  font-size: 46px;
  line-height: 1.22;
  color: var(--text);
}
.contact-inner > div {
  max-width: 460px;
  padding-top: 4px;
}
.contact-inner p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 25px;
}
.button-ink {
  background: var(--amber);
  color: var(--bg);
}
.contact-email {
  display: block;
  font-size: 14px;
  margin-top: 20px;
  width: max-content;
  color: var(--amber);
}
.contact-email:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.contact-inner .contact-status {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin: 20px 0 0;
}
.site-footer {
  padding: 56px 0 0 49px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  font-size: 14px;
  align-items: flex-start;
}
.footer-top p {
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}
.footer-top nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
}
.footer-top a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-wordmark {
  font: 400 clamp(56px, 8vw, 104px) / 1.3 var(--body);
  letter-spacing: -0.06em;
  color: var(--muted);
  margin-block: 44px 27px;
  overflow: hidden;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 25px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
@keyframes view-in {
  from {
    opacity: 0.45;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero,
  .trust-section,
  .wprism-section,
  .orbit-section,
  .contact-inner {
    padding-left: 36px;
  }
  .hero h1 {
    font-size: 8.1vw;
  }
  .hero-bottom {
    gap: 36px;
  }
  .hero-actions {
    min-width: 240px;
  }
  .hero-bottom > p {
    font-size: 17px;
  }
  .trust-explorer {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 23px;
  }
  .trust-choice {
    padding: 18px;
    gap: 11px;
  }
  .trust-choice strong {
    font-size: 17px;
  }
  .choice-icon {
    width: 24px;
  }
  .choice-icon svg {
    width: 24px;
    height: 24px;
  }
  .record-content {
    padding: 26px 24px;
  }
  .record-top,
  .record-bottom {
    padding-inline: 22px;
    flex-wrap: wrap;
    gap: 7px;
  }
  .wprism-layout,
  .orbit-section {
    gap: 38px;
    grid-template-columns: 1.1fr 1fr;
  }
  .wprism-brand {
    font-size: 68px;
  }
  .wprism-copy .product-lead {
    font-size: 29px;
  }
  .release-brief-body {
    padding: 25px 22px;
  }
  .release-facts > div {
    grid-template-columns: 81px 1fr;
    gap: 12px;
  }
  .orbit-section h3 {
    font-size: 29px;
  }
  .orbit-hosted-site,
  .orbit-foundation,
  .orbit-platform-top {
    padding-inline: 20px;
  }
  .orbit-conversation {
    padding-inline: 20px;
  }
  .contact-inner {
    gap: 45px;
  }
  .contact-inner h2 {
    font-size: 40px;
  }
  .site-footer {
    padding-left: 37px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    padding-block: 26px;
    gap: 20px;
  }
  .wordmark {
    font-size: 24px;
  }
  .desktop-nav > a {
    padding-inline: 11px;
    font-size: 13px;
  }
  .desktop-nav > a.nav-contact {
    min-width: 0;
    gap: 14px;
  }
  .opening {
    padding-top: 40px;
  }
  .hero,
  .trust-section,
  .wprism-section,
  .orbit-section,
  .contact-inner {
    padding-left: 26px;
    border-radius: 34px 0 0 20px;
  }
  .hero:before,
  .trust-section:before,
  .wprism-section:before,
  .orbit-section:before,
  .contact-inner:before {
    border-radius: 34px 0 0 0;
    width: 85px;
    height: 44px;
  }
  .hero {
    padding-block: 46px;
  }
  .hero h1 {
    font-size: 9.8vw;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-top: 34px;
  }
  .hero-bottom > p {
    font-size: 17px;
    max-width: 580px;
  }
  .hero-actions {
    min-width: 0;
  }
  .trust-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .trust-heading h2 {
    font-size: 32px;
  }
  .trust-heading > p {
    max-width: 600px;
  }
  .trust-heading p br {
    display: none;
  }
  .trust-section {
    margin-top: 48px;
    padding-block: 38px;
  }
  .trust-explorer {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .trust-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .trust-choice {
    min-height: 115px;
    gap: 12px;
  }
  .choice-arrow {
    display: none;
  }
  .record-content {
    min-height: 350px;
    padding: 27px;
  }
  .record-top,
  .record-bottom {
    padding-inline: 25px;
    flex-wrap: nowrap;
    gap: 15px;
  }
  .record-question {
    font-size: 25px;
  }
  .wprism-section {
    margin-top: 64px;
    padding-block: 38px;
  }
  .wprism-layout,
  .orbit-section {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .wprism-brand {
    font-size: 72px;
  }
  .wprism-copy .product-lead {
    font-size: 32px;
  }
  .release-brief {
    margin-top: 0;
    max-width: 630px;
    width: 100%;
  }
  .release-brief-body {
    padding: 29px;
  }
  .release-facts > div {
    grid-template-columns: 115px 1fr;
    font-size: 14px;
  }
  .release-subtitle {
    font-size: 16px;
  }
  .compatibility-note {
    margin-top: 25px;
  }
  .orbit-section {
    margin-top: 56px;
    padding-block: 38px;
  }
  .orbit-section h2 {
    font-size: 64px;
  }
  .orbit-section h3 {
    font-size: 32px;
  }
  .orbit-copy > p {
    max-width: 610px;
  }
  .orbit-platform {
    max-width: 630px;
  }
  .contact-section {
    padding-top: 56px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-block: 38px;
  }
  .contact-inner h2 {
    font-size: 40px;
  }
  .contact-inner > div {
    max-width: 580px;
    padding-top: 0;
  }
  .site-footer {
    padding-left: 27px;
    padding-top: 42px;
  }
  .footer-top nav {
    gap: 18px;
  }
}
@media (max-width: 580px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .site-header {
    padding-block: 23px;
  }
  .wordmark {
    font-size: 23px;
    gap: 11px;
  }
  .wordmark svg {
    width: 30px;
    height: 30px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 43px;
    height: 43px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px;
  }
  .menu-toggle span {
    width: 21px;
    height: 1px;
    background: var(--text);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .mobile-nav a {
    background: transparent;
    color: var(--text);
    font: 400 16px/1.3 var(--body);
    padding: 13px 19px;
    border-radius: 8px;
  }
  .mobile-nav a:first-child {
    background: transparent;
  }
  .mobile-nav a:last-child {
    background: var(--surface);
    color: var(--amber);
  }
  .opening {
    padding-top: 32px;
  }
  .hero,
  .trust-section,
  .wprism-section,
  .orbit-section,
  .contact-inner {
    padding-left: 20px;
    border-radius: 28px 0 0 18px;
  }
  .hero:before,
  .trust-section:before,
  .wprism-section:before,
  .orbit-section:before,
  .contact-inner:before {
    width: 68px;
    height: 36px;
    border-width: 2px;
    top: -1.5px;
    left: -1.5px;
    border-radius: 28px 0 0 0;
  }
  .hero {
    padding-block: 36px;
  }
  .hero h1 {
    font-size: clamp(34px, 9.4vw, 55px);
    line-height: 1.17;
    letter-spacing: -0.055em;
  }
  .hero-bottom {
    margin-top: 28px;
    gap: 26px;
  }
  .hero-bottom > p {
    font-size: 17px;
    line-height: 1.8;
  }
  .button {
    font-size: 14px;
    padding: 12px 22px;
    gap: 25px;
  }
  .hero-actions > span {
    font-size: 12px;
  }
  .trust-section {
    margin-top: 38px;
    padding-block: 32px;
  }
  .trust-heading {
    gap: 17px;
    margin-bottom: 23px;
  }
  .trust-heading h2 {
    font-size: 27px;
    line-height: 1.25;
  }
  .trust-heading > p {
    font-size: 16px;
  }
  .trust-explorer {
    gap: 21px;
  }
  .trust-choices {
    gap: 8px;
  }
  .trust-choice {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    min-height: 165px;
    padding: 17px 13px;
    border-radius: 12px;
  }
  .trust-choice > span:nth-child(2) {
    flex: 0;
  }
  .trust-choice strong {
    font-size: 16px;
    line-height: 1.3;
  }
  .trust-choice > span > span {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 5px;
  }
  .choice-icon,
  .choice-icon svg {
    width: 24px;
    height: 24px;
  }
  .record-top {
    padding: 16px 18px;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 13px;
  }
  .record-content {
    padding: 24px 19px;
    min-height: 400px;
  }
  .record-question {
    font-size: 23px;
  }
  .record-explanation {
    font-size: 16px;
    line-height: 1.8;
  }
  .record-timeline strong {
    font-size: 14px;
  }
  .record-bottom {
    padding: 14px 18px;
    flex-wrap: wrap;
    gap: 9px;
  }
  .record-signature {
    font-size: 14px;
  }
  .fact-row {
    flex-wrap: wrap;
    gap: 5px;
    padding: 12px;
    font-size: 13px;
  }
  .fact-row > strong {
    text-align: left;
  }
  .recovery-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .record-disclosure {
    font-size: 12px;
  }
  .wprism-section {
    margin-top: 48px;
    padding-block: 32px;
  }
  .product-intro,
  .orbit-intro {
    font-size: 15px;
    letter-spacing: 0.1em;
    margin-bottom: 21px;
  }
  .wprism-brand {
    font-size: clamp(42px, 11.5vw, 64px);
    gap: 0.15em;
    letter-spacing: -0.055em;
    margin-bottom: 23px;
  }
  .wprism-brand img {
    width: 0.75em;
    height: 0.75em;
  }
  .wprism-copy .product-lead {
    font-size: 27px;
    line-height: 1.28;
  }
  .product-copy {
    font-size: 17px;
  }
  .product-benefits {
    gap: 22px;
    margin-top: 26px;
  }
  .product-benefits > div {
    padding-left: 19px;
  }
  .product-benefits strong,
  .product-benefits p {
    font-size: 16px;
  }
  .product-cta {
    font-size: 14px;
    margin-top: 28px;
    padding-inline: 22px;
    gap: 17px;
  }
  .release-brief-top {
    padding: 16px 18px;
    flex-wrap: wrap;
    gap: 7px;
  }
  .release-brief-body {
    padding: 25px 19px;
  }
  .release-brief h3 {
    font-size: 25px;
  }
  .release-facts > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 13px;
    font-size: 14px;
  }
  .release-facts dt {
    font-size: 12px;
  }
  .release-subtitle {
    font-size: 16px;
  }
  .release-branch > span {
    padding-left: 30px;
  }
  .business-state {
    padding: 14px;
    gap: 10px;
  }
  .business-state strong {
    font-size: 14px;
  }
  .business-state span {
    font-size: 12px;
    line-height: 1.8;
  }
  .release-brief-bottom {
    padding: 16px 18px;
  }
  .compatibility-note {
    font-size: 13px;
    margin-top: 24px;
    padding-top: 19px;
  }
  .orbit-section {
    margin-top: 42px;
    padding-block: 32px;
    gap: 28px;
  }
  .orbit-section h2 {
    font-size: 54px;
    margin-bottom: 20px;
  }
  .orbit-section h3 {
    font-size: 27px;
    line-height: 1.28;
  }
  .orbit-copy > p {
    font-size: 17px;
  }
  .orbit-platform-top {
    padding: 16px 18px;
    flex-wrap: wrap;
    gap: 7px;
  }
  .orbit-hosted-site,
  .orbit-foundation {
    padding: 18px;
    gap: 11px;
  }
  .orbit-hosted-site strong {
    font-size: 15px;
  }
  .orbit-hosted-site span {
    font-size: 12px;
  }
  .orbit-conversation {
    padding: 22px 18px;
    gap: 22px;
  }
  .orbit-request {
    padding: 14px;
  }
  .orbit-prepared-page {
    padding: 18px 16px;
  }
  .orbit-prepared-page > strong {
    font-size: 25px;
  }
  .orbit-foundation span {
    font-size: 12px;
    line-height: 1.8;
  }
  .contact-section {
    padding-top: 42px;
  }
  .contact-inner {
    padding-block: 32px;
    gap: 23px;
  }
  .contact-inner h2 {
    font-size: 31px;
    line-height: 1.28;
  }
  .contact-inner p {
    font-size: 17px;
  }
  .contact-email {
    font-size: 14px;
  }
  .site-footer {
    padding-top: 36px;
    padding-left: 21px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
    font-size: 14px;
  }
  .footer-top nav {
    gap: 18px;
    flex-wrap: wrap;
    font-size: 14px;
  }
  .footer-wordmark {
    font-size: 56px;
    margin-block: 30px 23px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    padding-block: 19px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 24px);
  }
  .hero h1 {
    font-size: 9.4vw;
  }
  .trust-choice {
    padding-left: 12px;
    padding-right: 9px;
  }
  .trust-choice strong {
    font-size: 15px;
  }
  .record-content {
    padding-inline: 16px;
  }
  .record-question {
    font-size: 22px;
  }
  .contact-inner h2 {
    font-size: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .view-scene {
    animation: none;
  }
}
