:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-soft: #080c12;
  --surface: #0d1117;
  --surface-hover: #151d28;
  --line: rgba(218, 232, 255, 0.13);
  --line-strong: rgba(0, 255, 102, 0.42);
  --text: #f3f7fb;
  --muted: #a8b4c5;
  --muted-strong: #c5cfdd;
  --green: #00ff66;
  --green-soft: rgba(0, 255, 102, 0.14);
  --blue: #0066ff;
  --blue-soft: #7bb4ff;
  --warning: #ff5c35;
  --warning-soft: rgba(255, 92, 53, 0.14);
  --amber: #ffb020;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-green: 0 20px 45px rgba(0, 255, 102, 0.18);
  --max-width: 1180px;
  --font-main: Inter, Manrope, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Fira Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(155deg, #050608 0%, #071018 44%, #030405 100%);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 255, 102, 0.05), transparent 22%, transparent 78%, rgba(0, 102, 255, 0.06)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 7px);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--green);
  color: #021006;
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(218, 232, 255, 0.1);
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(18px);
}

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

.logo,
.header-cta,
.main-nav a,
.button {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.logo__mark {
  display: inline-grid;
  min-width: 42px;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(0, 255, 102, 0.08);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.logo__wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 6px;
}

.main-nav a,
.header-cta {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 9px 12px;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.header-cta {
  border-color: rgba(0, 255, 102, 0.38);
  color: var(--green);
}

.section-shell {
  padding: clamp(64px, 9vw, 118px) 0;
}

.section-shell--muted {
  border-block: 1px solid rgba(218, 232, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(42px, 5vw, 76px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.4), rgba(0, 102, 255, 0.42), transparent);
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  box-shadow: 0 0 22px rgba(0, 255, 102, 0.52);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(2rem, 5.6vw, 3.85rem);
  font-weight: 900;
}

h2 {
  max-width: 900px;
  font-size: clamp(2rem, 5.2vw, 4.05rem);
  font-weight: 880;
}

h3 {
  font-size: clamp(1.16rem, 2.4vw, 1.45rem);
  font-weight: 830;
}

p {
  color: var(--muted);
  margin: 0;
}

.hero__lead {
  max-width: 760px;
  margin-top: 22px;
  color: #d6deea;
  font-size: clamp(1rem, 2.6vw, 1.24rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.button span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(2, 16, 6, 0.38);
  padding: 5px 8px;
  color: #dcffe8;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.button--primary {
  background: linear-gradient(135deg, var(--green), #20d6ff 55%, var(--blue));
  color: #021006;
  box-shadow: 0 16px 42px rgba(0, 255, 102, 0.22), 0 10px 30px rgba(0, 102, 255, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 255, 102, 0.3), 0 14px 38px rgba(0, 102, 255, 0.22);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(0, 255, 102, 0.46);
  background: rgba(0, 255, 102, 0.08);
  transform: translateY(-2px);
}

.button--wide {
  width: 100%;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  border: 1px solid rgba(218, 232, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 8px 10px;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% 8% 6%;
  border: 1px solid rgba(0, 255, 102, 0.32);
  border-radius: var(--radius);
  transform: rotate(-2deg);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.52));
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.04rem;
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.info-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
    var(--surface);
  padding: clamp(22px, 4vw, 30px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 102, 0.34);
  background:
    linear-gradient(145deg, rgba(0, 255, 102, 0.075), rgba(0, 102, 255, 0.055)),
    var(--surface-hover);
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin-top: 18px;
}

.info-card p {
  margin-top: 12px;
}

.info-card--warning {
  border-color: rgba(255, 92, 53, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 92, 53, 0.08), rgba(255, 176, 32, 0.025)),
    var(--surface);
}

.info-card--warning:hover {
  border-color: rgba(255, 92, 53, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 92, 53, 0.12), rgba(0, 102, 255, 0.04)),
    var(--surface-hover);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(0, 255, 102, 0.28);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
}

.card-icon--warning {
  border-color: rgba(255, 92, 53, 0.42);
  background: var(--warning-soft);
  color: var(--warning);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.pricing-grid {
  display: grid;
  gap: 16px;
}

.pricing-card {
  display: grid;
  min-height: 100%;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    var(--surface);
  padding: clamp(22px, 4vw, 30px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 102, 0.34);
  background:
    linear-gradient(145deg, rgba(0, 255, 102, 0.075), rgba(0, 102, 255, 0.055)),
    var(--surface-hover);
  box-shadow: var(--shadow);
}

.pricing-card--accent {
  border-color: rgba(0, 255, 102, 0.48);
  background:
    linear-gradient(145deg, rgba(0, 255, 102, 0.1), rgba(0, 102, 255, 0.06)),
    var(--surface);
}

.pricing-card__label {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card__price {
  color: var(--text);
  font-size: clamp(1.42rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
}

.pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  color: var(--muted-strong);
  padding-left: 24px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.pricing-card__link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(0, 255, 102, 0.36);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 820;
  margin-top: 6px;
  padding: 10px 12px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pricing-card__link:hover,
.pricing-card__link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--text);
}

.article-hero {
  padding-bottom: clamp(42px, 6vw, 74px);
}

.article-hero__inner {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.article-hero__inner h1 {
  max-width: 1100px;
}

.article-hero__inner p:not(.eyebrow) {
  max-width: 780px;
  color: #d6deea;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.article-grid {
  display: grid;
  gap: 16px;
}

.article-card {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018)),
    var(--surface);
  padding: clamp(22px, 4vw, 30px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.46);
  background:
    linear-gradient(145deg, rgba(0, 102, 255, 0.08), rgba(0, 255, 102, 0.045)),
    var(--surface-hover);
  box-shadow: var(--shadow);
}

.article-card__meta {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-card h3 a {
  color: inherit;
}

.article-card__link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(0, 255, 102, 0.36);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 820;
  padding: 10px 12px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.article-card__link:hover,
.article-card__link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--text);
}

