:root {
  --background: #02050d;
  --background-raised: #030711;
  --panel: #050914;
  --panel-secondary: #080d1a;
  --text-primary: #f7f9ff;
  --text-secondary: #aeb7cb;
  --text-muted: #75819a;
  --cyan: #00d9ff;
  --blue: #198cff;
  --purple: #8c2bff;
  --violet: #bd58ff;
  --success: #53f7c2;
  --border: rgba(80, 120, 255, 0.26);
  --border-strong: rgba(80, 174, 255, 0.55);
  --cyan-glow: rgba(0, 217, 255, 0.22);
  --purple-glow: rgba(140, 43, 255, 0.2);
  --font: "Segoe UI", Inter, system-ui, Arial, sans-serif;
  --header-height: 84px;
  --shell: 1336px;
  --radius: 8px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-primary);
  background:
    linear-gradient(rgba(8, 30, 62, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 30, 62, 0.1) 1px, transparent 1px),
    var(--background);
  background-size: 42px 42px;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 73% 8%, rgba(25, 140, 255, 0.08), transparent 28%),
    radial-gradient(circle at 91% 42%, rgba(140, 43, 255, 0.07), transparent 25%);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 650;
}

h2 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.15;
}

h3 {
  line-height: 1.25;
}

.site-shell {
  width: min(calc(100% - 56px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #001018;
  background: var(--cyan);
  border-radius: 4px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(79, 126, 212, 0.15);
  background: rgba(2, 5, 13, 0.78);
  backdrop-filter: blur(14px);
  transition: background var(--transition), border-color var(--transition);
}

.site-header::after {
  position: absolute;
  right: 8%;
  bottom: -1px;
  width: 28%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
  opacity: 0.35;
}

.site-header.is-scrolled {
  border-color: rgba(80, 174, 255, 0.24);
  background: rgba(2, 5, 13, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr) auto;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text-primary);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  border-radius: 0;
  clip-path: none;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  color: var(--text-primary);
  font-size: 20px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.brand-subtitle {
  margin-top: 5px;
  color: #aab6cb;
  font-size: 7px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  color: #dce4f5;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition);
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  place-items: center;
  padding: 10px;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 1px;
  margin: 3px 0;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 23px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  border-color: rgba(0, 217, 255, 0.75);
  background: linear-gradient(110deg, #00bde5 0%, #176fe8 50%, #8925ed 100%);
  box-shadow: 0 0 26px rgba(25, 140, 255, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 32px rgba(0, 217, 255, 0.24), 0 0 24px rgba(140, 43, 255, 0.18);
}

.button-outline {
  position: relative;
  color: var(--text-primary);
  border-color: transparent;
  background:
    linear-gradient(var(--background), var(--background)) padding-box,
    linear-gradient(100deg, var(--cyan), var(--purple)) border-box;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 217, 255, 0.1);
}

.header-cta {
  min-width: 158px;
}

.hero {
  position: relative;
  min-height: 555px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background: linear-gradient(90deg, var(--background) 0%, rgba(2, 5, 13, 0.98) 34%, rgba(2, 5, 13, 0.58) 57%, transparent 79%);
}

.hero::after {
  left: 0;
  bottom: 0;
  width: 53%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.65), rgba(140, 43, 255, 0.5), transparent);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 555px;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 28px;
}

.hero-copy {
  width: 49%;
  max-width: 660px;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--cyan);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: transparent;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  background-clip: text;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: 51px;
  line-height: 1.12;
  font-weight: 560;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.mobile-break {
  display: none;
}

.gradient-text {
  width: max-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan) 0%, #3089ff 49%, #a640ff 100%);
  background-clip: text;
}

.hero-description {
  margin-bottom: 8px;
  color: #c2cbdd;
  font-size: 17px;
  line-height: 1.55;
}

.control-statement {
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .button {
  min-width: 190px;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: max(-40px, calc((100vw - var(--shell)) / -2));
  bottom: 0;
  width: 55%;
  min-width: 600px;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 27%, rgba(0, 217, 255, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 67% 52%, rgba(83, 116, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 89% 60%, rgba(140, 43, 255, 0.13) 0 1px, transparent 2px);
  background-size: 83px 97px, 119px 131px, 151px 163px;
}

.hero-visual::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--background) 0%, transparent 20%, transparent 88%, rgba(2, 5, 13, 0.75) 100%),
    linear-gradient(0deg, var(--background) 0%, transparent 14%, transparent 90%, var(--background) 100%);
}

