:root {
  --bg-0: #03060d;
  --bg-1: #050b14;
  --bg-2: #091321;
  --panel: #0f1d31;
  --panel-strong: #152843;
  --line: rgba(130, 170, 220, 0.26);
  --line-soft: rgba(130, 170, 220, 0.14);
  --text: #e6f0ff;
  --text-soft: #adbed4;
  --text-muted: #7f92ad;
  --accent: #3fe3ff;
  --accent-strong: #23bddf;
  --warm: #f8c26f;
  --good: #79edb7;
  --bad: #ff8c90;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 28px 72px rgba(0, 3, 10, 0.58);
  --shadow-md: 0 14px 36px rgba(0, 3, 10, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  line-height: 1.64;
  background:
    radial-gradient(circle at 16% -8%, rgba(63, 227, 255, 0.09), transparent 34%),
    radial-gradient(circle at 84% -18%, rgba(248, 194, 111, 0.08), transparent 36%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 48%, var(--bg-2) 100%);
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.86rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.18;
  text-wrap: balance;
}

p {
  margin: 0;
}

code,
pre,
.inline-code,
.code-line,
.badge,
.eyebrow,
.helper,
.account-chip,
.footer-links a,
.site-nav a {
  font-family: "JetBrains Mono", monospace;
}

main {
  overflow: hidden;
}

.container,
.section,
.site-header,
.site-footer {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  margin-top: 5rem;
}

.section-tight {
  margin-top: 3.2rem;
}

.mt-xs {
  margin-top: 0.8rem;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.2rem;
}

.badge,
.eyebrow {
  display: inline-block;
  margin-bottom: 0.82rem;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lead {
  color: var(--text-soft);
  max-width: 68ch;
  font-size: 1.02rem;
  line-height: 1.66;
}

.code-line {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  max-width: min(100%, 780px);
  border: 1px solid rgba(140, 192, 238, 0.34);
  border-radius: 999px;
  background: rgba(9, 30, 49, 0.74);
  color: #caebff;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 0.46rem 0.86rem;
  overflow-x: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.74rem 1.3rem;
  transition: transform 170ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.button-primary {
  color: #042237;
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 25px rgba(48, 221, 255, 0.29);
}

.button-primary:hover {
  box-shadow: 0 14px 33px rgba(48, 221, 255, 0.35);
}

.button-ghost {
  color: #e3f3ff;
  border-color: var(--line);
  background: rgba(12, 22, 36, 0.7);
}

.button-ghost:hover {
  border-color: rgba(176, 221, 255, 0.58);
}

.button-warm {
  color: #322100;
  background: linear-gradient(145deg, #ffe1b0, var(--warm));
  box-shadow: 0 10px 22px rgba(248, 194, 111, 0.25);
}

.button-small {
  font-size: 0.84rem;
  padding: 0.56rem 0.94rem;
}

.button-block {
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.24rem 0.58rem;
  border: 1px solid transparent;
}

.pill-good {
  color: #9cf0c8;
  border-color: rgba(121, 237, 183, 0.35);
  background: rgba(121, 237, 183, 0.13);
}

.pill-mid {
  color: #ffdca5;
  border-color: rgba(248, 194, 111, 0.35);
  background: rgba(248, 194, 111, 0.13);
}

.pill-bad {
  color: #ffc2c5;
  border-color: rgba(255, 140, 144, 0.35);
  background: rgba(255, 140, 144, 0.12);
}

.site-header {
  position: sticky;
  top: 0.72rem;
  z-index: 30;
  margin-top: 0.72rem;
  padding: 0.78rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(6, 13, 22, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 3, 10, 0.5);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  font-size: 0.96rem;
  font-weight: 600;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #04233a;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
}

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

.site-nav a {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 0.42rem 0.8rem;
}

.hero {
  margin-top: 3.4rem;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  align-items: start;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 88% -34%, rgba(63, 227, 255, 0.16), transparent 48%),
    linear-gradient(155deg, rgba(11, 23, 37, 0.92), rgba(7, 14, 25, 0.96));
  box-shadow: var(--shadow-md);
  padding: clamp(1.1rem, 2.2vw, 1.7rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -84px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(158, 206, 252, 0.18);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 24px;
  width: 180px;
  height: 74px;
  border-radius: 999px;
  border: 1px solid rgba(63, 227, 255, 0.26);
  background: linear-gradient(90deg, rgba(63, 227, 255, 0.08), rgba(63, 227, 255, 0.22));
}

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

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.15rem, 4.1vw, 3.35rem);
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0.78rem;
}

.hero-copy .lead {
  max-width: 60ch;
}

.hero .panel {
  align-self: start;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.1rem;
}

.check-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.check-list li {
  position: relative;
  padding-left: 1.26rem;
  color: #d0e2f3;
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.53rem;
  left: 0.12rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 5px rgba(121, 237, 183, 0.08);
}

.panel,
.card,
.form-card,
.summary-card,
.widget,
.download-card,
.legal {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(13, 26, 43, 0.9), rgba(8, 16, 28, 0.95));
  box-shadow: var(--shadow-md);
}

.panel,
.card,
.form-card,
.summary-card,
.widget,
.download-card {
  padding: 1.2rem;
}

.panel::before,
.card::before,
.form-card::before,
.summary-card::before,
.widget::before,
.download-card::before,
.legal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(214, 239, 255, 0.05);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.96rem;
}