.article-layout {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  padding-bottom: clamp(76px, 10vw, 130px);
}

.article-toc {
  display: grid;
  gap: 10px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 17, 23, 0.84);
  padding: 18px;
}

.article-toc p {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-toc a {
  border-radius: var(--radius);
  color: var(--muted-strong);
  font-weight: 760;
  padding: 8px 10px;
  transition: background 180ms ease, color 180ms ease;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  background: rgba(0, 255, 102, 0.08);
  color: var(--text);
}

.article-content {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
  min-width: 0;
}

.article-content section {
  display: grid;
  gap: 16px;
}

.article-content h2 {
  font-size: clamp(1.72rem, 3.6vw, 2.8rem);
}

.article-content h3 {
  margin-top: 8px;
}

.article-content p,
.article-content li {
  color: var(--muted-strong);
  font-size: 1.02rem;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.article-content li::marker {
  color: var(--green);
  font-weight: 900;
}

.article-cta {
  display: grid;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
    linear-gradient(135deg, rgba(0, 255, 102, 0.72), rgba(0, 102, 255, 0.62)) border-box;
  padding: clamp(22px, 5vw, 40px);
}

.article-cta h2 {
  max-width: 760px;
}

.article-cta .button {
  width: fit-content;
}

.metric-strip {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.metric-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.metric-item strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.1;
}

.metric-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.split-grid {
  display: grid;
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
}

.copy-block {
  display: grid;
  gap: 16px;
}

.copy-block p,
.copy-block li {
  color: var(--muted-strong);
}

.copy-block h3 {
  margin-top: 12px;
}

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

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.service-links {
  display: grid;
  gap: 12px;
}

.service-links--spaced {
  margin-top: 16px;
}

.service-link {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 17, 23, 0.78);
  padding: 18px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 102, 0.38);
  background: rgba(18, 24, 33, 0.94);
}

.service-link strong {
  color: var(--text);
  font-size: 1.05rem;
}

.service-link span {
  color: var(--muted);
}

.mini-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 17, 23, 0.82);
}

.mini-table__row {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(218, 232, 255, 0.1);
  padding: 16px;
}

.mini-table__row:last-child {
  border-bottom: 0;
}

.mini-table__row strong {
  color: var(--text);
}

