:root {
  color-scheme: dark;
  --bg: #0f1117;
  --bg-2: #141824;
  --surface: rgba(22, 25, 36, 0.86);
  --surface-solid: #161924;
  --surface-2: #1d2230;
  --surface-3: #242a3b;
  --ink: #eff2fa;
  --muted: #a8b0c4;
  --subtle: #7e889e;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --portal-accent: #d200ff;
  --portal-accent-hover: #ec7bff;
  --portal-accent-soft: rgba(210, 0, 255, 0.16);
  --cyan: #38bdf8;
  --cyan-soft: rgba(56, 189, 248, 0.14);
  --green: #10b981;
  --amber: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, #0f1117 0%, #111520 46%, #0f1117 100%),
    #0f1117;
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.32));
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(210, 0, 255, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--surface-solid);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 17, 23, 0.72);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
  background: rgba(18, 22, 32, 0.94);
  border-color: rgba(210, 0, 255, 0.24);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 38px;
  color: inherit;
  font-weight: 850;
}

.brand > span:last-child {
  transform: translateX(-4px);
}

.brand > span:last-child span {
  color: var(--portal-accent);
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.site-nav button {
  white-space: nowrap;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 7px;
  color: #dfe4f0;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.site-nav a.btn-secondary,
.site-nav a.btn-secondary:hover {
  color: #f7f8fc;
}

.site-nav a.btn-primary,
.site-nav a.btn-primary:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--ink);
  font-weight: 760;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.btn-primary {
  background: var(--portal-accent);
  color: #fff;
  border-color: var(--portal-accent);
  box-shadow: 0 14px 34px rgba(210, 0, 255, 0.22);
}

.btn-primary:hover {
  background: var(--portal-accent-hover);
  border-color: var(--portal-accent-hover);
}

.btn-secondary,
.btn-hero-link {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-secondary:hover,
.btn-hero-link:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(210, 0, 255, 0.36);
}

.btn-small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.91rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #0b0d13;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    conic-gradient(from 220deg at 76% 36%, rgba(210, 0, 255, 0.32), transparent 17%, rgba(56, 189, 248, 0.18) 27%, transparent 43%, rgba(210, 0, 255, 0.2) 62%, transparent 78%),
    linear-gradient(116deg, transparent 0 16%, rgba(210, 0, 255, 0.2) 16.2% 16.6%, transparent 17% 48%, rgba(56, 189, 248, 0.16) 48.2% 48.55%, transparent 49%),
    linear-gradient(58deg, transparent 0 26%, rgba(210, 0, 255, 0.14) 26.2% 26.55%, transparent 27% 68%, rgba(16, 185, 129, 0.1) 68.2% 68.55%, transparent 69%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.038) 0 1px, transparent 1px 88px),
    linear-gradient(135deg, rgba(210, 0, 255, 0.18), transparent 28%),
    linear-gradient(225deg, rgba(56, 189, 248, 0.12), transparent 32%),
    #0f1117;
  background-size: auto, auto, auto, 88px 88px, 88px 88px, auto, auto, auto;
  background-position: center, 0 0, 0 0, 0 0, 0 0, center, center, center;
  filter: saturate(1.16);
  animation: heroFieldShift 20s linear infinite;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-media::before {
  inset: -22% -8% -14% 28%;
  border: 1px solid rgba(210, 0, 255, 0.24);
  background:
    linear-gradient(124deg, transparent 0 31%, rgba(210, 0, 255, 0.18) 31.2% 31.8%, transparent 32.2% 100%),
    linear-gradient(52deg, transparent 0 42%, rgba(56, 189, 248, 0.16) 42.2% 42.7%, transparent 43.1% 100%),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 42px),
    rgba(210, 0, 255, 0.06);
  clip-path: polygon(12% 16%, 74% 0, 100% 42%, 82% 88%, 24% 100%, 0 54%);
  opacity: 0.86;
  animation: heroPanelOrbit 28s linear infinite;
}

.hero-media::after {
  left: -18%;
  top: 16%;
  width: 136%;
  height: 58%;
  background:
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(210, 0, 255, 0.32) 72px 73px, transparent 73px 152px),
    linear-gradient(90deg, transparent, rgba(210, 0, 255, 0.5), rgba(56, 189, 248, 0.38), transparent);
  box-shadow: 0 0 32px rgba(210, 0, 255, 0.34);
  transform: skewY(-10deg);
  mix-blend-mode: screen;
  animation: heroDataSweep 8s ease-in-out infinite;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 10, 16, 0.96) 0%, rgba(13, 16, 25, 0.82) 48%, rgba(13, 16, 25, 0.52) 100%),
    linear-gradient(180deg, rgba(15, 17, 23, 0.22) 0%, rgba(15, 17, 23, 0.94) 100%);
}

