:root {
  --ink: #07100e;
  --ink-2: #0d1815;
  --ink-3: #13241f;
  --paper: #f5f2ea;
  --paper-2: #ebe6d8;
  --muted: #9fb1aa;
  --muted-dark: #52615c;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(7, 16, 14, 0.14);
  --text: #f3fff9;
  --text-dark: #111d19;
  --green: #6be8b8;
  --green-2: #2fbf8f;
  --cyan: #65d8f0;
  --amber: #e0b15f;
  --rose: #d88a8a;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
canvas {
  display: block;
}

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

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

button {
  cursor: pointer;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--ink);
  background: var(--green);
  border-radius: var(--radius);
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--ink);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(var(--max), calc(100% - 32px));
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  transform: translateX(-50%);
  background: rgba(7, 16, 14, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.24);
}

.site-header.scrolled {
  background: rgba(7, 16, 14, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 720;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(107, 232, 184, 0.46);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, var(--green), var(--cyan) 55%, var(--amber));
  box-shadow: 0 0 28px rgba(107, 232, 184, 0.16);
}

.brand-name {
  font-size: 1.04rem;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: rgba(243, 255, 249, 0.78);
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(107, 232, 184, 0.42);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--green);
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.section-dark {
  color: var(--text);
  background:
    radial-gradient(circle at 78% 18%, rgba(107, 232, 184, 0.11), transparent 28rem),
    linear-gradient(180deg, var(--ink), var(--ink-2));
}

.section-light {
  color: var(--text-dark);
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.055) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, rgba(7, 16, 14, 0.045) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
}

.hero {
  position: relative;
  min-height: 700px;
  padding: 112px 0 20px;
}

.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 14, 0.92));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1.02fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 3.42rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 24px;
  color: rgba(243, 255, 249, 0.78);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 760;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-primary {
  border: 1px solid rgba(107, 232, 184, 0.54);
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 16px 44px rgba(47, 191, 143, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 570px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.proof-strip div {
  padding: 13px 14px;
}

.proof-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-strip strong {
  display: block;
  font-size: 1.36rem;
}

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

.mission-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(8, 17, 15, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.mission-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(101, 216, 240, 0.1) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(0deg, rgba(107, 232, 184, 0.08) 1px, transparent 1px) 0 0 / 52px 52px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
  pointer-events: none;
}

.console-topbar {
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.88rem;
}

.console-topbar strong {
  margin-left: auto;
  color: var(--green);
  font-size: 0.82rem;
}

.window-dots {
  display: inline-flex;
  gap: 6px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
}

.window-dots span:nth-child(2) {
  background: var(--amber);
}

.window-dots span:nth-child(3) {
  background: var(--green);
}

.console-grid,
.feed-panel,
.score-panel {
  position: relative;
  z-index: 1;
}

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

.metric-tile {
  min-height: 84px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 16, 14, 0.58);
}

.metric-tile span,
.metric-tile small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-tile strong {
  display: block;
  margin: 6px 0 2px;
  font-size: 1.34rem;
}

.feed-panel {
  margin: 0 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 16, 14, 0.62);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-heading span {
  font-weight: 760;
}

.panel-heading strong {
  color: var(--green);
  font-size: 0.82rem;
}

.feed-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: start;
  padding: 9px 12px;
}

.feed-row + .feed-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feed-row strong {
  display: block;
  font-size: 0.94rem;
}

.feed-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.36;
}

.feed-row time {
  color: var(--muted);
  font-size: 0.8rem;
}

.feed-badge {
  display: inline-flex;
  width: 46px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.feed-badge.high {
  color: var(--ink);
  background: var(--green);
}

.feed-badge.exec {
  color: var(--ink);
  background: var(--amber);
}

.feed-badge.intent {
  color: var(--ink);
  background: var(--cyan);
}

.score-panel {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 0 12px 10px;
}

.score-ring {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--ink) 52%, transparent 54%),
    conic-gradient(var(--green) 0deg 313deg, rgba(255, 255, 255, 0.12) 313deg 360deg);
}

.score-ring span {
  font-size: 1.46rem;
  font-weight: 820;
  line-height: 1;
}

.score-ring small {
  color: var(--muted);
  font-size: 0.76rem;
}

