:root {
  --ink: #111b33;
  --ink-soft: #536078;
  --night: #111b33;
  --night-2: #172643;
  --paper: #f5f6fa;
  --white: #ffffff;
  --line: #d9dfeb;
  --violet: #7869f2;
  --violet-dark: #4c3fc0;
  --violet-soft: #efedff;
  --lime: #c9ef69;
  --mint: #b8ecda;
  --red: #b93843;
  --red-soft: #fff0f2;
  --radius-sm: 11px;
  --radius: 19px;
  --radius-lg: 30px;
  --shadow-sm: 0 9px 28px rgba(17, 27, 51, 0.08);
  --shadow: 0 26px 72px rgba(10, 18, 39, 0.2);
  --shell: 1160px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: #080d1b;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #e6a1ff; outline-offset: 3px; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand b { color: var(--lime); }

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(201, 239, 105, 0.38);
  border-radius: 12px;
  color: var(--lime);
  background: rgba(201, 239, 105, 0.1);
  font-weight: 900;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

.header-nav a:hover { color: var(--white); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: 0.65; transform: none; }

.button-primary {
  color: #15220a;
  background: var(--lime);
  box-shadow: 0 9px 24px rgba(146, 188, 43, 0.18);
}

.button-primary:hover { background: #d5f483; box-shadow: 0 13px 30px rgba(146, 188, 43, 0.24); }

.button-secondary {
  border-color: #cbd3e2;
  color: var(--ink);
  background: var(--white);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.23);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.button-full { width: 100%; }
.header-cta { min-height: 39px; padding-inline: 14px; font-size: 12px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 146px 0 98px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 25%, rgba(120, 105, 242, 0.22), transparent 32%),
    radial-gradient(circle at 90% 78%, rgba(201, 239, 105, 0.12), transparent 27%),
    linear-gradient(135deg, var(--night), var(--night-2));
}

.hero::after {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  right: -150px;
  top: 15px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(55px, 8vw, 105px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span { width: 23px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--violet-dark); }

.hero h1,
.section-heading h2,
.evidence-grid h2,
.boundaries-grid h2,
.request-copy h2,
.faq-grid h2 {
  margin: 0;
  font-size: clamp(39px, 5.15vw, 67px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.microcopy {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.offer-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-label,
.sample-label {
  margin: 0;
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 10px 0 3px;
  font-size: 46px;
  font-weight: 850;
  letter-spacing: -0.065em;
}

.price > span,
.price small { color: var(--ink-soft); font-size: 12px; font-weight: 680; letter-spacing: 0; }
.offer-card > p:not(.offer-label, .price, .offer-note) { color: var(--ink-soft); font-size: 13px; }

.offer-card ul {
  display: grid;
  gap: 9px;
  margin: 23px 0;
  padding: 0;
  color: #364157;
  font-size: 13px;
  list-style: none;
}

.offer-card li::before { margin-right: 8px; color: var(--violet); content: "✓"; font-weight: 900; }
.offer-note { margin: 10px 0 0; color: var(--ink-soft); font-size: 10px; text-align: center; }

.principles {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.principles .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principles span {
  padding: 20px 13px;
  color: #59657b;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
  text-transform: uppercase;
}

.principles span + span { border-left: 1px solid var(--line); }

.scope-section,
.evidence-section,
.boundaries-section,
.request-section,
.faq-section { padding: 105px 0; }

.section-heading { max-width: 850px; }

.section-heading h2,
.evidence-grid h2,
.boundaries-grid h2,
.request-copy h2,
.faq-grid h2 { font-size: clamp(34px, 4.3vw, 54px); }

.section-heading > p:last-child,
.evidence-grid > div > p:last-child,
.boundaries-grid > div > p:last-child,
.request-copy > p:not(.eyebrow),
.faq-grid > div > p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.scope-grid li {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.scope-grid li > span {
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.scope-grid li > div { margin-top: auto; }
.scope-grid h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.035em; }
.scope-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.evidence-section {
  color: var(--white);
  background: var(--night);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(50px, 8vw, 105px);
  align-items: center;
}

.evidence-grid > div > p:last-child { color: rgba(255, 255, 255, 0.62); }

.evidence-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.evidence-card > p:first-child { padding: 17px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); color: var(--lime); }

.evidence-card > div {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 19px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.evidence-card span { color: var(--lime); font-size: 11px; font-weight: 800; }
.evidence-card strong { font-size: 13px; }
.evidence-card small { color: rgba(255, 255, 255, 0.52); font-size: 10px; text-align: right; }
.sample-note { margin: 0; padding: 13px 20px; color: rgba(255, 255, 255, 0.46); font-size: 9px; }

.boundaries-section { background: var(--white); }

.boundaries-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(45px, 7vw, 95px);
  align-items: start;
}

.boundary-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.boundary-table article { padding: 28px; background: #fafbfe; }
.boundary-table article + article { border-left: 1px solid var(--line); background: #fff6f7; }
.boundary-table h3 { margin: 0 0 18px; color: var(--violet-dark); font-size: 17px; }
.boundary-table article + article h3 { color: var(--red); }

.boundary-table ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 12px;
  list-style: none;
}

.boundary-table li::before { margin-right: 8px; color: var(--violet); content: "✓"; font-weight: 900; }
.boundary-table article + article li::before { color: var(--red); content: "—"; }

.request-section { background: #f2f3f8; }

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
  gap: clamp(55px, 8vw, 100px);
  align-items: start;
}

.request-copy { position: sticky; top: 28px; }

.report-context {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 13px;
  align-items: center;
  margin-top: 28px;
  padding: 15px;
  border: 1px solid #cbd4e5;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
}

.report-context.is-ready { border-color: #b8ddcf; background: #f0fbf7; }
.report-context.is-error { border-color: #e5c7ca; background: var(--red-soft); }

.context-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--violet-dark);
  background: var(--violet-soft);
  font-size: 18px;
}

.report-context.is-ready .context-icon { color: #13775b; background: #dff7ee; }
.report-context > div { display: grid; min-width: 0; gap: 2px; }
.report-context strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.report-context span:not(.context-icon) { color: var(--ink-soft); font-size: 11px; }
.report-context a { color: var(--violet-dark); font-size: 11px; font-weight: 800; }

.expectation-card {
  margin-top: 15px;
  padding: 22px;
  border-radius: 14px;
  color: var(--white);
  background: var(--night);
}

.expectation-card > strong { color: var(--lime); font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; }
.expectation-card ol { display: grid; gap: 8px; margin: 14px 0 0; padding-left: 22px; color: rgba(255, 255, 255, 0.65); font-size: 12px; }

.form-card {
  padding: 30px;
  border: 1px solid #d3daea;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: #46516a; font-size: 12px; font-weight: 800; }
.field label > span { float: right; color: #687388; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.field label b { color: var(--red); }

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd6e3;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfe;
  outline: 0;
  font-size: 13px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.field input { min-height: 47px; padding: 0 12px; }
.field textarea { min-height: 120px; padding: 12px; resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--violet); background: var(--white); box-shadow: 0 0 0 4px rgba(120, 105, 242, 0.1); }
.field input[aria-invalid="true"] { border-color: var(--red); }
.field-help { margin: 5px 0 0; color: #6b7588; font-size: 10px; }
.field-error { min-height: 14px; margin: 4px 0 0; color: var(--red); font-size: 10px; font-weight: 750; }

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 19px;
  color: #5c667a;
  cursor: pointer;
  font-size: 11px;
}

.consent-row input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--violet-dark); }
.consent-row input[aria-invalid="true"] { outline: 2px solid var(--red); outline-offset: 2px; }
.consent-error { min-height: 0; margin: 4px 0 0 28px; }
.privacy-note { margin: 13px 0 0; color: #667187; font-size: 10px; }
.privacy-note a { color: var(--violet-dark); font-weight: 780; }
.form-error { min-height: 20px; margin: 10px 0 5px; color: var(--red); font-size: 11px; font-weight: 750; }
.no-charge { margin: 10px 0 0; color: #6b7588; font-size: 10px; text-align: center; }

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success-card {
  padding: 45px 30px;
  border: 1px solid #b9ddcf;
  border-radius: var(--radius-lg);
  background: #eefaf6;
  text-align: center;
}

.success-card > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: #0b614a;
  background: var(--mint);
  font-size: 25px;
  font-weight: 900;
}

.success-card h3 { margin: 0; font-size: 29px; letter-spacing: -0.045em; }
.success-card p { max-width: 450px; margin: 10px auto 0; color: var(--ink-soft); font-size: 12px; }
.success-card .button { margin-top: 23px; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 0.65fr 1fr; gap: 100px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  padding: 21px 35px 21px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 790;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 20px; right: 5px; color: var(--violet-dark); content: "+"; font-size: 21px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: -3px 35px 21px 0; color: var(--ink-soft); font-size: 13px; }

.site-footer { padding: 35px 0; color: var(--white); background: #0b1225; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 35px; align-items: center; }
.footer-inner strong { font-size: 14px; }
.footer-inner p { margin: 2px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 10px; }
.footer-inner > p { text-align: center; }
.footer-inner nav { display: flex; gap: 16px; }
.footer-inner a { color: rgba(255, 255, 255, 0.68); font-size: 10px; text-decoration: none; }

.noscript {
  position: fixed;
  z-index: 200;
  right: 14px;
  bottom: 14px;
  left: 14px;
  margin: 0;
  padding: 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--red);
  text-align: center;
}

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; max-width: 800px; }
  .offer-card { max-width: 600px; }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .request-grid { grid-template-columns: 1fr; max-width: 820px; }
  .request-copy { position: static; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 70px; }
  .header-nav { display: none; }
  .hero { padding: 116px 0 78px; }
  .hero h1 { font-size: clamp(41px, 12vw, 57px); }
  .hero-lead { font-size: 15px; }
  .offer-card { padding: 26px 20px; }
  .principles .shell { grid-template-columns: repeat(2, 1fr); }
  .principles span:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .principles span:nth-child(4) { border-top: 1px solid var(--line); }
  .scope-section,
  .evidence-section,
  .boundaries-section,
  .request-section,
  .faq-section { padding: 78px 0; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-grid li { min-height: 215px; }
  .evidence-grid,
  .boundaries-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 43px; }
  .evidence-card > div { grid-template-columns: 58px 1fr; }
  .evidence-card small { grid-column: 2; text-align: left; }
  .boundary-table { grid-template-columns: 1fr; }
  .boundary-table article + article { border-top: 1px solid var(--line); border-left: 0; }
  .form-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 13px; }
  .footer-inner > p { text-align: left; }
  .footer-inner nav { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .brand { font-size: 15px; }
  .brand-mark { width: 34px; height: 34px; }
  .header-cta { padding-inline: 10px; }
  .hero-actions { display: grid; }
  .principles span { font-size: 9px; }
  .report-context { grid-template-columns: 38px 1fr; }
  .report-context a { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .eyebrow > span { background: CanvasText; }
}