.hero-shade::before,
.hero-shade::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-shade::before {
  right: 8%;
  top: 18%;
  width: min(42vw, 560px);
  height: min(36vw, 460px);
  border: 1px solid rgba(210, 0, 255, 0.32);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, rgba(210, 0, 255, 0.12), rgba(56, 189, 248, 0.04));
  clip-path: polygon(10% 18%, 86% 0, 100% 62%, 58% 100%, 0 76%);
  opacity: 0.62;
  animation: heroFrameFloat 10s ease-in-out infinite;
}

.hero-shade::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background:
    linear-gradient(180deg, transparent, rgba(15, 17, 23, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 140px, rgba(210, 0, 255, 0.16) 140px 141px, transparent 141px 280px);
}

.hero-translation-mark {
  position: absolute;
  right: clamp(16px, 8vw, 124px);
  top: clamp(104px, 18vh, 180px);
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(2, 132px);
  gap: 22px;
  align-items: center;
  justify-content: center;
  width: min(36vw, 390px);
  min-width: 280px;
  aspect-ratio: 1.1;
  border: 1px solid rgba(210, 0, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(210, 0, 255, 0.16), transparent 62%),
    linear-gradient(135deg, rgba(210, 0, 255, 0.08), rgba(56, 189, 248, 0.04));
  box-shadow: 0 0 80px rgba(210, 0, 255, 0.18);
  opacity: 0.58;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-translation-mark::before,
.hero-translation-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, rgba(210, 0, 255, 0.1), rgba(210, 0, 255, 0.76), rgba(56, 189, 248, 0.68));
  box-shadow: 0 0 24px rgba(210, 0, 255, 0.42);
  transform-origin: center;
}

.hero-translation-mark::before {
  transform: translate(-50%, -15px);
}

.hero-translation-mark::after {
  transform: translate(-50%, 17px) rotate(180deg);
}

.hero-translation-mark span {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px),
    rgba(15, 17, 23, 0.76);
}

.hero-translation-mark span::before {
  content: "";
  width: 58%;
  height: 58%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(255, 255, 255, 0.2) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(255, 255, 255, 0.2) 46% 54%, transparent 54%),
    radial-gradient(circle, rgba(56, 189, 248, 0.24), transparent 64%);
  box-shadow: inset 0 0 22px rgba(210, 0, 255, 0.18);
}

.hero-translation-mark span:last-child::before {
  border-color: rgba(236, 123, 255, 0.34);
  background:
    linear-gradient(90deg, transparent 46%, rgba(236, 123, 255, 0.3) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(236, 123, 255, 0.3) 46% 54%, transparent 54%),
    radial-gradient(circle, rgba(210, 0, 255, 0.28), transparent 64%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  gap: 54px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 126px 0 40px;
}

.hero-content--solo {
  grid-template-columns: minmax(0, 940px);
  padding-bottom: 66px;
}

.hero-copy-block {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--portal-accent-hover);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: 5.8rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 900px;
}

h2 {
  font-size: 2.65rem;
  font-weight: 850;
}

h3 {
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 820;
}

.hero-copy {
  max-width: 760px;
  color: rgba(239, 242, 250, 0.84);
  font-size: 1.24rem;
  line-height: 1.52;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.centered {
  justify-content: center;
}

.hero-orbit {
  position: relative;
  min-height: 440px;
  border: 1px solid rgba(210, 0, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(210, 0, 255, 0.11), rgba(56, 189, 248, 0.04)),
    rgba(22, 25, 36, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), var(--shadow);
  overflow: hidden;
}

.product-orbit {
  min-height: 420px;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 26px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px);
  opacity: 0.9;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 34%, rgba(210, 0, 255, 0.12) 42%, transparent 52% 100%);
  animation: panelSweep 5.8s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  inset: 84px;
  border: 1px solid rgba(210, 0, 255, 0.42);
  border-radius: 50%;
  animation: orbitPulse 4.5s ease-in-out infinite;
}

.orbit-ring-two {
  inset: 132px;
  border-color: rgba(56, 189, 248, 0.36);
  animation-delay: -1.2s;
}

.orbit-core {
  position: absolute;
  inset: 50%;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 1px solid rgba(210, 0, 255, 0.42);
  border-radius: 50%;
  background: rgba(15, 17, 23, 0.88);
  text-align: center;
  box-shadow: 0 0 50px rgba(210, 0, 255, 0.22);
}

.orbit-core span {
  color: var(--portal-accent-hover);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.orbit-core strong {
  max-width: 110px;
  line-height: 1.16;
}

.orbit-node {
  position: absolute;
  z-index: 2;
  min-width: 122px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(15, 17, 23, 0.9);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 820;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.node-a {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(210, 0, 255, 0.42);
}

.node-b {
  right: 30px;
  top: 48%;
  border-color: rgba(56, 189, 248, 0.42);
}

.node-c {
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(16, 185, 129, 0.42);
}

.node-d {
  left: 30px;
  top: 48%;
  border-color: rgba(245, 158, 11, 0.46);
}

.signal-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--portal-accent), transparent);
  opacity: 0.8;
}

