@font-face{font-family:"Space Grotesk";font-style:normal;font-weight:400 700;font-display:swap;src:url("/assets/fonts/space-grotesk-latin-ext.woff2") format("woff2")}
@font-face{font-family:"Syne";font-style:normal;font-weight:500 800;font-display:swap;src:url("/assets/fonts/syne-latin-ext.woff2") format("woff2")}

:root {
  --ink: oklch(0.15 0.01 30);
  --text: oklch(0.25 0.008 30);
  --muted: oklch(0.42 0.01 30);
  --paper: oklch(0.94 0.015 75);
  --surface: oklch(0.98 0.008 75);
  --accent: oklch(0.62 0.19 35);
  --accent-dim: oklch(0.62 0.19 35 / 0.12);
  --signal: oklch(0.55 0.14 160);
  --signal-dim: oklch(0.55 0.14 160 / 0.1);
  --line: oklch(0.15 0.01 30 / 0.08);
  --line-strong: oklch(0.15 0.01 30 / 0.15);
  --shadow-sm: 0 2px 8px oklch(0.15 0.01 30 / 0.04);
  --shadow: 0 8px 32px oklch(0.15 0.01 30 / 0.08);
  --shadow-lg: 0 24px 64px oklch(0.15 0.01 30 / 0.12);
}

* { box-sizing: border-box; margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.94 0.015 75 / 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  transition: opacity 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover {
  opacity: 0.75;
}

.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink), oklch(0.25 0.02 30));
  border-radius: 16px;
  color: var(--surface);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow);
}

.brand-text strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav a {
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a:hover {
  background: var(--line);
}

.nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--surface) !important;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
 .nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms cubic-bezier(0.16, 1, 0.3, 1), visibility 200ms;
 }

 /* If mobile nav becomes interactive, add this class */
 .nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
 }
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--signal-dim);
  border: 1px solid var(--signal);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-lead {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-icon {
  font-size: 1.1em;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}


.btn-primary:active {
 transform: translateY(0) scale(0.97);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}


.btn-secondary:hover {
 background: var(--ink);
 color: var(--surface);
 border-color: var(--ink);
}

.btn-secondary:active {
 transform: scale(0.97);
}



.btn-light {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  font-weight: 600;
}


.btn-light:hover {
 background: var(--paper);
 box-shadow: var(--shadow);
}

.btn-light:active {
 transform: scale(0.97);
}



.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* System Dashboard Visual */
.hero-visual {
  position: sticky;
  top: 120px;
}

.system-dashboard {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.system-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--signal));
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.dashboard-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--signal);
  font-weight: 600;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
}

.status-indicator.active {
  animation: pulse 2s ease-in-out infinite;
}

.metric-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.metric-item {
  background: var(--paper);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.metric-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 6px;
}

.metric-value {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.metric-bar {
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  border-radius: 3px;
  animation: fillBar 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: left;
}

.metric-fill[data-value="85"] { width: 85%; }
.metric-fill[data-value="70"] { width: 70%; }
.metric-fill[data-value="92"] { width: 92%; }

@keyframes fillBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.system-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.flow-node {
  flex: 1;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-node:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.flow-connector {
  width: 16px;
  height: 2px;
  background: var(--line-strong);
  position: relative;
}

.flow-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -2px;
  width: 0;
  height: 0;
  border-left: 5px solid var(--line-strong);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.dashboard-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .hero-label {
    font-size: 0.65rem;
    padding: 6px 12px;
    margin-bottom: 24px;
  }
}

/* Proof Band */
.proof-band {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof-primary {
  padding: 48px;
  background: linear-gradient(135deg, var(--accent-dim) 0%, var(--surface) 100%);
  border: 1px solid var(--accent);
  border-radius: 16px;
}

.proof-number-large {
  font-family: "Syne", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.proof-label-large {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 12px;
}

.proof-context {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.proof-secondary {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.proof-stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.proof-stat:last-child {
  border-bottom: none;
}

.proof-number {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .proof-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .proof-primary {
    padding: 32px;
  }

  .proof-secondary {
    gap: 24px;
  }
}

/* Services Section */
.services {
  padding: 120px 0;
}

.section-header {
  max-width: 800px;
  margin-bottom: 80px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}

/* System Architecture Visual */
.system-architecture {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding: 48px;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--line);
}

.architecture-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arch-layer {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 20px;
}

.arch-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.arch-nodes {
  display: flex;
  gap: 10px;
}

.arch-node {
  flex: 1;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-node:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Services Showcase */
.services-showcase {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
}

.service-visual-wrapper {
  position: relative;
}

.service-visual {
  position: relative;
}

.code-window {
  background: oklch(0.18 0.01 30);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: oklch(0.15 0.01 30);
  border-bottom: 1px solid oklch(0.25 0.01 30);
}

.code-dots {
  display: flex;
  gap: 6px;
}

.code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: oklch(0.35 0.01 30);
}

.code-dots span:nth-child(1) {
  background: oklch(0.65 0.15 25);
}

.code-dots span:nth-child(2) {
  background: oklch(0.70 0.12 85);
}

.code-dots span:nth-child(3) {
  background: oklch(0.68 0.14 145);
}

.code-title {
  font-size: 0.8rem;
  color: oklch(0.65 0.01 30);
  font-weight: 500;
  font-family: "Space Mono", monospace;
}

.code-lines {
  padding: 20px;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}

.code-line {
  color: oklch(0.75 0.01 30);
}

.code-keyword {
  color: oklch(0.75 0.15 330);
}

.code-function {
  color: oklch(0.75 0.12 250);
}

.code-string {
  color: oklch(0.72 0.12 145);
}

.code-number {
  color: oklch(0.70 0.15 25);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  width: fit-content;
}

.service-featured h3 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.service-capabilities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-capabilities li {
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}

.service-capabilities li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .service-featured {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

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

@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .service-featured {
    padding: 32px;
  }

  .code-lines {
    font-size: 0.75rem;
    padding: 16px;
  }
}

.arch-connector-vertical {
  height: 24px;
  width: 2px;
  background: var(--line-strong);
  margin: 0 auto;
  position: relative;
}

.arch-connector-vertical::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -2px;
  width: 0;
  height: 0;
  border-top: 5px solid var(--line-strong);
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
}

.architecture-description h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.architecture-description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 1024px) {
  .system-architecture {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }
}

/* Services Matrix */
.services-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-block:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.service-primary {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface), var(--paper));
  border: 2px solid var(--accent-dim);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-number {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  border-radius: 12px;
  flex-shrink: 0;
}

.service-block h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-block p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-image-wrapper {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .services-matrix {
    grid-template-columns: 1fr;
  }

  .service-primary {
    grid-column: 1;
  }
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: var(--paper);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.process-lead {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-phase {
  position: relative;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-phase:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.phase-number {
  position: absolute;
  top: -16px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.phase-content h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  margin-top: 8px;
}

.phase-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.phase-duration {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-phase {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 0;
  }

  .process-header {
    margin-bottom: 48px;
  }
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--ink), oklch(0.25 0.02 30));
  border-radius: 28px;
  padding: 64px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-content h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--surface);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: oklch(0.85 0.01 75);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 1024px) {
  .cta-card {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 32px;
  }
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-col {
  max-width: 320px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer-col h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--muted);
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
