:root {
  color-scheme: light;
  --ink: oklch(18% 0.015 42);
  --soft-ink: oklch(45% 0.018 42);
  --muted: oklch(58% 0.018 42);
  --paper: oklch(98.5% 0.004 65);
  --paper-soft: oklch(96.5% 0.008 42);
  --line: oklch(88% 0.012 42);
  --line-soft: oklch(92% 0.01 42);
  --orange: oklch(70% 0.18 43);
  --orange-strong: oklch(63% 0.19 42);
  --pink: oklch(92% 0.035 10);
  --green: oklch(66% 0.14 152);
  --purple: oklch(64% 0.12 292);
  --shadow: 0 22px 80px oklch(40% 0.04 30 / 0.12);
  --deep-shadow: 0 38px 120px oklch(40% 0.04 30 / 0.18);
  --radius: 28px;
  --container: min(100% - 48px, 1200px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 50% 10%, oklch(91% 0.05 20 / 0.72), transparent 46%),
    linear-gradient(180deg, oklch(98% 0.006 50), oklch(96% 0.006 70) 55%, oklch(98% 0.004 80));
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

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

.site {
  min-height: 100vh;
}

.site::before,
.site::after {
  border-left: 1px dashed oklch(78% 0.02 35 / 0.55);
  content: "";
  inset-block: 0;
  pointer-events: none;
  position: fixed;
  width: 1px;
  z-index: 0;
}

.site::before {
  left: max(20px, calc((100% - 1200px) / 2));
}

.site::after {
  right: max(20px, calc((100% - 1200px) / 2));
}

.site-header {
  align-items: center;
  display: flex;
  height: 96px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  position: relative;
  z-index: 2;
}

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

.brand-mark {
  align-items: center;
  background: var(--orange);
  border-radius: 9px;
  color: oklch(99% 0.004 80);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  transform: skew(-8deg);
  width: 30px;
}

.brand strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  margin-top: 2px;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.7vw, 34px);
  font-size: 1rem;
  font-weight: 650;
}

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

.nav a:not(.nav-cta):hover {
  color: var(--orange-strong);
}