.panel-title {
  font-size: 1.04rem;
}

.mini-note {
  color: var(--text-muted);
  font-size: 0.84rem;
}

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

.stat-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(8, 22, 35, 0.6);
  padding: 0.8rem;
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.stat-card strong {
  display: inline-block;
  margin-top: 0.28rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.26rem;
}

.strip-list {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.strip-list span {
  border: 1px solid rgba(140, 192, 238, 0.3);
  border-radius: 999px;
  background: rgba(14, 37, 59, 0.58);
  color: #c6e6ff;
  font-size: 0.76rem;
  padding: 0.28rem 0.62rem;
}

.logo-cloud {
  margin-top: 3.6rem;
  text-align: center;
}

.logo-cloud p {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.logo-row {
  margin-top: 0.76rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.56rem;
}

.logo-row span {
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(12, 33, 53, 0.58);
  color: #cbe3f9;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.42rem 0.78rem;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  max-width: 30ch;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.table-head {
  margin-bottom: 1rem;
}

.table-head h2 {
  max-width: 34ch;
  margin-bottom: 0.35rem;
}

.table-head .lead {
  max-width: 76ch;
  font-size: 0.95rem;
}

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

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

.card h3,
.download-card h3,
.widget h3,
.form-card h2,
.summary-card h3 {
  font-size: 1.12rem;
}

.card p,
.download-card p,
.summary-card p,
.widget p,
.legal p,
.legal li {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.card-hover {
  transition: transform 180ms ease, border-color 200ms ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 221, 255, 0.44);
}

.callout {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% -40%, rgba(63, 227, 255, 0.14), transparent 56%),
    linear-gradient(145deg, rgba(12, 24, 38, 0.93), rgba(8, 15, 25, 0.96));
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.2rem;
  align-items: start;
}

.trust-strip {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-chip {
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(8, 18, 30, 0.74);
  box-shadow: var(--shadow-md);
  padding: 0.9rem;
  display: grid;
  gap: 0.58rem;
}

.trust-chip p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cta-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 100% -30%, rgba(63, 227, 255, 0.18), transparent 52%),
    rgba(7, 16, 28, 0.72);
  padding: 1rem;
  display: grid;
  gap: 0.86rem;
}

.cta-visual-title {
  font-size: 0.78rem;
  color: #cfe8ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-bars {
  min-height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 0.46rem;
}