.mini-table__row span {
  color: var(--muted-strong);
}

.trust-grid {
  display: grid;
  gap: 16px;
}

.trust-item {
  border-left: 2px solid var(--green);
  background: rgba(255, 255, 255, 0.035);
  padding: 18px 18px 18px 20px;
}

.trust-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--muted-strong);
}

.inline-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 102, 0.42);
  text-underline-offset: 4px;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--text);
  text-decoration-color: var(--green);
}

.service-note {
  border: 1px solid rgba(0, 255, 102, 0.3);
  border-radius: var(--radius);
  background: rgba(0, 255, 102, 0.07);
  color: var(--muted-strong);
  padding: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 8px 10px;
}

.roadmap-layout {
  display: grid;
  gap: clamp(26px, 5vw, 70px);
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(var(--green), rgba(0, 102, 255, 0.28));
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 17, 23, 0.78);
  padding: 20px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.timeline__item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 255, 0.5);
  background: rgba(18, 24, 33, 0.94);
}

.timeline__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(0, 255, 102, 0.42);
  border-radius: var(--radius);
  background: #06110c;
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 800;
}

.timeline__item p {
  margin-top: 10px;
}

.faq-layout {
  display: grid;
  gap: 8px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 17, 23, 0.84);
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-item[open] {
  border-color: rgba(0, 255, 102, 0.38);
  background: rgba(16, 24, 31, 0.96);
}

.faq-item summary {
  display: flex;
  min-height: 72px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 820;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item p {
  border-top: 1px solid rgba(218, 232, 255, 0.1);
  padding: 0 22px 22px;
}

.final-section {
  padding-top: clamp(72px, 10vw, 130px);
}

.audit-panel {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
    linear-gradient(135deg, rgba(0, 255, 102, 0.82), rgba(0, 102, 255, 0.72), rgba(255, 176, 32, 0.56)) border-box;
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 58px);
}

.audit-panel__content {
  display: grid;
  gap: 16px;
}

.audit-panel__content h2 {
  max-width: 760px;
}

.audit-list {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.audit-list li {
  position: relative;
  color: var(--muted-strong);
  padding-left: 28px;
}

.audit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(0, 255, 102, 0.7);
}

.audit-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: #dbe6f5;
  font-size: 0.9rem;
  font-weight: 780;
}

.form-field input {
  width: 100%;
  border: 1px solid rgba(218, 232, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  outline: none;
  padding: 15px 16px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder {
  color: #738196;
}

.form-field input:hover {
  border-color: rgba(0, 255, 102, 0.36);
}

.form-field input:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 255, 102, 0.16);
}

.form-note {
  color: #7f8da1;
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status[data-type="success"] {
  color: var(--green);
}

.form-status[data-type="error"] {
  color: #ffb4a8;
}

.form-status[data-type="pending"] {
  color: var(--blue-soft);
}

.audit-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.site-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.site-chat__preview,
.site-chat__close,
.site-chat__submit {
  cursor: pointer;
}

.site-chat__preview {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  border: 1px solid rgba(0, 255, 102, 0.42);
  border-radius: var(--radius);
  background: rgba(8, 12, 18, 0.94);
  box-shadow: var(--shadow-green);
  color: var(--text);
  padding: 10px 12px;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.site-chat__preview-dot {
  display: inline-grid;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0, 255, 102, 0.14);
}

.site-chat__preview-copy {
  display: grid;
  gap: 2px;
}

.site-chat__preview-copy strong {
  font-size: 0.92rem;
}

.site-chat__preview-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-chat__preview:hover,
.site-chat__preview:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green);
}

