/* Ark Web — cockpit/signature UI direction. No framework, no external dependency. */

:root {
  --void: #030711;
  --void-2: #07101d;
  --ink: #101828;
  --panel: rgba(9, 19, 34, 0.74);
  --panel-solid: #0b1524;
  --paper: #f4f7fb;
  --paper-2: #e8eef6;
  --paper-3: #dbe5f1;
  --line: rgba(36, 95, 153, 0.18);
  --line-strong: rgba(36, 95, 153, 0.42);
  --line-dark: rgba(3, 7, 17, 0.12);
  --blue: #245F99;
  --blue-2: #79a9d8;
  --violet: #1c4a78;
  --mint: #bfd4e8;
  --text: #f8fbff;
  --muted: rgba(248, 251, 255, 0.66);
  --text-dark: #111827;
  --muted-dark: #5f6b7a;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 24px 80px rgba(4, 16, 31, 0.16);
  --max: 1180px;
  --radius: 22px;
  --cut: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--text-dark);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

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

::selection {
  background: rgba(36, 95, 153, .35);
}

.container {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.cursor-glow {
  position: fixed;
  left: var(--pointer-x, 50%);
  top: var(--pointer-y, 20%);
  z-index: -1;
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(36, 95, 153, .12), rgba(36, 95, 153, 0) 62%);
  transform: translate(-50%, -50%);
  opacity: .7;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--violet));
  box-shadow: 0 0 24px rgba(36, 95, 153, .75);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  width: 100%;
  height: 74px;
  --header-bg: 255, 255, 255;
  --header-text: 16, 24, 40;
  --header-muted: 16, 24, 40;
  --header-border: 3, 7, 17;
  --header-shadow: 4, 16, 31;
  --header-logo-invert: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  color: rgb(var(--header-text));
  background: rgb(var(--header-bg));
  border-bottom: 1px solid rgba(var(--header-border), .1);
  box-shadow: 0 10px 34px rgba(var(--header-shadow), .08);
  transition: background .14s linear, color .14s linear, box-shadow .14s linear, border-color .14s linear;
}

