:root {
  color-scheme: light;
  --ink: #132322;
  --muted: #5f6f70;
  --line: #d8e2df;
  --paper: #fbfcf8;
  --soft: #eef5f1;
  --teal: #0f766e;
  --teal-dark: #0a4f4b;
  --accent: #b8c9c7;
  --blue: #315f9d;
  --charcoal: #17211f;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(13, 32, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 252, 248, 0.86);
  border-bottom: 1px solid rgba(216, 226, 223, 0.8);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  gap: 0;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}

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

.brand-back {
  color: var(--teal);
  margin-left: 2px;
  position: relative;
}

.brand-back::after {
  background: rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  bottom: -5px;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
}

.site-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta {
  background: var(--ink);
  border-radius: 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  justify-self: end;
  padding: 10px 14px;
}

.header-right {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-self: end;
}

.omnerra-header {
  align-items: center;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}

.omnerra-header img {
  border-radius: 6px;
  height: 26px;
  object-fit: cover;
  width: 26px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 24, 23, 0.94) 0%, rgba(14, 24, 23, 0.78) 36%, rgba(14, 24, 23, 0.25) 68%, rgba(14, 24, 23, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.28));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  padding: clamp(132px, 18vh, 190px) clamp(20px, 6vw, 72px) 56px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.92;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  margin-bottom: 20px;
}

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

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 690px;
}

.company-line {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 700;
  margin: -6px 0 0;
}

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

.primary-button,
.secondary-button,
.pilot-form button,
.waitlist-form button {
  border-radius: 7px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 14px 18px;
}

.primary-button,
.pilot-form button,
.waitlist-form button {
  background: var(--teal);
  color: var(--white);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.hero-metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0 0;
  max-width: 760px;
}

.hero-metrics div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 16px;
}

.hero-metrics dt {
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
}

.hero-metrics dd {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
  margin: 4px 0 0;
}

.omnerra-strip {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.omnerra-inner {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: 300px 1fr;
  margin: 0 auto;
  max-width: 1180px;
  padding: 30px clamp(20px, 4vw, 42px);
}

.omnerra-wordmark {
  align-items: center;
  display: flex;
  gap: 16px;
}

.omnerra-wordmark img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.omnerra-wordmark strong,
.omnerra-wordmark em {
  display: block;
  font-style: normal;
}

.omnerra-wordmark strong {
  font-size: 25px;
  line-height: 1;
}

.omnerra-wordmark em {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
  margin-top: 4px;
  text-transform: uppercase;
}

.omnerra-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.52;
  margin: 0 0 16px;
  max-width: 720px;
}

.omnerra-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.omnerra-tags span {
  background: rgba(32, 164, 243, 0.12);
  border: 1px solid rgba(32, 164, 243, 0.28);
  border-radius: 999px;
  color: #d8f0ff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  text-transform: uppercase;
}

.band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.problem-band {
  background: var(--soft);
}

.section,
.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 86px clamp(20px, 4vw, 42px);
}

.split {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: 0.95fr 1.05fr;
}

.problem-copy p {
  font-size: 18px;
}

.inline-flow {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.inline-flow span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 12px;
  text-align: center;
}

.section-heading {
  margin-bottom: 38px;
  max-width: 820px;
}

.about-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
}

