:root {
  color-scheme: only light;
  --slate: #0e2433;
  --slate-2: #16344a;
  --slate-3: #23465e;
  --paper: #f7f9f8;
  --fog: #edf1ef;
  --white: #ffffff;
  --ink: #132430;
  --steel: #586c7c;
  --line: #d3dcda;
  --line-dark: #38566b;
  --signal: #a83c13;
  --signal-button: #c2410c;
  --signal-button-hover: #a83c13;
  --signal-warm: #ff9a72;
  --ok: #5bbf8e;
  --danger: #a52f2f;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --sans: "Arial Narrow", "Aptos Narrow", Aptos, "Segoe UI", Arial, sans-serif;
  --shadow: 0 20px 50px rgba(14, 36, 51, 0.11);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}

::selection {
  background: var(--signal-button);
  color: var(--white);
}

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

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

:focus-visible {
  border-radius: 3px;
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--signal);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 5px;
  background: var(--white);
  color: var(--slate);
  font-weight: 700;
}

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

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: #c8d6df;
}

.site-nav {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-contact {
  color: #d9e3e9;
  font-size: 14px;
  text-decoration: none;
}

.nav-contact:hover {
  color: var(--white);
}

.language-switch {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  background: rgba(14, 36, 51, 0.76);
}

.language-switch a {
  padding: 6px 9px;
  border-radius: 4px;
  color: #a9bbc7;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.language-switch a:hover {
  color: var(--white);
}

.language-switch a[aria-current="page"] {
  background: var(--slate-3);
  color: var(--white);
}

.audit-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 82px;
  background: var(--slate);
  color: var(--fog);
}

.audit-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(64, 99, 121, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 99, 121, 0.2) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  pointer-events: none;
}

.audit-hero::after {
  position: absolute;
  right: -10%;
  bottom: -160px;
  width: 680px;
  height: 420px;
  border: 1px solid rgba(255, 154, 114, 0.28);
  border-radius: 50%;
  content: "";
  transform: rotate(-10deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.75fr);
  gap: 72px;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "— ";
}

.audit-hero .eyebrow {
  color: var(--signal-warm);
}

.product-name {
  margin-bottom: 18px;
  color: #adc0cc;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.45;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 72px);
  font-stretch: 105%;
  font-weight: 800;
  letter-spacing: -0.027em;
  line-height: 1.025;
}

.hero-lead {
  max-width: 64ch;
  margin-top: 25px;
  color: #c7d5dd;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}

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

.button-primary {
  background: var(--signal-button);
  color: var(--white);
}

.button-primary:hover {
  background: var(--signal-button-hover);
}

.button-secondary {
  border-color: #4f6d80;
  color: var(--white);
}

.button-secondary:hover {
  border-color: #cad8e0;
}

.button-dark {
  background: var(--slate);
  color: var(--white);
}

.button-dark:hover {
  background: var(--slate-2);
}

.hero-facts {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #355166;
  list-style: none;
}

.hero-fact {
  padding: 18px 14px 0 0;
  color: #9fb4c2;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
}

.hero-fact strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
}

.offer-card {
  overflow: hidden;
  border: 1px solid #3f5d71;
  border-radius: 10px;
  background: rgba(22, 52, 74, 0.88);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.18);
}

.offer-card-head {
  padding: 28px 28px 24px;
  border-bottom: 1px solid #3f5d71;
}

.offer-label {
  display: block;
  margin-bottom: 8px;
  color: #9fb4c2;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-price {
  display: block;
  color: var(--white);
  font-family: var(--mono);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.offer-tax {
  display: block;
  margin-top: 6px;
  color: #b7c8d2;
  font-size: 14px;
}

.offer-list {
  list-style: none;
  padding: 10px 28px 20px;
}

.offer-list li {
  display: flex;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid #34536a;
  color: #d4e0e6;
  font-size: 15px;
}

.offer-list li:last-child {
  border-bottom: 0;
}

.offer-list li::before {
  flex: 0 0 auto;
  color: var(--ok);
  content: "✓";
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section-fog {
  background: var(--fog);
}

.section-dark {
  background: var(--slate);
  color: var(--fog);
}

.section h2 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--slate);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 750;
  letter-spacing: -0.018em;
  line-height: 1.12;
}