.signal-one {
  width: 62%;
  left: 19%;
  top: 48%;
  animation: signalSlide 4.8s ease-in-out infinite;
}

.signal-two {
  width: 50%;
  left: 25%;
  top: 59%;
  transform: rotate(90deg);
  animation: signalSlide 5.2s ease-in-out infinite reverse;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 760px);
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid rgba(210, 0, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(210, 0, 255, 0.13);
}

.hero-proof div {
  padding: 17px;
  background: rgba(12, 14, 21, 0.62);
}

.hero-proof dt {
  margin-bottom: 4px;
  color: var(--portal-accent-hover);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 0;
  color: #fff;
  font-weight: 760;
}

.trust-band {
  border-top: 1px solid rgba(210, 0, 255, 0.16);
  border-bottom: 1px solid rgba(210, 0, 255, 0.16);
  background: rgba(22, 25, 36, 0.78);
  color: #fff;
}

.section-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) 1.35fr;
  gap: 40px;
  padding: 24px 0;
  align-items: center;
}

.trust-grid--single {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.trust-band .section-inner {
  width: 100%;
  max-width: none;
  padding-left: 16px;
  padding-right: 16px;
}

.trust-grid p {
  margin: 0;
}

.trust-lead {
  color: var(--portal-accent-hover);
  font-size: 1.12rem;
  font-weight: 850;
}

.trust-copy {
  width: min(100%, 940px);
  margin: 0;
  color: rgba(239, 242, 250, 0.82);
  font-size: 1.05rem;
  text-align: center;
}

.trust-grid p:last-child {
  color: rgba(239, 242, 250, 0.76);
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-muted {
  background: rgba(29, 34, 48, 0.82);
}

.section-contrast {
  background:
    linear-gradient(135deg, rgba(210, 0, 255, 0.1), transparent 42%),
    #111520;
  color: #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 700px;
}

.section-heading p,
.split-copy p,
.subhero p,
.placeholder-panel p,
.cta-inner p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

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

.feature-grid.feature-grid--single-card {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.link-card {
  color: inherit;
  text-decoration: none;
}

.link-card:hover {
  border-color: rgba(210, 0, 255, 0.44);
  transform: translateY(-2px);
}

.feature-card,
.pricing-card,
.controls-grid article,
.timeline li,
.calculator,
.faq details,
.policy-list div,
.placeholder-panel,
.comparison-scroll,
.onboarding-summary,
.onboarding-card,
.billing-panel,
.stripe-placeholder,
.control-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  position: relative;
  min-height: 244px;
  padding: 22px;
  overflow: hidden;
}

.feature-card::after,
.controls-grid article::after,
.pricing-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 0, 255, 0.62), transparent);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 22px;
  border: 1px solid rgba(210, 0, 255, 0.34);
  border-radius: 6px;
  background: var(--portal-accent-soft);
  color: var(--portal-accent-hover);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card p,
.pricing-card p,
.controls-grid p,
.policy-list span,
.timeline p,
.check-list li,
.integration-tile span,
.faq p {
  color: var(--muted);
}

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

.value-list {
  margin-top: 22px;
}

.dashboard-preview-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: center;
}

.dashboard-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(210, 0, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(12, 14, 21, 0.7);
  box-shadow: var(--shadow);
}

.dashboard-preview img {
  width: 100%;
  height: auto;
}

.split-copy {
  max-width: 560px;
}

.control-panel {
  position: relative;
  padding: 22px;
  overflow: hidden;
}

.control-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(120deg, transparent 0 26px, rgba(210, 0, 255, 0.045) 26px 27px),
    repeating-linear-gradient(60deg, transparent 0 32px, rgba(56, 189, 248, 0.035) 32px 33px);
  opacity: 0.9;
}

.control-panel > * {
  position: relative;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 820;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(154, 16, 185, 0.26);
  border-radius: 7px;
  background: rgba(151, 16, 185, 0.1);
  color: #d200ff;
  font-size: 0.78rem;
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--portal-accent);
  box-shadow: 0 0 18px rgba(210, 0, 255, 0.45);
}

.benchmark-split {
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 18px;
}

.timeline li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(210, 0, 255, 0.42);
  border-radius: 7px;
  background: var(--portal-accent-soft);
  color: #fff;
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 4px;
}

.timeline p {
  margin-bottom: 0;
}

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

.calculator label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 800;
}

.calculator input,
.calculator textarea,
.calculator select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(15, 17, 23, 0.82);
  color: var(--ink);
}

.calculator input,
.calculator select {
  min-height: 44px;
  padding: 0 12px;
}

