:root {
  --ink: #0a1024;
  --muted: #5d6a83;
  --line: rgba(14, 25, 51, 0.12);
  --paper: #fbfcff;
  --soft: #eef4f7;
  --blue: #2659ff;
  --cyan: #00a6a6;
  --amber: #f2a900;
  --violet: #6d4aff;
  --shadow: 0 24px 60px rgba(10, 16, 36, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Aptos", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  background: rgba(251, 252, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 18px 6vw;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  gap: 3px;
  height: 34px;
}

.brand-mark span {
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  border-radius: 999px;
  display: block;
  width: 3px;
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(5) {
  height: 18px;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(4) {
  height: 28px;
}

.brand-mark span:nth-child(3) {
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.nav-links a {
  color: #18213a;
  font-size: 14px;
  font-weight: 700;
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  box-shadow: 0 16px 34px rgba(38, 89, 255, 0.28);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: 78vh;
  overflow: hidden;
  padding: 132px 6vw 54px;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(6, 13, 32, 0.88), rgba(6, 13, 32, 0.58) 44%, rgba(6, 13, 32, 0.1)),
    linear-gradient(180deg, rgba(6, 13, 32, 0), rgba(6, 13, 32, 0.72)),
    url("https://images.unsplash.com/photo-1542296332-2e4473faf563?auto=format&fit=crop&w=2400&q=82");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.01);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(0, 166, 166, 0.34), transparent 38%),
    radial-gradient(circle at 76% 24%, rgba(242, 169, 0, 0.22), transparent 24%);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  align-self: end;
  color: white;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7bf3e8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 900px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

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

.proof-strip div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.proof-strip dt {
  color: white;
  font-size: 22px;
  font-weight: 900;
}

.proof-strip dd {
  color: rgba(255, 255, 255, 0.74);
  margin: 2px 0 0;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 92px 24px;
}

.tight {
  padding-top: 78px;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  margin-bottom: 44px;
}

.split-heading p,
.product-copy p,
.flow p,
.industry-grid p,
.value-grid p {
  color: var(--muted);
}

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

.value-grid article {
  background: white;
  border: 1px solid var(--line);
  min-height: 260px;
  padding: 30px;
}

.icon {
  color: var(--blue);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 54px;
}

.product-band {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 16, 32, 0.98), rgba(14, 37, 57, 0.96)),
    radial-gradient(circle at top right, rgba(0, 166, 166, 0.34), transparent 36%);
  color: white;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.product-copy p,
.product-copy .check-list {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li {
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  color: #7bf3e8;
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.dashboard-card {
  background: #f7f9fc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
  padding: 22px;
}

.dash-topline,
.dash-metrics,
.risk-list div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.dash-topline {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.dash-topline strong {
  color: #d72f4b;
  font-size: 26px;
}

.dash-metrics {
  gap: 12px;
  margin: 18px 0;
}

.dash-metrics div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  flex: 1;
  padding: 16px;
}

.dash-metrics strong {
  display: block;
  font-size: 30px;
}

.dash-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.topology {
  background:
    linear-gradient(rgba(38, 89, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 89, 255, 0.05) 1px, transparent 1px),
    #ffffff;
  background-size: 34px 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  height: 300px;
  margin: 18px 0;
  position: relative;
}

.node {
  align-items: center;
  background: white;
  border: 2px solid rgba(38, 89, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(10, 16, 36, 0.12);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  position: absolute;
  width: 58px;
  z-index: 2;
}

.camera {
  left: 10%;
  top: 38%;
}

.node:nth-child(2) {
  left: 30%;
  top: 18%;
}

.danger {
  border-color: #d72f4b;
  color: #d72f4b;
  left: 48%;
  top: 48%;
}

.node:nth-child(4) {
  left: 66%;
  top: 24%;
}

.impact {
  background: #fff8e6;
  border-color: var(--amber);
  left: 80%;
  top: 58%;
}

.path {
  background: rgba(38, 89, 255, 0.4);
  display: block;
  height: 2px;
  position: absolute;
  transform-origin: left center;
  z-index: 1;
}

.path-a {
  left: 20%;
  top: 46%;
  transform: rotate(-28deg);
  width: 180px;
}

.path-b {
  left: 39%;
  top: 34%;
  transform: rotate(34deg);
  width: 160px;
}

.path-c {
  background: rgba(215, 47, 75, 0.45);
  left: 58%;
  top: 56%;
  transform: rotate(-18deg);
  width: 170px;
}

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

.risk-list div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
}

.risk-list strong {
  color: #d72f4b;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-align: center;
}

.flow {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 46px;
}

.flow article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  position: relative;
}

.flow article:not(:last-child)::after {
  color: var(--blue);
  content: "→";
  font-weight: 900;
  position: absolute;
  right: -14px;
  top: 30px;
  z-index: 2;
}

.flow span {
  color: var(--blue);
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 44px;
}

.industries {
  background: linear-gradient(180deg, #f2f7fa, #fbfcff);
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

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

.industry-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 210px;
  padding: 22px;
}

.industry-grid span {
  color: var(--cyan);
  display: block;
  font-size: 30px;
  margin-bottom: 40px;
}

.industry-grid strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

.industry-grid p {
  font-size: 14px;
  margin-bottom: 0;
}

.final-cta {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: white;
  display: flex;
  gap: 34px;
  justify-content: space-between;
  margin-bottom: 72px;
  padding: 48px;
}

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

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 28px 6vw;
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0 auto 0 0;
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 84vh;
  }

  .split-heading,
  .product-band {
    grid-template-columns: 1fr;
  }

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

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

  .flow article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 22px 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .proof-strip,
  .value-grid,
  .flow,
  .industry-grid,
  .dash-metrics {
    grid-template-columns: 1fr;
  }

  .value-grid article {
    min-height: unset;
  }

  .dashboard-card {
    padding: 14px;
  }

  .topology {
    height: 240px;
  }

  .node {
    height: 48px;
    width: 48px;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta {
    margin-left: 18px;
    margin-right: 18px;
    padding: 30px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

.lead-section {
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.lead-intro {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  margin: 0 auto 34px;
  max-width: var(--max);
}

.lead-intro p:last-child {
  align-self: end;
  color: var(--muted);
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.lead-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(10, 16, 36, 0.08);
}

.lead-form-accent {
  background: linear-gradient(180deg, #ffffff, #f6fbfb);
  border-color: rgba(0, 166, 166, 0.28);
}

.form-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  padding-bottom: 18px;
}

.form-heading span {
  color: var(--cyan);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.form-heading p {
  color: var(--muted);
  margin-bottom: 0;
}

.lead-form label {
  color: #22304d;
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 7px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  appearance: none;
  background: #fbfcff;
  border: 1px solid rgba(14, 25, 51, 0.18);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

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

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 166, 166, 0.14);
  outline: none;
}

.hidden-field {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.form-status {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  min-height: 22px;
}

.form-status[data-tone="success"] {
  color: #087f5b;
}

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

.lead-form button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

@media (max-width: 980px) {
  .lead-intro,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand polish pass: align the site with the Breakwater red/magenta/purple logo system. */
:root {
  --ink: #080b12;
  --muted: #626777;
  --line: rgba(8, 11, 18, 0.12);
  --paper: #fbfbfd;
  --brand-red: #f0263d;
  --brand-red-dark: #b90f28;
  --brand-magenta: #c21874;
  --brand-purple: #7a28d8;
  --brand-silver: #e8ebf2;
  --blue: var(--brand-purple);
  --cyan: var(--brand-magenta);
  --shadow: 0 24px 70px rgba(8, 11, 18, 0.16);
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(8, 11, 18, 0.08);
  min-height: 74px;
}

.brand {
  letter-spacing: 0;
  min-width: 188px;
}

.brand img {
  display: block;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  width: 210px;
}

.site-footer .brand img {
  height: 58px;
  width: 230px;
}

.nav-links a {
  color: #151927;
  font-size: 13px;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a::after {
  background: linear-gradient(90deg, var(--brand-red), var(--brand-purple));
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 180ms ease;
  width: 100%;
}

.nav-links a:hover::after {
  opacity: 1;
}

.button {
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  min-height: 52px;
  min-width: 168px;
  padding: 0 24px;
}

.header-cta {
  min-height: 44px;
  min-width: 136px;
  padding: 0 18px;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-magenta) 48%, var(--brand-purple));
  box-shadow: 0 18px 34px rgba(194, 24, 116, 0.28);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  min-width: 168px;
}

.final-cta .button-primary,
.lead-form .button-primary {
  min-width: 100%;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 5, 9, 0.92), rgba(18, 8, 24, 0.68) 44%, rgba(85, 16, 66, 0.2)),
    linear-gradient(180deg, rgba(5, 5, 9, 0), rgba(5, 5, 9, 0.78)),
    url("https://images.unsplash.com/photo-1542296332-2e4473faf563?auto=format&fit=crop&w=2400&q=82");
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(240, 38, 61, 0.28), transparent 38%),
    radial-gradient(circle at 78% 20%, rgba(122, 40, 216, 0.34), transparent 28%);
}

.eyebrow,
.section-kicker,
.hero .eyebrow {
  color: var(--brand-red);
}

.hero .eyebrow {
  color: #ff8ba0;
}

.proof-strip div {
  border-color: rgba(255, 255, 255, 0.22);
}

.value-grid {
  gap: 16px;
}

.value-grid article,
.flow article,
.industry-grid article,
.lead-form,
.dashboard-card {
  border-color: rgba(8, 11, 18, 0.1);
}

.value-grid article {
  border-radius: 8px;
  min-height: 250px;
}

.icon,
.flow span,
.industry-grid span,
.form-heading span {
  color: var(--brand-purple);
}

.product-band {
  background:
    linear-gradient(135deg, rgba(5, 5, 9, 0.98), rgba(25, 11, 32, 0.98)),
    radial-gradient(circle at top right, rgba(194, 24, 116, 0.34), transparent 36%);
}

.dashboard-card {
  background: #f8f9fc;
  padding: 24px;
}

.dash-topline strong,
.risk-list strong {
  color: var(--brand-red);
}

.dash-metrics {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dash-metrics div {
  align-content: center;
  display: grid;
  min-height: 104px;
}

.risk-list div {
  min-height: 48px;
}

.danger {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.path-c {
  background: rgba(240, 38, 61, 0.48);
}

.industries {
  background: linear-gradient(180deg, #f8f3f7, #fbfbfd);
}

.industry-grid article {
  display: grid;
  min-height: 220px;
}

.industry-grid span {
  align-items: center;
  background: linear-gradient(135deg, rgba(240, 38, 61, 0.1), rgba(122, 40, 216, 0.12));
  border-radius: 6px;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 34px;
  width: 44px;
}

.lead-section {
  background: linear-gradient(180deg, #fbfbfd, #fff7fa);
}

.lead-form {
  box-shadow: 0 24px 54px rgba(8, 11, 18, 0.1);
}

.lead-form-accent {
  background: linear-gradient(180deg, #ffffff, #fff7fb);
  border-color: rgba(194, 24, 116, 0.24);
  position: relative;
}

.lead-form-accent::before {
  background: linear-gradient(90deg, var(--brand-red), var(--brand-purple));
  border-radius: 8px 8px 0 0;
  content: "";
  height: 4px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand-magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 116, 0.13);
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(8, 11, 18, 0.98), rgba(35, 12, 42, 0.98)),
    radial-gradient(circle at top right, rgba(240, 38, 61, 0.24), transparent 34%);
}

@media (max-width: 980px) {
  .dash-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: unset;
  }

  .brand img {
    height: 44px;
    width: 168px;
  }

  .button,
  .button-ghost,
  .button-primary {
    min-width: 100%;
  }

  .dash-metrics {
    grid-template-columns: 1fr;
  }
}

/* Form/layout fix pass. Keep these overrides last so they supersede earlier polish rules. */
.site-header {
  min-height: 66px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.brand {
  min-width: 244px;
  overflow: hidden;
}

.brand img {
  height: 42px;
  width: 244px;
}

.site-footer .brand img {
  height: 48px;
  width: 280px;
}

.form-grid {
  align-items: stretch;
  gap: 24px;
}

.lead-form {
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 32px;
}

.form-heading,
.full-field,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-heading {
  min-height: 164px;
}

.form-heading h3 {
  background: transparent;
  margin-bottom: 12px;
}

.half-field {
  min-width: 0;
}

.lead-form input,
.lead-form select {
  min-height: 54px;
}

.lead-form textarea {
  min-height: 136px;
}

.form-submit {
  justify-self: stretch;
  min-height: 56px;
  min-width: 100%;
  width: 100%;
}

.final-cta .button-primary {
  flex: 0 0 auto;
  min-width: 260px;
  width: auto;
}

@media (max-width: 980px) {
  .lead-form {
    grid-template-columns: 1fr;
  }

  .form-heading,
  .full-field,
  .form-submit,
  .form-status {
    grid-column: auto;
  }

  .form-heading {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .brand img {
    height: 38px;
    width: 210px;
  }

  .final-cta .button-primary {
    min-width: 100%;
    width: 100%;
  }
}

/* Real logo and final form refinement pass. */
.brand {
  min-width: 230px;
}

.brand img {
  height: 36px;
  object-fit: contain;
  object-position: left center;
  width: 230px;
}

.site-footer .brand img {
  height: 42px;
  width: 270px;
}

.lead-form {
  background: #ffffff;
  gap: 14px 22px;
  padding: 28px;
}

.lead-form-accent {
  background: #ffffff;
}

.form-heading {
  min-height: 142px;
  padding-bottom: 16px;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
}

.lead-form textarea {
  min-height: 124px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #8b91a1;
  font-weight: 500;
}

.form-submit {
  border: 0;
  box-shadow: 0 16px 30px rgba(194, 24, 116, 0.24);
  margin-top: 8px;
}

.form-submit:hover {
  box-shadow: 0 20px 36px rgba(194, 24, 116, 0.3);
}

.final-cta .button-primary {
  border: 0;
}

@media (max-width: 640px) {
  .brand img {
    height: 34px;
    width: 210px;
  }

  .lead-form {
    padding: 24px;
  }
}

/* Final logo asset pass: use the real horizontal PNG without cropping or distortion. */
.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 220px;
  overflow: visible;
}

.brand img {
  display: block;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
  width: 220px;
}

.site-footer .brand {
  min-width: 260px;
}

.site-footer .brand img {
  height: auto;
  max-height: 52px;
  width: 260px;
}

@media (max-width: 640px) {
  .brand {
    min-width: 190px;
  }

  .brand img {
    height: auto;
    max-height: 38px;
    width: 190px;
  }
}

/* Theme toggle and single-form conversion pass. */
html[data-theme="light"] .logo-dark,
html[data-theme="dark"] .logo-light {
  display: none;
}

html[data-theme="dark"] {
  --ink: #f6f7fb;
  --muted: #b8bfcd;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #080911;
  --soft: #121522;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(240, 38, 61, 0.14), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(122, 40, 216, 0.2), transparent 28%),
    #080911;
  color: var(--ink);
}

html[data-theme="dark"] .site-header {
  background: rgba(8, 9, 17, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.11);
}

html[data-theme="dark"] .nav-links a,
html[data-theme="dark"] .lead-form label {
  color: #eef2ff;
}

html[data-theme="dark"] .button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.theme-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 11, 18, 0.12);
  border-radius: 999px;
  color: #151927;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 9px;
  min-height: 38px;
  padding: 0 12px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-toggle span {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-purple));
  border-radius: 999px;
  display: block;
  height: 16px;
  position: relative;
  width: 30px;
}

.theme-toggle span::after {
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(8, 11, 18, 0.22);
  content: "";
  height: 12px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 180ms ease;
  width: 12px;
}

.theme-toggle strong {
  font-size: 12px;
  line-height: 1;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

html[data-theme="dark"] .theme-toggle span::after {
  transform: translateX(14px);
}

.lead-form-shell {
  margin: 0 auto;
  max-width: 860px;
}

.lead-form-single {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(28px, 4vw, 44px);
}

.lead-form-single .form-heading {
  min-height: auto;
}

.request-chooser {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 10px;
}

.request-chooser label {
  cursor: pointer;
  display: block;
}

.request-chooser input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.request-chooser span {
  background: #fbfcff;
  border: 1px solid rgba(8, 11, 18, 0.13);
  border-radius: 12px;
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 18px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.request-chooser strong {
  color: var(--ink);
  font-size: 18px;
}

.request-chooser small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.request-chooser input:checked + span {
  background: linear-gradient(135deg, rgba(240, 38, 61, 0.09), rgba(122, 40, 216, 0.11));
  border-color: rgba(194, 24, 116, 0.42);
  box-shadow: 0 18px 34px rgba(194, 24, 116, 0.14);
}

.request-chooser label:hover span {
  transform: translateY(-2px);
}

.pilot-field[hidden] {
  display: none;
}

html[data-theme="dark"] .lead-section,
html[data-theme="dark"] .industries {
  background: linear-gradient(180deg, #080911, #11101a);
}

html[data-theme="dark"] .lead-form,
html[data-theme="dark"] .lead-form-accent,
html[data-theme="dark"] .dashboard-card,
html[data-theme="dark"] .value-grid article,
html[data-theme="dark"] .flow article,
html[data-theme="dark"] .industry-grid article {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .lead-form input,
html[data-theme="dark"] .lead-form select,
html[data-theme="dark"] .lead-form textarea,
html[data-theme="dark"] .request-chooser span {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

html[data-theme="dark"] .lead-form input::placeholder,
html[data-theme="dark"] .lead-form textarea::placeholder {
  color: #8d94a6;
}

html[data-theme="dark"] .request-chooser input:checked + span {
  background: linear-gradient(135deg, rgba(240, 38, 61, 0.2), rgba(122, 40, 216, 0.24));
  border-color: rgba(255, 255, 255, 0.34);
}

html[data-theme="dark"] .site-footer {
  background: #080911;
  border-top-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1040px) {
  .theme-toggle strong {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    gap: 16px;
  }

  .lead-form-single,
  .request-chooser {
    grid-template-columns: 1fr;
  }

  .theme-toggle {
    order: 2;
  }

  .header-cta {
    order: 3;
  }
}

@media (max-width: 760px) {
  .theme-toggle {
    min-height: 34px;
    padding: 0 8px;
  }

  .request-chooser span {
    min-height: auto;
  }
}

/* Enterprise CTA pass: keep logo colors as accents and make actions feel less templated. */
:root {
  --cta-primary: #19516f;
  --cta-primary-hover: #123f58;
  --cta-primary-text: #ffffff;
  --cta-primary-border: rgba(255, 255, 255, 0.18);
  --cta-primary-shadow: 0 14px 28px rgba(25, 81, 111, 0.22);
  --cta-primary-shadow-hover: 0 18px 34px rgba(25, 81, 111, 0.3);
}

html[data-theme="dark"] {
  --cta-primary: #eef2f8;
  --cta-primary-hover: #ffffff;
  --cta-primary-text: #101624;
  --cta-primary-border: rgba(255, 255, 255, 0.28);
  --cta-primary-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
  --cta-primary-shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.button-primary,
.lead-form .button-primary,
.final-cta .button-primary {
  background: var(--cta-primary);
  border: 1px solid var(--cta-primary-border);
  box-shadow: var(--cta-primary-shadow);
  color: var(--cta-primary-text);
}

.button-primary:hover,
.lead-form .button-primary:hover,
.final-cta .button-primary:hover {
  background: var(--cta-primary-hover);
  box-shadow: var(--cta-primary-shadow-hover);
}

.button-primary:focus-visible,
.lead-form .button-primary:focus-visible,
.final-cta .button-primary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.94),
    0 0 0 6px rgba(25, 81, 111, 0.28),
    var(--cta-primary-shadow-hover);
  outline: none;
}

html[data-theme="dark"] .button-primary:focus-visible,
html[data-theme="dark"] .lead-form .button-primary:focus-visible,
html[data-theme="dark"] .final-cta .button-primary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(8, 9, 17, 0.94),
    0 0 0 6px rgba(238, 242, 248, 0.28),
    var(--cta-primary-shadow-hover);
}

/* Vantablack editorial pass: remove generic SaaS blues/purples from key UX surfaces. */
:root {
  --brand-red: #ec0000;
  --brand-red-dark: #b90000;
  --brand-magenta: #ec0000;
  --brand-purple: #111111;
  --blue: #111111;
  --cyan: #ec0000;
  --ink: #050505;
  --muted: #5f6268;
  --paper: #ffffff;
  --line: rgba(5, 5, 5, 0.13);
  --cta-primary: #ec0000;
  --cta-primary-hover: #bf0000;
  --cta-primary-text: #ffffff;
  --cta-primary-border: rgba(236, 0, 0, 0.24);
  --cta-primary-shadow: 0 14px 28px rgba(236, 0, 0, 0.18);
  --cta-primary-shadow-hover: 0 18px 34px rgba(236, 0, 0, 0.25);
}

html[data-theme="dark"] {
  --brand-red: #ff3131;
  --brand-red-dark: #ec0000;
  --brand-magenta: #ff3131;
  --brand-purple: #ffffff;
  --blue: #ffffff;
  --cyan: #ff3131;
  --ink: #f8f8f8;
  --muted: #b9bcc3;
  --paper: #050505;
  --line: rgba(255, 255, 255, 0.14);
  --cta-primary: #f7f7f7;
  --cta-primary-hover: #ffffff;
  --cta-primary-text: #050505;
  --cta-primary-border: rgba(255, 255, 255, 0.24);
  --cta-primary-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
  --cta-primary-shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.44);
}

.nav-links a::after,
.lead-form-accent::before {
  background: var(--brand-red);
}

.theme-toggle span {
  background: #ec0000;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(236, 0, 0, 0.18), transparent 34%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.section-kicker {
  color: var(--ink);
  letter-spacing: 0.18em;
}

.hero .eyebrow {
  color: #ffffff;
}

#platform {
  background: var(--paper);
  position: relative;
}

#platform .section-kicker {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 12px;
}

#platform .section-kicker::before {
  background: var(--brand-red);
  content: "";
  display: inline-block;
  height: 2px;
  width: 38px;
}

.value-grid {
  gap: 0;
}

.value-grid article {
  background: #ffffff;
  border-color: rgba(5, 5, 5, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.value-grid article:hover {
  border-color: rgba(236, 0, 0, 0.32);
}

.icon,
.flow span,
.form-heading span {
  color: var(--brand-red);
}

.product-band,
.final-cta {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(18, 18, 18, 0.98)),
    radial-gradient(circle at top right, rgba(236, 0, 0, 0.16), transparent 34%);
}

.industries,
.lead-section {
  background: #ffffff;
}

.industry-grid span {
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.16);
  color: var(--brand-red);
}

.request-chooser input:checked + span {
  background: #ffffff;
  border-color: rgba(236, 0, 0, 0.56);
  box-shadow: 0 16px 28px rgba(236, 0, 0, 0.1);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(236, 0, 0, 0.1);
}

.button-primary:focus-visible,
.lead-form .button-primary:focus-visible,
.final-cta .button-primary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.94),
    0 0 0 6px rgba(236, 0, 0, 0.26),
    var(--cta-primary-shadow-hover);
}