.hero-mark-stage {
  position: absolute;
  z-index: 3;
  inset: 3% 8% 22%;
  display: grid;
  place-items: center;
}

.hero-mark-stage img {
  display: block;
  width: min(67%, 500px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  opacity: 0.97;
  filter:
    drop-shadow(0 0 12px rgba(0, 217, 255, 0.16))
    drop-shadow(0 0 24px rgba(91, 62, 255, 0.13));
  animation: hero-breathe 8s ease-in-out infinite alternate;
}

.hero-traces {
  position: absolute;
  z-index: 1;
  right: 11%;
  bottom: 17%;
  width: 75%;
  height: 43%;
  opacity: 0.28;
  background:
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(0, 217, 255, 0.28) 17px, transparent 18px 31px),
    linear-gradient(180deg, transparent, rgba(25, 140, 255, 0.12));
  mask-image: linear-gradient(180deg, transparent, #000 42%, #000 84%, transparent);
}

.hero-platform {
  position: absolute;
  z-index: 2;
  right: 9%;
  bottom: 8%;
  width: 78%;
  height: 25%;
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(80, 45, 255, 0.22) 0%, rgba(25, 140, 255, 0.1) 29%, transparent 66%);
  box-shadow:
    0 0 48px rgba(0, 217, 255, 0.08),
    0 0 90px rgba(140, 43, 255, 0.09),
    inset 0 0 38px rgba(25, 140, 255, 0.08);
  transform: perspective(520px) rotateX(69deg);
}

.hero-platform::before,
.hero-platform::after {
  position: absolute;
  inset: 13%;
  content: "";
  border: 1px solid rgba(83, 116, 255, 0.26);
  border-radius: inherit;
}

.hero-platform::after {
  inset: 29%;
  border-color: rgba(140, 43, 255, 0.34);
  box-shadow: 0 0 24px rgba(96, 54, 255, 0.18);
}

.hero-scanline {
  position: absolute;
  z-index: 3;
  right: 15%;
  bottom: 9%;
  width: 66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
  opacity: 0.45;
  animation: trace-drift 7s linear infinite;
}

@keyframes hero-breathe {
  from { opacity: 0.88; transform: scale(0.995); }
  to { opacity: 1; transform: scale(1.01); }
}

@keyframes trace-drift {
  0% { transform: translateX(-10%); opacity: 0; }
  20%, 75% { opacity: 0.35; }
  100% { transform: translateX(10%); opacity: 0; }
}

.trust-strip,
.value-strip {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(3, 7, 17, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018), 0 18px 60px rgba(0, 0, 0, 0.2);
}

.trust-strip::before,
.value-strip::before,
.technical-panel::before {
  position: absolute;
  top: -1px;
  left: 7%;
  width: 30%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.55;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 88px;
  margin-top: -1px;
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(91, 113, 165, 0.22);
}

.trust-item > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.trust-item strong {
  color: #f1f5ff;
  font-size: 13px;
  line-height: 1.35;
}

.trust-item small {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 11px;
  line-height: 1.35;
}

.icon-box {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--cyan);
}

.icon-box svg,
.workflow-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding-block: 96px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.section-intro {
  color: var(--text-secondary);
  font-size: 17px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.technical-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(14, 40, 77, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 40, 77, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(8, 13, 26, 0.95), rgba(4, 8, 18, 0.98));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 20px 70px rgba(0, 0, 0, 0.2);
}