.site-chat[data-open="true"] .site-chat__preview {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.site-chat__panel {
  width: min(calc(100vw - 24px), 360px);
  border: 1px solid rgba(218, 232, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 10, 14, 0.98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
  overflow: hidden;
}

.site-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(218, 232, 255, 0.08);
}

.site-chat__agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-chat__agent-mark {
  display: inline-grid;
  width: 40px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(0, 255, 102, 0.08);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 900;
}

.site-chat__agent-copy {
  display: grid;
  gap: 2px;
}

.site-chat__agent-copy strong {
  font-size: 0.96rem;
}

.site-chat__agent-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-chat__close {
  border: 1px solid rgba(218, 232, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 10px;
}

.site-chat__close:hover,
.site-chat__close:focus-visible {
  border-color: rgba(0, 255, 102, 0.28);
  color: var(--text);
}

.site-chat__messages {
  display: grid;
  gap: 10px;
  max-height: 240px;
  overflow-y: auto;
  padding: 14px;
}

.site-chat__bubble {
  max-width: 88%;
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-chat__bubble--manager {
  justify-self: start;
  border: 1px solid rgba(218, 232, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.site-chat__bubble--user {
  justify-self: end;
  border: 1px solid rgba(0, 255, 102, 0.26);
  background: rgba(0, 255, 102, 0.12);
}

.site-chat__form {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

.site-chat__grid {
  display: grid;
  gap: 10px;
}

.site-chat__field {
  display: grid;
  gap: 7px;
}

.site-chat__field span {
  color: #dbe6f5;
  font-size: 0.82rem;
  font-weight: 780;
}

.site-chat__field input,
.site-chat__field textarea {
  width: 100%;
  border: 1px solid rgba(218, 232, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
  padding: 12px 13px;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-chat__field input::placeholder,
.site-chat__field textarea::placeholder {
  color: #738196;
}

.site-chat__field input:focus-visible,
.site-chat__field textarea:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 255, 102, 0.14);
}

.site-chat__status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-chat__status[data-type="success"] {
  color: var(--green);
}

.site-chat__status[data-type="error"] {
  color: #ffb4a8;
}

.site-chat__status[data-type="pending"] {
  color: var(--blue-soft);
}

.site-chat__submit {
  min-height: 46px;
  border: 1px solid rgba(0, 255, 102, 0.46);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.2), rgba(0, 102, 255, 0.16));
  color: var(--text);
  font-weight: 900;
  padding: 10px 14px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-chat__submit:hover,
.site-chat__submit:focus-visible {
  transform: translateY(-1px);
  border-color: var(--green);
}

.site-chat__submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.site-chat__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.error-page .section-shell {
  padding-top: clamp(52px, 8vw, 90px);
}

.error-shell {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.error-shell .hero__lead {
  max-width: 620px;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.error-links a {
  min-width: 180px;
}

.site-footer {
  border-top: 1px solid rgba(218, 232, 255, 0.08);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #8390a3;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: reveal-up 360ms ease-out both;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero + .section-shell {
  padding-top: clamp(36px, 6vw, 76px);
}

@keyframes reveal-up {
  from {
    opacity: 0.9;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 680px) {
  .container {
    width: min(100% - 48px, var(--max-width));
  }

  .hero__actions {
    align-items: center;
  }

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

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

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

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

  .mini-table__row {
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  }

  .hero-visual {
    max-width: 640px;
    justify-self: center;
  }
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  }

  .roadmap-layout,
  .faq-layout,
  .audit-panel {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }

  .article-layout {
    grid-template-columns: minmax(210px, 0.34fr) minmax(0, 0.66fr);
    align-items: start;
  }

  .split-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .article-toc {
    position: sticky;
    top: 104px;
  }

  .section-heading--sticky {
    position: sticky;
    top: 104px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .header-inner {
    min-height: 62px;
  }

  .logo__wordmark {
    font-size: 0.96rem;
  }

  .header-cta {
    padding-inline: 11px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-visual {
    display: none;
  }

  .button {
    width: 100%;
  }

  .button span {
    display: none;
  }

  .signal-list li {
    flex: 1 1 auto;
    text-align: center;
  }

  .timeline__item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .timeline__number {
    width: 44px;
    height: 44px;
    font-size: 0.84rem;
  }

  .timeline::before {
    left: 22px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 18px;
  }

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

  .article-cta .button {
    width: 100%;
  }

  .site-chat {
    right: 12px;
    bottom: 12px;
  }

  .site-chat__preview {
    max-width: min(calc(100vw - 24px), 240px);
  }

  .site-chat__panel {
    width: min(calc(100vw - 24px), 360px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
