:root {
  --ink: #102326;
  --muted: #5d7477;
  --line: #d9e7e5;
  --paper: #f7fbfa;
  --white: #ffffff;
  --teal: #0f8f84;
  --teal-dark: #0b5f5a;
  --mint: #dff5ef;
  --gold: #c79b45;
  --danger: #7b1f1f;
  --shadow: 0 18px 60px rgba(16, 35, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 231, 229, 0.9);
  background: rgba(247, 251, 250, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 11px 18px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 143, 132, 0.22);
}

.button.secondary {
  background: transparent;
  color: var(--teal-dark);
  border-color: rgba(15, 143, 132, 0.28);
  box-shadow: none;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(199, 155, 69, 0.16), transparent 30%),
    linear-gradient(135deg, #f4fbf9 0%, #e4f4f0 48%, #fffaf0 100%);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0 88px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid rgba(15, 143, 132, 0.22);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 21px;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: #36565a;
  font-size: 20px;
}

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

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

.proof-item {
  border-left: 3px solid var(--teal);
  padding: 4px 0 4px 14px;
}

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

.proof-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.product-panel {
  position: relative;
  border: 1px solid rgba(15, 143, 132, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 24px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--teal);
}

.workflow {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.workflow-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.workflow-row b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
}

.workflow-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.section.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

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

.card p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.band {
  background: var(--ink);
  color: var(--white);
}

.band .section-copy,
.band .card p,
.band .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.band .card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.legal-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
  text-decoration: none;
  font-weight: 850;
}

.legal-page {
  background: var(--white);
}

.legal-hero {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 34px;
}

.legal-hero p {
  color: var(--muted);
  font-size: 18px;
}

.legal-content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 96px;
}

.legal-content section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-content h2 {
  font-size: 26px;
}

.notice {
  border-left: 4px solid var(--gold);
  background: #fff8e8;
  padding: 16px 18px;
  color: #664a17;
}

.warning {
  border-left-color: var(--danger);
  background: #fff1f1;
  color: var(--danger);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 4px;
  }

  .nav-links .button {
    width: 100%;
  }

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

  .hero-inner {
    min-height: auto;
    gap: 34px;
    padding: 48px 0 68px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