html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] #platform .section-kicker {
  color: #ffffff;
}

html[data-theme="dark"] #platform,
html[data-theme="dark"] .industries,
html[data-theme="dark"] .lead-section,
html[data-theme="dark"] .trust-signals {
  background: #050505;
}

html[data-theme="dark"] .value-grid article,
html[data-theme="dark"] .industry-grid span,
html[data-theme="dark"] .request-chooser input:checked + span,
html[data-theme="dark"] .deployment-grid article {
  background: rgba(255, 255, 255, 0.055);
}

html[data-theme="dark"] .trust-signals strong {
  border-color: rgba(255, 255, 255, 0.16);
  color: #f8f8f8;
}

/* IA/readability pass: stronger hero safe zone, clearer trust strip, mobile-first hook. */
.button,
.theme-toggle,
.request-chooser span,
.lead-form input,
.lead-form select,
.lead-form textarea {
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    color 260ms ease,
    opacity 260ms ease,
    transform 260ms ease;
}

.hero {
  min-height: 760px;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 32%, rgba(5, 5, 5, 0.52) 56%, rgba(5, 5, 5, 0.14) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.74)),
    url("https://images.unsplash.com/photo-1542296332-2e4473faf563?auto=format&fit=crop&w=2400&q=82");
  background-position: center right;
}