.about-copy {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.about-copy p {
  font-size: 18px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.industry-grid,
.proof-grid,
.article-grid,
.signal-grid,
.faq-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-card,
.proof-grid article,
.article-card,
.signal-grid article,
.faq-list article,
.review-panel,
.pilot-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.waitlist-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.industry-card,
.proof-grid article,
.article-card,
.signal-grid article,
.faq-list article {
  padding: 24px;
}

.signal-section {
  border-bottom: 1px solid var(--line);
}

.visual-story {
  background: #f6faf8;
  border-bottom: 1px solid var(--line);
}

.recovery-path {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.recovery-path article {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 240px;
  padding: 26px;
}

.recovery-path article:first-child {
  border-left: 1px solid var(--line);
}

.recovery-path article span {
  color: var(--teal);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 42px;
}

.recovery-path article h3 {
  font-size: 23px;
}

.path-summary {
  align-items: center;
  background: var(--ink);
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--white);
  display: flex;
  gap: 8px;
  grid-column: 1 / -1;
  padding: 18px 24px;
}

.path-summary span {
  color: rgba(255, 255, 255, 0.72);
}

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

.signal-grid article {
  background: #f7faf7;
}

.signal-grid h3,
.faq-list h3 {
  font-size: 18px;
}

.industry-card {
  min-height: 246px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.industry-card:hover {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 14px 34px rgba(15, 48, 45, 0.11);
  transform: translateY(-3px);
}

.icon-pill {
  align-items: center;
  background: #edf7f5;
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  margin-bottom: 26px;
  width: 44px;
}

.product-band {
  background: #192522;
  color: var(--white);
}

.product-band p {
  color: rgba(255, 255, 255, 0.68);
}

.product-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.1fr 0.9fr;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  padding: 18px 0;
}

.steps span {
  align-items: center;
  background: rgba(32, 164, 243, 0.16);
  border: 1px solid rgba(32, 164, 243, 0.4);
  border-radius: 7px;
  color: #d8f0ff;
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.review-panel {
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
}

.panel-top,
.queue-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.panel-top {
  background: var(--ink);
  color: var(--white);
  padding: 20px;
}

.panel-top span {
  color: rgba(255, 255, 255, 0.68);
}

.queue-row {
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.queue-row strong {
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 12px;
  padding: 7px 10px;
  background: #e8f5f2;
}

.queue-row.alert strong {
  background: #e9f5ff;
  color: #245982;
}

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

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

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

.case-band {
  background: #edf4f2;
}

.case-study {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(15, 48, 45, 0.1);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 0.9fr;
  padding: clamp(24px, 4vw, 42px);
}

.case-label {
  background: #e9f5ff;
  border-radius: 999px;
  color: #245982;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 20px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.case-copy h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.case-actions a {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--teal-dark);
  font-weight: 900;
  padding: 12px 14px;
}

.case-actions a:first-child {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

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

.case-metrics div {
  background: #f7faf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.case-metrics dt {
  color: var(--teal-dark);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.case-metrics dd {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 8px 0 0;
}

.articles {
  border-top: 1px solid var(--line);
}

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

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 286px;
}

.featured-article {
  background: var(--ink);
  color: var(--white);
}

.featured-article p {
  color: rgba(255, 255, 255, 0.74);
}

.article-type {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.article-card a {
  color: var(--teal-dark);
  font-weight: 900;
  margin-top: auto;
}

.featured-article a {
  color: var(--white);
}

.pilot-band {
  background: #f6f2e9;
}

.pilot-layout {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 430px;
}

.pilot-form {
  box-shadow: 0 16px 50px rgba(71, 62, 43, 0.12);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.pilot-form label,
.waitlist-form label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.pilot-form input,
.pilot-form select,
.waitlist-form input,
.waitlist-form select {
  background: #fbfcf8;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.estimate {
  background: #eef5f1;
  border: 1px solid #cddfd9;
  border-radius: var(--radius);
  color: var(--teal-dark);
  font-weight: 700;
  padding: 14px;
}

.waitlist-section {
  background: var(--ink);
  color: var(--white);
}

.waitlist-section p {
  color: rgba(255, 255, 255, 0.72);
}

.waitlist-layout {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 430px;
  margin: 0 auto;
  max-width: 1180px;
}

.promo-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  display: grid;
  gap: 6px;
  margin-top: 28px;
  max-width: 520px;
  padding: 18px;
}

.promo-box strong {
  color: var(--white);
  font-size: 18px;
}

.promo-box span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.waitlist-form {
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.waitlist-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.hidden-field {
  display: none;
}

.form-note {
  color: var(--muted) !important;
  font-size: 13px;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 4vw, 54px);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

.footer-cta {
  background: var(--white);
  border-radius: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  padding: 11px 14px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-metrics,
  .omnerra-inner,
  .split,
  .about-layout,
  .recovery-path,
  .product-layout,
  .case-study,
  .pilot-layout,
  .waitlist-layout {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .proof-grid,
  .article-grid,
  .signal-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pilot-layout {
    gap: 22px;
  }

  .about-copy {
    border-left: 0;
    padding-left: 0;
  }

  .recovery-path article {
    border-left: 1px solid var(--line);
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  .omnerra-header {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(14, 24, 23, 0.95), rgba(14, 24, 23, 0.72));
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-metrics,
  .inline-flow,
  .case-metrics,
  .industry-grid,
  .proof-grid,
  .article-grid,
  .signal-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .section,
  .section-inner {
    padding-bottom: 62px;
    padding-top: 62px;
  }

  h1 {
    font-size: 52px;
  }
}