.site-header.is-scrolled {
  border-color: rgba(var(--header-border), .18);
  box-shadow: 0 14px 38px rgba(var(--header-shadow), .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.site-header .brand {
  position: relative;
}

.brand-logo {
  display: block;
  width: clamp(126px, 12vw, 156px);
  height: auto;
  filter: none;
}

.site-header .brand-logo {
  transition: opacity .14s linear;
}

.site-header .brand-logo-light {
  opacity: calc(1 - var(--header-logo-invert));
}

.site-header .brand-logo-dark {
  position: absolute;
  left: 0;
  top: 50%;
  opacity: var(--header-logo-invert);
  transform: translateY(-50%);
  pointer-events: none;
}

.site-footer .brand-logo {
  width: 148px;
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 13px;
  color: rgba(var(--header-muted), .72);
  transition: color .14s linear;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  transition: color .22s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transition: right .28s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  position: relative;
  scroll-margin-top: 37px;
  padding: clamp(88px, 10vw, 144px) 0;
}

.section-dark,
.section-ink {
  background: var(--void);
  color: var(--text);
}

.section-light {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 10% 10%, rgba(36, 95, 153, .14), transparent 28%),
    linear-gradient(180deg, #fff, var(--paper));
}

.section-paper {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 8% 8%, rgba(36, 95, 153, .08), transparent 30%),
    linear-gradient(180deg, var(--paper), #fff 46%, var(--paper-2));
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px 0 52px;
  background:
    radial-gradient(circle at 12% 20%, rgba(36, 95, 153, .2), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(121, 169, 216, .14), transparent 30%),
    radial-gradient(circle at 60% 75%, rgba(191, 212, 232, .08), transparent 24%),
    linear-gradient(145deg, #02050c, #07101d 48%, #02050c);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(36, 95, 153, .24), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(121, 169, 216, .14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 44%);
  mask-image: radial-gradient(circle at 54% 44%, black 0%, transparent 78%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    radial-gradient(circle at 48% 12%, rgba(255, 255, 255, .22), transparent 28%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .18));
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  grid-template-areas:
    "copy visual"
    "facts facts";
  column-gap: clamp(34px, 5vw, 78px);
  row-gap: clamp(24px, 3vw, 42px);
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  transform: translateY(-24px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: #245F99;
  font-size: 15.6px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 850;
}

.hero-title {
  position: relative;
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(58px, 8.8vw, 116px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 920;
  text-wrap: balance;
}

.hero-title .line {
  display: block;
  width: max-content;
  max-width: none;
  line-height: inherit;
  margin-right: -.12em;
  margin-bottom: -.22em;
  padding-right: .12em;
  padding-bottom: .22em;
  white-space: nowrap;
  overflow: visible;
  opacity: 0;
  transform: translateY(.28em);
  animation: hero-line-in .42s var(--ease) forwards;
  animation-delay: calc(var(--line-index) * 58ms + 80ms);
}

.hero-title .nowrap {
  white-space: nowrap;
}

.hero-title .accent {
  color: transparent;
  background: linear-gradient(105deg, #fff 0%, var(--blue-2) 42%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(36, 95, 153, .18));
}

.hero-title .accent:last-child {
  line-height: inherit;
  margin-bottom: -.32em;
  padding-bottom: .32em;
}

.hero-text {
  max-width: 610px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.78;
}

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

.text-action,
.card-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .01em;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, color .25s ease;
}

.text-action::before,
.card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: translateX(-105%);
  transition: transform .55s var(--ease);
}

.text-action:hover,
.card-link:hover {
  transform: translateY(-3px);
}

.text-action:hover::before,
.card-link:hover::before {
  transform: translateX(105%);
}

.primary-action {
  color: #03101f;
  background: linear-gradient(135deg, var(--blue-2), var(--mint));
  box-shadow: 0 18px 44px rgba(36, 95, 153, .28);
}

.text-action:not(.primary-action) {
  color: var(--text);
  border: 1px solid rgba(36, 95, 153, .28);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
}

button.text-action {
  cursor: pointer;
}

.orbit-shell {
  position: relative;
  width: min(100%, 431px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-top: -34px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(36, 95, 153, .22);
  border-radius: 42% 58% 49% 51% / 51% 41% 59% 49%;
  transform: rotate(var(--rotate, 0deg));
}

.ring-one {
  --rotate: -10deg;
  animation: spin 22s linear infinite;
}

.ring-two {
  inset: 12%;
  --rotate: 38deg;
  border-color: rgba(191, 212, 232, .18);
  animation: spin 18s linear infinite reverse;
}

.ring-three {
  inset: 24%;
  --rotate: -44deg;
  border-color: rgba(121, 169, 216, .24);
  animation: spin 26s linear infinite;
}

.star {
  position: absolute;
  z-index: 1;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(248, 251, 255, .82);
  box-shadow: 0 0 12px rgba(121, 169, 216, .8);
  animation: star-twinkle 3.8s ease-in-out infinite;
}

.star::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(121, 169, 216, .18), transparent 58%);
}

.star-one { top: 12%; left: 34%; animation-delay: .2s; }
.star-two { top: 24%; right: 18%; width: 4px; height: 4px; animation-delay: 1.1s; }
.star-three { left: 18%; bottom: 24%; background: rgba(121, 169, 216, .88); animation-delay: 2s; }
.star-four { right: 28%; bottom: 16%; width: 2px; height: 2px; animation-delay: 2.6s; }
.star-five { top: 48%; left: 8%; width: 2px; height: 2px; animation-delay: 3.1s; }

.core-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 320px;
  height: 280px;
  color: var(--text);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation: core-breathe 7.2s var(--ease) infinite;
}

.core-mark::before {
  display: none;
}

.site-build {
  position: relative;
  z-index: 1;
  display: block;
  width: 160px;
  height: 130px;
  border: 1px solid rgba(248, 251, 255, .72);
  background:
    linear-gradient(180deg, rgba(248, 251, 255, .08), rgba(248, 251, 255, .025)),
    rgba(2, 5, 12, .32);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .22), 0 0 0 1px rgba(36, 95, 153, .22) inset;
  overflow: hidden;
  animation: page-float 7.2s var(--ease) infinite;
}

.site-build::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(121, 169, 216, .12), transparent),
    linear-gradient(rgba(121, 169, 216, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 169, 216, .1) 1px, transparent 1px);
  background-size: 100% 100%, 22px 22px, 22px 22px;
  opacity: .6;
  transform: translateX(-100%);
  animation: blank-page-scan 7.2s var(--ease) infinite;
}

.site-build span {
  position: absolute;
  display: block;
  border-radius: 2px;
}

