:root {
  --bg: #f6f8f5;
  --paper: #ffffff;
  --ink: #17201d;
  --muted: #65726d;
  --line: #dce3dc;
  --deep: #101a17;
  --teal: #287679;
  --green: #3c7d55;
  --amber: #f0b849;
  --rust: #bb5238;
  --blue: #376d9f;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { scroll-padding-top: 84px; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  color: #fff;
  background: rgba(16, 26, 23, .84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--amber);
  color: #13201d;
}

.nav { display: flex; align-items: center; gap: 22px; color: #dfe8e3; font-size: 14px; }
.nav a:hover { color: #fff; }

.header-cta {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 116px 28px 80px;
  overflow: hidden;
  background: var(--deep);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,26,23,.96) 0%, rgba(16,26,23,.76) 42%, rgba(16,26,23,.22) 100%),
    linear-gradient(180deg, rgba(16,26,23,.22) 0%, rgba(16,26,23,.38) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

h1, h2, h3, p { letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(44px, 7vw, 86px); line-height: .98; max-width: 760px; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 52px); line-height: 1.02; }
h3 { margin: 0; font-size: 20px; line-height: 1.2; }

.hero-copy {
  margin: 22px 0 0;
  max-width: 650px;
  color: #dfe9e4;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions, .final-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions { margin-top: 28px; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.button.primary {
  border-color: var(--amber);
  background: var(--amber);
  color: #15201b;
}

.button.secondary {
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.1);
  color: #fff;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-band div {
  padding: 22px 28px;
  background: #fff;
}

.metric-band strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.metric-band span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 28px;
  scroll-margin-top: 84px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: center;
}

.section-copy {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.code-panel {
  overflow: hidden;
  border: 1px solid #263a35;
  border-radius: 8px;
  background: #111a17;
  box-shadow: 0 24px 60px rgba(16,26,23,.18);
}

.code-head {
  display: flex;
  gap: 7px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.code-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rust);
}

.code-head span:nth-child(2) { background: var(--amber); }
.code-head span:nth-child(3) { background: var(--green); }

pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #d8ebe4;
  font-size: 14px;
  line-height: 1.65;
}

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

.feature-card, .price-card, .cost-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(23,32,29,.08);
}

.feature-card { padding: 24px; }
.icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e5f1ef;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.feature-card p, .price-head p, .cost-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.mcp {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: start;
}

.tool-list {
  display: grid;
  gap: 10px;
}

.tool-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.tool-list span {
  color: var(--muted);
  line-height: 1.45;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.pricing-section {
  max-width: 1240px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 26px;
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 26px 70px rgba(40,118,121,.18);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e5f1ef;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.price {
  margin: 30px 0 20px;
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

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

li {
  position: relative;
  padding-left: 24px;
  color: #30423c;
  line-height: 1.45;
}

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

.plan { margin-top: auto; width: 100%; }

.costs {
  max-width: 1240px;
}

.cost-card {
  padding: 24px;
}

.cost-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.cost-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

dt { color: var(--muted); }
dd { margin: 0; font-weight: 850; text-align: right; }
.verdict { border-color: #edc86a; background: #fffaf0; }

.source-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.58;
}

.final-cta {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 48px 28px;
  display: grid;
  justify-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px;
  color: #cbd8d2;
  background: var(--deep);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #edf5f1;
  font-size: 13px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--amber);
}

.legal-main {
  max-width: 940px;
  margin: 0 auto;
  padding: 128px 28px 82px;
}

.legal-document h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 62px);
}

.legal-document h2 {
  margin: 44px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.legal-document p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.legal-document .updated {
  margin-top: 18px;
  color: #40514b;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header { position: absolute; align-items: flex-start; }
  .nav { display: none; }
  .hero { min-height: 82vh; }
  .split, .mcp, .feature-grid, .pricing-grid, .cost-grid {
    grid-template-columns: 1fr;
  }
  .metric-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .site-header { padding: 12px 18px; }
  .brand span:last-child { display: none; }
  .header-cta { font-size: 13px; }
  .hero { padding: 96px 18px 56px; min-height: 78vh; }
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .hero-copy { font-size: 17px; }
  .section { padding: 64px 18px; }
  .metric-band { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .cost-card dl div { display: grid; gap: 4px; }
  dd { text-align: left; }
  .footer { display: grid; }
  .legal-main { padding: 104px 18px 64px; }
  .legal-document h1 { font-size: 36px; }
}
