:root {
  color-scheme: dark;
  --bg: #080b0b;
  --panel: #101615;
  --panel-2: #151c1a;
  --ink: #f4fbf8;
  --muted: #a7b8b2;
  --soft: #6f817a;
  --line: rgba(211, 255, 239, 0.13);
  --teal: hsl(162 100% 45%);
  --teal-deep: #027f63;
  --amber: #f0b44c;
  --red: #f06267;
  --blue: #7aa8ff;
  --font-body: Inter, ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 230, 172, 0.12), transparent 28rem),
    linear-gradient(180deg, #080b0b 0%, #0a0d0c 46%, #0d1110 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 58px);
  background: color-mix(in srgb, var(--bg), transparent 15%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-weight: 800;
}

.brand {
  gap: 10px;
  letter-spacing: 0;
  min-width: 0;
  font-size: 15px;
}

.brand span:last-child {
  overflow: hidden;
  max-width: 260px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark,
.shield {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #03231c;
  background: var(--teal);
  clip-path: polygon(50% 0, 92% 18%, 84% 78%, 50% 100%, 16% 78%, 8% 18%);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--ink);
}

.header-cta {
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: 14px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(54px, 8vw, 108px) 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px var(--teal);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 92px;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 62px;
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-lede,
.section-heading p,
.roi-copy p,
.price-card p,
.final-cta p {
  color: var(--muted);
  font-size: 21px;
}

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

.button {
  min-width: 146px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.button.primary {
  color: #03231c;
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(0, 230, 172, 0.2);
}

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

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

.hero-proof div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 20px;
}

.hero-proof span {
  color: var(--soft);
  font-size: 13px;
}

.product-stage {
  position: relative;
  min-width: 0;
}

.dashboard-window {
  overflow: hidden;
  background: #0f1514;
  border: 1px solid rgba(211, 255, 239, 0.2);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  background: #151c1a;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--soft);
}

.window-bar span:first-child {
  background: var(--red);
}

.window-bar span:nth-child(2) {
  background: var(--amber);
}

.window-bar span:nth-child(3) {
  background: var(--teal);
}

.window-bar p {
  margin: 0 0 0 12px;
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 12px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 480px;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 16px;
  background: #0b100f;
  border-right: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.dash-sidebar .shield {
  margin-bottom: 18px;
}

.dash-sidebar span {
  padding: 10px;
  border-radius: 7px;
}

.dash-sidebar .side-active {
  color: var(--ink);
  background: rgba(0, 230, 172, 0.12);
}

.dash-main {
  padding: clamp(18px, 3vw, 28px);
}

.dash-topline,
.metric-row,
.job-card,
.roi-split {
  display: grid;
  gap: 12px;
}

.dash-topline {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.dash-topline small,
.metric-card span,
.job-card span,
.roi-number span,
.roi-split span,
.payback span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dash-topline strong {
  display: block;
  font-size: 52px;
  line-height: 1;
}

.health-pill {
  padding: 8px 10px;
  color: var(--teal);
  background: rgba(0, 230, 172, 0.1);
  border: 1px solid rgba(0, 230, 172, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.metric-row {
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0 14px;
}

.metric-card,
.chart-panel,
.job-card,
.feature,
.result-card,
.price-card,
details,
.roi-panel,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.metric-card {
  padding: 14px;
}

.metric-card strong {
  font-size: 28px;
}

.metric-card.good strong {
  color: var(--teal);
}

.metric-card.warn strong {
  color: var(--amber);
}

.metric-card.bad strong {
  color: var(--red);
}

.chart-panel {
  height: 180px;
  padding: 16px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  gap: 8px;
  height: 100%;
}

.chart-bars i {
  display: block;
  min-height: 18px;
  background: linear-gradient(180deg, var(--teal), var(--teal-deep));
  border-radius: 4px 4px 0 0;
}

.job-card {
  grid-template-columns: 1fr 120px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
}

.job-card strong {
  display: block;
  font-size: 14px;
}

.progress {
  height: 9px;
  overflow: hidden;
  background: #25302d;
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 70%;
  height: 100%;
  background: var(--teal);
}

.terminal-card {
  position: absolute;
  right: 28px;
  bottom: -34px;
  display: grid;
  gap: 8px;
  width: min(460px, calc(100% - 42px));
  padding: 18px;
  background: #050807;
  border: 1px solid rgba(0, 230, 172, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-mono);
  font-size: 12px;
}

.terminal-card span:first-child {
  color: var(--teal);
}

.terminal-card span:last-child {
  color: var(--muted);
}

.pain-band {
  border-block: 1px solid var(--line);
  background: #dfe8e1;
  color: #101615;
}

.pain-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(64px, 8vw, 104px) 0;
}

.pain-grid .section-kicker {
  color: #02745c;
}

.pain-list {
  display: grid;
  gap: 14px;
}

.pain-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 22, 21, 0.18);
}

.pain-list span {
  display: block;
  margin-bottom: 4px;
  font-size: 26px;
  font-weight: 900;
}

.pain-list p {
  margin: 0;
  color: #41514b;
}

.solution,
.features,
.results,
.compare,
.pricing,
.faq,
.final-cta,
.roi {
  padding: clamp(78px, 10vw, 138px) 0;
}

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

.section-heading.narrow {
  max-width: 660px;
}

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

.step {
  padding: 24px;
}

.step span {
  display: block;
  margin-bottom: 26px;
  color: var(--teal);
  font-family: var(--font-mono);
  font-weight: 900;
}

.step p,
.feature p,
details p {
  margin-bottom: 0;
  color: var(--muted);
}

.roi {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.volume-control {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 34px 0 12px;
  color: var(--muted);
  font-weight: 800;
}

.volume-control strong {
  color: var(--ink);
  font-family: var(--font-mono);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
}

.roi-panel {
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(0, 230, 172, 0.11), rgba(255, 255, 255, 0.035));
}

.roi-number strong {
  display: block;
  font-size: 94px;
  line-height: 0.95;
}

.roi-split {
  grid-template-columns: repeat(2, 1fr);
  margin: 28px 0;
}

.roi-split div,
.payback {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.17);
}

.roi-split strong,
.payback strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature {
  min-height: 240px;
  padding: 22px;
}

.feature.large {
  grid-column: span 2;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 34px;
  margin-bottom: 34px;
  padding: 0 8px;
  color: #03231c;
  background: var(--teal);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
}

.results {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.result-card {
  padding: clamp(26px, 4vw, 46px);
}

.result-output {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  padding: 20px;
  background: #050807;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 230, 172, 0.2);
}

code {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 14px;
}

.status-stack {
  display: grid;
  gap: 10px;
}

.status-stack span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 900;
}

.deliverable {
  background: rgba(0, 230, 172, 0.18);
  color: var(--teal);
}

.undeliverable {
  background: rgba(240, 98, 103, 0.16);
  color: var(--red);
}

.risky {
  background: rgba(240, 180, 76, 0.17);
  color: var(--amber);
}

.accept {
  background: rgba(122, 168, 255, 0.16);
  color: var(--blue);
}

.disposable,
.unknown {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr 1fr;
  border-top: 1px solid var(--line);
}

.row:first-child {
  border-top: 0;
}

.row > * {
  padding: 18px;
  color: var(--muted);
  border-left: 1px solid var(--line);
}

.row > *:first-child {
  color: var(--ink);
  border-left: 0;
  font-weight: 800;
}

.row.head {
  background: rgba(255, 255, 255, 0.045);
}

.row.head span,
.row strong {
  color: var(--teal);
}

.pricing {
  padding-top: 0;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: #dfe8e1;
  color: #101615;
}

.price-card .section-kicker {
  color: #02745c;
}

.price-card p {
  color: #41514b;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #2d3b36;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

details {
  padding: 20px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  padding-top: 14px;
}

.final-cta {
  max-width: 820px;
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-weight: 800;
}

@media (max-width: 960px) {
  nav {
    display: none;
  }

  .hero,
  .pain-grid,
  .roi,
  .results,
  .price-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .workflow,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card {
    align-items: start;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-lede,
  .section-heading p,
  .roi-copy p,
  .price-card p,
  .final-cta p {
    font-size: 19px;
  }

  .dash-topline strong {
    font-size: 42px;
  }

  .roi-number strong {
    font-size: 70px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }

  .header-cta {
    display: none;
  }

  .brand span:last-child {
    max-width: calc(100vw - 104px);
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lede,
  .section-heading p,
  .roi-copy p,
  .price-card p,
  .final-cta p {
    font-size: 17px;
  }

  .dash-topline strong {
    font-size: 34px;
  }

  .roi-number strong {
    font-size: 52px;
  }

  .hero-proof,
  .metric-row,
  .roi-split,
  .feature-mosaic {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  .dash-topline,
  .job-card {
    grid-template-columns: 1fr;
  }

  .health-pill {
    justify-self: start;
  }

  .terminal-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .feature.large {
    grid-column: span 1;
  }

  .row {
    min-width: 760px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  footer {
    flex-direction: column;
  }
}