.site-bar {
  left: 13px;
  right: 13px;
  top: 13px;
  height: 10px;
  background: rgba(248, 251, 255, .72);
  transform-origin: left;
  animation: build-width 7.2s var(--ease) infinite;
}

.site-hero {
  left: 13px;
  top: 34px;
  width: 72px;
  height: 42px;
  background: linear-gradient(135deg, rgba(36, 95, 153, .94), rgba(121, 169, 216, .74));
  animation: build-pop 7.2s var(--ease) infinite .18s;
}

.site-line {
  left: 96px;
  height: 6px;
  background: rgba(248, 251, 255, .72);
  transform-origin: left;
}

.line-a {
  top: 40px;
  width: 48px;
  animation: build-width 7.2s var(--ease) infinite .34s;
}

.line-b {
  top: 56px;
  width: 34px;
  background: rgba(121, 169, 216, .68);
  animation: build-width 7.2s var(--ease) infinite .48s;
}

.site-card {
  bottom: 15px;
  width: 58px;
  height: 32px;
  border: 1px solid rgba(121, 169, 216, .45);
  background: rgba(248, 251, 255, .08);
}

.card-a {
  left: 13px;
  animation: build-rise 7.2s var(--ease) infinite .62s;
}

.card-b {
  left: 83px;
  animation: build-rise 7.2s var(--ease) infinite .76s;
}

.site-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(191, 212, 232, .7);
  animation: build-pop 7.2s var(--ease) infinite .9s;
}

.dot-a { right: 16px; top: 13px; }
.dot-b { right: 18px; bottom: 27px; background: var(--blue-2); }

.growth-chart {
  inset: 22px 18px 18px;
  opacity: 0;
  animation: chart-stage 7.2s var(--ease) infinite;
}

.chart-bar {
  bottom: 0;
  width: 20px;
  background: linear-gradient(180deg, var(--mint), rgba(36, 95, 153, .82));
  transform-origin: bottom;
  animation: chart-grow 7.2s var(--ease) infinite;
}

.bar-a { left: 8px; height: 36px; }
.bar-b { left: 42px; height: 58px; animation-delay: .08s; }
.bar-c { left: 76px; height: 78px; animation-delay: .16s; }

.chart-line {
  left: 11px;
  bottom: 23px;
  width: 91px;
  height: 44px;
  border-left: 2px solid rgba(248, 251, 255, .72);
  border-top: 2px solid rgba(248, 251, 255, .72);
  transform: skewY(-23deg) scaleX(0);
  transform-origin: left bottom;
  animation: chart-line-draw 7.2s var(--ease) infinite;
}

.money-sign {
  right: 4px;
  top: 0;
  color: var(--mint);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  text-shadow: 0 0 18px rgba(191, 212, 232, .65);
  animation: money-pop 7.2s var(--ease) infinite;
}

.signal-dot {
  position: absolute;
  z-index: 4;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 28px var(--mint);
}

.dot-one { top: 20%; right: 21%; }
.dot-two { left: 13%; bottom: 30%; background: var(--blue-2); box-shadow: 0 0 28px var(--blue-2); }
.dot-three { right: 27%; bottom: 10%; background: var(--violet); box-shadow: 0 0 28px var(--violet); }

.system-stack {
  position: absolute;
  right: -8px;
  bottom: 76px;
  width: 190px;
  display: grid;
  gap: 10px;
}

.system-stack span {
  height: 38px;
  background:
    linear-gradient(90deg, rgba(36, 95, 153, .32), transparent 38%),
    rgba(255, 255, 255, .06);
  border: 1px solid rgba(36, 95, 153, .2);
  clip-path: var(--cut);
  backdrop-filter: blur(16px);
  animation: stack-drift 5.8s var(--ease) infinite;
}

.system-stack span:nth-child(2) {
  width: 82%;
  justify-self: end;
  animation-delay: .35s;
}

.system-stack span:nth-child(3) {
  width: 64%;
  justify-self: end;
  animation-delay: .7s;
}

.hero-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  border: 1px solid rgba(36, 95, 153, .18);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
  clip-path: var(--cut);
  backdrop-filter: blur(18px);
}

.hero-facts div {
  position: relative;
  padding: 22px 24px;
}

