:root {
  color-scheme: light;
  --ink: #15212a;
  --muted: #52626d;
  --line: #d7e1e6;
  --paper: #f7f8f5;
  --white: #ffffff;
  --cyan: #1aa7b8;
  --blue: #245d8f;
  --amber: #d5912f;
  --graphite: #20282f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(247, 248, 245, 0.82);
  border-bottom: 1px solid rgba(21, 33, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 22px;
  font-weight: 760;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  color: var(--muted);
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 72px) 80px;
  border-bottom: 1px solid var(--line);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 248, 245, 0.96) 0%, rgba(247, 248, 245, 0.78) 42%, rgba(247, 248, 245, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 22px;
  max-width: 820px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
}

h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

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

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: #33434d;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
}

.band {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.audit-strip {
  padding: 38px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.audit-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
}

.audit-strip h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
}

.audit-strip .eyebrow {
  color: #8fd6df;
}

.audit-points,
.stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audit-points span,
.stack-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #eef7f8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 760;
}

.three-columns,
.pricing-grid,
.use-case-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.three-columns article,
.price-card,
.use-case-grid article,
.faq-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.use-case-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.use-case-grid article {
  min-height: 250px;
}

.use-case-grid span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.solution {
  background: #eef5f3;
}

.command {
  background: #19252c;
  color: white;
}

.command p {
  color: #c9d6dc;
}

.command .eyebrow {
  color: #8fd6df;
}

.command-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.command-console {
  overflow: hidden;
  background: #f9fbfa;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 0 18px;
  color: var(--ink);
  background: white;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.console-bar strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #0d6b45;
  background: #e8f7ef;
  border: 1px solid #bfe8d0;
  border-radius: 999px;
  font-size: 12px;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.console-metrics div {
  min-height: 104px;
  padding: 18px;
  background: #f9fbfa;
}

.console-metrics span {
  display: block;
  min-height: 38px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.console-metrics strong {
  color: var(--ink);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1;
}

.lead-table {
  padding: 14px;
  background: #f4f8f7;
}

.lead-row {
  display: grid;
  grid-template-columns: 1.15fr 0.44fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
}

.lead-row + .lead-row {
  margin-top: 8px;
}

.lead-row.head {
  min-height: 34px;
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-row.hot {
  border-color: rgba(213, 145, 47, 0.45);
  box-shadow: inset 4px 0 0 var(--amber);
}

.flow-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.flow-rail span {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 10px;
  color: var(--ink);
  background: #eef5f3;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.use-cases {
  background: #fbfcfa;
}

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

.feature-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 33, 42, 0.16);
  font-size: 18px;
  font-weight: 700;
}

.feature-list span {
  color: var(--amber);
  font-size: 13px;
}

.process {
  background: var(--graphite);
  color: white;
}

.process p,
.process .eyebrow {
  color: #8fd6df;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.2);
}

.timeline div {
  min-height: 170px;
  padding: 22px;
  background: var(--graphite);
}

.timeline strong {
  display: block;
  color: var(--amber);
  margin-bottom: 32px;
}

.timeline span {
  color: #e7eef1;
  line-height: 1.45;
}

.price {
  margin: 18px 0 8px;
  color: var(--blue);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;
}

.before-after {
  background: #f1f7f7;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.comparison div {
  padding: clamp(24px, 4vw, 40px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison div:last-child {
  border-color: rgba(26, 167, 184, 0.38);
  box-shadow: 0 20px 70px rgba(26, 167, 184, 0.12);
}

.stack {
  background: #eef4f1;
}

.stack-chips span {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.faq {
  background: #fbfcfa;
}

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

.faq-grid article {
  min-height: 180px;
}

.monthly {
  margin-top: 24px;
  color: var(--ink);
  font-weight: 760;
}

.about {
  background: #f2f6f7;
}

.contact {
  padding: clamp(76px, 10vw, 140px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.contact h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-inner {
  text-align: center;
}

.contact .eyebrow {
  color: #8fd6df;
}

.contact .button {
  margin-top: 16px;
  background: white;
  color: var(--ink);
  border-color: white;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 20px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer a {
  text-decoration: none;
}

.legal-page {
  min-height: calc(100vh - 84px);
  padding: 150px clamp(20px, 5vw, 72px) 80px;
}

.legal-page h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: clamp(24px, 4vw, 36px);
}

.legal-list {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 14px 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-list dt {
  color: var(--ink);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  nav {
    width: 100%;
    overflow-x: visible;
    row-gap: 8px;
    padding-bottom: 0;
  }

  .hero {
    min-height: 88vh;
    padding-top: 150px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(247, 248, 245, 0.98) 0%, rgba(247, 248, 245, 0.88) 62%, rgba(247, 248, 245, 0.5) 100%);
  }

  .three-columns,
  .pricing-grid,
  .use-case-grid,
  .faq-grid,
  .comparison,
  .audit-inner,
  .command-layout,
  .split,
  .timeline,
  .legal-list {
    grid-template-columns: 1fr;
  }

  .console-metrics,
  .flow-rail {
    grid-template-columns: 1fr;
  }

  .lead-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px;
  }

  .lead-row.head {
    display: none;
  }

  .timeline div {
    min-height: 120px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 42px;
  }

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

  .button {
    width: 100%;
  }
}
