:root {
  --bg: #0f1923;
  --panel: #162233;
  --panel-2: #111b2b;
  --border: #243447;
  --text: #d4dce6;
  --muted: #8a9ab0;
  --blue: #4a75d4;
  --cyan: #5b8af0;
  --amber: #b8842f;
  --paper: #f6f8fa;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 12% -5%, rgba(91, 138, 240, 0.12), transparent 42%),
    radial-gradient(circle at 88% 5%, rgba(74, 117, 212, 0.14), transparent 40%),
    linear-gradient(180deg, #0b1420, #0f1923 14%, #0c1622 100%);
  color: var(--text);
  line-height: 1.46;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 52, 71, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 52, 71, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(15, 25, 35, 0) 0%, rgba(15, 25, 35, 0.16) 45%, rgba(11, 20, 32, 0.78) 100%);
  pointer-events: none;
  z-index: 0;
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

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

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 20, 32, 0.88);
  border-bottom: 1px solid rgba(36, 52, 71, 0.82);
  box-shadow: inset 0 1px 0 rgba(91, 138, 240, 0.06);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.45rem 0.35rem 0.25rem;
  border-radius: 12px;
  transition: background-color 120ms ease;
}

.wordmark:hover {
  background: rgba(255, 255, 255, 0.03);
}

.wordmark-logo {
  height: 2.18rem;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(91, 138, 240, 0.08));
}

.wordmark-mark {
  width: 1.9rem;
  height: 1.9rem;
  border: 2px solid rgba(91, 138, 240, 0.8);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.wordmark-mark::before,
.wordmark-mark::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(91, 138, 240, 0.85);
  border-right: 0;
  border-top: 0;
  border-radius: 0 0 0 100%;
}

.wordmark-mark::before {
  inset: 0.3rem 0.2rem 0.15rem 0.35rem;
}

.wordmark-mark::after {
  inset: 0.55rem 0.35rem 0.05rem 0.55rem;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark-text strong {
  font-size: 1rem;
  color: #cddae4;
}

.wordmark-text span {
  margin-top: 0.18rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(91, 138, 240, 0.03));
  color: var(--text);
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.32rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(91, 138, 240, 0), rgba(91, 138, 240, 0.95), rgba(91, 138, 240, 0));
}

.nav-cta {
  margin-left: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 11px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 150ms ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, rgba(91, 138, 240, 0.23), rgba(74, 117, 212, 0.26));
  border-color: rgba(91, 138, 240, 0.38);
  color: var(--paper);
  box-shadow: 0 8px 30px rgba(31, 55, 99, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(74, 117, 212, 0.035));
  border-color: var(--border);
  color: var(--text);
}

.btn-inline {
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
}