.score-list {
  display: grid;
  gap: 7px;
}

.score-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(243, 255, 249, 0.84);
  font-size: 0.84rem;
}

.score-list b {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(107, 232, 184, 0.6);
}

.logo-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a1411;
}

.logo-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  color: var(--muted);
}

.logo-inner strong {
  flex: 0 0 auto;
  color: rgba(243, 255, 249, 0.82);
  font-size: 0.94rem;
}

.thesis {
  padding: 108px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.two-column p {
  color: #36423e;
  font-size: 1.05rem;
}

.platform {
  padding: 112px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.narrow {
  max-width: 680px;
}

.platform-tabs {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.tab-list {
  display: grid;
  gap: 8px;
  align-self: start;
}

.tab-button {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(243, 255, 249, 0.72);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  font-weight: 740;
}

.tab-button.active,
.tab-button:hover,
.tab-button:focus-visible {
  color: var(--text);
  border-color: rgba(107, 232, 184, 0.44);
  background: rgba(107, 232, 184, 0.12);
  outline: none;
}

.tab-panels {
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.tab-panel {
  display: none;
  min-height: 380px;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
}

.tab-panel.active {
  display: grid;
}

.tab-panel p {
  color: var(--muted);
}

.mini-graph,
.matrix,
.sequence-stack,
.forecast-bars {
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 34px 34px,
    rgba(7, 16, 14, 0.56);
}

.mini-graph {
  position: relative;
  overflow: hidden;
}

.mini-graph::before {
  content: "";
  position: absolute;
  inset: 18% 8%;
  border: 1px solid rgba(101, 216, 240, 0.28);
  transform: skewY(-8deg);
}

.mini-graph span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 28px rgba(107, 232, 184, 0.78);
  animation: pulse 2.6s ease-in-out infinite;
  animation-delay: var(--d);
}

.matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
  padding: 18px;
}

.matrix span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.matrix strong {
  color: var(--green);
  font-size: 1.5rem;
}

.sequence-stack {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 28px;
}

.sequence-stack span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.sequence-stack span:nth-child(2) {
  border-color: var(--cyan);
}

.sequence-stack span:nth-child(3) {
  border-color: var(--amber);
}

.sequence-stack span:nth-child(4) {
  border-color: var(--rose);
}

.forecast-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  padding: 28px;
}

.forecast-bars span {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: end;
  justify-content: center;
}

.forecast-bars span::before {
  content: "";
  width: 100%;
  height: var(--h);
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(180deg, var(--green), var(--cyan));
}

.forecast-bars b {
  position: absolute;
  bottom: 10px;
  color: var(--ink);
}

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

.feature-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.feature-kicker {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 820;
}

.feature-card p {
  color: var(--muted);
}

.workflow {
  padding: 108px 0;
}

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

.workflow-steps article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
}

.workflow-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
}

.workflow-steps p,
.security p,
.faq p {
  color: #42504b;
}

.calculator {
  padding: 112px 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
}

.calc-grid p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.05rem;
}

.calc-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.calc-panel label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.calc-panel label span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 700;
}

.calc-panel input[type="range"] {
  accent-color: var(--green);
}

.calc-panel strong {
  text-align: right;
}

.calc-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.calc-result span {
  font-weight: 760;
}

.calc-result strong {
  font-size: 2rem;
}

.security {
  padding: 108px 0;
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 54px;
}

.security-list {
  display: grid;
  gap: 14px;
}

