:root {
  --bg: #fdfdfd;
  --text: #0f0f0f;
  --muted: #5a5a5a;
  --border: #dcdcdc;
  --accent: #0f0f0f;
  --container: min(1180px, 100%);
  --radius: 10px;
  --space-xs: clamp(8px, 1vw, 12px);
  --space-sm: clamp(12px, 1.5vw, 16px);
  --space-md: clamp(18px, 2vw, 24px);
  --space-lg: clamp(28px, 3vw, 40px);
  --space-xl: clamp(40px, 4vw, 64px);
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Unbounded', 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-size-base: clamp(15px, 1.4vw, 18px);
  --font-size-small: clamp(13px, 1.1vw, 16px);
  --font-size-h1: clamp(32px, 5vw, 52px);
  --font-size-h2: clamp(26px, 3.2vw, 36px);
  --font-size-h3: clamp(20px, 2.4vw, 26px);
  --line-height: 1.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-sm);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--font-size-h1);
  line-height: 1.15;
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

.muted {
  color: var(--muted);
}

.container {
  width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-grid {
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.section-muted {
  background: #f6f6f6;
}

.value-section {
  background: #f7f7f9;
}

.value-head {
  align-items: flex-end;
}

.value-head h2 {
  margin: 0;
}

.value-grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.value-card {
  background: #f9fafc;
  border: 1px solid var(--border);
  border-top: 4px solid var(--text);
  border-radius: 0;
  padding: clamp(18px, 2vw, 24px);
  display: grid;
  gap: var(--space-sm);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transition:
    background 0.45s ease-in-out,
    color 0.45s ease-in-out,
    border-color 0.45s ease-in-out,
    transform 0.35s ease,
    box-shadow 0.45s ease-in-out;
}

.value-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 34px);
  color: rgba(0, 0, 0, 0.1);
  letter-spacing: 0.08em;
}

.value-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin: 0;
}

.value-card p {
  margin: 0;
  color: #3c3c3c;
}

.value-card:hover {
  background: var(--text);
  color: #fdfdfd;
  border-color: var(--text);
  border-top-color: #fdfdfd;
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.value-card:hover h3 {
  color: #fdfdfd;
}

.value-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.value-card:hover .value-number {
  color: rgba(255, 255, 255, 0.35);
}

.ai-section {
  background: #fdfdfd;
  color: var(--text);
}

.ai-head h2 {
  margin: 0 0 var(--space-sm);
}

.ai-head .muted {
  color: var(--muted);
}

.ai-list-block {
  display: grid;
  gap: var(--space-sm);
  padding: 0 0 var(--space-md);
}

.ai-list-block h3 {
  margin: 0;
}

.ai-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
}

.ai-column {
  display: grid;
  gap: 8px;
  padding: var(--space-sm);
  margin: 0;
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
}

.ai-label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--font-size-small);
  color: var(--muted);
  margin: 0 0 6px;
}

.ai-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  list-style: disc;
}

.ai-list li {
  color: var(--text);
  font-size: var(--font-size-base);
}


.section-head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  align-items: baseline;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 0;
  border: 1px solid var(--accent);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-filled {
  background: var(--accent);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--bg);
  color: var(--accent);
  border-color: var(--accent);
}

.btn:active {
  transform: translateY(0);
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  font-weight: 500;
}

.highlight {
  background: #c7d9ff;
  padding: 4px 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  background: #fff;
}

.card-list {
  display: grid;
  gap: var(--space-sm);
  padding: 0;
}

.card-list ul {
  list-style: disc;
  padding-left: 18px;
  margin: 6px 0 0;
  display: grid;
  gap: 8px;
}

.card-list li {
  margin: 0;
}

.card-list .label {
  font-weight: 600;
}

.cases {
  background: #fdfdfd;
}

.case-examples {
  background: #f6f6f6;
}

.case-examples-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.case-example {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  background: #fff;
  display: grid;
  gap: var(--space-sm);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-example:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.case-example .label {
  font-size: var(--font-size-small);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin: 0;
}

.case-example h3,
.card h3 {
  word-break: break-word;
  hyphens: auto;
  line-height: 1.2;
}

.case-example h3 {
  word-break: normal;
  hyphens: manual;
  white-space: normal;
  max-width: 24ch;
}

.cases-intro {
  display: grid;
  gap: var(--space-sm);
  max-width: 840px;
  margin-bottom: var(--space-lg);
}

.cases-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: var(--space-md);
}

