:root {
  --primary: #000000;
  --on-primary: #ffffff;
  --ink: #030303;
  --ink-soft: #1a1a1a;
  --graphite: #404040;
  --slate: #676f7b;
  --mute: #6b7280;
  --hairline: #e7eaf0;
  --hairline-soft: #c9ccd1;
  --canvas: #ffffff;
  --canvas-warm: #fefefe;
  --surface: #f6f7f8;
  --footer: #030303;
  color: var(--ink);
  background: var(--canvas);
  font-family: abcNormal, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

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

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

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

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-size: 15px;
  font-weight: 650;
}

.brand .brand-wordmark {
  display: block;
  height: 34px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.pill {
  align-items: center;
  border-radius: 9999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 650;
  height: 40px;
  justify-content: center;
  padding: 0 18px;
}

.pill.dark {
  background: var(--primary);
  color: var(--on-primary);
}

.pill.light {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  color: var(--ink);
}

.hero {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.1), rgba(3, 3, 3, 0.96)),
    #030303;
  color: var(--on-primary);
  min-height: 72svh;
  padding: 112px 24px 72px;
  position: relative;
}

.hero-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 18px;
}

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

h1 {
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.93;
  margin-bottom: 24px;
  max-width: 780px;
}

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

.hero-wordmark {
  display: block;
  height: auto;
  width: min(100%, 720px);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  max-width: 640px;
}

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

.hero .pill.light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--on-primary);
}

.section {
  border-bottom: 1px solid var(--hairline);
  padding: 72px 24px;
}

.section-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.section-kicker {
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 24px;
  max-width: 760px;
}

.lead {
  color: var(--graphite);
  font-size: 18px;
  max-width: 720px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}

.workflow article {
  border-top: 1px solid var(--ink);
  padding: 18px 20px 0 0;
}

.workflow span {
  color: var(--slate);
  display: block;
  font-size: 13px;
  margin-bottom: 24px;
}

.workflow h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.workflow p,
.split p,
.legal-list p {
  color: var(--graphite);
}

.product-strip {
  background: var(--surface);
}

.product-board {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  min-height: 430px;
  overflow: hidden;
}

.rail,
.panel {
  border-right: 1px solid var(--hairline);
  padding: 24px;
}

.panel:last-child {
  border-right: 0;
}

.mini-title {
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.channel-row,
.queue-row,
.metric-row {
  align-items: center;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px 0;
}

.avatar {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--on-primary);
  display: inline-flex;
  flex: 0 0 36px;
  font-size: 14px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.name {
  display: block;
  font-weight: 650;
}

.meta {
  color: var(--slate);
  display: block;
  font-size: 13px;
}

.status {
  border-radius: 9999px;
  border: 1px solid var(--hairline-soft);
  color: var(--graphite);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 9px;
  white-space: nowrap;
}

.queue-row {
  align-items: flex-start;
  gap: 18px;
}

.queue-copy {
  flex: 1;
}

.queue-title {
  font-weight: 650;
  margin-bottom: 4px;
}

.progress {
  background: var(--hairline);
  border-radius: 9999px;
  height: 6px;
  margin-top: 10px;
  overflow: hidden;
}

.progress span {
  background: var(--primary);
  display: block;
  height: 100%;
}

.split {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.legal-list {
  display: grid;
  gap: 0;
}

.legal-list a {
  border-top: 1px solid var(--hairline);
  display: block;
  padding: 18px 0;
}

.legal-list a:last-child {
  border-bottom: 1px solid var(--hairline);
}

.legal-list h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.page-shell {
  margin: 0 auto;
  max-width: 820px;
  padding: 72px 24px;
}

.page-shell h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  max-width: 720px;
}

.page-shell h2 {
  border-top: 1px solid var(--hairline);
  font-size: 22px;
  font-weight: 650;
  margin: 38px 0 12px;
  padding-top: 24px;
}

.page-shell p,
.page-shell li {
  color: var(--graphite);
}

.page-shell a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  background: var(--footer);
  color: var(--on-primary);
  padding: 42px 24px;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

@media (max-width: 900px) {
  .site-header {
    padding: 0 16px;
  }

  .nav-links a:not(.pill) {
    display: none;
  }

  .workflow,
  .split,
  .product-board {
    grid-template-columns: 1fr;
  }

  .rail,
  .panel {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .panel:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 68svh;
    padding: 88px 18px 56px;
  }

  .section {
    padding: 56px 18px;
  }

  .hero-actions,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