.hero {
  padding: 4.8rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(91, 138, 240, 0.45);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 16ch;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 650;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero p.lead {
  margin: 1rem 0 1.3rem;
  color: #c8d5de;
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.fine-print {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.005em;
}

.hero-panel,
.panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(15, 23, 36, 0.96), rgba(11, 16, 25, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), 0 24px 60px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.hero-panel {
  padding: 1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.stat {
  border: 1px solid rgba(36, 52, 71, 0.88);
  border-radius: 12px;
  padding: 0.85rem;
  background:
    linear-gradient(180deg, rgba(91, 138, 240, 0.025), rgba(91, 138, 240, 0)),
    rgba(255, 255, 255, 0.01);
}

.stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.mono {
  font-family: "Fira Code", "SFMono-Regular", Consolas, monospace;
}

.section {
  padding: 2.35rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 0.95rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.45;
}

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

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

.card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(91, 138, 240, 0.025), rgba(91, 138, 240, 0)),
    rgba(255, 255, 255, 0.015);
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.card h3 {
  margin-bottom: 0.45rem;
}

.card p {
  margin: 0;
  color: #92a4ba;
  line-height: 1.45;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfdbe4;
  border: 1px solid rgba(91, 138, 240, 0.25);
  background: rgba(91, 138, 240, 0.08);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-strip .card {
  min-height: 100%;
}

.metric-strip strong {
  display: block;
  font-size: 1.15rem;
}

.metric-strip span {
  color: var(--muted);
  font-size: 0.82rem;
}

.quote {
  position: relative;
  padding: 1rem 1rem 1rem 1.2rem;
}

.quote::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0.7rem;
  width: 2px;
  height: calc(100% - 1.8rem);
  background: linear-gradient(180deg, var(--cyan), rgba(91, 138, 240, 0));
}

.quote p {
  margin: 0;
  color: #d8e4eb;
  line-height: 1.45;
}

.quote footer {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.screen {
  position: relative;
  border: 1px solid rgba(36, 52, 71, 0.92);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(91, 138, 240, 0.03), rgba(91, 138, 240, 0)),
    linear-gradient(180deg, rgba(11, 17, 25, 0.95), rgba(9, 14, 20, 0.95));
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.screen::before {
  content: "";
  display: block;
  height: 0.45rem;
  background: linear-gradient(90deg, rgba(91, 138, 240, 0.22), rgba(91, 138, 240, 0.03) 35%, rgba(91, 138, 240, 0.15));
  border-bottom: 1px solid rgba(36, 52, 71, 0.72);
}

.screen img {
  width: 100%;
  display: block;
  background: #06101a;
  cursor: zoom-in;
}

.screen figcaption {
  padding: 0.75rem 0.85rem 0.85rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.42;
  border-top: 1px solid rgba(36, 52, 71, 0.72);
}

.screen figcaption strong {
  color: #d7e3ec;
}

.screen.is-clickable {
  cursor: zoom-in;
}

.screen.is-clickable:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(91, 138, 240, 0.55),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 11, 18, 0.74);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__panel {
  position: relative;
  width: min(96vw, 1400px);
  max-height: calc(100dvh - 2rem);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(91, 138, 240, 0.04), rgba(91, 138, 240, 0)),
    rgba(11, 20, 32, 0.95);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.lightbox__topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.55rem 0.55rem 0;
}

.lightbox__close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font: inherit;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.045);
}

.lightbox__image-wrap {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0.4rem 0.9rem 0.8rem;
}

.lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 8.5rem);
  object-fit: contain;
  border-radius: 10px;
  background: #09121d;
}

.lightbox__caption {
  padding: 0.75rem 0.95rem 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.lightbox__caption strong {
  color: #d7e3ec;
}

body.lightbox-open {
  overflow: hidden;
}

.portrait {
  margin: 0.75rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(91, 138, 240, 0.03), rgba(91, 138, 240, 0)),
    rgba(255, 255, 255, 0.012);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  max-width: 380px;
}

.portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 18%;
}

.portrait figcaption {
  padding: 0.65rem 0.8rem 0.8rem;
  border-top: 1px solid rgba(36, 52, 71, 0.7);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.portrait figcaption strong {
  color: #d7e3ec;
}

.screen-compact img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.screen-stack {
  display: grid;
  gap: 1rem;
}

.screen-stack .screen img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.tool-card-screen {
  margin-top: 0.15rem;
}

.tool-card-screen img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.mini-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-screen-grid .screen img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.process-step-card {
  position: relative;
  border: 1px solid rgba(36, 52, 71, 0.9);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(91, 138, 240, 0.035), rgba(91, 138, 240, 0)),
    rgba(255, 255, 255, 0.012);
  padding: 0.85rem;
  min-height: 100%;
}

.process-step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: calc(100% + 0.12rem);
  width: 0.62rem;
  height: 1px;
  background: rgba(91, 138, 240, 0.45);
}

.process-step-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 1.02rem;
  left: calc(100% + 0.72rem);
  width: 0.35rem;
  height: 0.35rem;
  border-top: 1px solid rgba(91, 138, 240, 0.45);
  border-right: 1px solid rgba(91, 138, 240, 0.45);
  transform: rotate(45deg);
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 138, 240, 0.4);
  color: #dbe5f2;
  font-size: 0.75rem;
  margin-bottom: 0.45rem;
  background: rgba(91, 138, 240, 0.08);
}

.process-step-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.32rem;
}

.process-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.process-kicker {
  color: #aab8c9;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.tool-grid .card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tool-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pill {
  border: 1px solid rgba(36, 52, 71, 0.95);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.01);
}