.hero-facts div + div {
  border-left: 1px solid rgba(36, 95, 153, .16);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

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

.hero-facts span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section-heading,
.split-heading {
  margin-bottom: clamp(42px, 5.8vw, 72px);
}

.section-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.section-heading h2,
.split-heading h2,
.faq-layout h2,
.contact-panel h2 {
  margin-top: 18px;
  font-size: clamp(38px, 5.8vw, 74px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 930;
  text-wrap: balance;
}


#faq .eyebrow {
  color: #245F99;
}


.section-heading p:not(.eyebrow),
.split-heading p:not(.eyebrow),
.faq-layout p,
.contact-panel p {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.76;
}

.section-dark .section-heading p:not(.eyebrow),
.section-ink p,
.section-ink .faq-layout p {
  color: var(--muted);
}

.section-ink .eyebrow {
  color: #245F99;
}

.section-contact .eyebrow {
  color: #245F99;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .68)),
    var(--paper);
  border: 1.5px solid rgba(36, 95, 153, .24);
  clip-path: var(--cut);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .85) inset;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s ease;
}

.price-card::before,
.service-card::before,
.step::before,
.dashboard-point::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent 62%);
  opacity: .6;
}

.price-card::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 32px;
  height: 32px;
  border-right: 1px solid rgba(36, 95, 153, .34);
  border-bottom: 1px solid rgba(36, 95, 153, .34);
  transform-origin: center;
  will-change: transform;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 95, 153, .5);
  box-shadow: var(--shadow-soft);
}

.price-card:hover::after {
  animation: card-vignette-spin 1.15s cubic-bezier(.12, .82, .22, 1) infinite;
}

.price-card.featured {
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(36, 95, 153, .28), transparent 36%),
    linear-gradient(145deg, rgba(8, 20, 38, .98), rgba(5, 12, 23, .96));
  border-color: rgba(121, 169, 216, .58);
  box-shadow: 0 28px 90px rgba(4, 16, 31, .28);
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-name,
.plan-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
}

.plan-name {
  color: #245F99;
}

.featured .plan-name {
  color: var(--blue-2);
}

.plan-badge {
  padding: 8px 10px;
  color: #fff;
  background: #245F99;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
  transform: translateY(0);
  will-change: transform;
}

.price-card:hover .plan-badge {
  animation: badge-hop .82s var(--ease) infinite;
}

.featured .plan-badge {
  color: #245F99;
  background: #fff;
}

.price-card h3 {
  min-height: 4.2em;
  margin-top: 22px;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.price {
  margin-top: 14px;
}

.price strong,
.price span {
  display: block;
}

.price strong {
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: .92;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.price span,
.commitment,
.plan-copy {
  color: var(--muted-dark);
}

.featured .price span,
.featured .commitment,
.featured .plan-copy,
.featured .feature-list li {
  color: rgba(248, 251, 255, .72);
}

.price span {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 700;
}

.commitment {
  margin-top: 12px;
  font-size: 13px;
}

.plan-copy {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  margin-bottom: 30px;
}

.feature-list li {
  position: relative;
  padding-left: 16px;
  color: #273545;
  font-size: 13px;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border: 0;
  transform: rotate(45deg);
  transform-origin: center;
}

.price-card:hover .feature-list li::before {
  animation: bullet-size-pulse 2.8s ease-in-out infinite;
}

.card-link {
  margin-top: auto;
  color: #fff;
  background: #245F99;
  border: 1px solid #245F99;
}

.featured .card-link,
.featured-link {
  color: #03101f;
  background: #bfd4e8;
  border-color: #bfd4e8;
}

.card-link:hover {
  background: #1b4a78;
  border-color: #1b4a78;
}

.featured .card-link:hover,
.featured-link:hover {
  color: #fff;
  background: #245F99;
  border-color: #245F99;
}

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

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 255px;
  padding: 26px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(3, 7, 17, .1);
  clip-path: var(--cut);
  box-shadow: 0 18px 70px rgba(5, 18, 34, .07);
  overflow: hidden;
  transition: transform .32s var(--ease), border-color .32s ease, background .32s ease;
}

.service-card:nth-child(1),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card:nth-child(4) {
  grid-column: span 3;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 95, 153, .32);
  background: #fff;
}

.service-card > span,
.step > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  color: #245F99;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  background: rgba(36, 95, 153, .11);
  border: 1px solid rgba(36, 95, 153, .2);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.step > span {
  font-size: 18px;
}