.section-dark h2 {
  color: var(--white);
}

.section-intro {
  max-width: 68ch;
  color: var(--steel);
  font-size: 19px;
}

.section-dark .section-intro {
  color: #b8c9d3;
}

.section-dark .eyebrow {
  color: var(--signal-warm);
}

.check-grid,
.deliverable-grid,
.profile-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-card,
.deliverable-card,
.profile-card {
  min-width: 0;
  padding: 25px 23px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.check-number,
.card-tag {
  display: block;
  margin-bottom: 16px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.check-card h3,
.deliverable-card h3,
.profile-card h3 {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.3;
}

.check-card p,
.deliverable-card p,
.profile-card p {
  color: var(--steel);
  font-size: 15.5px;
  line-height: 1.55;
}

.process-grid {
  display: grid;
  margin-top: 40px;
  counter-reset: process;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  position: relative;
  padding: 28px 32px 25px 0;
  border-top: 1px solid var(--line);
  counter-increment: process;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: -3px;
  right: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal-button);
  content: "";
}

.process-step::before {
  display: block;
  margin-bottom: 14px;
  color: var(--signal);
  content: "0" counter(process);
  font-family: var(--mono);
  font-size: 13px;
}

.process-step h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.process-step p {
  max-width: 31ch;
  color: var(--steel);
  font-size: 15.5px;
}

.deliverable-card {
  border-top: 4px solid var(--signal);
}

.report-shell {
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid #3c5a70;
  border-radius: 10px;
  background: var(--slate-2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.report-shell summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 26px;
  color: var(--white);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.report-shell summary::-webkit-details-marker {
  display: none;
}

.report-shell summary::after {
  flex: 0 0 auto;
  color: var(--signal-warm);
  content: "+";
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 400;
}

.report-shell[open] summary::after {
  content: "−";
}

.example-disclaimer {
  padding: 16px 26px;
  border-top: 1px solid #3c5a70;
  border-bottom: 1px solid #3c5a70;
  background: #102a3c;
  color: #bacbd5;
  font-size: 14px;
}

.risk-report {
  display: grid;
  padding: 28px 26px 32px;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #3a586d;
}

.risk-field {
  min-width: 0;
  padding: 19px 20px;
  background: #17364c;
}

.risk-field-wide {
  grid-column: 1 / -1;
}

.risk-field dt {
  margin-bottom: 6px;
  color: #9fb4c2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.risk-field dd {
  color: #eef3f5;
  font-size: 15.5px;
  line-height: 1.5;
}

.severity {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}

.severity::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-warm);
  content: "";
}

.scope-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scope-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.scope-card h3 {
  margin-bottom: 16px;
  color: var(--slate);
  font-size: 21px;
}

.scope-card ul {
  padding-left: 20px;
}

.scope-card li {
  margin: 9px 0;
}

.scope-card-excluded {
  background: transparent;
}

.scope-note {
  margin-top: 22px;
  padding: 17px 0 17px 20px;
  border-left: 3px solid var(--signal);
  color: var(--steel);
}

.case-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  grid-template-columns: 1.2fr 0.8fr;
}

.case-card {
  min-width: 0;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.case-card p {
  color: var(--steel);
}

.case-card p + p {
  margin-top: 14px;
}

.architecture-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: architecture-step;
}

.architecture-flow li {
  position: relative;
  padding: 13px 0 13px 44px;
  border-bottom: 1px solid var(--line);
  counter-increment: architecture-step;
}

.architecture-flow li:last-child {
  border-bottom: 0;
}

.architecture-flow li::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 13px;
  content: "0" counter(architecture-step);
}

.architecture-flow strong,
.architecture-flow span {
  display: block;
}

.architecture-flow strong {
  margin-bottom: 4px;
  color: var(--slate);
}

.architecture-flow span {
  color: var(--steel);
}

