:root {
  --navy: #173b5f;
  --navy-900: #0e243b;
  --navy-800: #123252;
  --blue: #2f6f9f;
  --gold: #d89a1d;
  --green: #1f8a58;
  --red: #b6403a;
  --ink: #122033;
  --muted: #5f7187;
  --line: #d6e0ea;
  --paper: #f5f7fa;
  --white: #ffffff;
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

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

button,
input,
select,
textarea {
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(14, 36, 59, 0.86), rgba(14, 36, 59, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(14, 36, 59, 0.5);
  backdrop-filter: blur(12px);
}

.nav-links a {
  padding: 8px 11px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 78svh;
  padding: 116px clamp(18px, 4vw, 56px) 42px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, rgba(14, 36, 59, 0.98) 0%, rgba(14, 36, 59, 0.93) 42%, rgba(14, 36, 59, 0.64) 66%, rgba(14, 36, 59, 0.35) 100%), url("/assets/overview.png") right 48%/min(860px, 62vw) auto no-repeat, var(--navy-900);
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-note {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.button,
.quick-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary,
.quick-form button {
  background: var(--gold);
  color: #111827;
}

.button.primary:hover,
.quick-form button:hover {
  background: #e3aa35;
}

.button:disabled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.42);
  cursor: not-allowed;
  box-shadow: none;
  filter: saturate(0);
}

.quick-form button:disabled {
  background: #d6dce3;
  color: #6b7280;
  cursor: not-allowed;
  box-shadow: none;
  filter: saturate(0);
}

.button:disabled:hover {
  background: rgba(255, 255, 255, 0.07);
}

.quick-form button:disabled:hover {
  background: #d6dce3;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.secondary.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy-900);
}

.button.secondary.light:hover {
  background: #edf3f8;
}

.quick-form {
  display: grid;
  grid-template-columns: minmax(220px, 360px) auto;
  align-items: start;
  gap: 10px;
  max-width: 620px;
  margin-top: 20px;
}

.quick-form input[type=email],
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.quick-form input[type=email] {
  min-height: 44px;
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.96);
}

.quick-form input[type=email]:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 111, 159, 0.14);
}

.consent-inline {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.consent-inline input,
.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.form-status {
  grid-column: 1/-1;
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.form-status.error {
  color: #ffd2cc;
}

.form-status.success {
  color: #c9f2df;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 24px 0 0;
}

.proof-strip div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip dt {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.proof-strip dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section,
.signal-band {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

section[id] {
  scroll-margin-top: 84px;
}

.signal-band {
  background: var(--white);
}

.section-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.signal-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.signal-grid h2,
.section-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.signal-grid p,
.section-heading p,
.contact-layout > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.section-heading.compact {
  max-width: 840px;
  margin-bottom: 26px;
}

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

.feature-matrix-spaced {
  margin-top: 26px;
}

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

.workflow-step {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 24px);
  background: var(--white);
}

.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #eaf0f5;
  color: var(--blue);
  font-weight: 900;
}

.workflow-step h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 22px;
  line-height: 1.14;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.feature-card {
  isolation: isolate;
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
  background: #eef4f8;
}

.feature-card div {
  position: relative;
  z-index: 1;
  padding: 18px;
  background: var(--white);
}

.feature-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 8px 0 8px;
  color: var(--navy-900);
  font-size: 20px;
}

.feature-card p,
.wide-shots figcaption,
.privacy-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.muted-section {
  background: #eaf0f5;
}

.output-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.output-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.output-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 14px;
}

.output-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.output-table th,
.output-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.output-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.output-table tr:last-child td {
  border-bottom: 0;
}

.output-table td:first-child {
  color: var(--navy-900);
  font-weight: 850;
}

.use-case-section {
  background: var(--white);
}

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

.use-case-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 22px);
  background: #f9fbfd;
}

.use-case-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.use-case-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.16;
}

.use-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  border: 1px solid rgba(23, 59, 95, 0.16);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background: var(--navy-900);
  color: var(--white);
}

.section-cta h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
}

.section-cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.image-section {
  background: #f6f8fb;
}

.wide-shots {
  display: grid;
  gap: 16px;
}

.wide-shots figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.wide-shots img {
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.wide-shots figcaption {
  padding: 12px 14px;
  font-size: 14px;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfd;
  padding: 0 16px;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--navy-900);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section,
.signup-section {
  background: var(--navy-900);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.contact-layout h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

.contact-layout > div > p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-points li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.08);
}

.fallback-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-required-note {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.required-mark {
  color: #ff6b5f;
  font-weight: 900;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 11px;
}

.lead-form textarea {
  min-height: 104px;
  resize: vertical;
}

.lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 600;
  line-height: 1.45;
}

.lead-form .consent strong {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.privacy-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.privacy-note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form .form-status {
  min-height: 20px;
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #081829;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.privacy-page {
  background: var(--paper);
}

.privacy-page .site-header {
  position: static;
  color: var(--white);
  background: var(--navy-900);
}

.legal-document {
  width: min(860px, 100% - 36px);
  margin: 42px auto 72px;
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-document h1 {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
}

.legal-document h2 {
  margin: 28px 0 8px;
  color: var(--navy-900);
  font-size: 20px;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-document a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thank-you-document {
  max-width: 780px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.thank-you-actions a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero {
    background: linear-gradient(90deg, rgba(14, 36, 59, 0.98), rgba(14, 36, 59, 0.82)), url("/assets/overview.png") right 40%/720px auto no-repeat, var(--navy-900);
  }
  .feature-matrix,
  .workflow-grid,
  .use-case-grid,
  .output-layout,
  .contact-layout,
  .faq-layout,
  .signal-grid {
    grid-template-columns: 1fr;
  }
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-card {
    grid-template-rows: 220px 1fr;
  }
}
@media (max-width: 720px) {
  .site-header {
    position: absolute;
    padding-block: 12px;
  }
  .brand small,
  .nav-links {
    display: none;
  }
  .hero {
    min-height: 86svh;
    padding-top: 86px;
    padding-bottom: 28px;
    background: linear-gradient(180deg, rgba(14, 36, 59, 0.99), rgba(14, 36, 59, 0.96)), url("/assets/overview.png") center bottom 24px/118vw auto no-repeat, var(--navy-900);
  }
  .hero-lede {
    font-size: 17px;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .quick-form {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
  .quick-form button,
  .button {
    width: 100%;
  }
  .proof-strip {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 16px;
  }
  .proof-strip div {
    padding: 8px 10px;
  }
  .proof-strip dt {
    font-size: 18px;
  }
  .section,
  .signal-band {
    padding-block: 44px;
  }
  .feature-card {
    grid-template-rows: 180px 1fr;
  }
  .output-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .output-table {
    display: block;
    min-width: 0;
    border-collapse: separate;
    font-size: 16px;
  }
  .output-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  .output-table tbody {
    display: grid;
    gap: 12px;
  }
  .output-table tr {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }
  .output-table td {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }
  .output-table tr:last-child td,
  .output-table td:last-child {
    border-bottom: 0;
  }
  .output-table td::before {
    content: attr(data-label);
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .output-table td:first-child {
    background: #f9fbfd;
    font-size: 20px;
    line-height: 1.18;
  }
  .use-case-grid {
    grid-template-columns: 1fr;
  }
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .compact-button {
    width: 100%;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 420px) {
  .hero {
    min-height: auto;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-lede {
    line-height: 1.42;
  }
}