.service-card h3,
.step h3,
.dashboard-point h3 {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.service-card p,
.step p,
.dashboard-point p {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.72;
}

.include-panel {
  display: block;
}

.include-list {
  display: grid;
  border-top: 1px solid rgba(3, 7, 17, .12);
  border-bottom: 1px solid rgba(3, 7, 17, .12);
}

.include-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, .48fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(22px, 3vw, 34px) 0 clamp(22px, 3vw, 34px) clamp(22px, 2.6vw, 34px);
  border-bottom: 1px solid rgba(3, 7, 17, .1);
  transition: transform .32s var(--ease), border-color .32s ease, background .32s ease;
}

.include-item:last-child {
  border-bottom: 0;
}

.include-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(28px, 3vw, 40px);
  width: 6px;
  height: 34px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(36, 95, 153, .22);
}

.include-item:hover {
  transform: translateX(16px);
  border-color: rgba(36, 95, 153, .42);
  background: rgba(36, 95, 153, .055);
}

.include-item h3 {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.include-item p {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.72;
}

.dashboard-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(36, 95, 153, .18), transparent 34%),
    linear-gradient(180deg, var(--void), #06101d 52%, var(--void));
}

.dashboard-section .section-heading {
  margin-bottom: clamp(10px, 1.45vw, 18px);
}

.dashboard-section .section-heading p:not(.eyebrow) {
  margin-top: clamp(36px, 4vw, 56px);
}

.dashboard-orbit {
  position: absolute;
  inset: 10% -8% auto auto;
  width: 52vw;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(36, 95, 153, .12);
  background: radial-gradient(circle, rgba(36, 95, 153, .08), transparent 64%);
  transform: rotate(-18deg);
}

.dashboard-stage {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(14px, 2.8vw, 32px) clamp(14px, 2.8vw, 32px) clamp(86px, 8vw, 128px);
  border: 1px solid rgba(36, 95, 153, .22);
  background:
    radial-gradient(circle at 18% 0%, rgba(36, 95, 153, .18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  clip-path: var(--cut);
  box-shadow: var(--shadow);
}

.dashboard-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent, rgba(36, 95, 153, .09), transparent 58%);
}

.dashboard-desktop-wrap {
  position: relative;
  z-index: 1;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  border: 1px solid rgba(36, 95, 153, .2);
  clip-path: var(--cut);
  box-shadow: 0 36px 110px rgba(0, 0, 0, .42);
  will-change: transform;
}

.dashboard-desktop,
.dashboard-mobile {
  width: 100%;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.dashboard-mobile-wrap {
  position: absolute;
  right: 5%;
  bottom: 24px;
  z-index: 3;
  width: min(24%, 248px);
  padding: 9px;
  background: rgba(2, 5, 12, .9);
  border: 1px solid rgba(36, 95, 153, .28);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  box-shadow: 0 32px 88px rgba(0, 0, 0, .48), 0 0 54px rgba(36, 95, 153, .16);
  will-change: transform;
}

.dashboard-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 20px;
}

.dashboard-point {
  position: relative;
  height: 100%;
  padding: 20px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, .052);
  border: 1px solid rgba(36, 95, 153, .18);
  clip-path: var(--cut);
}

.dashboard-point p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 62px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 95, 153, .55), transparent);
}

.step {
  position: relative;
  min-height: 278px;
  padding: 26px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(3, 7, 17, .1);
  clip-path: var(--cut);
  box-shadow: 0 18px 70px rgba(5, 18, 34, .07);
  overflow: hidden;
  transition: transform .32s var(--ease), border-color .32s ease, background .32s ease, box-shadow .32s var(--ease);
}

.step::after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(115deg, transparent 38%, rgba(36, 95, 153, .16), transparent 62%);
  transform: translateX(-42%) rotate(8deg);
  opacity: 0;
  transition: transform .58s var(--ease), opacity .32s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 95, 153, .36);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 28px 86px rgba(5, 18, 34, .13);
}

.step:hover::after {
  transform: translateX(42%) rotate(8deg);
  opacity: 1;
}

.step > span {
  position: relative;
  z-index: 1;
  transition: color .32s ease, background .32s ease, border-color .32s ease, transform .32s var(--ease);
}

.step:hover > span {
  color: #fff;
  background: var(--blue);
  border-color: rgba(36, 95, 153, .42);
  transform: translateY(-3px);
}

.step h3,
.step p {
  position: relative;
  z-index: 1;
}