.workflow-panel {
  padding: 38px 30px 26px;
  overflow: hidden;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-list li {
  position: relative;
  min-width: 0;
  padding: 0 17px;
  text-align: center;
}

.workflow-list li:not(:last-child)::after {
  position: absolute;
  top: 45px;
  right: -13px;
  width: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.workflow-number {
  position: absolute;
  top: 0;
  left: 15px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
}

.workflow-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  place-items: center;
  padding: 15px;
  color: #41dfff;
  border: 1px solid rgba(62, 127, 255, 0.3);
  border-radius: 7px;
  background: rgba(4, 9, 23, 0.82);
  box-shadow: inset 0 0 22px rgba(25, 140, 255, 0.05);
}

.workflow-list li:nth-child(even) .workflow-icon {
  color: #b55cff;
}

.workflow-list h3 {
  min-height: 38px;
  margin-bottom: 7px;
  font-size: 14px;
  text-transform: uppercase;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
}

.workflow-cta {
  width: max-content;
  margin: 34px auto 0;
}

.product-section {
  position: relative;
  padding-top: 62px;
}

.product-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 217, 255, 0.025), transparent 38%, rgba(140, 43, 255, 0.03));
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 56px;
}

.capability-copy h2 {
  max-width: 650px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 26px;
  padding: 0;
  margin: 29px 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding-left: 24px;
  color: #d5dded;
  font-size: 14px;
}

.capability-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(0, 217, 255, 0.55);
  border-radius: 50%;
  content: "\2713";
  font-size: 9px;
  line-height: 1;
}

.boundary-note {
  margin-bottom: 0;
  padding: 14px 16px;
  color: var(--text-secondary);
  border-left: 2px solid var(--cyan);
  background: rgba(0, 217, 255, 0.035);
  font-size: 13px;
}

.boundary-note strong {
  color: var(--text-primary);
}

.dashboard-preview {
  margin: 0;
  padding: 10px;
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 8px;
  color: #8ca2c8;
  font-size: 10px;
  font-weight: 700;
}

.preview-header span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(83, 247, 194, 0.7);
}

.dashboard-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(52, 106, 191, 0.25);
  border-radius: 4px;
  object-fit: cover;
  object-position: top center;
  background: #02050d;
}

.dashboard-preview figcaption {
  padding: 11px 8px 4px;
  color: var(--text-muted);
  font-size: 11px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.value-strip article {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px 24px;
  text-align: center;
}

.value-strip article + article {
  border-left: 1px solid rgba(91, 113, 165, 0.22);
}

.value-strip strong {
  color: var(--cyan);
  font-size: 20px;
  text-transform: uppercase;
}

.value-strip article:nth-child(3) strong,
.value-strip article:nth-child(4) strong {
  color: #a94aff;
}

.value-strip span {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 13px;
}

.pricing-section {
  padding-top: 118px;
}

.currency-control {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 5px 6px 5px 16px;
  margin: -8px auto 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(3, 7, 17, 0.82);
}

.currency-label,
.currency-basis {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
}

.currency-basis {
  padding-right: 9px;
  color: var(--text-muted);
}

.currency-selector {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(58px, 1fr));
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(80, 120, 255, 0.24);
  border-radius: 5px;
  background: #020610;
}

.currency-selector button {
  min-width: 58px;
  min-height: 38px;
  padding: 7px 10px;
  color: var(--text-secondary);
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.currency-selector button[aria-pressed="true"] {
  color: #fff;
  border-color: rgba(0, 217, 255, 0.55);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.13), rgba(140, 43, 255, 0.13));
  box-shadow: inset 0 0 18px rgba(25, 140, 255, 0.08);
}

.currency-check {
  visibility: hidden;
  margin-right: 3px;
  color: var(--cyan);
}

.currency-selector button[aria-pressed="true"] .currency-check {
  visibility: visible;
}

.pricing-grid {
  display: grid;
  max-width: 1000px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.pricing-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 34px;
}

