:root {
  --ink: #14242c;
  --muted: #68767b;
  --paper: #fffdf8;
  --cream: #f4f1e9;
  --line: #d5dad5;
  --blue: #087996;
  --blue-dark: #075b72;
  --blue-soft: #d9eef2;
  --green: #398765;
  --amber: #db8a1d;
  --red: #b83a43;
  color: var(--ink);
  background: #e4e8e5;
  font-family: "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(20, 36, 44, 0.1);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav,
.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px 3px 9px 3px;
  color: white;
  background: var(--ink);
  font-size: 12px;
  letter-spacing: -0.04em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 750;
}

.button-primary {
  color: white;
  background: var(--blue-dark);
  box-shadow: 0 10px 20px rgba(7, 91, 114, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: white;
}

.hero,
.section,
.pricing-hero,
.pricing-grid,
.cta-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: 660px;
  padding: 72px 0 56px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

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

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

h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 18px;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid #cbd2ce;
  border-radius: 8px;
  background: #f8f8f4;
  box-shadow: 0 24px 80px rgba(20, 36, 44, 0.16);
}

.mini-toolbar {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.mini-toolbar span {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--cream);
}

.plan-preview {
  position: relative;
  height: 300px;
  background:
    linear-gradient(#e8ece8 1px, transparent 1px),
    linear-gradient(90deg, #e8ece8 1px, transparent 1px);
  background-size: 28px 28px;
}

.plan-preview svg {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
}

.plan-preview path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-node,
.junction-node,
.endpoint-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 52px;
  min-height: 34px;
  padding: 0 8px;
  border: 2px solid currentColor;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.panel-node {
  left: 54px;
  top: 78px;
  color: var(--ink);
  background: var(--ink);
  color: white;
}

.junction-node {
  left: 48%;
  top: 78px;
  transform: translateX(-50%);
  color: var(--blue-dark);
}

.endpoint-a {
  right: 48px;
  top: 78px;
  color: var(--amber);
}

.endpoint-b {
  right: 32px;
  bottom: 72px;
  color: var(--amber);
}

.report-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-size: 13px;
}

.report-strip strong {
  color: var(--green);
}

.section {
  padding: 72px 0;
  border-top: 1px solid rgba(20, 36, 44, 0.1);
}

.two-column,
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
}

.two-column p,
.feature-grid p,
.steps p,
.price-card p,
.pricing-hero p,
.plan-summary p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.steps,
.plan-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.steps article,
.price-card,
.plan-summary > div {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf5;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: var(--blue-dark);
  font-weight: 800;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.plan-summary {
  grid-template-columns: 1fr 1fr;
}

.disclaimer {
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 80px 0 96px;
  text-align: center;
}

.pricing-hero {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 88px 0 44px;
  text-align: center;
}

.pricing-hero p {
  max-width: 720px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 28px 0 72px;
}

.price-card {
  gap: 24px;
}

.price-card-featured {
  border-color: rgba(7, 91, 114, 0.38);
  background: #f4fbfc;
}

.price {
  color: var(--ink);
  font-size: 34px;
  font-weight: 850;
}

@media (max-width: 820px) {
  .site-header,
  .brand,
  .site-header nav,
  .button-row {
    align-items: stretch;
  }

  .site-header {
    position: static;
    flex-direction: column;
  }

  .site-header nav,
  .button-row {
    flex-wrap: wrap;
  }

  .hero,
  .two-column,
  .feature-grid,
  .steps,
  .plan-summary,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 44px;
  }

  .hero-panel {
    min-width: 0;
  }
}