.security-list article {
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.contact {
  padding: 112px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-grid p {
  max-width: 560px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(7, 16, 14, 0.7);
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(107, 232, 184, 0.7);
  outline: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.faq {
  padding: 108px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 54px;
}

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

.faq-list details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.site-footer {
  padding: 58px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #07100e;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: var(--muted);
}

.footer-domain {
  color: var(--green);
  font-weight: 760;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.98rem;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero [data-reveal] {
  opacity: 1;
  transform: none;
}

.pricing-hero [data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  color: var(--text-dark);
  background: var(--paper);
}

.legal-page .site-shell {
  background: var(--paper);
}

.legal-header {
  position: sticky;
  top: 14px;
  background: rgba(7, 16, 14, 0.9);
}

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

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 70px;
}

.legal-document {
  padding: 46px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.legal-document h1 {
  color: var(--text-dark);
  font-size: 3rem;
}

.legal-document h2 {
  margin-top: 34px;
  color: var(--text-dark);
  font-size: 1.32rem;
}

.legal-document p,
.legal-document li {
  color: #34433e;
}

.legal-document a {
  color: #0d755b;
  font-weight: 760;
}

.legal-updated,
.legal-note {
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.not-found {
  text-align: center;
}

.not-found .brand {
  justify-content: center;
  margin-bottom: 34px;
}

.compact-footer {
  padding-top: 24px;
}

.pricing-hero {
  padding: 150px 0 82px;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: 48px;
  align-items: center;
}

.pricing-hero h1 {
  max-width: 820px;
  font-size: 3.5rem;
}

.pricing-summary {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.pricing-summary span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-summary strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 2rem;
}

.pricing-summary p {
  color: var(--muted);
}

.pricing-section {
  padding: 96px 0;
}

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

.pricing-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.pricing-card.featured-price {
  border-color: rgba(47, 191, 143, 0.46);
  background: #0b1714;
  color: var(--text);
  box-shadow: var(--shadow);
}

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

.pricing-card p:not(.eyebrow) {
  color: #42504b;
}

.featured-price p:not(.eyebrow),
.featured-price li {
  color: var(--muted);
}

.price {
  margin-bottom: 12px;
  color: var(--text-dark) !important;
  font-size: 2.25rem;
  font-weight: 860;
}

.featured-price .price {
  color: var(--text) !important;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: #42504b;
}

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

.pricing-card .button {
  margin-top: auto;
}

.dark-button {
  color: var(--text-dark);
  border-color: var(--line-dark);
  background: rgba(7, 16, 14, 0.04);
}

.pricing-detail {
  padding: 104px 0;
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.pricing-detail p {
  color: var(--muted);
}

.pricing-factors {
  display: grid;
  gap: 12px;
}

.pricing-factors article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

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

.pricing-factors strong {
  margin-bottom: 6px;
}

.pricing-factors span {
  color: var(--muted);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.45);
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .hero-grid,
  .two-column,
  .calc-grid,
  .security-grid,
  .contact-grid,
  .faq-grid,
  .pricing-hero-grid,
  .pricing-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

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

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

  .platform-tabs {
    grid-template-columns: 1fr;
  }

  .tab-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .tab-button {
    min-width: 160px;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(7, 16, 14, 0.96);
  }

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

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

  .header-cta {
    display: none;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 1.86rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .proof-strip,
  .console-grid,
  .workflow-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .console-grid {
    gap: 8px;
  }

  .tab-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .section-inner,
  .legal-main {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    width: calc(100% - 24px);
    top: 10px;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 0;
  }

  h1 {
    font-size: 2.05rem;
  }

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

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

  .proof-strip div {
    padding: 10px 8px;
  }

  .proof-strip div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .proof-strip strong {
    font-size: 1.08rem;
  }

  .proof-strip span {
    font-size: 0.72rem;
  }

  .mission-console {
    display: none;
  }

  .logo-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    align-items: stretch;
    overflow: visible;
    padding: 16px 0;
  }

  .logo-inner span {
    grid-column: 1 / -1;
  }

  .logo-inner strong {
    min-height: 36px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.84rem;
    white-space: normal;
  }

  .thesis,
  .platform,
  .workflow,
  .calculator,
  .security,
  .contact,
  .faq {
    padding: 76px 0;
  }

  .matrix {
    grid-template-columns: 1fr;
  }

  .calc-panel {
    padding: 18px;
  }

  .calc-panel label {
    grid-template-columns: 1fr;
  }

  .calc-panel strong {
    text-align: left;
  }

  .calc-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header {
    position: static;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    transform: none;
  }

  .legal-main {
    padding-top: 36px;
  }

  .legal-document {
    padding: 24px;
  }

  .legal-document h1 {
    font-size: 2.1rem;
  }

  .pricing-hero {
    padding: 112px 0 64px;
  }

  .pricing-hero h1 {
    font-size: 2.2rem;
  }

  .pricing-section,
  .pricing-detail {
    padding: 76px 0;
  }
}

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

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