.case-outcomes {
  list-style: none;
}

.case-outcomes li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.case-outcomes li:last-child {
  border-bottom: 0;
}

.case-outcomes strong,
.case-outcomes span {
  display: block;
}

.case-outcomes strong {
  margin-bottom: 4px;
  color: var(--slate);
}

.case-outcomes span {
  color: var(--steel);
}

.profile-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.profile-card:first-child {
  padding: 31px 30px;
}

.profile-card .profile-lead {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.profile-card p + p {
  margin-top: 14px;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
}

.tech-list li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--slate-2);
  font-family: var(--mono);
  font-size: 12px;
}

.proof-list {
  list-style: none;
}

.proof-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
}

.proof-list li:last-child {
  border-bottom: 0;
}

.proof-list strong {
  display: block;
  color: var(--slate);
  font-family: var(--mono);
  font-size: 19px;
}

.faq-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 2px;
  color: var(--slate);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--signal);
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 72ch;
  padding: 0 44px 22px 2px;
  color: var(--steel);
}

.form-layout {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
}

.form-copy h2 {
  margin-bottom: 18px;
}

.form-copy p {
  color: #bacbd5;
  font-size: 18px;
}

.form-points {
  margin-top: 26px;
  list-style: none;
}

.form-points li {
  padding: 10px 0;
  border-bottom: 1px solid #304e63;
  color: #d2dfe6;
  font-size: 15px;
}

.audit-form {
  padding: 34px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--steel);
  font-size: 12.5px;
  line-height: 1.45;
}

.optional {
  color: var(--steel);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #72898f;
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #536c73;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--signal);
  outline: 3px solid var(--signal);
  outline-offset: 1px;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(165, 47, 47, 0.16);
}

.form-actions {
  margin-top: 23px;
}

.form-actions .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin-top: 13px;
  color: var(--steel);
  font-size: 13.5px;
  line-height: 1.5;
}

.form-note a:hover {
  color: var(--signal);
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 5px;
  font-size: 14.5px;
}

.form-status[data-state="success"] {
  display: block;
  border: 1px solid #95c8ad;
  background: #edf8f2;
  color: #245e42;
}

.form-status[data-state="error"] {
  display: block;
  border: 1px solid #dab0b0;
  background: #fff2f2;
  color: #7a2424;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-footer {
  padding: 34px 0;
  background: #091b27;
  color: #8fa5b4;
  font-size: 13.5px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.site-footer a {
  color: #c6d3dc;
  text-decoration: none;
}

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

@media (max-width: 940px) {
  .hero-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .offer-card {
    max-width: 560px;
  }

  .form-layout {
    gap: 38px;
  }

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

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 36px, 1120px);
  }

  .site-nav {
    min-height: 78px;
  }

  .nav-contact {
    display: none;
  }

  .audit-hero {
    padding: 118px 0 66px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

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

  .hero-fact:nth-child(3),
  .hero-fact:nth-child(4) {
    margin-top: 13px;
    padding-top: 14px;
    border-top: 1px solid #355166;
  }

  .section {
    padding: 66px 0;
  }

  .check-grid,
  .deliverable-grid,
  .profile-grid,
  .case-grid,
  .scope-grid,
  .process-grid,
  .risk-report,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .risk-field-wide,
  .field-wide {
    grid-column: auto;
  }

  .process-step {
    padding: 24px 0;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .audit-form {
    padding: 25px 20px;
  }

  .report-shell summary {
    align-items: flex-start;
    padding: 19px 20px;
  }

  .example-disclaimer,
  .risk-report {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 460px) {
  .site-nav {
    align-items: flex-start;
    padding-top: 19px;
  }

  .nav-side {
    gap: 8px;
  }

  .button-row {
    display: grid;
  }

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

  .offer-card-head,
  .offer-list {
    padding-right: 21px;
    padding-left: 21px;
  }

  .scope-card,
  .profile-card:first-child {
    padding: 24px 21px;
  }

  .footer-row {
    display: block;
  }

  .footer-row > div + div {
    margin-top: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