.section-ink {
  background:
    radial-gradient(circle at 15% 20%, rgba(36, 95, 153, .17), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(121, 169, 216, .12), transparent 30%),
    linear-gradient(180deg, #02050c, #07101d);
}

.faq-layout {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid rgba(36, 95, 153, .18);
}

.faq-item {
  border-bottom: 1px solid rgba(36, 95, 153, .18);
}

.faq-item button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.2;
  font-weight: 780;
  letter-spacing: -.025em;
}

.faq-item i {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--blue-2);
  border-radius: 999px;
  transition: transform .25s var(--ease);
}

.faq-item i::after {
  transform: rotate(90deg);
}

.faq-item.open i::after {
  transform: rotate(0deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s var(--ease);
}

.faq-content p {
  margin-top: 0;
  padding: 0 48px 24px 0;
}

.section-contact {
  background:
    radial-gradient(circle at 50% 0%, rgba(36, 95, 153, .18), transparent 34%),
    linear-gradient(180deg, var(--paper), #fff);
}

.contact-panel {
  position: relative;
  width: min(930px, 100%);
  margin-inline: auto;
  scroll-margin-top: 250px;
  padding: clamp(42px, 7vw, 78px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .72));
  border: 1px solid rgba(3, 7, 17, .1);
  clip-path: var(--cut);
  box-shadow: var(--shadow-soft);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 18%, rgba(36, 95, 153, .16), transparent 36%),
    radial-gradient(circle at 76% 10%, rgba(121, 169, 216, .14), transparent 30%);
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel p:not(.eyebrow) {
  max-width: 650px;
  margin-inline: auto;
}

.section-contact .text-action:not(.primary-action) {
  color: var(--text-dark);
  border-color: rgba(3, 7, 17, .14);
  background: rgba(255, 255, 255, .7);
}

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

.contact-note {
  margin-top: 24px !important;
  font-size: 13px !important;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .22s ease;
}

.contact-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(5px);
}

.contact-modal-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 38px);
  color: var(--text-dark);
  background:
    radial-gradient(circle at 20% 0%, rgba(36, 95, 153, .13), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(244, 247, 251, .94));
  border: 1px solid rgba(3, 7, 17, .12);
  clip-path: var(--cut);
  box-shadow: var(--shadow-soft);
  transform: translateY(0) scale(1);
  transition: transform .24s var(--ease);
}

.contact-modal[aria-hidden="true"] .contact-modal-card {
  transform: translateY(18px) scale(.98);
}

.contact-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-height: 38px;
  color: var(--text-dark);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  border: 1px solid rgba(3, 7, 17, .12);
  background: rgba(255, 255, 255, .72);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s ease;
}

.contact-close:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .94);
}

.contact-modal-card h2 {
  margin-top: 10px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: .98;
  letter-spacing: -.045em;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-form .form-wide,
.contact-form-status,
.contact-form .text-action {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(3, 7, 17, .14);
  border-radius: 0;
  outline: 0;
  padding: 13px 14px;
  color: var(--text-dark);
  font: inherit;
  font-size: 15px;
  text-transform: none;
  background: rgba(255, 255, 255, .76);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(121, 169, 216, .64);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 3px rgba(36, 95, 153, .18);
}

.contact-form select option {
  color: var(--text-dark);
}

.contact-form-status {
  min-height: 20px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.5;
}

.contact-form-status[data-tone="success"] {
  color: var(--blue);
}

.contact-form-status[data-tone="error"] {
  color: #b42318;
}

.contact-form button[type="submit"] {
  width: min(50%, 260px);
  justify-self: center;
  cursor: pointer;
}

.contact-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: .68;
}

.site-footer {
  color: var(--text);
  background: var(--void);
  border-top: 1px solid rgba(36, 95, 153, .14);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .82s var(--ease), transform .82s var(--ease);
}

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

.price-card.reveal:nth-child(2),
.include-item.reveal:nth-child(2),
.dashboard-point.reveal:nth-child(2),
.step.reveal:nth-child(2) {
  transition-delay: .08s;
}

.price-card.reveal:nth-child(3),
.include-item.reveal:nth-child(3),
.dashboard-point.reveal:nth-child(3),
.step.reveal:nth-child(3) {
  transition-delay: .16s;
}

.price-card.reveal:nth-child(4),
.include-item.reveal:nth-child(4),
.dashboard-point.reveal:nth-child(4),
.step.reveal:nth-child(4) {
  transition-delay: .24s;
}