.calculator select {
  appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 19px,
    calc(100% - 12px) 19px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.calculator textarea {
  resize: vertical;
  padding: 11px 12px;
}

.calculator input:focus,
.calculator textarea:focus,
.calculator select:focus,
.code-input:focus {
  border-color: var(--portal-accent);
  outline: 2px solid rgba(210, 0, 255, 0.2);
  outline-offset: 2px;
}

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

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

.integration-tile {
  display: grid;
  gap: 9px;
  min-height: 156px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(255, 255, 255, 0.035) 26px 27px),
    rgba(22, 25, 36, 0.8);
  color: #fff;
  text-align: left;
}

button.integration-tile {
  width: 100%;
}

.integration-tile:hover {
  border-color: rgba(210, 0, 255, 0.44);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 820;
}

.faq p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-section {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, rgba(210, 0, 255, 0.18), rgba(56, 189, 248, 0.08) 52%, rgba(15, 17, 23, 0.94)),
    #0f1117;
  color: #fff;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--portal-accent), var(--cyan), transparent);
  animation: signalSlide 5s ease-in-out infinite;
}

.cta-inner {
  position: relative;
  max-width: 820px;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #0b0d13;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  margin-bottom: 10px;
  color: #fff;
}

.site-footer p {
  max-width: 430px;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
}

.footer-disclaimer {
  width: 100%;
  max-width: none;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: #fff;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.success {
  color: #86efac;
  font-weight: 800;
}

.form-note.error {
  color: #fca5a5;
  font-weight: 800;
}

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

.subhero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 17, 23, 0.18), rgba(15, 17, 23, 0.8)),
    url("assets/spectrhq-security-field.png"),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 80px),
    linear-gradient(135deg, rgba(210, 0, 255, 0.14), transparent 44%),
    #0f1117;
  background-size: auto, cover, auto, auto, auto;
  background-position: center, center, 0 0, 0 0, 0 0;
  color: #fff;
  padding: 100px 0 72px;
}

.subhero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(210, 0, 255, 0.22);
  clip-path: polygon(50% 0, 100% 25%, 82% 100%, 15% 76%, 0 24%);
  animation: slowSpin 36s linear infinite;
}

.subhero-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.subhero h1 {
  max-width: 760px;
  font-size: 3.5rem;
}

.subhero p {
  max-width: 740px;
  color: rgba(239, 242, 250, 0.76);
  font-size: 1.12rem;
}

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

.controls-grid article {
  position: relative;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
}

.policy-list {
  display: grid;
  gap: 12px;
}

.policy-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

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

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

.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: -14px 0 16px;
}

.billing-switch-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.billing-switch-label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.billing-switch-label.is-active {
  color: #fff;
}

.billing-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 44px;
}