.cta-bars span {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  border: 1px solid rgba(63, 227, 255, 0.34);
  background: linear-gradient(180deg, rgba(63, 227, 255, 0.48), rgba(63, 227, 255, 0.1));
}

.cta-bars span:nth-child(1) {
  height: 42%;
}

.cta-bars span:nth-child(2) {
  height: 74%;
}

.cta-bars span:nth-child(3) {
  height: 56%;
}

.cta-bars span:nth-child(4) {
  height: 90%;
}

.cta-bars span:nth-child(5) {
  height: 67%;
}

.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.cta-tags span {
  border-radius: 999px;
  border: 1px solid rgba(140, 192, 238, 0.28);
  background: rgba(14, 30, 47, 0.72);
  color: #cae5fb;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  padding: 0.24rem 0.56rem;
}

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

.input-group,
.form-grid,
.risk-grid {
  display: grid;
  gap: 0.7rem;
}

.input-group label,
.form-grid label,
.risk-grid label {
  color: #bad3ea;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(140, 192, 238, 0.36);
  background: rgba(7, 16, 27, 0.86);
  color: var(--text);
  font-size: 0.94rem;
  padding: 0.76rem 0.86rem;
}

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

.input::placeholder,
textarea::placeholder {
  color: rgba(156, 181, 204, 0.84);
}

.input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(48, 221, 255, 0.68);
  box-shadow: 0 0 0 4px rgba(48, 221, 255, 0.15);
}

input[readonly] {
  opacity: 0.88;
  cursor: not-allowed;
}

.table-wrap,
.matrix {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(8, 24, 39, 0.72);
  box-shadow: var(--shadow-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  text-align: left;
  padding: 0.94rem 0.9rem;
  border-bottom: 1px solid rgba(140, 192, 238, 0.14);
}

th {
  color: #cae6fd;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: #d3e8fb;
  font-size: 0.9rem;
}

.page-hero {
  margin-top: 3.4rem;
  position: relative;
  display: grid;
  gap: 0.9rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 92% -30%, rgba(63, 227, 255, 0.15), transparent 54%),
    linear-gradient(150deg, rgba(11, 21, 34, 0.94), rgba(7, 13, 22, 0.96));
  box-shadow: var(--shadow-md);
  padding: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -72px;
  top: -86px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(154, 202, 248, 0.16);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 170px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(63, 227, 255, 0.2);
  background: linear-gradient(90deg, rgba(63, 227, 255, 0.04), rgba(63, 227, 255, 0.18));
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero > div {
  display: grid;
  gap: 0.9rem;
  max-width: 74ch;
}

.page-hero > .page-hero-layout {
  max-width: none;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.page-hero-copy {
  display: grid;
  gap: 0.82rem;
  align-content: start;
}

.page-hero h1 {
  max-width: 20ch;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

.hero-visual-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 94% -28%, rgba(248, 194, 111, 0.2), transparent 50%),
    rgba(8, 18, 30, 0.78);
  padding: 0.92rem;
  display: grid;
  gap: 0.86rem;
}

.hero-visual-title {
  margin: 0;
  color: #cfe7fd;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 0.72rem;
}

.hero-visual-grid span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-visual-grid span:nth-child(odd) {
  color: #e7f4ff;
  font-weight: 600;
}

.hero-visual-track {
  border-radius: 999px;
  border: 1px solid rgba(140, 192, 238, 0.28);
  background: rgba(10, 24, 39, 0.82);
  padding: 0.2rem;
}

.hero-visual-track span {
  display: block;
  width: 76%;
  height: 0.44rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(63, 227, 255, 0.9), rgba(248, 194, 111, 0.9));
}

.alert-banner {
  display: none;
  border-radius: 12px;
  border: 1px solid rgba(248, 194, 111, 0.52);
  background: rgba(248, 194, 111, 0.1);
  color: #ffdca8;
  font-size: 0.86rem;
  line-height: 1.58;
  padding: 0.74rem 0.86rem;
}

.alert-banner.show {
  display: block;
}

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