.include-item.reveal:nth-child(5) {
  transition-delay: .32s;
}

.include-item.reveal:nth-child(6) {
  transition-delay: .40s;
}

@keyframes spin {
  to {
    transform: rotate(calc(var(--rotate, 0deg) + 360deg));
  }
}

@keyframes badge-hop {
  0%,
  100% {
    transform: translateY(0);
  }

  42% {
    transform: translateY(-6px);
  }

  68% {
    transform: translateY(2px);
  }
}

@keyframes bullet-size-pulse {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
  }

  50% {
    transform: rotate(45deg) scale(.5);
  }
}

@keyframes card-vignette-spin {
  0% {
    transform: rotate(0deg);
  }

  48%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes hero-line-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes core-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.018);
  }
}

@keyframes core-breathe-mobile {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, calc(-50% - 5px)) scale(1.018);
  }
}

@keyframes page-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.25);
  }

  50% {
    transform: translate3d(0, -4px, 0) scale(1.25);
  }
}

@keyframes page-float-mobile {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(.44);
  }

  50% {
    transform: translate(-50%, -50%) translate3d(0, -4px, 0) scale(.44);
  }
}

@keyframes blank-page-scan {
  0%,
  10% {
    transform: translateX(-105%);
    opacity: .18;
  }

  26%,
  50% {
    transform: translateX(0);
    opacity: .58;
  }

  72%,
  100% {
    transform: translateX(105%);
    opacity: .14;
  }
}

@keyframes build-width {
  0%,
  12% {
    transform: scaleX(0);
    opacity: 0;
  }

  28%,
  54% {
    transform: scaleX(1);
    opacity: 1;
  }

  68%,
  100% {
    transform: scaleX(.92) translateY(5px);
    opacity: 0;
  }
}

@keyframes build-pop {
  0%,
  16% {
    transform: scale(.72);
    opacity: 0;
  }

  34%,
  56% {
    transform: scale(1);
    opacity: 1;
  }

  70%,
  100% {
    transform: scale(.96) translateY(5px);
    opacity: 0;
  }
}

@keyframes build-rise {
  0%,
  22% {
    transform: translateY(12px);
    opacity: 0;
  }

  42%,
  58% {
    transform: translateY(0);
    opacity: 1;
  }

  72%,
  100% {
    transform: translateY(4px);
    opacity: 0;
  }
}

@keyframes chart-stage {
  0%,
  56% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }

  68%,
  88% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-4px) scale(.98);
  }
}

@keyframes chart-grow {
  0%,
  58% {
    transform: scaleY(0);
    opacity: 0;
  }

  74%,
  90% {
    transform: scaleY(1);
    opacity: 1;
  }

  100% {
    transform: scaleY(.88);
    opacity: 0;
  }
}

@keyframes chart-line-draw {
  0%,
  62% {
    transform: skewY(-23deg) scaleX(0);
    opacity: 0;
  }

  78%,
  90% {
    transform: skewY(-23deg) scaleX(1);
    opacity: 1;
  }

  100% {
    transform: skewY(-23deg) scaleX(1);
    opacity: 0;
  }
}

@keyframes money-pop {
  0%,
  68% {
    transform: translateY(8px) scale(.5);
    opacity: 0;
  }

  78%,
  90% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-6px) scale(.92);
    opacity: 0;
  }
}

@keyframes star-twinkle {
  0%,
  100% {
    opacity: .34;
    transform: scale(.82);
  }

  45% {
    opacity: .95;
    transform: scale(1.18);
  }
}

@keyframes stack-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(8px, -2px, 0);
  }
}

@media (max-width: 1120px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .price-card h3 {
    min-height: auto;
  }

  .include-panel {
    display: block;
  }
}

