:root {
  color-scheme: light;
  --ink: #14212b;
  --muted: #566879;
  --line: #d8e1e7;
  --paper: #ffffff;
  --soft: #f5f8fa;
  --deep: #0f2735;
  --teal: #0f766e;
  --teal-dark: #115e59;
  --gold: #b7791f;
  --blue: #2458a7;
  --shadow: 0 22px 55px rgb(15 35 50 / 12%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font: 16px/1.55 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgb(255 255 255 / 92%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.brand strong,
.brand span {
  display: block;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #263746;
  text-decoration: none;
}

.nav-links a:hover {
  background: #e9f1f4;
}

.nav-links .button,
.button {
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.nav-links .button:hover,
.button:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: #e9f1f4;
  color: var(--ink);
}

.button.secondary:hover {
  background: #dfe9ee;
}

.hero {
  background: var(--deep);
  color: #f8fbfc;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: #9ee7dc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 12px 0 16px;
  max-width: 860px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 720px;
  color: #d6e4ea;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.proof-strip div {
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  padding: 14px;
  background: rgb(255 255 255 / 7%);
}

.proof-strip strong {
  display: block;
  font-size: 24px;
}

.proof-strip span {
  color: #b9ced7;
}

.product-visual {
  border: 1px solid rgb(255 255 255 / 18%);
  background: #f8fbfc;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.visual-top {
  min-height: 48px;
  background: #10242f;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
}

.visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b6b;
}

.visual-dot:nth-child(2) {
  background: #ffd166;
}

.visual-dot:nth-child(3) {
  background: #52d1b8;
}

.visual-body {
  padding: 18px;
}

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

.metric,
.flow-row,
.price-card,
.feature-card,
.step {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
}

.metric {
  padding: 14px;
}

.metric span,
.flow-row span,
.price-card span,
.feature-card p,
.step p {
  color: var(--muted);
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
}

.flow-row {
  margin-top: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.status {
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.status.warn {
  background: var(--gold);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2,
.page-section h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-header p,
.page-section p {
  color: var(--muted);
  font-size: 18px;
}

.card-grid,
.pricing-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card,
.step {
  padding: 22px;
  box-shadow: 0 10px 28px rgb(20 33 43 / 5%);
}

.feature-card h3,
.price-card h3,
.step h3 {
  margin: 0 0 10px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #dff5f1;
  color: var(--teal-dark);
  font-weight: 900;
  margin-bottom: 14px;
}

.price {
  font-size: 36px;
  font-weight: 900;
  margin: 10px 0;
}

.price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.price-card ul,
.page-section ul {
  padding-left: 20px;
  color: #2b3d4b;
}

.price-card li,
.page-section li {
  margin: 8px 0;
}

.page-hero {
  background: var(--deep);
  color: #f8fbfc;
  padding: 92px 0 58px;
}

.page-hero-inner,
.page-section {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.page-section {
  padding: 64px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.callout {
  background: var(--deep);
  color: #f8fbfc;
  border-radius: 8px;
  padding: 28px;
}

.callout p {
  color: #d6e4ea;
}

.site-footer {
  background: #08141d;
  color: #d8e5eb;
  padding: 34px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: #d8e5eb;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

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

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .proof-strip,
  .card-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }
}