.case-card {
  border-radius: 0;
  padding: clamp(16px, 2vw, 22px);
  background: #0f0f0f;
  display: grid;
  gap: var(--space-sm);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  color: #fdfdfd;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.14);
  background: #161616;
}

.case-card .sub {
  margin: 0;
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.72);
  min-height: 28px;
  display: flex;
  align-items: center;
}

.case-card .label {
  font-size: var(--font-size-small);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin: 0;
}

.case-card h3 {
  margin-bottom: 0;
  line-height: 1.1;
  min-height: calc(var(--font-size-h3) * 2.2);
}

.case-card .card-list {
  list-style: disc;
  padding-left: 18px;
  gap: 10px;
  margin: 4px 0 0;
}

.case-card .card-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-small);
}

.cases-note {
  margin-top: var(--space-sm);
  max-width: 820px;
  font-weight: 500;
}

.divider {
  height: 1px;
  background: var(--border);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(253, 253, 253, 0.9);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 22px;
}

.nav {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-size: var(--font-size-small);
  min-width: 0;
  overflow-x: auto;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--border);
}

.nav .nav-text {
  padding: 6px 0;
  font-weight: 500;
  white-space: nowrap;
}

.nav-mobile-note {
  display: none;
  font-weight: 600;
  font-size: var(--font-size-small);
}

.cta-header {
  justify-self: end;
  padding-inline: 16px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  padding-top: var(--space-xl);
  min-height: 70vh;
  background-color: #fdfdfd;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px;
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
  align-content: center;
  min-height: 75vh;
}

.eyebrow {
  font-size: var(--font-size-small);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-sm);
}

.logo-row {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.logo-pill {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--font-size-small);
  font-weight: 600;
  background: #fff;
}

.lede {
  margin: 0 0 var(--space-md);
  font-size: clamp(16px, 1.6vw, 20px);
}

.micro-jobs {
  display: grid;
  gap: 8px;
  margin: 0 0 var(--space-md);
  padding-left: 20px;
  list-style: disc;
}

.micro-jobs li {
  padding-left: 4px;
}

.cta-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.barriers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.barriers-grid .card {
  height: 100%;
}

@media (max-width: 900px) {
  .barriers-grid {
    grid-template-columns: 1fr;
  }
}

.process {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  gap: 0;
  background: #fff;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  padding: var(--space-md);
}

.process-step + .process-step {
  border-top: 1px solid var(--border);
}

.step-number {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.step-body p {
  margin: 0 0 8px;
}

.process-section {
  background: #0f0f0f;
  color: #fdfdfd;
}

.process-section .section-head h2 {
  color: #fdfdfd;
}

.process-section .section-head .muted {
  color: rgba(255, 255, 255, 0.72);
}

.process-section .process {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.process-section .process-step + .process-step {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-section .step-number {
  color: rgba(255, 255, 255, 0.65);
}

.process-section .step-body p {
  color: rgba(255, 255, 255, 0.88);
}

.process-section .step-body .muted {
  color: rgba(255, 255, 255, 0.7);
}

.final-cta {
  border-bottom: 1px solid var(--border);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-md);
  align-items: center;
}

.final-cta-inner p {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cta-stack {
  display: grid;
  gap: 6px;
}

.site-footer {
  padding: var(--space-lg) 0;
  background: #0f0f0f;
  color: #fdfdfd;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  align-items: start;
  padding-top: var(--space-md);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.btn-footer {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fdfdfd;
  background: rgba(255, 255, 255, 0.06);
}

.btn-footer:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer .muted {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .text-link {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.footer-note {
  margin-top: var(--space-sm);
  font-size: var(--font-size-small);
}

.footer-bottom {
  padding-top: var(--space-sm);
  font-size: var(--font-size-small);
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    display: none !important;
  }

  .cta-header {
    display: inline-flex;
    padding: 8px 14px;
    font-size: var(--font-size-small);
  }

  .nav-mobile-note {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: var(--space-lg) 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .micro-jobs {
    padding-left: 16px;
  }
}
