:root {
  color-scheme: light;
  --ink: #18202b;
  --muted: #5b6575;
  --line: #d8dee8;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --brand: #155e75;
  --brand-dark: #0f3f50;
  --accent: #f59e0b;
  --good: #16a34a;
  --draft: #2563eb;
  --review: #9333ea;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--brand);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 0.95rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--brand);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

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

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

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

h1 {
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.92;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  max-width: 680px;
}

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

.button {
  border-radius: 8px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-width: 148px;
  padding: 12px 18px;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

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

.workflow-panel {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(15, 63, 80, 0.14);
  display: grid;
  gap: 14px;
  padding: 18px;
}

.panel-row {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  padding: 18px;
}

.panel-row p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.status {
  border-radius: 999px;
  display: block;
  height: 12px;
  margin-top: 8px;
  width: 12px;
}

.status.live {
  background: var(--good);
}

.status.draft {
  background: var(--draft);
}

.status.review {
  background: var(--review);
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

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

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

.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.feature-card p,
.steps p,
.contact-section p,
.policy-content p,
.policy-content li {
  color: var(--muted);
}

.band {
  background: var(--soft);
}

.steps {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 34px 0 0;
  max-width: 920px;
  padding: 0;
}

.steps li {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  padding: 22px;
}

.steps span {
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.contact-section {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 750;
  padding: 12px 16px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 16px;
}

.policy-page {
  background: var(--soft);
  padding: clamp(34px, 6vw, 72px) 20px;
}

.policy-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 auto;
  max-width: 880px;
  padding: clamp(24px, 5vw, 54px);
}

.policy-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
}

.policy-content h2 {
  font-size: 1.3rem;
  margin-top: 34px;
}

.policy-content ul {
  padding-left: 22px;
}

@media (max-width: 980px) {
  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

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

  .button,
  .legal-links a {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
