:root {
  --ink: #101114;
  --paper: #f7f4ec;
  --muted: #615f58;
  --line: #d9d0bd;
  --panel: #fffdf8;
  --acid: #baff29;
  --coral: #ff6b4a;
  --violet: #7257ff;
  --teal: #1aa99a;
  --black: #0a0b0d;
  --shadow: 0 24px 70px rgba(16, 17, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 17, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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: 66px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(16, 17, 20, 0.12);
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.trust-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--acid);
  font-size: 0.78rem;
}

.nav {
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 122px);
  padding: 56px clamp(22px, 5vw, 72px) 38px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.8rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(1.28rem, 2.2vw, 1.92rem);
  line-height: 1.2;
  font-weight: 760;
}

.hero-body,
.section-heading p,
.feature-card p,
.price-card p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.58;
}

.hero-body {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.03rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.primary {
  color: var(--black);
  background: var(--acid);
}

.button.secondary {
  background: var(--panel);
}

.button.wide {
  width: 100%;
}

.trust-list {
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.dashboard-mock {
  width: min(100%, 720px);
  min-height: 560px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--black);
  color: #f8f8f2;
  box-shadow: var(--shadow), 7px 7px 0 var(--ink);
}

.mock-topbar {
  display: flex;
  gap: 7px;
  height: 22px;
}

.mock-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.mock-topbar span:nth-child(2) {
  background: var(--acid);
}

.mock-topbar span:nth-child(3) {
  background: var(--teal);
}

.mock-header,
.metric-grid,
.row,
.checklist {
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  margin-bottom: 14px;
  background: #17191f;
}

.mock-label {
  margin: 0 0 6px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-header h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3.5rem);
}

.mock-pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.mock-pill {
  color: var(--black);
  background: var(--acid);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 14px;
  background: rgba(255, 253, 248, 0.16);
}

.metric {
  min-height: 110px;
  padding: 16px;
  background: #17191f;
}

.metric span {
  display: block;
  margin-bottom: 16px;
  color: #b9b8af;
  font-size: 0.86rem;
  font-weight: 800;
}

.metric strong {
  font-size: clamp(1.6rem, 4vw, 2.7rem);
}

.mock-table {
  display: grid;
  gap: 8px;
}

.row {
  display: grid;
  grid-template-columns: 0.6fr 1.45fr 0.56fr;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  background: #17191f;
}

.row.head {
  min-height: 40px;
  color: #b9b8af;
  font-size: 0.82rem;
  font-weight: 900;
}

.tag.low {
  background: rgba(186, 255, 41, 0.16);
  color: var(--acid);
}

.tag.medium {
  background: rgba(255, 184, 77, 0.16);
  color: #ffbf57;
}

.tag.high {
  background: rgba(255, 107, 74, 0.16);
  color: #ff8a71;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
  padding: 16px;
  background: #17191f;
}

.checklist p {
  margin: 0;
  color: var(--acid);
  font-weight: 900;
}

.checklist span {
  display: block;
  padding: 9px 10px;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 8px;
  color: #d8d6ce;
}

.band,
.split-band,
.pricing-section,
.faq-section {
  padding: 78px clamp(22px, 5vw, 72px);
  border-top: 1px solid rgba(16, 17, 20, 0.12);
}

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

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

.feature-card,
.price-card {
  min-height: 205px;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 4px 4px 0 var(--ink);
}

.split-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
  background: var(--ink);
  color: var(--paper);
}

.split-band .eyebrow {
  color: var(--acid);
}

.split-band .section-heading p,
.split-band .process-item p {
  color: #d6d0c0;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(247, 244, 236, 0.18);
  border-radius: 8px;
}

.process-item span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--black);
  background: var(--acid);
  font-weight: 900;
}

.process-item p {
  margin: 0;
  font-weight: 720;
}

.preview-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.price-card.featured {
  background: var(--acid);
}

.tier {
  margin-bottom: 12px;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card.featured .tier,
.price-card.featured p {
  color: var(--black);
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 3rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 16px 0 24px;
}

.price-card .button {
  margin-top: auto;
  background: var(--black);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--coral);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--panel);
}

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

details p {
  padding: 0 18px 18px;
  margin-bottom: 0;
}

.site-footer {
  padding: 32px clamp(22px, 5vw, 72px);
  background: var(--black);
}

.site-footer p {
  max-width: 980px;
  margin: 0;
  color: #d6d0c0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .split-band,
  .preview-band {
    grid-template-columns: 1fr;
  }

  .dashboard-mock {
    max-height: 680px;
    overflow: hidden;
  }

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

  .dashboard-mock {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero,
  .band,
  .split-band,
  .pricing-section,
  .faq-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: calc(100vh - 118px);
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .hero-body {
    display: none;
  }

  .dashboard-mock {
    max-height: 268px;
    min-height: 0;
    overflow: hidden;
  }

  .dashboard-mock .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-mock .metric {
    min-height: 76px;
    padding: 12px;
  }

  .dashboard-mock .metric span {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .dashboard-mock .metric strong {
    font-size: 1.3rem;
  }

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

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

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

  .row span:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .price-card {
    min-height: 0;
  }
}