.hero::after {
  mix-blend-mode: normal;
}

.hero-content {
  align-self: center;
  max-width: 720px;
}

.hero-bridge {
  color: #ffffff;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
  max-width: 680px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  max-width: 650px;
}

.trust-strip {
  align-items: center;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  padding: 22px 24px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-strip strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.trust-signals {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  color: #050505;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px 24px;
}

.trust-signals strong {
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 9px 12px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hero {
    background: #050505;
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 96px 22px 0;
  }

  .hero-bg {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    height: 220px;
    inset: auto -22px 0;
    margin-top: 28px;
    order: 2;
    position: relative;
    transform: none;
    width: calc(100% + 44px);
  }

  .hero-content {
    align-self: auto;
    max-width: none;
    order: 1;
    width: 100%;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.96;
  }

  .hero-bridge {
    font-size: 22px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    margin-bottom: 22px;
  }

  .proof-strip {
    margin-top: 22px;
  }

  .trust-strip {
    justify-content: flex-start;
    padding: 20px 22px;
  }
}

/* Enterprise platform polish: proof, product tease cards, pipeline, icons, footer. */
.button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  min-width: 230px;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.consequence-callout {
  align-items: start;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.consequence-callout h2 {
  max-width: 980px;
}

.consequence-callout p:last-child {
  color: var(--muted);
  font-size: 18px;
  max-width: 820px;
}

.deployment-model {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.deployment-grid {
  display: grid;
  gap: 14px;
}

.deployment-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 54px minmax(0, 0.45fr) minmax(0, 1fr);
  padding: 22px;
}

.deployment-grid span {
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.deployment-grid h3,
.deployment-grid p {
  margin-bottom: 0;
}

.deployment-grid p {
  color: var(--muted);
}

.dashboard-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at top right, rgba(236, 0, 0, 0.12), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px);
}

.snapshot-label {
  color: #6c7077;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.snapshot-caption {
  color: #6c7077;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.dash-topline {
  background: #050505;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  margin-bottom: 18px;
  padding: 16px 18px;
}

.dash-topline span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-topline strong {
  align-items: center;
  background: rgba(236, 0, 0, 0.14);
  border: 1px solid rgba(236, 0, 0, 0.42);
  border-radius: 999px;
  color: #ff3131;
  display: inline-flex;
  font-size: 14px;
  min-height: 34px;
  padding: 0 14px;
  text-transform: uppercase;
}

.dash-metrics div {
  background:
    linear-gradient(180deg, #ffffff, #f7f7f7);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  min-height: 118px;
}

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

.dash-metrics small {
  color: #5f6268;
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dash-metrics strong {
  color: #050505;
  font-size: 34px;
}

.dash-metrics span {
  color: #7a7d84;
  font-weight: 800;
}

.topology {
  background:
    linear-gradient(rgba(5, 5, 5, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: 30px 30px;
  border-radius: 12px;
}

.node {
  border-color: rgba(5, 5, 5, 0.26);
}

.path,
.path-c {
  background: rgba(236, 0, 0, 0.48);
}

.flow {
  gap: 0;
}

.flow article {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  min-height: 210px;
  padding: 28px 28px 28px 40px;
}

.flow article:first-child {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.flow article:not(:last-child)::after {
  display: none;
}

.flow span {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.flow span i {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.workflow-intro {
  color: var(--muted);
  font-size: 18px;
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.pilot-deliverables,
.trust-section,
.pilot-path,
.personas {
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.pilot-deliverables {
  background: #ffffff;
}

.deliverable-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.deliverable-grid article,
.trust-grid article,
.pilot-path-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 26px;
}

.deliverable-grid span,
.pilot-path-grid span {
  color: var(--brand-red);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.deliverable-grid p,
.trust-grid p,
.pilot-path-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.trust-section {
  background: #050505;
  color: #ffffff;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.trust-section .section-kicker,
.trust-section h2 {
  color: #ffffff;
}

.trust-section > div:first-child > p:last-child,
.trust-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

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

.trust-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.trust-grid h3 {
  color: #ffffff;
}

.trust-note {
  border-left: 3px solid var(--brand-red);
  grid-column: 1 / -1;
  margin: 0;
  padding-left: 18px;
}

.pilot-path-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.personas {
  align-items: start;
  background: #f7f7f7;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.personas ul {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.personas li {
  background: #ffffff;
  border: 1px solid var(--line);
  font-weight: 900;
  padding: 16px;
}

.not-for {
  border-top: 1px solid var(--line);
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
}

.industry-grid span.industry-icon {
  align-items: center;
  border-radius: 12px;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 34px;
  position: relative;
  width: 48px;
}

.industry-icon::before,
.industry-icon::after {
  border: 2px solid currentColor;
  content: "";
  position: absolute;
}

.industry-icon[data-icon="airport"]::before {
  height: 26px;
  transform: rotate(45deg);
  width: 2px;
}

.industry-icon[data-icon="airport"]::after {
  height: 16px;
  transform: rotate(45deg);
  width: 28px;
}

.industry-icon[data-icon="rail"]::before {
  border-radius: 4px;
  height: 24px;
  width: 26px;
}

.industry-icon[data-icon="rail"]::after {
  border-width: 0 0 2px 2px;
  height: 9px;
  transform: rotate(-45deg);
  width: 22px;
}

.industry-icon[data-icon="port"]::before {
  border-radius: 999px 999px 0 0;
  height: 24px;
  width: 22px;
}

.industry-icon[data-icon="port"]::after {
  border-width: 0 0 2px;
  height: 0;
  width: 30px;
}

.industry-icon[data-icon="plant"]::before {
  height: 24px;
  width: 30px;
}

.industry-icon[data-icon="plant"]::after {
  border-width: 2px 0 0 2px;
  height: 14px;
  transform: translateY(-8px) skewX(-26deg);
  width: 22px;
}

.industry-icon[data-icon="health"]::before {
  height: 30px;
  width: 10px;
}

.industry-icon[data-icon="health"]::after {
  height: 10px;
  width: 30px;
}

.industry-icon[data-icon="gov"]::before {
  border-width: 2px 2px 0;
  height: 18px;
  transform: translateY(6px);
  width: 30px;
}

.industry-icon[data-icon="gov"]::after {
  border-width: 2px 0 0;
  height: 0;
  transform: translateY(-12px);
  width: 34px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.final-actions .button-primary,
.final-actions .button-secondary {
  min-width: 200px;
  width: auto;
}

.site-footer {
  align-items: flex-start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.9fr) auto;
}

.footer-main p {
  margin: 8px 0 0;
}

.footer-wordmark {
  color: #ffffff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-signals span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.form-expectation {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  grid-column: 1 / -1;
  margin: -2px 0 0;
}

.site-footer {
  background: #050505;
  border-top: 0;
  color: rgba(255, 255, 255, 0.68);
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, 0.55fr));
  padding-bottom: 0;
}

.site-footer .brand {
  min-width: 240px;
}

.footer-main p {
  max-width: 420px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.site-footer .footer-signals {
  margin-top: 18px;
}

.site-footer .footer-signals span {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 18px;
  padding: 20px 0;
}

.footer-bottom nav {
  display: flex;
  gap: 16px;
}

@media (max-width: 980px) {
  .consequence-callout,
  .deployment-model,
  .trust-section,
  .personas,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .deployment-grid article {
    grid-template-columns: 1fr;
  }

  .deliverable-grid,
  .pilot-path-grid,
  .dash-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow {
    gap: 12px;
  }

  .flow article,
  .flow article:first-child {
    clip-path: none;
    min-height: auto;
    padding: 24px;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .deliverable-grid,
  .pilot-path-grid,
  .personas ul,
  .dash-metrics {
    grid-template-columns: 1fr;
  }

  .final-actions,
  .final-actions .button-primary,
  .final-actions .button-secondary {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Hero image refresh: keep the airport/flight visual present on mobile without sacrificing readability. */
.hero {
  min-height: clamp(680px, 82vh, 820px);
  padding-bottom: 64px;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 34%, rgba(5, 5, 5, 0.36) 63%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.7)),
    url("https://images.unsplash.com/photo-1542296332-2e4473faf563?auto=format&fit=crop&w=2400&q=86");
  background-position: center right;
  background-size: cover;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(236, 0, 0, 0.16), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 30%);
}

@media (max-width: 760px) {
  .hero {
    background: #050505;
    display: grid;
    min-height: 760px;
    padding: 104px 22px 34px;
  }

  .hero-bg {
    border-top: 0;
    height: auto;
    inset: 0;
    margin-top: 0;
    order: initial;
    position: absolute;
    transform: scale(1.01);
    width: auto;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.5) 28%, rgba(5, 5, 5, 0.9) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.36)),
      url("https://images.unsplash.com/photo-1542296332-2e4473faf563?auto=format&fit=crop&w=1600&q=86");
    background-position: 66% center;
    background-size: cover;
  }

  .hero-content {
    align-self: end;
    max-width: none;
    order: initial;
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .hero::after {
    display: block;
  }

  .hero .eyebrow {
    font-size: 11px;
    line-height: 1.35;
    max-width: 310px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
    letter-spacing: -0.055em;
    max-width: 360px;
  }

  .hero-bridge {
    font-size: 19px;
    max-width: 360px;
  }

  .hero-copy {
    font-size: 15px;
    max-width: 360px;
  }

  .hero-actions {
    gap: 10px;
    margin: 24px 0 18px;
  }

  .proof-strip {
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 720px;
  }

  .hero-actions .button {
    min-width: 100%;
  }

  .proof-strip {
    display: none;
  }
}

/* Dark mobile readability pass: fix white-card regressions and add mobile depth. */
html[data-theme="dark"] .pilot-deliverables,
html[data-theme="dark"] .pilot-path,
html[data-theme="dark"] .personas {
  background:
    radial-gradient(circle at top right, rgba(236, 0, 0, 0.12), transparent 30%),
    #050505;
}

html[data-theme="dark"] .deliverable-grid article,
html[data-theme="dark"] .pilot-path-grid article,
html[data-theme="dark"] .personas li,
html[data-theme="dark"] .deployment-grid article {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f8f8f8;
}

html[data-theme="dark"] .deliverable-grid h3,
html[data-theme="dark"] .pilot-path-grid h3,
html[data-theme="dark"] .personas h2,
html[data-theme="dark"] .personas li,
html[data-theme="dark"] .deployment-grid h3 {
  color: #ffffff;
}

html[data-theme="dark"] .deliverable-grid p,
html[data-theme="dark"] .pilot-path-grid p,
html[data-theme="dark"] .not-for,
html[data-theme="dark"] .deployment-grid p {
  color: rgba(255, 255, 255, 0.68);
}

html[data-theme="dark"] .dashboard-card {
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.95), rgba(10, 10, 10, 0.92)),
    radial-gradient(circle at top right, rgba(236, 0, 0, 0.18), transparent 34%);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f8f8f8;
}

html[data-theme="dark"] .snapshot-label,
html[data-theme="dark"] .snapshot-caption,
html[data-theme="dark"] .dash-metrics small,
html[data-theme="dark"] .dash-metrics span {
  color: rgba(255, 255, 255, 0.68);
}

html[data-theme="dark"] .dash-metrics div,
html[data-theme="dark"] .risk-list div,
html[data-theme="dark"] .node {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

html[data-theme="dark"] .dash-metrics strong,
html[data-theme="dark"] .risk-list span,
html[data-theme="dark"] .node {
  color: #ffffff;
}

html[data-theme="dark"] .risk-list strong,
html[data-theme="dark"] .danger {
  color: #ff3131;
}

html[data-theme="dark"] .topology {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #0b0b0b;
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .impact {
  background: rgba(236, 0, 0, 0.16);
  border-color: rgba(255, 49, 49, 0.5);
}

@media (max-width: 760px) {
  .section {
    padding-bottom: 74px;
    padding-top: 74px;
  }

  .deliverable-grid,
  .pilot-path-grid,
  .personas ul,
  .deployment-grid,
  .trust-grid {
    gap: 16px;
  }

  .deliverable-grid article,
  .pilot-path-grid article,
  .personas li,
  .deployment-grid article,
  .industry-grid article {
    border-left: 3px solid var(--brand-red);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  }

  .pilot-deliverables,
  .pilot-path,
  .personas {
    background:
      linear-gradient(180deg, #ffffff, #f7f7f7);
  }

  html[data-theme="dark"] .pilot-deliverables,
  html[data-theme="dark"] .pilot-path,
  html[data-theme="dark"] .personas {
    background:
      radial-gradient(circle at 10% 0%, rgba(236, 0, 0, 0.18), transparent 24%),
      linear-gradient(180deg, #050505, #101010);
  }
}

/* Dark theme normalization: one consistent charcoal system, no neon/radial SaaS gradients. */
html[data-theme="dark"] body {
  background: #050505;
}

html[data-theme="dark"] .site-header {
  background: rgba(5, 5, 5, 0.9);
}

html[data-theme="dark"] #platform,
html[data-theme="dark"] .trust-signals,
html[data-theme="dark"] .consequence-callout,
html[data-theme="dark"] .deployment-model,
html[data-theme="dark"] .pilot-deliverables,
html[data-theme="dark"] #workflow,
html[data-theme="dark"] .industries,
html[data-theme="dark"] .trust-section,
html[data-theme="dark"] .pilot-path,
html[data-theme="dark"] .personas,
html[data-theme="dark"] .lead-section {
  background: #050505;
}

html[data-theme="dark"] .product-band,
html[data-theme="dark"] .final-cta,
html[data-theme="dark"] .site-footer {
  background: #050505;
}

html[data-theme="dark"] .hero::after {
  background: linear-gradient(90deg, rgba(236, 0, 0, 0.12), transparent 36%);
}

html[data-theme="dark"] .dashboard-card {
  background: #101010;
}

html[data-theme="dark"] .lead-form,
html[data-theme="dark"] .lead-form-accent,
html[data-theme="dark"] .dashboard-card,
html[data-theme="dark"] .value-grid article,
html[data-theme="dark"] .flow article,
html[data-theme="dark"] .industry-grid article,
html[data-theme="dark"] .deliverable-grid article,
html[data-theme="dark"] .pilot-path-grid article,
html[data-theme="dark"] .personas li,
html[data-theme="dark"] .deployment-grid article,
html[data-theme="dark"] .trust-grid article {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

html[data-theme="dark"] .dash-metrics div,
html[data-theme="dark"] .risk-list div,
html[data-theme="dark"] .node,
html[data-theme="dark"] .request-chooser span,
html[data-theme="dark"] .lead-form input,
html[data-theme="dark"] .lead-form select,
html[data-theme="dark"] .lead-form textarea {
  background: #151515;
  border-color: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .request-chooser input:checked + span {
  background: #181818;
  border-color: rgba(236, 0, 0, 0.58);
  box-shadow: none;
}

html[data-theme="dark"] .topology {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #0b0b0b;
}

@media (max-width: 760px) {
  html[data-theme="dark"] .pilot-deliverables,
  html[data-theme="dark"] .pilot-path,
  html[data-theme="dark"] .personas {
    background: #050505;
  }
}