.price-card {
  position: relative;
}

.price-card ul {
  list-style: none;
  margin: 0.95rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.44rem;
}

.price-card li {
  position: relative;
  padding-left: 0.92rem;
  color: #d2e6f9;
  font-size: 0.9rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--warm);
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.price-value strong {
  font-size: 2.08rem;
  font-family: "Space Grotesk", sans-serif;
}

.price-value strong::before {
  content: "$";
  font-size: 1.02rem;
  margin-right: 0.08rem;
  vertical-align: 0.45rem;
}

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

.tag {
  position: absolute;
  right: 0.95rem;
  top: 0.88rem;
  color: #def7ff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured {
  border-color: rgba(48, 221, 255, 0.54);
  box-shadow: var(--shadow-lg);
}

.billing-toggle {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 1.1rem;
  background: rgba(10, 27, 43, 0.86);
}

.billing-toggle button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.56rem 1rem;
}

.billing-toggle button.is-active {
  color: #d9f6ff;
  background: rgba(48, 221, 255, 0.16);
}

.matrix table {
  min-width: 720px;
}

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

.option-card {
  display: grid;
  gap: 0.74rem;
}

.option-card h3 {
  margin-bottom: 0.2rem;
}

.option-wrap {
  border-radius: 12px;
}

.option-table {
  min-width: 560px;
}

.option-table td:first-child {
  color: #e6f3ff;
  font-weight: 600;
}

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

.plan-option {
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% -35%, rgba(63, 227, 255, 0.15), transparent 54%),
    rgba(8, 18, 30, 0.78);
  color: var(--text);
  display: grid;
  gap: 0.28rem;
  cursor: pointer;
  font: inherit;
  text-align: left;
  padding: 0.72rem;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.plan-option strong {
  font-size: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
}

.plan-option span {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-family: "JetBrains Mono", monospace;
}

.plan-option:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 227, 255, 0.5);
}

.plan-option.is-active {
  border-color: rgba(63, 227, 255, 0.7);
  box-shadow: 0 10px 30px rgba(63, 227, 255, 0.2);
}

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

.billing-option {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 18, 30, 0.82);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  padding: 0.72rem;
  display: grid;
  gap: 0.3rem;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.billing-option span {
  color: var(--warm);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.billing-option:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 194, 111, 0.5);
}

.billing-option.is-active {
  border-color: rgba(248, 194, 111, 0.72);
  box-shadow: 0 10px 24px rgba(248, 194, 111, 0.18);
}

.checkout-visual-card {
  overflow: hidden;
}

.checkout-glow-graph {
  margin-top: 1rem;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 82% -30%, rgba(63, 227, 255, 0.2), transparent 54%),
    rgba(8, 18, 31, 0.84);
  min-height: 88px;
  padding: 0.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: end;
}

.checkout-glow-graph span {
  border-radius: 8px 8px 4px 4px;
  border: 1px solid rgba(63, 227, 255, 0.34);
  background: linear-gradient(180deg, rgba(63, 227, 255, 0.48), rgba(63, 227, 255, 0.08));
}

.checkout-glow-graph span:nth-child(1) {
  height: 58%;
}

.checkout-glow-graph span:nth-child(2) {
  height: 86%;
}

.checkout-glow-graph span:nth-child(3) {
  height: 46%;
}

.checkout-glow-graph span:nth-child(4) {
  height: 74%;
}

.status-box a {
  color: #d9f3ff;
  text-decoration: underline;
}

.checkout-layout {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 1rem;
}

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

.status-box {
  min-height: 50px;
  border-radius: 12px;
  border: 1px dashed rgba(140, 192, 238, 0.4);
  background: rgba(9, 24, 38, 0.74);
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.58;
  padding: 0.68rem 0.84rem;
  display: grid;
  align-items: center;
}

.status-box.good {
  border-color: rgba(121, 237, 183, 0.45);
  background: rgba(121, 237, 183, 0.09);
  color: #a9efcb;
}