@media (max-width: 940px) {
  .site-header {
    height: 62px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 5;
    color: rgb(var(--header-text));
  }

  .main-nav {
    position: fixed;
    inset: 0 0 auto auto;
    width: min(380px, 100vw);
    height: 100svh;
    padding: 104px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    font-size: 24px;
    color: var(--text);
    background:
      radial-gradient(circle at 80% 0%, rgba(36, 95, 153, .16), transparent 40%),
      rgba(3, 7, 17, .97);
    border-left: 1px solid rgba(36, 95, 153, .18);
    transform: translateX(110%);
    transition: transform .35s var(--ease);
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .hero-inner,
  .split-heading,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-areas:
      "copy"
      "visual"
      "facts";
  }

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

  .hero-title,
  .hero-text,
  .hero-copy {
    max-width: 760px;
  }

  .dashboard-benefits,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .step {
    min-height: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    inset: 0 0 auto;
    width: 100%;
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 58px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, .65fr) minmax(96px, .35fr);
    grid-template-areas:
      "copy visual"
      "text text"
      "actions actions"
      "facts facts";
    column-gap: 12px;
    row-gap: 18px;
    align-items: center;
  }

  .hero-copy,
  .hero-visual {
    grid-area: auto;
  }

  .hero-copy {
    grid-area: copy;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-inline: 0;
    padding: 0;
    display: contents;
    text-align: left;
    transform: none;
  }

  .hero-title {
    grid-area: copy;
    margin-inline: 0;
    font-size: clamp(38px, 10.8vw, 54px);
    line-height: .88;
    align-self: center;
  }

  .hero-text {
    grid-area: text;
    max-width: 28rem;
    margin-inline: 0;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.58;
  }

  .hero-actions {
    grid-area: actions;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-visual {
    grid-area: visual;
    z-index: 1;
    min-height: 154px;
    opacity: 1;
    pointer-events: none;
    align-self: center;
  }

  .hero-visual.reveal.is-visible {
    opacity: 1;
  }

  .orbit-shell {
    width: min(28vw, 124px);
    margin-top: 0;
  }

  .core-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 96px;
    height: 82px;
    animation-name: core-breathe-mobile;
  }

  .site-build {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 160px;
    height: 130px;
    transform-origin: center;
    animation-name: page-float-mobile;
  }

  .system-stack {
    right: -2px;
    bottom: 18px;
    width: 62px;
    gap: 5px;
  }

  .system-stack span {
    height: 15px;
  }

  .hero-facts,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 14px 16px;
    text-align: center;
  }

  .hero-facts strong {
    font-size: 13px;
  }

  .hero-facts span {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.35;
  }

  .include-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 20px;
  }

  .hero-facts div + div {
    border-left: 0;
    border-top: 1px solid rgba(36, 95, 153, .16);
  }

  .section {
    scroll-margin-top: 29px;
    padding: 76px 0;
  }

  .section-heading,
  .split-heading {
    margin-bottom: 36px;
  }

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

  .dashboard-section .section-heading {
    margin-bottom: 9px;
  }

  .dashboard-section .section-heading p:not(.eyebrow) {
    margin-top: 36px;
  }

  .section-heading h2,
  .split-heading h2,
  .faq-layout h2,
  .contact-panel h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .price-card,
  .step,
  .dashboard-point {
    padding: 22px;
  }

  .dashboard-point {
    padding: 20px 18px;
  }

  .dashboard-stage {
    margin-bottom: clamp(78px, 22vw, 118px);
    padding: 12px;
    overflow: visible;
    clip-path: none;
  }

  .dashboard-mobile-wrap {
    top: 33%;
    right: 14px;
    bottom: auto;
    width: min(35.2%, 136px);
  }

  .contact-panel {
    text-align: left;
    padding: 32px 24px;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .contact-modal {
    padding: 14px;
  }

  .contact-modal-card {
    max-height: 92vh;
    padding: 24px 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .text-action,
  .card-link {
    width: 100%;
  }

  .hero-actions .text-action {
    width: 60%;
  }
}

@media (max-width: 420px) {
  html {
    scroll-padding-top: 58px;
  }

  .site-header {
    height: 58px;
    padding-inline: 12px;
  }

  .brand-logo {
    width: 118px;
  }

  .hero-title {
    font-size: clamp(34px, 10.4vw, 42px);
  }

  .hero-actions {
    gap: 10px;
  }

  .dashboard-stage {
    margin-bottom: 86px;
    padding-bottom: 12px;
  }

  .dashboard-mobile-wrap {
    top: 33%;
    right: 12px;
    bottom: auto;
    width: min(45.9%, 113px);
  
  }

  .dashboard-desktop-wrap {
    padding: 9px;
    height: auto;
  }

  .dashboard-stage reveal is-visible {
    padding: 9px 12px 12px;
  }
}

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

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

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

  .hero-title .line {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .dashboard-desktop-wrap,
  .dashboard-mobile-wrap {
    transform: none !important;
  }
}
