:root {
  --bg: #091321;
  --bg-deep: #050b14;
  --band: #0d1828;
  --surface: #111d30;
  --surface-2: #16243a;
  --surface-3: #1d2e4a;
  --line: rgba(184, 205, 255, 0.15);
  --line-strong: rgba(184, 205, 255, 0.28);
  --text: #f7faff;
  --text-soft: #d9e3f4;
  --muted: #aebfd6;
  --muted-2: #8293ad;
  --brand: #9ebcff;
  --brand-strong: #c7d8ff;
  --green: #31d17c;
  --green-text: #bdf6d8;
  --gold: #ffdca8;
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1180px;
  --font: "Avenir Next", Avenir, Aptos, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p,
li,
span,
strong,
a,
button {
  overflow-wrap: break-word;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand-strong);
  outline-offset: 4px;
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--bg);
  font-weight: 760;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px 22px;
  background: var(--bg);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav-shell,
.section-inner,
.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.nav-shell {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-mark,
.footer-brand {
  flex: 0 0 auto;
}

.brand-mark {
  width: 178px;
}

.footer-brand {
  width: 190px;
}

.brand-mark img,
.footer-brand img {
  filter: invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  line-height: 1;
}

.nav-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-phone {
  color: var(--text-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.visually-hidden) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 780;
  line-height: 1.1;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-small {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 13px;
}

.button-large {
  min-height: 54px;
  padding-inline: 26px;
}

.button-primary {
  background: var(--brand);
  color: #06101e;
}

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

.button-secondary,
.button-quiet {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover,
.button-quiet:hover {
  background: var(--surface-2);
}

.hero {
  padding: 94px 22px 28px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lede {
  margin: 18px 0 0;
  max-width: 610px;
  color: var(--text-soft);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.42;
  text-wrap: pretty;
}

.hero-actions,
.final-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-assurance {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-assurance span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 720;
}

.hero-product {
  position: relative;
  min-height: 430px;
  padding: 8px 0 52px;
  display: flex;
  align-items: center;
}

.hero-dashboard,
.hero-phone,
.screen-card img,
.review-visual img {
  display: block;
  border: 1px solid var(--line-strong);
  background: #07111f;
}

.hero-dashboard {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.hero-phone {
  position: absolute;
  right: clamp(8px, 2.6vw, 34px);
  bottom: 0;
  width: clamp(164px, 19vw, 246px);
  height: auto;
  border-radius: 30px;
}

.trust-bar {
  width: min(var(--max), calc(100% - 44px));
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-item,
.workflow-grid article,
.screen-card,
.dashboard-spotlight,
.value-cards div,
.trade-list div,
.calculator-card,
.concierge-panel,
.handoff-panel,
.step-card,
.trust-promise,
.trust-list div,
.decision-cards article,
.pricing-card,
.offer-stack div,
.faq-item,
.demo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.trust-item {
  min-height: 78px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--brand-strong);
}

.trust-item strong {
  font-size: 17px;
  line-height: 1.15;
}

.conversion-strip {
  padding: 14px 22px 0;
  background: var(--bg);
}

.conversion-strip-inner {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.conversion-strip strong,
.conversion-strip span {
  display: block;
}

.conversion-strip strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

.conversion-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: 64px 22px;
}

section[id] {
  scroll-margin-top: 78px;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 26px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.pricing-copy h2,
.trust-copy h2,
.demo-panel h2,
.final-layout h2,
.faq-heading h2,
.review-copy h2,
.opportunity-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.04;
  text-wrap: balance;
}

.section-heading p,
.pricing-copy p,
.trust-copy p,
.demo-panel p,
.final-layout p,
.review-copy p,
.dashboard-copy p,
.opportunity-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  text-wrap: pretty;
}

.workflow-section,
.journey-section,
.product-tour,
.trades-section,
.setup-section,
.faq-section {
  background: var(--band);
}

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

.workflow-grid article {
  min-height: 218px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.workflow-grid article > span {
  color: var(--green-text);
  font-size: 12px;
  font-weight: 820;
}

.workflow-grid .icon {
  margin-top: 24px;
}

.workflow-grid h3 {
  margin: 14px 0 7px;
  font-size: 21px;
  line-height: 1.1;
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
}

.journey-section {
  background: var(--bg-deep);
}

.journey-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(320px, 1.2fr) minmax(230px, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.journey-card {
  position: relative;
  min-height: 320px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.journey-card-label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-text);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.journey-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.02;
}

.journey-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.call-orbit {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 66px;
  height: 66px;
  border-radius: 999px;
}

.call-orbit::before,
.call-orbit span {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(49, 209, 124, 0.5);
  border-radius: 999px;
}

.call-orbit::before {
  background: rgba(49, 209, 124, 0.12);
}

.call-orbit span {
  opacity: 0;
  transform: scale(0.55);
}

.journey-panel.is-active .call-orbit span {
  animation: callOrbit 3.6s ease-out infinite;
}

.journey-panel.is-active .call-orbit span:nth-child(2) {
  animation-delay: 0.8s;
}

.journey-panel.is-active .call-orbit span:nth-child(3) {
  animation-delay: 1.6s;
}

.journey-facts {
  margin: auto 0 0;
  display: grid;
  gap: 8px;
}

.journey-facts div {
  padding: 10px 11px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.journey-facts dt,
.journey-result-row span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.journey-facts dd {
  margin: 0;
  color: var(--text-soft);
  font-weight: 760;
  text-align: right;
}

.journey-flow {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.journey-flow::before,
.journey-flow::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  border-radius: 999px;
}

.journey-flow::before {
  background: var(--line-strong);
}

.journey-flow::after {
  height: 0;
  background: var(--green);
}

.journey-panel.is-active .journey-flow::after {
  animation: journeyLine 7.5s ease-in-out infinite;
}

.journey-flow ol {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.journey-step {
  position: relative;
  z-index: 1;
  min-height: 66px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.journey-dot {
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border: 2px solid var(--muted-2);
  border-radius: 999px;
  background: var(--bg-deep);
}

.journey-step strong,
.journey-step span:last-child {
  display: block;
}

.journey-step strong {
  color: var(--text);
  font-size: 15px;
}

.journey-step span:last-child {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.journey-panel.is-active .journey-step {
  animation: journeyStep 7.5s ease-in-out infinite;
}

.journey-panel.is-active .journey-step:nth-child(2) {
  animation-delay: 1.1s;
}

.journey-panel.is-active .journey-step:nth-child(3) {
  animation-delay: 2.2s;
}

.journey-panel.is-active .journey-step:nth-child(4) {
  animation-delay: 3.3s;
}

.journey-panel.is-active .journey-step:nth-child(5) {
  animation-delay: 4.4s;
}

.journey-panel.is-active .journey-step .journey-dot {
  animation: journeyDot 7.5s ease-in-out infinite;
}

.journey-panel.is-active .journey-step:nth-child(2) .journey-dot {
  animation-delay: 1.1s;
}

.journey-panel.is-active .journey-step:nth-child(3) .journey-dot {
  animation-delay: 2.2s;
}

.journey-panel.is-active .journey-step:nth-child(4) .journey-dot {
  animation-delay: 3.3s;
}

.journey-panel.is-active .journey-step:nth-child(5) .journey-dot {
  animation-delay: 4.4s;
}

.journey-result-card {
  background: var(--surface);
}

.journey-result-list {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.journey-result-row {
  padding: 11px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.journey-result-row strong {
  color: var(--text-soft);
  text-align: right;
}

.journey-panel.is-active .journey-result-row {
  animation: journeyResult 7.5s ease-in-out infinite;
}

.journey-panel.is-active .journey-result-row:nth-child(2) {
  animation-delay: 0.35s;
}

.journey-panel.is-active .journey-result-row:nth-child(3) {
  animation-delay: 0.7s;
}

.dashboard-spotlight {
  margin-bottom: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1.48fr);
  gap: 16px;
  align-items: center;
  overflow: hidden;
}

.dashboard-copy {
  padding: 8px 6px 8px 8px;
}

.dashboard-copy h3 {
  margin: 0;
  font-size: clamp(26px, 2.7vw, 36px);
  line-height: 1.05;
}

.dashboard-spotlight img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #07111f;
}

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

.screen-card {
  padding: 12px;
  overflow: hidden;
}

.screen-card img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 12px;
}

.screen-copy {
  padding: 14px 4px 3px;
}

.screen-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
}

.screen-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.review-section {
  background: var(--bg-deep);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: center;
}

.review-visual {
  display: flex;
  justify-content: center;
}

.review-visual img {
  width: min(304px, 100%);
  height: auto;
  border-radius: 32px;
}

.review-copy {
  max-width: 640px;
}

.proof-list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.proof-list div {
  min-height: 58px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 680;
}

.value-layout,
.pricing-layout,
.trust-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.value-cards,
.trust-list,
.faq-list {
  display: grid;
  gap: 10px;
}

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

.value-cards div,
.trust-list div {
  padding: 18px;
}

.trust-promise {
  margin-top: 22px;
  padding: 18px;
  background: var(--surface);
}

.trust-promise strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.14;
}

.trust-promise p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.value-cards strong,
.trust-list strong {
  display: block;
  font-size: 20px;
  line-height: 1.14;
}

.value-cards strong {
  margin-top: 10px;
}

.value-cards p,
.trust-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.decision-section {
  background: var(--band);
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
}

.decision-cards {
  display: grid;
  gap: 10px;
}

.decision-cards article {
  min-height: 142px;
  padding: 18px;
}

.decision-cards span {
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.decision-cards strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
}

.decision-cards p {
  margin: 8px 0 0;
  color: var(--muted);
}

.opportunity-section {
  background: var(--bg-deep);
}

.opportunity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.opportunity-copy {
  max-width: 620px;
}

.fine-print {
  color: var(--muted-2) !important;
  font-size: 14px !important;
}

.calculator-card {
  padding: 22px;
}

.calc-result {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.calc-result span {
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.calc-result strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(48px, 5.4vw, 70px);
  line-height: 1;
}

.calc-result p {
  max-width: 470px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.calc-controls {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.calc-controls label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: center;
}

.calc-controls label span {
  color: var(--text-soft);
  font-weight: 760;
}

.calc-controls output {
  color: var(--brand-strong);
  font-weight: 820;
}

.calc-controls input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--brand);
}

.calc-cta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.calc-cta p {
  max-width: 340px;
  margin: 0;
  color: var(--text-soft);
  font-weight: 680;
}

.trades-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
}

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

.trade-list div {
  min-height: 98px;
  padding: 16px;
}

.trade-list span {
  display: block;
  color: var(--text);
  font-size: 22px;
  font-weight: 790;
}

.trade-list small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

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

.concierge-panel {
  margin-bottom: 12px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: center;
}

.concierge-panel h3 {
  margin: 0;
  font-size: clamp(26px, 2.7vw, 36px);
  line-height: 1.05;
}

.concierge-list {
  display: grid;
  gap: 10px;
}

.concierge-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 720;
}

.step-card {
  padding: 18px;
}

.step-card span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #06101e;
  font-weight: 820;
}

.step-card h3 {
  margin: 32px 0 7px;
  font-size: 22px;
  line-height: 1.15;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.handoff-panel {
  margin-top: 12px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 18px;
  align-items: start;
}

.handoff-panel h3 {
  margin: 0;
  font-size: clamp(26px, 2.7vw, 36px);
  line-height: 1.05;
}

.handoff-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  counter-reset: handoff;
}

.handoff-panel li {
  position: relative;
  min-height: 64px;
  padding: 12px 14px 12px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.handoff-panel li::before {
  counter-increment: handoff;
  content: counter(handoff);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #06101e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 820;
}

.handoff-panel strong,
.handoff-panel span {
  display: block;
}

.handoff-panel strong {
  color: var(--text);
}

.handoff-panel span {
  margin-top: 4px;
  color: var(--muted);
}

.demo-panel {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.demo-panel h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.demo-prompts {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-prompts span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 680;
}

.demo-callout {
  flex: 0 0 auto;
  width: min(282px, 100%);
  display: grid;
  gap: 10px;
}

.demo-callout strong {
  display: block;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  text-align: center;
  font-size: 25px;
  line-height: 1;
}

.pricing-section {
  background: var(--bg-deep);
}

.pricing-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.pricing-card {
  padding: 24px;
}

.price-main {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.price-main span {
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.price-main strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(48px, 5.2vw, 66px);
  line-height: 1;
}

.price-main p {
  margin: 6px 0 0;
  color: var(--muted);
}

.trial-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(49, 209, 124, 0.32);
  border-radius: 999px;
  background: rgba(49, 209, 124, 0.08);
  color: var(--green-text);
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
}

.pricing-summary {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.pricing-summary strong,
.pricing-summary span {
  display: block;
}

.pricing-summary strong {
  font-size: 19px;
}

.pricing-summary span {
  margin-top: 6px;
  color: var(--muted);
}

.offer-stack {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.offer-stack div {
  padding: 14px;
  background: var(--surface);
}

.offer-stack strong,
.offer-stack span {
  display: block;
}

.offer-stack strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}

.offer-stack span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-includes {
  margin: 18px 0 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.pricing-includes h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 18px;
}

.pricing-includes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pricing-includes li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 15px;
}

.pricing-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.pricing-button {
  width: 100%;
}

.pricing-note {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 56px;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 760;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand-strong);
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.js-enabled .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.final-cta {
  padding: 64px 22px;
  background: var(--bg-deep);
  text-align: center;
  border-top: 1px solid var(--line);
}

.final-layout {
  width: min(760px, 100%);
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding: 30px 22px;
  background: #050a12;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

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

.site-footer p {
  margin: 0;
}

.sticky-action {
  display: none;
}

.cookie-notice {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(430px, calc(100% - 32px));
  padding: 18px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(9, 19, 33, 0.14);
  border-radius: 16px;
  background: #f7faff;
  color: var(--bg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-notice.is-hiding {
  opacity: 0;
  transform: translateY(12px);
}

.cookie-copy strong {
  display: block;
  font-size: 17px;
  line-height: 1.15;
}

.cookie-copy p {
  margin: 9px 0 0;
  color: #3c485b;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-copy a {
  color: #111d30;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookie-button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 760;
}

.cookie-button-muted {
  background: #e7ebf2;
  color: #172238;
}

.cookie-button-accept {
  background: #050a12;
  color: #ffffff;
}

.cookie-button:hover {
  opacity: 0.88;
}

.subpage-main {
  padding-top: 82px;
}

.subpage-hero,
.page-section,
.page-footer-cta {
  padding: 54px 22px;
}

.subpage-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.subpage-hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.subpage-copy h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.subpage-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1.52;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.subpage-panel,
.trust-note,
.partner-card,
.partner-stat,
.materials-list li,
.faq-category,
.partner-fit-card,
.legal-callout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.subpage-panel {
  padding: 18px;
}

.subpage-panel img {
  border-radius: 12px;
  border: 1px solid var(--line);
}

.page-link-strip {
  position: sticky;
  top: 82px;
  z-index: 20;
  padding: 10px 22px;
  background: rgba(5, 11, 20, 0.96);
  border-bottom: 1px solid var(--line);
}

.page-link-strip-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-link-strip-inner::-webkit-scrollbar {
  display: none;
}

.page-link-strip a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 760;
}

.page-link-strip a:hover {
  border-color: var(--line-strong);
  color: var(--text);
  background: var(--surface);
}

.trust-note {
  margin-top: 18px;
  padding: 18px;
}

.trust-note strong,
.partner-card strong,
.partner-stat strong,
.materials-list strong,
.partner-fit-card strong,
.legal-callout strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.16;
}

.trust-note p,
.partner-card p,
.partner-stat span,
.materials-list span,
.partner-fit-card p,
.legal-callout p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.page-section {
  border-bottom: 1px solid var(--line);
}

.page-heading {
  width: min(780px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.page-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-heading p {
  margin: 12px auto 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.quick-answer-grid,
.partner-grid,
.partner-stats,
.partner-fit-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

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

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

.partner-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.partner-process {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.partner-card,
.partner-stat,
.partner-fit-card,
.process-card {
  padding: 18px;
}

.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 840;
}

.process-card strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.16;
}

.process-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.partner-stat strong {
  font-size: 28px;
}

.faq-page-list {
  width: min(940px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-category {
  padding: 18px;
}

.faq-category h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: 0;
}

.faq-category .faq-list {
  gap: 10px;
}

.faq-category .faq-item {
  background: var(--bg-deep);
}

.materials-list {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.materials-list li {
  padding: 16px;
}

.legal-summary-list {
  width: min(940px, 100%);
  margin: 0 auto;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-summary-list li + li {
  margin-top: 10px;
}

.legal-callout {
  width: min(860px, 100%);
  margin: 28px auto 0;
  padding: 18px;
}

.page-footer-cta {
  background: var(--bg-deep);
  text-align: center;
}

.page-footer-cta .section-inner {
  width: min(780px, 100%);
}

.page-footer-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0;
}

.page-footer-cta p {
  margin: 14px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.page-footer-cta .subpage-actions {
  justify-content: center;
}

.legal-body {
  background: var(--bg);
  color: var(--text);
}

.legal-header {
  position: sticky;
}

.legal-nav {
  justify-content: flex-end;
}

.legal-main {
  padding: 120px 22px 80px;
}

.legal-document {
  width: min(860px, 100%);
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.72;
}

.legal-document h1,
.legal-document h2,
.legal-document h3 {
  color: var(--text);
  letter-spacing: 0;
}

.legal-document h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
}

.legal-document h2 {
  margin: 48px 0 12px;
  font-size: 26px;
}

.legal-document h3 {
  margin: 30px 0 10px;
  font-size: 20px;
}

.legal-document p,
.legal-document li {
  font-size: 16px;
}

.legal-document ul {
  padding-left: 22px;
}

@keyframes callOrbit {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }

  18% {
    opacity: 0.75;
  }

  72% {
    opacity: 0;
    transform: scale(1.7);
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes journeyLine {
  0% {
    height: 0;
  }

  72% {
    height: calc(100% - 68px);
  }

  100% {
    height: calc(100% - 68px);
  }
}

@keyframes journeyStep {
  0%,
  19%,
  100% {
    border-color: var(--line);
    background: var(--surface);
    transform: translateX(0);
  }

  5%,
  14% {
    border-color: rgba(49, 209, 124, 0.72);
    background: rgba(49, 209, 124, 0.1);
    transform: translateX(5px);
  }
}

@keyframes journeyDot {
  0%,
  19%,
  100% {
    border-color: var(--muted-2);
    background: var(--bg-deep);
    transform: scale(1);
  }

  5%,
  14% {
    border-color: var(--green);
    background: var(--green);
    transform: scale(1.22);
  }
}

@keyframes journeyResult {
  0%,
  58%,
  100% {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
  }

  66%,
  84% {
    border-color: rgba(158, 188, 255, 0.72);
    background: rgba(158, 188, 255, 0.1);
  }
}

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

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

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
  }

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

  .nav-menu a {
    justify-content: center;
  }

  .hero-inner,
  .subpage-hero-inner,
  .dashboard-spotlight,
  .review-layout,
  .value-layout,
  .opportunity-layout,
  .trades-layout,
  .concierge-panel,
  .handoff-panel,
  .journey-panel,
  .decision-layout,
  .pricing-layout,
  .trust-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .subpage-copy,
  .section-heading.center {
    text-align: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

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

  .subpage-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .subpage-actions {
    justify-content: center;
  }

  .hero-product {
    min-height: 460px;
  }

  .workflow-grid,
  .screen-grid,
  .value-cards,
  .quick-answer-grid,
  .partner-grid,
  .partner-stats,
  .partner-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-copy {
    text-align: center;
  }

  .journey-card {
    min-height: auto;
  }

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

  .review-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark {
    width: 152px;
  }

  .hero {
    padding: 82px 18px 22px;
  }

  .subpage-main {
    padding-top: 74px;
  }

  .subpage-hero,
  .page-section,
  .page-footer-cta {
    padding: 40px 18px;
  }

  .page-link-strip {
    top: 74px;
    padding-inline: 16px;
  }

  .subpage-hero-inner {
    gap: 24px;
  }

  .subpage-copy h1 {
    font-size: 38px;
  }

  .subpage-copy > p:not(.eyebrow),
  .page-heading p,
  .page-footer-cta p {
    font-size: 16px;
  }

  .hero-inner {
    gap: 22px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-lede,
  .section-heading p,
  .pricing-copy p,
  .trust-copy p,
  .demo-panel p,
  .final-layout p,
  .review-copy p,
  .opportunity-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .final-actions,
  .subpage-actions {
    flex-direction: column;
  }

  .hero-assurance {
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .conversion-strip {
    padding-inline: 18px;
  }

  .conversion-strip-inner {
    padding: 14px;
    display: grid;
    text-align: center;
  }

  .hero-product {
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .hero-dashboard {
    display: none;
  }

  .hero-phone {
    position: static;
    width: min(258px, 82vw);
    margin: 0 auto;
    border-radius: 32px;
  }

  .trust-bar,
  .workflow-grid,
  .screen-grid,
  .value-cards,
  .trade-list,
  .steps,
  .quick-answer-grid,
  .partner-grid,
  .partner-stats,
  .partner-process,
  .partner-fit-grid,
  .materials-list {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    width: calc(100% - 36px);
  }

  .section,
  .final-cta {
    padding: 46px 18px;
  }

  .section-heading h2,
  .page-heading h2,
  .page-footer-cta h2,
  .pricing-copy h2,
  .trust-copy h2,
  .demo-panel h2,
  .final-layout h2,
  .faq-heading h2,
  .review-copy h2,
  .opportunity-copy h2 {
    font-size: 30px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .screen-card img {
    width: auto;
    max-width: 100%;
    max-height: 520px;
    margin-inline: auto;
  }

  .dashboard-spotlight {
    padding: 12px;
  }

  .journey-panel {
    gap: 10px;
  }

  .journey-card {
    padding: 16px;
  }

  .journey-card-label {
    margin-bottom: 18px;
  }

  .journey-flow {
    padding: 0;
  }

  .journey-step {
    min-height: 70px;
    padding: 10px;
  }

  .journey-result-row,
  .journey-facts div {
    display: grid;
    gap: 4px;
  }

  .journey-result-row strong,
  .journey-facts dd {
    text-align: left;
  }

  .dashboard-copy {
    padding: 10px 6px 3px;
  }

  .dashboard-spotlight img {
    border-radius: 12px;
  }

  .review-layout {
    gap: 24px;
  }

  .review-visual img {
    width: min(268px, 84vw);
  }

  .proof-list div {
    align-items: flex-start;
  }

  .demo-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-callout {
    width: 100%;
  }

  .demo-prompts {
    display: grid;
  }

  .calc-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .calc-cta p {
    max-width: none;
  }

  .handoff-panel {
    padding: 18px;
  }

  .handoff-panel li {
    padding-right: 14px;
  }

  .pricing-card {
    padding: 18px;
  }

  .price-main {
    display: grid;
  }

  .pricing-includes {
    grid-template-columns: 1fr;
  }

  .offer-stack {
    grid-template-columns: 1fr;
  }

  .sticky-action {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 60;
    min-height: 68px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 8px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--bg);
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .cookie-notice {
    left: 16px;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: auto;
    padding: 16px;
  }

  .sticky-action.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-action .button {
    min-height: 48px;
    padding-inline: 10px;
    font-size: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    margin: 0 auto;
  }
}