.status-box.warn {
  border-color: rgba(248, 194, 111, 0.55);
  background: rgba(248, 194, 111, 0.1);
  color: #ffd8a1;
}

.helper {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.66;
}

.inline-code {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(140, 192, 238, 0.32);
  background: rgba(20, 47, 71, 0.56);
  color: #d9f1ff;
  font-size: 0.82em;
  padding: 0.1rem 0.4rem;
}

.success-stack {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.app-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 1rem;
}

.signal-list {
  display: grid;
  gap: 0.68rem;
}

.signal-row {
  border-radius: 11px;
  border: 1px solid var(--line-soft);
  background: rgba(9, 23, 37, 0.56);
  padding: 0.75rem;
  display: grid;
  gap: 0.48rem;
}

.signal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.signal-pair {
  font-size: 0.98rem;
  font-family: "Space Grotesk", sans-serif;
}

.signal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.signal-meta strong {
  color: #d6f2ff;
}

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

.kpi {
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(8, 22, 35, 0.62);
  padding: 0.7rem;
}

.kpi span {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kpi strong {
  display: block;
  margin-top: 0.22rem;
  font-size: 1.16rem;
  font-family: "Space Grotesk", sans-serif;
}

.result-chip {
  border-radius: 10px;
  border: 1px solid rgba(121, 237, 183, 0.38);
  background: rgba(121, 237, 183, 0.1);
  color: #abf0cd;
  font-size: 0.86rem;
  line-height: 1.6;
  padding: 0.62rem 0.72rem;
}

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

.download-card {
  display: grid;
  gap: 0.72rem;
}

.account-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.account-chip {
  border-radius: 999px;
  border: 1px solid rgba(140, 192, 238, 0.34);
  background: rgba(12, 33, 54, 0.65);
  color: #cde4fb;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0.36rem 0.72rem;
}

.account-chip strong {
  color: #f0f8ff;
  font-size: 0.8rem;
}

.contact-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 1rem;
}

.legal {
  padding: 1.26rem;
  display: grid;
  gap: 1.24rem;
}

.legal section {
  display: grid;
  gap: 0.52rem;
}

.legal h2 {
  font-size: 1.14rem;
}

.legal ul {
  margin: 0;
  padding-left: 1rem;
}