.nav-cta {
  align-items: center;
  background: oklch(100% 0 0 / 0.78);
  border: 1px solid oklch(100% 0 0 / 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 38px oklch(40% 0.04 30 / 0.08);
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  justify-items: center;
  margin: 0 auto;
  max-width: var(--container);
  min-height: 820px;
  padding: 104px 0 48px;
  position: relative;
  text-align: center;
}

.hero::before,
.hero::after {
  border-top: 1px dashed oklch(78% 0.02 35 / 0.5);
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero::before {
  top: 0;
}

.hero::after {
  top: 510px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 760px;
}

.eyebrow {
  align-items: center;
  background: oklch(100% 0 0 / 0.58);
  border: 1px solid oklch(86% 0.022 35);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 650;
  gap: 9px;
  line-height: 1;
  padding: 10px 18px;
}

.eyebrow::before {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 8px;
}

.eyebrow em {
  color: var(--soft-ink);
  font-style: normal;
  font-weight: 600;
}

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

h1 {
  font-size: clamp(3.2rem, 5.05vw, 5.05rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.95;
  margin-top: 22px;
  max-width: 820px;
}

.hero-copy p {
  color: var(--soft-ink);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.55;
  margin-top: 18px;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  gap: 14px;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.btn i {
  font-style: normal;
}

.btn.primary {
  background: var(--orange);
  box-shadow: 0 22px 44px oklch(70% 0.18 43 / 0.28);
  color: oklch(99% 0.004 80);
}

.btn.secondary {
  background: oklch(100% 0 0 / 0.68);
  border: 1px solid var(--line);
  color: var(--ink);
}

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

.hero-facts {
  align-items: center;
  background: oklch(100% 0 0 / 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 52px oklch(40% 0.04 30 / 0.08);
  color: var(--soft-ink);
  display: inline-flex;
  flex-wrap: wrap;
  font-weight: 650;
  gap: 0;
  justify-content: center;
  margin-top: 60px;
  overflow: hidden;
}

.hero-facts span {
  padding: 13px 18px;
}

.hero-facts span + span {
  border-left: 1px solid var(--line);
}

.product-frame {
  margin-top: 68px;
  position: relative;
  width: min(100%, 1000px);
}

.product-frame::before {
  background: oklch(100% 0 0 / 0.48);
  border-radius: 36px;
  content: "";
  inset: -24px -34px;
  position: absolute;
  z-index: -1;
}

.app-window {
  background: oklch(99.2% 0.004 70);
  border: 1px solid oklch(90% 0.012 45);
  border-radius: 24px;
  box-shadow: var(--deep-shadow);
  overflow: hidden;
  text-align: left;
}

.window-top {
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  display: flex;
  gap: 8px;
  height: 54px;
  padding: 0 22px;
}

.window-top span {
  background: var(--line);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.window-top span:first-child {
  background: var(--orange);
}

.window-top strong {
  color: var(--ink);
  font-size: 0.9rem;
  margin-left: 10px;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 520px;
}

.dashboard-preview aside {
  background: oklch(97% 0.004 75);
  border-right: 1px solid var(--line-soft);
  display: grid;
  gap: 10px;
  grid-auto-rows: max-content;
  padding: 28px 18px;
}

.dashboard-preview aside strong {
  margin-bottom: 12px;
}

.dashboard-preview aside span {
  border-radius: 12px;
  color: var(--muted);
  font-weight: 650;
  padding: 11px 12px;
}

.dashboard-preview aside .active {
  background: oklch(19% 0.02 44);
  color: oklch(98% 0.004 80);
}

.dashboard-preview section {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.preview-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.preview-head span {
  color: var(--soft-ink);
  font-weight: 700;
}

.preview-head strong {
  color: var(--green);
  font-size: 2rem;
}

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

.metric-row div,
.risk-table,
.timeline {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
}

.metric-row div {
  display: grid;
  gap: 4px;
  padding: 20px;
}

.metric-row b {
  font-size: 2rem;
}

.metric-row span {
  color: var(--muted);
}

.risk-table {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr max-content;
  padding: 22px;
}

.risk-table span {
  color: var(--soft-ink);
}

.risk {
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 5px 10px;
}

.risk.low {
  background: oklch(92% 0.06 152);
  color: oklch(38% 0.11 152);
}

.risk.medium {
  background: oklch(94% 0.055 86);
  color: oklch(45% 0.1 74);
}

.risk.high {
  background: oklch(93% 0.055 43);
  color: oklch(48% 0.14 43);
}

.risk.critical {
  background: oklch(91% 0.06 22);
  color: oklch(42% 0.15 22);
}

.timeline {
  height: 18px;
  overflow: hidden;
}

.timeline span {
  background: linear-gradient(90deg, var(--orange), var(--purple));
  display: block;
  height: 100%;
}

.strip,
.section,
.method,
.proof,
.final-cta,
.footer {
  margin: 0 auto;
  max-width: var(--container);
  position: relative;
}

.strip {
  border-bottom: 1px dashed oklch(82% 0.014 42);
  border-top: 1px dashed oklch(82% 0.014 42);
  color: var(--soft-ink);
  padding: 34px 0;
  text-align: center;
}

.strip p {
  font-size: 1.12rem;
  margin: 0 auto;
  max-width: 920px;
}

.section,
.method,
.proof,
.final-cta {
  padding: 116px 0;
}

.section-heading {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 0 auto 46px;
  max-width: 790px;
  text-align: center;
}

h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  font-weight: 830;
  letter-spacing: 0;
  line-height: 0.98;
}

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

.feature-grid article {
  background: oklch(100% 0 0 / 0.58);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 48px oklch(40% 0.04 30 / 0.06);
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 28px;
}

.feature-grid article span {
  align-items: center;
  background: oklch(95% 0.02 48);
  border-radius: 999px;
  color: var(--orange-strong);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.feature-grid h3,
.steps strong {
  font-size: 1.35rem;
}

.feature-grid p,
.steps p,
.proof-copy p,
.proof-panel span {
  color: var(--soft-ink);
}

.method {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: 0.85fr 1.15fr;
}

.method > div {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 32px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  background: oklch(100% 0 0 / 0.62);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 28px 28px 28px 86px;
  position: relative;
}

.steps li::before {
  align-items: center;
  background: var(--orange);
  border-radius: 999px;
  color: oklch(99% 0.004 80);
  content: counter(step);
  counter-increment: step;
  display: inline-flex;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  left: 24px;
  position: absolute;
  top: 28px;
  width: 44px;
}

.proof {
  align-items: center;
  border-bottom: 1px dashed oklch(82% 0.014 42);
  border-top: 1px dashed oklch(82% 0.014 42);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 0.8fr;
}

.proof-copy {
  display: grid;
  gap: 18px;
}

.proof-panel {
  background:
    linear-gradient(145deg, oklch(100% 0 0 / 0.76), oklch(97% 0.012 42 / 0.7));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.proof-panel div {
  background: oklch(100% 0 0 / 0.46);
  display: grid;
  gap: 6px;
  padding: 28px;
}

.proof-panel strong {
  font-size: 2.4rem;
  line-height: 1;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  margin-top: 18px;
  max-width: 820px;
}

.footer {
  align-items: center;
  border-top: 1px dashed oklch(82% 0.014 42);
  display: flex;
  justify-content: space-between;
  padding: 30px 0 42px;
}

.footer div {
  display: grid;
  gap: 3px;
}

.footer span,
.footer a {
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer a:hover {
  color: var(--orange-strong);
}

@media (max-width: 960px) {
  .site-header {
    height: auto;
    padding: 22px 0;
  }

  .nav {
    gap: 16px;
  }

  .nav a:not(.nav-cta):nth-child(n + 3) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero::after {
    top: 470px;
  }

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

  .dashboard-preview aside {
    border-bottom: 1px solid var(--line-soft);
    border-right: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-preview aside strong {
    grid-column: 1 / -1;
  }

  .feature-grid,
  .method,
  .proof {
    grid-template-columns: 1fr;
  }

  .method > div {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1200px);
  }

  .site::before,
  .site::after {
    display: none;
  }

  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .nav {
    justify-content: flex-end;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-facts {
    border-radius: 24px;
    width: 100%;
  }

  .hero-facts span {
    width: 100%;
  }

  .hero-facts span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-frame {
    margin-top: 42px;
  }

  .product-frame::before {
    inset: -12px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .dashboard-preview aside {
    display: none;
  }

  .dashboard-preview section {
    padding: 20px;
  }

  .risk-table {
    grid-template-columns: 1fr;
  }

  .section,
  .method,
  .proof,
  .final-cta {
    padding: 76px 0;
  }

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

  .steps li {
    padding-left: 28px;
    padding-top: 86px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer nav {
    justify-content: flex-start;
  }
}