.pill:hover {
  border-color: rgba(91, 138, 240, 0.28);
  color: #c8d6eb;
}

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

.price-block {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(91, 138, 240, 0.02), rgba(91, 138, 240, 0)),
    rgba(255, 255, 255, 0.015);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.price-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.65rem;
}

.price-value {
  text-align: right;
}

.price-value strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.price-value span {
  font-size: 0.8rem;
  color: var(--muted);
}

.price-block p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.feature-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.feature-list li {
  color: #c9d6df;
  font-size: 0.89rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(91, 138, 240, 0.75);
}

.timeline {
  display: grid;
  gap: 0.75rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.012);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.timeline-step strong {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  border: 1px solid rgba(91, 138, 240, 0.4);
  color: var(--paper);
}

.timeline-step p {
  margin: 0.1rem 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.icon-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.mini-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: #aac0de;
  flex: 0 0 auto;
}

.mini-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.callout {
  border: 1px solid rgba(184, 132, 47, 0.28);
  background: linear-gradient(180deg, rgba(184, 132, 47, 0.07), rgba(184, 132, 47, 0.04));
  border-radius: 12px;
  padding: 0.85rem;
  color: #e5d2ad;
  font-size: 0.86rem;
  line-height: 1.42;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.page-hero {
  padding: 3.6rem 0 1.4rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.5;
}

.stack {
  display: grid;
  gap: 1rem;
}

form {
  display: grid;
  gap: 0.75rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #d2dce4;
}

input,
select,
textarea {
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(74, 117, 212, 0.03));
  color: var(--text);
  border: 1px solid rgba(36, 52, 71, 0.95);
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
  font: inherit;
  font-size: 0.94rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(91, 138, 240, 0.62);
  box-shadow: 0 0 0 3px rgba(91, 138, 240, 0.12);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.radio-group {
  display: grid;
  gap: 0.45rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  border: 1px solid rgba(36, 52, 71, 0.9);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.01);
}

.radio-option input {
  width: auto;
  margin-top: 0.18rem;
}

.radio-option small {
  display: block;
  color: var(--muted);
  margin-top: 0.15rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.form-status {
  margin: 0;
  min-height: 1.1rem;
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.35;
}

.form-status.is-pending {
  color: #b7c6db;
}

.form-status.is-success {
  color: #86d49f;
}

.form-status.is-error {
  color: #f2b0b0;
}

.email-box {
  border: 1px dashed rgba(91, 138, 240, 0.35);
  background: rgba(91, 138, 240, 0.06);
  border-radius: 12px;
  padding: 0.8rem;
}

.email-box strong {
  display: block;
  margin-bottom: 0.25rem;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(36, 52, 71, 0.82);
  padding: 1.1rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(91, 138, 240, 0.03), rgba(91, 138, 240, 0)),
    transparent;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav a {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.btn {
  font-weight: 600;
  letter-spacing: 0.005em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

.footer-links a:hover {
  color: #d5e2ef;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand strong {
  color: #dce7f2;
}

.footer-brand-mark {
  width: 1.95rem;
  height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(91, 138, 240, 0.26);
  background: linear-gradient(180deg, rgba(91, 138, 240, 0.08), rgba(74, 117, 212, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-brand-mark img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

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

.divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 52, 71, 0), rgba(36, 52, 71, 0.9), rgba(36, 52, 71, 0));
  margin: 0.4rem 0 0.75rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-panel,
  .metric-strip,
  .grid-3,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .pricing-grid,
  .mini-screen-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-step-card::before,
  .process-step-card::after {
    display: none;
  }

  .metric-strip {
    gap: 0.6rem;
  }
}

@media (max-width: 820px) {
  .wordmark-logo {
    height: 1.85rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem;
    border: 1px solid rgba(36, 52, 71, 0.9);
    background:
      linear-gradient(180deg, rgba(91, 138, 240, 0.03), rgba(91, 138, 240, 0)),
      rgba(8, 12, 18, 0.98);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.75rem 0.85rem;
  }

  .site-nav a.active::after {
    bottom: 0.42rem;
  }

  .nav-cta {
    display: none;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .section {
    padding: 1.8rem 0;
  }
}

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

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }

  .lightbox {
    backdrop-filter: none;
  }
}