.site-footer {
  margin-top: 4.5rem;
  margin-bottom: 1.8rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

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

.footer-links a {
  color: #cbe2f7;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.84rem;
  max-width: 96ch;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1080px) {
  .hero,
  .page-hero-layout,
  .trust-strip,
  .auth-grid,
  .callout,
  .checkout-layout,
  .app-grid,
  .contact-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

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

  .grid-3,
  .pricing-grid,
  .plan-selector,
  .billing-selector,
  .download-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 780px) {
  .site-header {
    top: 0.52rem;
    border-radius: 16px;
    align-items: flex-start;
  }

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

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.68rem;
    padding-top: 0.66rem;
  }

  .section {
    margin-top: 4rem;
  }

  .hero {
    margin-top: 3.1rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .code-line {
    border-radius: 12px;
    padding: 0.56rem 0.74rem;
  }

  .stat-grid,
  .kpi-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .callout {
    padding: 1.4rem;
  }

  th,
  td {
    padding: 0.76rem;
  }
}

/* --- Production polish overrides --- */
[hidden] {
  display: none !important;
}

.text-link {
  color: #9edfff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.text-link:hover {
  color: #cff2ff;
}

.hero-visual-card {
  align-content: start;
}

.plan-fit-list {
  display: grid;
  gap: 0.56rem;
}

.plan-fit-item {
  border: 1px solid rgba(140, 192, 238, 0.22);
  border-radius: 12px;
  background: rgba(10, 24, 40, 0.66);
  padding: 0.62rem 0.72rem;
  display: grid;
  gap: 0.26rem;
}

.plan-fit-item-pro {
  border-color: rgba(63, 227, 255, 0.52);
  box-shadow: 0 8px 22px rgba(63, 227, 255, 0.15);
}

.plan-fit-name {
  color: #e8f5ff;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.plan-fit-copy {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

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

.bias-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.18rem 0.56rem;
  border: 1px solid transparent;
  font-size: 0.71rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.bias-long {
  color: #9ff1cc;
  border-color: rgba(121, 237, 183, 0.35);
  background: rgba(121, 237, 183, 0.12);
}

.bias-short {
  color: #ffc8bf;
  border-color: rgba(255, 140, 144, 0.38);
  background: rgba(255, 140, 144, 0.12);
}

table[data-home-live-table] tbody tr {
  transition: background 180ms ease, border-color 180ms ease;
}

table[data-home-live-table] tbody tr.signal-row-long {
  background: linear-gradient(90deg, rgba(121, 237, 183, 0.06), rgba(10, 27, 43, 0.14));
}

table[data-home-live-table] tbody tr.signal-row-short {
  background: linear-gradient(90deg, rgba(255, 140, 144, 0.06), rgba(10, 27, 43, 0.14));
}

table[data-home-live-table] td[data-field="price"] {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.price-up {
  color: #93efbe !important;
}

.price-down {
  color: #ffb3b6 !important;
}

.price-flat {
  color: #d8ebff !important;
}

.signal-row {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% -30%, rgba(63, 227, 255, 0.1), transparent 56%),
    rgba(9, 23, 37, 0.7);
  padding: 0.8rem 0.84rem 0.86rem 0.96rem;
  display: grid;
  gap: 0.6rem;
}

.signal-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  bottom: 0.45rem;
  width: 3px;
  border-radius: 8px;
  background: rgba(176, 214, 246, 0.4);
}

.signal-row-long::before {
  background: linear-gradient(180deg, rgba(121, 237, 183, 0.9), rgba(121, 237, 183, 0.35));
}

.signal-row-short::before {
  background: linear-gradient(180deg, rgba(255, 140, 144, 0.88), rgba(255, 140, 144, 0.35));
}

.signal-head-left,
.signal-head-right {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
}

.signal-updated {
  color: var(--text-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

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

.signal-metric {
  border-radius: 10px;
  border: 1px solid rgba(140, 192, 238, 0.2);
  background: rgba(8, 18, 31, 0.66);
  padding: 0.4rem 0.52rem;
  display: grid;
  gap: 0.12rem;
}

.signal-metric em {
  color: var(--text-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
}

.signal-metric strong {
  color: #e8f5ff;
  font-size: 0.86rem;
  font-family: "Space Grotesk", sans-serif;
}

.signal-metric.risk {
  border-color: rgba(255, 140, 144, 0.26);
}

.signal-metric.target {
  border-color: rgba(248, 194, 111, 0.28);
}

.signal-metric.live {
  border-color: rgba(63, 227, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(63, 227, 255, 0.12);
}

@media (max-width: 1080px) {
  .signal-meta {
    grid-template-columns: 1fr;
  }
}

/* --- Conversion polish: checkout + pricing upgrade context --- */
.checkout-layout .plan-selector {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

[data-checkout-email-error] {
  color: #ffb3b6;
  margin-top: 0.22rem;
}

.button-disabled[aria-disabled="true"] {
  opacity: 0.56;
  filter: saturate(0.55);
  pointer-events: none;
}

.pricing-current-plan {
  border-color: rgba(63, 227, 255, 0.34);
  background:
    radial-gradient(circle at 90% -20%, rgba(63, 227, 255, 0.18), transparent 54%),
    rgba(8, 20, 34, 0.82);
}

.pricing-current-plan p {
  margin: 0;
}

.pricing-current-plan p + p {
  margin-top: 0.46rem;
}

.plan-fit-list {
  grid-template-columns: 1fr;
  align-content: start;
}

.plan-fit-item {
  min-height: 76px;
  align-content: start;
}
