:root {
  --radius: 0.75rem;
  --background: oklch(16% 0.03 280);
  --foreground: oklch(97% 0.01 280);
  --card: oklch(21% 0.04 280);
  --primary: oklch(72% 0.22 305);
  --primary-foreground: oklch(12% 0.02 280);
  --muted-foreground: oklch(75% 0.03 280);
  --accent: oklch(78% 0.18 200);
  --border: oklch(32% 0.04 280 / 0.6);
  --input: oklch(32% 0.04 280);
  --ring: oklch(72% 0.22 305);
  --gradient-hero: linear-gradient(135deg, oklch(72% 0.22 305), oklch(78% 0.18 200));
  --gradient-glow: radial-gradient(circle at 50% 0%, oklch(72% 0.22 305 / 0.35), transparent 60%);
  --shadow-card: 0 10px 40px -15px oklch(10% 0.02 280 / 0.6);
  --container: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: color-mix(in oklab, var(--primary) 45%, transparent);
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
  background: color-mix(in oklab, var(--background) 70%, transparent);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-mark,
.card-icon {
  display: grid;
  place-items: center;
  color: var(--primary-foreground);
  background: var(--gradient-hero);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: calc(var(--radius) - 0.25rem);
}

.brand-mark svg {
  width: 1rem;
  height: 1rem;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.primary-nav a {
  transition: color 160ms ease;
}

.primary-nav a:hover {
  color: var(--foreground);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0 2rem;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 0.125rem);
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px oklch(0% 0 0 / 0.15);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: color-mix(in oklab, var(--primary) 90%, var(--background));
}

.button:focus-visible {
  outline: 1px solid var(--ring);
  outline-offset: 2px;
}

.button-small {
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: calc(var(--radius) - 0.25rem);
  font-size: 0.75rem;
}

.button-secondary {
  border-color: var(--input);
  background: var(--background);
  color: var(--foreground);
}

.button-secondary:hover {
  background: var(--accent);
  color: var(--primary-foreground);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8rem 1.5rem 6rem;
}

.hero-image,
.hero-glow,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -10;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-glow {
  background: var(--gradient-glow);
}

.hero-scrim {
  background: linear-gradient(to bottom, color-mix(in oklab, var(--background) 40%, transparent), color-mix(in oklab, var(--background) 70%, transparent), var(--background));
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.25rem 0.75rem;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 999px;
  background: color-mix(in oklab, var(--card) 40%, transparent);
  color: var(--muted-foreground);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
}

.eyebrow span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--accent);
}

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

h1 {
  max-width: 58rem;
  margin: 1.5rem auto 0;
  background: var(--gradient-hero);
  background-clip: text;
  color: transparent;
  font-size: clamp(3rem, 9vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.hero-copy {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-heading p,
.contact p {
  margin: 1rem auto 0;
  color: var(--muted-foreground);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: calc(var(--radius) + 0.5rem);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: color-mix(in oklab, var(--primary) 50%, transparent);
  transform: translateY(-0.25rem);
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  border-radius: calc(var(--radius) + 0.25rem);
}

.card-icon svg,
.stat-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
}

.service-card p {
  margin: 0.5rem 0 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.why {
  border-block: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
  background: color-mix(in oklab, var(--card) 30%, transparent);
}

.why-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.why-copy {
  margin: 1.25rem 0 0;
  color: var(--muted-foreground);
}

.benefit-list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: calc(var(--radius) + 0.5rem);
  background: color-mix(in oklab, var(--background) 60%, transparent);
  backdrop-filter: blur(10px);
}

.stat-icon {
  color: var(--accent);
}

.stat-card strong {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: -0.025em;
}

.stat-card span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact {
  max-width: 48rem;
  text-align: center;
}

.contact-button {
  margin-top: 2.5rem;
}

.contact-button svg {
  width: 1rem;
  height: 1rem;
}

.site-footer {
  border-top: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
  padding: 2rem 1.5rem;
}

.site-footer div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 40rem) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 48rem) {
  .primary-nav {
    display: flex;
  }

  .hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }

  .why-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

  .site-footer div {
    flex-direction: row;
  }
}

@media (min-width: 64rem) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 30rem) {
  .brand span:last-child {
    display: none;
  }

  .button {
    width: 100%;
  }

  .nav-wrap .button {
    width: auto;
  }
}