.pricing-card-featured {
  border-color: rgba(140, 43, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 0 45px rgba(140, 43, 255, 0.08);
}

.pilot-badge {
  width: max-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 7px 9px;
  color: #d9bfff;
  border: 1px solid rgba(140, 43, 255, 0.5);
  border-radius: 3px;
  background: rgba(140, 43, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
}

.pricing-label {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 4px;
  font-size: 43px;
}

.pricing-card h3 small {
  color: var(--text-secondary);
  font-size: 16px;
}

.regional-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-option {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
}

.price-option small {
  font-size: 10px !important;
  line-height: 1;
  font-weight: 700;
}

.price-option > span {
  white-space: nowrap;
}

.js-enabled [data-price-currency]:not(.is-active) {
  display: none;
}

.js-enabled .regional-prices {
  grid-template-columns: 1fr;
}

.pricing-qualifier {
  color: var(--text-muted);
  font-size: 13px;
}

.pricing-card ul {
  flex: 1;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: #d3dced;
  border-bottom: 1px solid rgba(88, 106, 150, 0.12);
  font-size: 14px;
}

.pricing-card li::before {
  position: absolute;
  left: 1px;
  color: var(--cyan);
  content: "\2713";
}

.pricing-card .button {
  width: 100%;
}

.pricing-references {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
}

.future-pricing,
.expanded-pricing {
  margin: 0;
  color: var(--text-secondary);
}

.expanded-pricing {
  margin-top: 6px;
  font-size: 14px;
}

.inline-regional-prices {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 12px;
}

.inline-regional-prices strong:not(:last-child)::after {
  margin-left: 12px;
  color: var(--text-muted);
  content: "/";
  font-weight: 400;
}

.js-enabled .inline-regional-prices strong::after {
  display: none;
}

.future-pricing strong,
.expanded-pricing strong {
  color: var(--text-primary);
}

.regional-pricing-note {
  max-width: 760px;
  margin: 17px auto 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.55;
}

.request-section {
  padding: 48px 0 100px;
}

.request-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 34px 40px;
}

.request-inner h2 {
  margin-bottom: 8px;
}

.request-inner p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.site-footer {
  position: relative;
  padding-top: 50px;
  color: var(--text-secondary);
  border-top: 1px solid rgba(80, 120, 255, 0.22);
  background: #01040b;
}

.site-footer::before {
  position: absolute;
  top: -1px;
  right: 18%;
  left: 18%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  align-items: center;
  gap: 34px;
  padding-bottom: 40px;
}

.footer-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

.footer-boundary {
  text-align: right;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 132px;
  height: 98px;
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 2px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  border-radius: 0;
  clip-path: none;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--text-primary);
  font-size: 19px;
}

.footer-brand span {
  color: var(--text-muted);
  font-size: 9px;
}