.billing-switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.billing-switch-track {
  position: relative;
  width: 52px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(15, 17, 23, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.billing-switch-thumb {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease;
}

.billing-switch input:checked + .billing-switch-track {
  border-color: rgba(210, 0, 255, 0.66);
  background: var(--portal-accent);
  box-shadow: 0 10px 24px rgba(210, 0, 255, 0.2);
}

.billing-switch input:checked + .billing-switch-track .billing-switch-thumb {
  transform: translateX(24px);
}

.billing-switch input:focus-visible + .billing-switch-track {
  outline: 3px solid rgba(210, 0, 255, 0.34);
  outline-offset: 3px;
}

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 390px;
  padding: 24px;
  overflow: hidden;
}

.pricing-card .btn {
  align-self: end;
  margin-top: auto;
}

.pricing-card.featured {
  border-color: rgba(210, 0, 255, 0.42);
  box-shadow: 0 22px 54px rgba(210, 0, 255, 0.12);
}

.pricing-card--enterprise {
  border-color: rgba(236, 123, 255, 0.46);
}

.pricing-plan-label {
  border-color: rgba(210, 0, 255, 0.4);
  background: var(--portal-accent-soft);
  color: var(--portal-accent-hover);
  font-size: 1rem;
  min-height: 34px;
  padding: 0 12px;
}

.pricing-card h2 {
  margin: 0;
  font-size: 1.7rem;
}

.billing-caption {
  margin-top: -10px;
  color: var(--portal-accent-hover);
  font-size: 0.88rem;
  font-weight: 780;
}

.comparison-scroll {
  overflow-x: auto;
}

.pricing-comparison {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: var(--ink);
}

.pricing-comparison th,
.pricing-comparison td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-comparison thead th {
  color: #fff;
  font-size: 0.83rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-comparison tbody th {
  color: var(--muted);
  font-weight: 760;
}

.pricing-comparison tbody td {
  font-weight: 780;
}

.pricing-comparison tbody tr:last-child th,
.pricing-comparison tbody tr:last-child td {
  border-bottom: 0;
}

.muted-dash {
  color: var(--subtle);
}

.onboarding-layout,
.verification-layout,
.billing-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.trial-signup-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.form-optional {
  color: var(--subtle);
  font-size: .8rem;
  font-weight: 650;
}

.signup-email-error {
  grid-column: 1 / -1;
  min-height: 0;
}

.trial-volume-interstitial {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 9, 14, .82);
  backdrop-filter: blur(8px);
}

.trial-volume-interstitial[hidden] { display: none; }

.trial-volume-interstitial__card {
  width: min(620px, 100%);
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.trial-volume-interstitial__card h2 { margin: 8px 0 14px; }
.trial-volume-interstitial__card p { color: var(--muted); }

.verification-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  max-width: 980px;
}

.billing-layout {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.onboarding-summary,
.onboarding-card,
.billing-panel,
.stripe-placeholder {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.onboarding-summary h2,
.onboarding-card h2,
.billing-panel h2,
.stripe-placeholder h2 {
  margin: 0;
  font-size: 1.65rem;
}

.plan-price {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 880;
  line-height: 1.15;
}

.plan-details,
.line-items {
  display: grid;
  gap: 0;
  margin: 0;
}

.plan-details div,
.line-items div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.plan-details dt,
.line-items dt {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.plan-details dd,
.line-items dd {
  margin: 0;
  color: #fff;
  font-weight: 820;
  text-align: right;
}

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

.onboarding-form .form-heading,
.onboarding-form .btn,
.onboarding-form .form-note,
.onboarding-form .consent-statement {
  grid-column: 1 / -1;
}

.calculator .consent-statement {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.consent-statement a {
  color: var(--portal-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-heading {
  display: grid;
  gap: 4px;
}

.form-heading h2 {
  margin: 0;
}

.verification-form {
  justify-items: start;
}

.verification-copy,
.stripe-placeholder p {
  margin: 0;
  color: var(--muted);
}

.verification-code {
  display: grid;
  grid-template-columns: repeat(6, 52px);
  gap: 10px;
}

.code-input {
  width: 52px;
  height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(15, 17, 23, 0.82);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 880;
  text-align: center;
}

.flow-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.flow-list li::marker {
  color: var(--portal-accent-hover);
  font-weight: 880;
}

.placeholder-main {
  min-height: 70vh;
  display: grid;
  align-items: center;
  min-width: 0;
}

.placeholder-main > .section {
  width: 100%;
  min-width: 0;
}

.placeholder-panel {
  min-width: 0;
  max-width: 760px;
  padding: 44px;
  text-align: center;
}

.placeholder-panel h1 {
  max-width: none;
  font-size: 3rem;
  overflow-wrap: anywhere;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 68px;
  border-bottom: 1px solid rgba(210, 0, 255, 0.18);
  background:
    linear-gradient(120deg, rgba(15, 17, 23, 0.94), rgba(20, 24, 36, 0.76)),
    url("assets/spectrhq-security-field.png"),
    #0f1117;
  background-position: center;
  background-size: cover;
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(210, 0, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(210, 0, 255, 0.035),
    0 0 0 108px rgba(56, 189, 248, 0.025);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
}

.legal-hero-inner > p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(239, 242, 250, 0.8);
  font-size: 1.14rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 24px;
}

.legal-meta > span:not(.status-pill) {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.legal-toc .eyebrow {
  margin-bottom: 0;
}

.legal-toc nav {
  display: grid;
  gap: 2px;
}

.legal-toc a {
  padding: 7px 8px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 680;
  line-height: 1.35;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  border-left-color: var(--portal-accent);
  background: rgba(210, 0, 255, 0.08);
  color: var(--ink);
}

.legal-review-note {
  margin: 2px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 0.78rem;
  line-height: 1.5;
}

.legal-content {
  min-width: 0;
  max-width: 850px;
}

.legal-content section {
  scroll-margin-top: 112px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 1.04rem;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: var(--muted);
}

.legal-content p,
.legal-content li {
  overflow-wrap: anywhere;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 9px;
  padding-left: 22px;
  margin: 0 0 18px;
}

.legal-content li::marker {
  color: var(--portal-accent-hover);
}

.legal-content a {
  color: var(--portal-accent-hover);
  text-decoration: underline;
  text-decoration-color: rgba(236, 123, 255, 0.42);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: #fff;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content address {
  font-style: normal;
}

.legal-callout {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid rgba(210, 0, 255, 0.28);
  border-left: 3px solid var(--portal-accent);
  border-radius: var(--radius);
  background: rgba(210, 0, 255, 0.08);
}

.legal-callout p {
  margin: 6px 0 0;
}

.legal-emphasis {
  padding-left: 16px;
  border-left: 2px solid rgba(236, 123, 255, 0.56);
  color: var(--ink) !important;
  font-weight: 720;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logo-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 780;
}

.logo-strip--cards span {
  min-height: 54px;
  padding: 0 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: start;
}

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

.contact-form .form-heading,
.contact-form .form-span {
  grid-column: 1 / -1;
}

.contact-form .form-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.field-help {
  color: var(--subtle);
  font-size: 0.8rem;
  font-weight: 600;
}

.demo-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.demo-expectations {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.demo-expectations li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.demo-expectations li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--portal-accent-hover);
  font-weight: 900;
}

.demo-flow,
.demo-state {
  min-width: 0;
}

.demo-state[hidden] {
  display: none;
}

.demo-status-card,
.demo-calendar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.demo-status-card {
  display: grid;
  justify-items: start;
  gap: 14px;
  min-height: 360px;
  padding: clamp(24px, 6vw, 48px);
  align-content: center;
}

.demo-status-card h2,
.demo-calendar-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.demo-status-card p,
.demo-calendar-card p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.demo-state-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(210, 0, 255, 0.45);
  border-radius: 50%;
  background: var(--portal-accent-soft);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.demo-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(210, 0, 255, 0.18);
  border-top-color: var(--portal-accent);
  border-radius: 50%;
  animation: demoSpin 0.8s linear infinite;
}

.demo-state.verification-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 5vw, 36px);
}

.demo-state.verification-form[hidden] {
  display: none;
}

.demo-state.verification-form form {
  display: grid;
  justify-items: start;
  gap: 18px;
  width: 100%;
}

.demo-verification-actions {
  margin-top: 0;
}

.demo-calendar-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.demo-calendar-frame {
  display: block;
}

[data-demo-calendar-frame] {
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

@keyframes demoSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroFieldShift {
  0% {
    background-position: 50% 50%, 0 0, 0 0, 0 0, 0 0, center, center, center;
  }
  100% {
    background-position: 50% 50%, 160px -80px, -120px 80px, 176px 88px, -88px 176px, center, center, center;
  }
}

@keyframes heroPanelOrbit {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(-32px, 18px, 0) rotate(5deg) scale(1.035);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes heroDataSweep {
  0%, 100% {
    transform: translateY(-28%) skewY(-10deg);
    opacity: 0.22;
  }
  50% {
    transform: translateY(38%) skewY(-10deg);
    opacity: 0.78;
  }
}

@keyframes heroFrameFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
    opacity: 0.54;
  }
  50% {
    transform: translate3d(-28px, 18px, 0) rotate(3deg);
    opacity: 0.78;
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes panelSweep {
  0%, 100% {
    transform: translateX(-45%);
  }
  50% {
    transform: translateX(45%);
  }
}

@keyframes orbitPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.85;
  }
}

@keyframes signalSlide {
  0%, 100% {
    opacity: 0.2;
    filter: brightness(0.8);
  }
  50% {
    opacity: 0.9;
    filter: brightness(1.35);
  }
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(210, 0, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(18, 22, 32, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .btn {
    justify-content: flex-start;
    width: 100%;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.22rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-orbit {
    min-height: 360px;
  }

  .feature-grid,
  .controls-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-layout,
  .onboarding-layout,
  .trial-signup-layout,
  .verification-layout,
  .billing-layout,
  .faq-layout,
  .policy-layout,
  .dashboard-preview-layout {
    grid-template-columns: 1fr;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 10px;
  }

  .legal-content {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 82vh;
  }

  .hero-content {
    padding-top: 116px;
    padding-bottom: 28px;
  }

  h1,
  .subhero h1,
  .placeholder-panel h1 {
    font-size: clamp(2.75rem, 15vw, 3.15rem);
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-orbit {
    min-height: 220px;
  }

  .orbit-ring {
    inset: 64px;
  }

  .orbit-ring-two {
    inset: 104px;
  }

  .orbit-core {
    width: 130px;
    height: 130px;
    margin: -65px 0 0 -65px;
  }

  .orbit-node {
    min-width: 100px;
    font-size: 0.76rem;
  }

  .node-b {
    right: 12px;
  }

  .node-d {
    left: 12px;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .hero-proof,
  .trust-grid,
  .feature-grid,
  .controls-grid,
  .pricing-grid,
  .calculator,
  .onboarding-form,
  .contact-form,
  .integration-grid,
  .dashboard-preview-layout {
    grid-template-columns: 1fr;
  }

  .verification-code {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
  }

  .code-input {
    width: 100%;
    min-width: 0;
  }

  .hero-proof {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .footer-grid {
    flex-direction: column;
  }

  .placeholder-panel {
    padding: 22px;
  }

  .placeholder-panel h1 {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
  }

  .legal-hero {
    padding: 70px 0 54px;
  }

  .legal-hero h1 {
    font-size: clamp(2.65rem, 14vw, 3.6rem);
  }

  .legal-hero-inner > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .legal-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-toc {
    padding: 16px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-content section {
    scroll-margin-top: 96px;
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }
}

/* Invoice request page */
.invoice-request-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0, rgba(210, 0, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #10131b, #0d1017);
}

.invoice-request-main {
  display: grid;
  min-height: 100vh;
  padding-top: 82px;
}

.invoice-request-shell {
  display: grid;
  align-items: center;
  padding: clamp(32px, 6vw, 76px) 0;
}

.invoice-request-container {
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
}

.invoice-request-form {
  width: 100%;
  padding: clamp(24px, 4vw, 42px);
  column-gap: 20px;
  row-gap: 18px;
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.invoice-request-form .invoice-request-heading {
  gap: 7px;
  margin-bottom: 8px;
}

.invoice-request-heading h1,
.invoice-request-confirmation h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
}

.invoice-request-heading > p:last-child {
  max-width: 680px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.invoice-request-form label {
  display: grid;
  grid-template-rows: 24px 50px;
  gap: 8px;
  align-content: start;
}

.invoice-request-form .field-label {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
}

.invoice-request-form .field-optional {
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
}

.invoice-request-form input,
.invoice-request-form select {
  width: 100%;
  height: 50px;
  min-height: 50px;
  margin: 0;
}

.invoice-request-form .btn {
  min-height: 50px;
}

.invoice-request-confirmation {
  width: min(100%, 720px);
  padding: clamp(26px, 5vw, 46px);
  margin: 0 auto;
}

.invoice-request-confirmation p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 700px) {
  .invoice-request-shell {
    align-items: start;
    padding: 16px 0;
  }

  .invoice-request-container {
    width: min(calc(100% - 24px), 920px);
  }

  .invoice-request-form {
    gap: 16px;
    padding: 22px 18px;
  }

  .invoice-request-heading h1,
  .invoice-request-confirmation h1 {
    font-size: clamp(2.1rem, 12vw, 2.8rem);
  }
}

/* Pricing page */
.pricing-page {
  --pricing-ochre: #d9a441;
  --pricing-ochre-soft: rgba(217, 164, 65, 0.16);
}

.pricing-hero {
  padding: 118px 0 94px;
  background:
    linear-gradient(105deg, rgba(92, 0, 111, 0.98), rgba(168, 0, 203, 0.96) 58%, rgba(210, 0, 255, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 72px),
    var(--portal-accent);
}

.pricing-hero::after {
  border-color: rgba(255, 255, 255, 0.28);
}

.pricing-hero-inner {
  max-width: 1020px;
}

.pricing-hero h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 7.3vw, 6.8rem);
  letter-spacing: -0.045em;
}

.pricing-hero p:last-child {
  max-width: 850px;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.pricing-tiers-section {
  padding-top: 78px;
}

.pricing-intro-row {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.pricing-intro-row .section-heading {
  margin-bottom: 0;
}

.pricing-intro-row .pricing-toolbar {
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
}

.pricing-toggle-note {
  flex-basis: 100%;
  max-width: 430px;
  margin: 0;
  text-align: right;
}

.billing-save-label,
.pricing-flagship {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(217, 164, 65, 0.46);
  border-radius: 999px;
  background: var(--pricing-ochre-soft);
  color: #f3c66e;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--line-strong);
  box-shadow: var(--shadow);
}

.pricing-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding: 26px 22px 28px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.045), transparent 38%),
    #151924;
}

.pricing-tier-card--enterprise {
  background:
    linear-gradient(155deg, rgba(217, 164, 65, 0.17), transparent 45%),
    #18201f;
}

.pricing-flagship {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #ffe1a2;
  text-transform: uppercase;
}

.pricing-tier-heading {
  min-height: 116px;
  padding-right: 2px;
}

.pricing-tier-card--enterprise .pricing-tier-heading {
  padding-right: 74px;
}

.pricing-tier-name {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 880;
}

.pricing-tier-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.pricing-price-slot {
  display: grid;
  align-content: start;
  min-height: 78px;
}

.pricing-tier-price {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  white-space: nowrap;
}

.pricing-tier-card .billing-caption {
  min-height: 21px;
  margin: 7px 0 0;
  color: #d8dde8;
  font-size: 0.8rem;
}

.pricing-tier-cta {
  width: 100%;
}

.pricing-tier-actions {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 102px;
}

.pricing-fact-list {
  display: grid;
  gap: 0;
  padding: 10px 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.pricing-fact-list li {
  display: grid;
  gap: 1px;
  padding: 8px 0;
}

.pricing-fact-list span {
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.pricing-fact-list strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.35;
}

.pricing-feature-list {
  align-content: start;
  gap: 10px;
  margin-top: 0;
}

.pricing-feature-list li {
  color: #d7dce7;
  font-size: 0.88rem;
  line-height: 1.42;
}

.pricing-feature-list li::before {
  background: var(--green);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.38);
}

.pricing-tier-card--enterprise .pricing-feature-list li::before {
  background: var(--pricing-ochre);
  box-shadow: 0 0 18px rgba(217, 164, 65, 0.38);
}

.pricing-footnote,
.pricing-roi-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-never-band {
  padding: 84px 0;
  border-top: 1px solid rgba(210, 0, 255, 0.3);
  border-bottom: 1px solid rgba(210, 0, 255, 0.3);
  background:
    radial-gradient(circle at 12% 0%, rgba(210, 0, 255, 0.22), transparent 34%),
    linear-gradient(125deg, rgba(92, 0, 111, 0.42), rgba(15, 17, 23, 0.96) 58%),
    var(--bg);
}

.pricing-band-heading {
  max-width: 620px;
  margin-bottom: 30px;
}

.pricing-band-heading h2,
.pricing-roi-heading h2 {
  margin-bottom: 0;
}

.pricing-never-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(210, 0, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(210, 0, 255, 0.24);
}

.pricing-never-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(210, 0, 255, 0.13), transparent 54%),
    rgba(22, 25, 36, 0.98);
}

.pricing-never-grid article:last-child {
  grid-column: 1 / -1;
}

.pricing-never-grid strong {
  color: #fff;
  font-size: 1.05rem;
}

.pricing-never-grid span {
  color: rgba(239, 242, 250, 0.72);
  font-size: 0.9rem;
  line-height: 1.48;
}

.pricing-enterprise-section {
  background:
    linear-gradient(125deg, rgba(217, 164, 65, 0.09), transparent 34%),
    transparent;
}

.pricing-enterprise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: start;
}

.pricing-enterprise-copy {
  position: sticky;
  top: 112px;
}

.pricing-enterprise-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.pricing-enterprise-copy .btn {
  margin-top: 10px;
}

.pricing-enterprise-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
}

.pricing-enterprise-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 21px;
  background: #171b25;
}

.pricing-enterprise-list span {
  grid-row: span 2;
  color: var(--pricing-ochre);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pricing-enterprise-list strong {
  color: #fff;
}

.pricing-enterprise-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-comparison-section .comparison-scroll {
  border-color: var(--line-strong);
  background: #151924;
}

.pricing-comparison--full {
  min-width: 980px;
  font-size: 0.9rem;
}

.pricing-comparison--full th,
.pricing-comparison--full td {
  padding: 14px 16px;
}

.pricing-comparison--full thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #181d29;
}

.pricing-comparison--full thead .enterprise-col {
  color: #ffe0a0;
  background: #29251e;
}

.pricing-comparison--full th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 230px;
  background: #171b26;
}

.pricing-comparison--full thead th:first-child {
  z-index: 3;
  background: #181d29;
}

.pricing-comparison--full tbody td:last-child {
  background: rgba(217, 164, 65, 0.045);
}

.pricing-comparison--full .pricing-table-group th {
  position: static;
  padding: 24px 16px 9px;
  border-bottom-color: rgba(217, 164, 65, 0.34);
  background: #151924;
  color: #e9bd67;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-roi-band {
  padding: 84px 0;
  border-top: 1px solid rgba(217, 164, 65, 0.2);
  border-bottom: 1px solid rgba(217, 164, 65, 0.2);
  background:
    linear-gradient(115deg, rgba(217, 164, 65, 0.14), transparent 48%),
    #171813;
}

.pricing-roi-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.pricing-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--line-strong);
}

.pricing-roi-grid article {
  display: grid;
  gap: 12px;
  min-height: 150px;
  padding: 26px;
  background: #1a1b18;
}

.pricing-roi-grid span {
  color: var(--muted);
  font-weight: 760;
}

.pricing-roi-grid strong {
  align-self: end;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.pricing-roi-grid .pricing-roi-highlight {
  background: var(--pricing-ochre);
}

.pricing-roi-highlight span,
.pricing-roi-highlight strong {
  color: #18140d;
}

.pricing-faq-layout > div:first-child > p:last-child {
  color: var(--muted);
}

.pricing-page .faq summary {
  min-height: 60px;
}

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

  .pricing-tier-heading {
    min-height: 96px;
  }
}

@media (max-width: 820px) {
  .pricing-intro-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-intro-row .pricing-toolbar {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .pricing-toggle-note {
    text-align: left;
  }

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

  .pricing-enterprise-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .pricing-enterprise-copy {
    position: static;
  }

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

  .pricing-roi-grid article {
    min-height: 120px;
  }
}

@media (max-width: 600px) {
  .pricing-hero {
    padding: 84px 0 68px;
  }

  .pricing-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .billing-switch-row {
    flex-wrap: wrap;
  }

  .pricing-tier-grid,
  .pricing-never-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tier-card {
    padding: 24px 20px 26px;
  }

  .pricing-tier-heading {
    min-height: 0;
  }

  .pricing-never-grid article {
    min-height: 0;
  }

  .pricing-enterprise-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 18px;
  }

  .pricing-comparison--full th:first-child {
    width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