.footer-line {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  color: #5c6b85;
  border-top: 1px solid rgba(80, 120, 255, 0.12);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1280px) {
  :root {
    --shell: 1180px;
  }

  .site-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .header-inner {
    grid-template-columns: 222px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .primary-nav {
    gap: 20px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .header-cta {
    min-width: 142px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-description {
    font-size: 16px;
  }

  .trust-item {
    padding-inline: 14px;
  }

  .icon-box {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .workflow-list li {
    padding-inline: 11px;
  }

  .workflow-list h3 {
    font-size: 12px;
  }

  .product-grid {
    gap: 36px;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .menu-toggle {
    display: grid;
    grid-column: 2;
  }

  .header-cta {
    grid-column: 3;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: auto;
    left: 0;
    width: calc(100vw - 1px);
    display: none;
    max-height: calc(100vh - var(--header-height));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 18px max(28px, calc((100vw - var(--shell)) / 2));
    border-bottom: 1px solid var(--border);
    background: rgba(2, 5, 13, 0.99);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(80, 120, 255, 0.13);
    font-size: 14px;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .mobile-nav-cta {
    display: block;
    margin-top: 8px;
    color: #fff;
    border: 1px solid rgba(0, 217, 255, 0.5);
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.1), rgba(140, 43, 255, 0.1));
    text-align: center;
  }

  .hero {
    min-height: 590px;
  }

  .hero-layout {
    min-height: 590px;
  }

  .hero-copy {
    width: 58%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-visual {
    right: -72px;
    width: 58%;
    min-width: 520px;
  }

  .trust-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .trust-item {
    grid-column: span 2;
  }

  .trust-item:nth-child(4),
  .trust-item:nth-child(5) {
    grid-column: span 3;
    border-top: 1px solid rgba(91, 113, 165, 0.22);
  }

  .workflow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 0;
  }

  .workflow-list li:nth-child(3)::after,
  .workflow-list li:nth-child(6)::after {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .capability-copy {
    max-width: 800px;
  }

  .dashboard-preview {
    max-width: 920px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .site-shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-subtitle {
    font-size: 6.5px;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
  }

  .menu-toggle {
    grid-column: 2;
    justify-self: end;
  }

  .brand {
    max-width: 100%;
    overflow: visible;
  }

  .primary-nav {
    width: calc(100vw - 1px);
    max-width: 100%;
    padding: 16px 15px 20px;
  }

  .section {
    padding-block: 72px;
  }

  h2 {
    font-size: 29px;
  }

  .hero,
  .hero-layout {
    min-height: 0;
  }

  .hero-layout {
    align-items: flex-start;
    padding-top: 72px;
    padding-bottom: 460px;
  }

  .hero::before {
    background: linear-gradient(180deg, var(--background) 0%, rgba(2, 5, 13, 0.98) 48%, rgba(2, 5, 13, 0.18) 100%);
  }

  .hero-copy {
    width: 100%;
    max-width: 620px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-description br {
    display: none;
  }

  .hero-visual {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    height: 420px;
  }

  .hero-mark-stage {
    inset: 0 12% 23%;
  }

  .hero-mark-stage img {
    width: min(74%, 320px);
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, var(--background) 0%, transparent 22%, transparent 87%, var(--background) 100%),
      linear-gradient(90deg, var(--background) 0%, transparent 9%, transparent 91%, var(--background) 100%);
  }

  .hero-traces {
    right: 13%;
    width: 74%;
    height: 40%;
  }

  .hero-platform {
    right: 10%;
    width: 80%;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item,
  .trust-item:nth-child(4),
  .trust-item:nth-child(5) {
    grid-column: span 1;
    border-top: 1px solid rgba(91, 113, 165, 0.22);
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-top: 0;
  }

  .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
  }

  .workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-list li:nth-child(3)::after {
    display: block;
  }

  .workflow-list li:nth-child(even)::after {
    display: none;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .value-strip {
    grid-template-columns: 1fr 1fr;
  }

  .value-strip article:nth-child(3),
  .value-strip article:nth-child(4) {
    border-top: 1px solid rgba(91, 113, 165, 0.22);
  }

  .value-strip article:nth-child(3) {
    border-left: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }

  .request-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .request-inner .button {
    width: max-content;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-boundary {
    text-align: left;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .site-shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-subtitle {
    display: block;
    font-size: 6px;
  }

  .hero,
  .hero-layout {
    min-height: 0;
  }

  .hero-layout {
    padding-top: 52px;
    padding-bottom: clamp(292px, 88vw, 355px);
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.06;
  }

  .gradient-text {
    width: auto;
  }

  .hero-description {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .control-statement {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(280px, 84vw, 350px);
  }

  .hero-mark-stage {
    inset: 0 16% 24%;
  }

  .hero-mark-stage img {
    width: min(80%, 250px);
  }

  .hero-traces {
    bottom: 15%;
    height: 38%;
    opacity: 0.2;
  }

  .hero-platform {
    bottom: 7%;
    height: 23%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(4),
  .trust-item:nth-child(5),
  .trust-item:last-child {
    grid-column: 1;
    border-top: 1px solid rgba(91, 113, 165, 0.22);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .workflow-panel {
    padding: 30px 18px 22px;
  }

  .workflow-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workflow-list li::after,
  .workflow-list li:nth-child(3)::after {
    display: none;
  }

  .workflow-list h3 {
    min-height: 0;
  }

  .workflow-cta,
  .request-inner .button {
    width: 100%;
  }

  .preview-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-block: 5px 8px;
  }

  .dashboard-preview img {
    aspect-ratio: 4 / 3;
  }

  .value-strip {
    grid-template-columns: 1fr;
  }

  .value-strip article + article,
  .value-strip article:nth-child(3) {
    border-top: 1px solid rgba(91, 113, 165, 0.22);
    border-left: 0;
  }

  .pricing-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .currency-control {
    width: 100%;
    flex-wrap: wrap;
    gap: 7px 10px;
    padding: 10px;
  }

  .currency-label,
  .currency-basis {
    flex: 1 1 auto;
    text-align: center;
  }

  .currency-basis {
    padding-right: 0;
  }

  .currency-selector {
    grid-template-columns: repeat(2, minmax(70px, 1fr));
  }

  .currency-selector button {
    min-height: 44px;
  }

  .pilot-badge {
    width: 100%;
    overflow-wrap: break-word;
    text-align: center;
  }

  .pricing-card h3 {
    font-size: 38px;
  }

  .footer-line {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-block: 10px;
  }
}

@media (max-width: 431px) {
  .site-shell {
    width: calc(100% - 24px);
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 5.5px;
  }

  .hero-copy,
  .hero h1,
  .hero-description,
  .control-statement,
  .hero-actions {
    min-width: 0;
    max-width: 100%;
  }

  .mobile-break {
    display: block;
  }

  .desktop-space {
    display: none;
  }

  .hero h1 > span + span {
    margin-top: 8px;
  }

  .hero-actions .button,
  .pricing-card .button {
    min-width: 0;
    max-width: 100%;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .pricing-card h3 {
    font-size: clamp(32px, 10vw, 38px);
  }

  .price-option > span {
    white-space: normal;
  }
}

/* Public site pages */
.page-main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  border-bottom: 1px solid rgba(80, 120, 255, 0.18);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 5, 13, 0.98), rgba(2, 5, 13, 0.76) 58%, rgba(5, 8, 24, 0.6)),
    radial-gradient(circle at 80% 42%, rgba(25, 140, 255, 0.12), transparent 28%),
    radial-gradient(circle at 91% 72%, rgba(140, 43, 255, 0.12), transparent 28%);
}

.page-hero::after {
  position: absolute;
  right: -8%;
  bottom: -45%;
  z-index: -1;
  width: min(720px, 58vw);
  height: min(720px, 58vw);
  content: "";
  border: 1px solid rgba(0, 217, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(25, 140, 255, 0.08), inset 0 0 80px rgba(140, 43, 255, 0.05);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: 72px;
}

.page-hero-copy {
  min-width: 0;
  max-width: 840px;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 0 24px;
  font-size: clamp(43px, 5.6vw, 78px);
  line-height: 0.98;
  font-weight: 650;
  text-transform: uppercase;
}

.page-hero-compact h1 {
  font-size: clamp(40px, 4.6vw, 64px);
}

.page-lead {
  max-width: 760px;
  margin: 0;
  color: #c0c9da;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.page-hero-mark {
  position: relative;
  display: grid;
  width: min(100%, 380px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  overflow: visible;
  mix-blend-mode: screen;
}

.page-hero-mark::before,
.page-hero-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.page-hero-mark::after {
  width: 42%;
  border-color: rgba(140, 43, 255, 0.22);
}

.page-hero-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 78%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  filter:
    drop-shadow(0 0 10px rgba(0, 217, 255, 0.14))
    drop-shadow(0 0 22px rgba(140, 43, 255, 0.12));
  border-radius: 0;
  clip-path: none;
  mix-blend-mode: normal;
  opacity: 0.84;
  filter: drop-shadow(0 0 28px rgba(0, 217, 255, 0.19));
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
}

.content-section {
  padding: 82px 0;
}

.content-section + .content-section {
  border-top: 1px solid rgba(80, 120, 255, 0.12);
}

.content-section-secondary {
  background: rgba(3, 7, 17, 0.76);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
}

.section-heading p,
.content-copy p,
.info-card p,
.callout p {
  color: var(--text-secondary);
}

.content-grid,
.card-grid,
.resource-grid,
.contact-grid,
.boundary-grid,
.pricing-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.content-grid-two,
.boundary-grid,
.pricing-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.resource-card,
.contact-card,
.pricing-page-card,
.flow-card,
.legal-template,
.faq-list details {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(8, 13, 26, 0.94), rgba(4, 8, 18, 0.96)),
    var(--panel);
}

.info-card h3,
.resource-card h3,
.contact-card h3,
.pricing-page-card h3,
.flow-card h3 {
  margin: 0 0 10px;
  color: var(--text-primary);
  font-size: 19px;
}

.info-card p:last-child,
.resource-card p:last-child,
.contact-card p:last-child,
.flow-card p:last-child {
  margin-bottom: 0;
}

.card-kicker,
.mini-label {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.resource-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
}

.resource-card a,
.text-link {
  margin-top: auto;
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.resource-card a:hover,
.resource-card a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.check-list,
.boundary-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.boundary-list li {
  position: relative;
  padding-left: 25px;
  color: #c8d2e5;
}

.check-list li::before,
.boundary-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan);
  content: "\2713";
}

.boundary-list li::before {
  color: var(--violet);
  content: "\2014";
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.dashboard-proof {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.dashboard-proof img {
  width: 100%;
  height: auto;
}

.dashboard-proof figcaption {
  padding: 12px 18px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.callout {
  padding: 28px;
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(0, 217, 255, 0.06), rgba(140, 43, 255, 0.04));
}

.callout-purple {
  border-color: rgba(140, 43, 255, 0.34);
  border-left-color: var(--purple);
}

.callout h2,
.callout h3 {
  margin-top: 0;
}

.callout code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.flow-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(180px, 0.45fr);
  align-items: center;
  gap: 22px;
}

.flow-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(0, 217, 255, 0.38);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.flow-boundary {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.metric-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
}

.metric-proof div {
  padding: 22px;
  background: var(--panel);
}

.metric-proof strong,
.metric-proof span {
  display: block;
}

.metric-proof strong {
  color: var(--cyan);
  font-size: 22px;
}

.metric-proof span {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 12px;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.public-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--panel);
}

.public-table th,
.public-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(80, 120, 255, 0.16);
  text-align: left;
  vertical-align: top;
}

.public-table th {
  color: var(--cyan);
  font-size: 11px;
  text-transform: uppercase;
}

.public-table td {
  color: var(--text-secondary);
}

.pricing-page-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.pricing-page-card-featured {
  border-color: rgba(140, 43, 255, 0.55);
  box-shadow: 0 0 32px rgba(140, 43, 255, 0.08);
}

.pricing-page-card .page-price {
  min-height: 68px;
  margin: 12px 0 18px;
  color: var(--text-primary);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  font-weight: 700;
}

.pricing-page-card .check-list {
  margin-bottom: 26px;
}

.pricing-page-card .button {
  margin-top: auto;
}

.pricing-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 13px;
}

.config-notice {
  padding: 22px;
  color: #d2d9e8;
  border: 1px dashed rgba(0, 217, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(0, 217, 255, 0.04);
}

.config-notice strong {
  color: var(--cyan);
}

.contact-card .button {
  width: 100%;
  margin-top: 18px;
}

.contact-card [aria-disabled="true"] {
  color: var(--text-secondary);
  border-color: var(--border);
  background: var(--panel-secondary);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--cyan);
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-secondary);
}

.legal-template {
  max-width: 920px;
}

.legal-template h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-template h2:first-child {
  margin-top: 0;
}

.legal-template p,
.legal-template li {
  color: var(--text-secondary);
}

.template-warning {
  margin-bottom: 28px;
  padding: 16px 18px;
  color: #f4dca8;
  border: 1px solid rgba(255, 183, 77, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 183, 77, 0.05);
}

.site-footer .footer-directory {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 0.7fr));
  align-items: start;
  gap: 42px;
  padding-bottom: 42px;
}

.footer-intro p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-intro .footer-boundary {
  color: var(--text-muted);
  text-align: left;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--text-primary);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
}

.page-header-spacer {
  height: var(--header-height);
}

@media (max-width: 1024px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 36px;
  }

  .content-grid,
  .card-grid,
  .resource-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-directory {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 66px 0 54px;
  }

  .page-hero-grid,
  .split-panel,
  .content-grid,
  .content-grid-two,
  .card-grid,
  .resource-grid,
  .contact-grid,
  .boundary-grid,
  .pricing-page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    row-gap: 32px;
  }

  .page-hero-mark {
    width: min(360px, 88vw);
    justify-self: center;
  }

  .page-hero h1 {
    font-size: clamp(39px, 11vw, 58px);
    overflow-wrap: break-word;
  }

  .content-section {
    padding: 60px 0;
  }

  .flow-card {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .flow-boundary {
    grid-column: 2;
  }

  .metric-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 52px 0 44px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .page-lead {
    font-size: 16px;
  }

  .page-actions {
    flex-direction: column;
  }

  .page-actions .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .info-card,
  .resource-card,
  .contact-card,
  .pricing-page-card,
  .flow-card,
  .legal-template {
    padding: 22px 18px;
  }

  .flow-card {
    grid-template-columns: 1fr;
  }

  .flow-boundary {
    grid-column: 1;
  }

  .metric-proof,
  .site-footer .footer-directory {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    grid-column: 1;
  }

  .pricing-page-card .page-price {
    font-size: clamp(32px, 10vw, 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
