:root {
  color-scheme: light;
  --bg: oklch(92.951% 0.002 17.197);
  --surface: oklch(92.951% 0.002 17.197);
  --surface-alt: oklch(86.445% 0.002 17.197);
  --surface-soft: oklch(79.938% 0.001 17.197);
  --text: oklch(16.961% 0.001 17.32);
  --muted: oklch(32% 0.002 17.32);
  --line: oklch(79.938% 0.001 17.197);
  --primary: oklch(62.45% 0.278 3.836);
  --primary-dark: oklch(55% 0.215 3.836);
  --accent: oklch(56.273% 0.054 154.39);
  --secondary: oklch(48.495% 0.11 355.095);
  --neutral: oklch(24.155% 0.049 89.07);
  --neutral-content: oklch(92.951% 0.002 17.197);
  --info: oklch(72.06% 0.191 231.6);
  --shadow: 0 16px 34px rgba(30, 42, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--bg), var(--surface-alt) 55%, var(--surface-soft));
  font: 16px/1.55 Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a,
.footer a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer a:hover,
.footer a:focus-visible,
.social a:hover,
.social a:focus-visible,
.founder-copy a:hover,
.founder-copy a:focus-visible {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.hero {
  padding-top: 58px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-copy {
  width: min(100%, 720px);
  padding: 22px 0 10px;
  text-align: center;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--muted);
}

.founder-shell {
  width: min(100%, 768px);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-head h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.founder-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  align-items: center;
  text-align: center;
}

.founder-media {
  overflow: hidden;
  width: min(100%, 224px);
  aspect-ratio: 1;
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(30, 42, 36, 0.12);
  flex: 0 0 auto;
}

.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-copy h2 {
  margin-bottom: 4px;
  font-size: 2rem;
}

.role {
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.02rem;
}

.founder-copy p {
  color: var(--text);
}

.founder-copy p:last-of-type {
  margin-bottom: 0;
}

.founder-copy a {
  color: var(--primary);
  text-decoration-thickness: 2px;
}

.social {
  padding-top: 8px;
  font-weight: 600;
}

.social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

@media (min-width: 900px) {
  .hero-copy {
    padding-top: 38px;
  }

  .founder-card {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 24px;
  }

  .founder-copy {
    flex: 1;
  }
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.product-card,
.service-card {
  padding: 28px;
}

.product-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.product-head h3,
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.icon svg {
  width: 28px;
  height: 28px;
}

.icon-warning {
  color: oklch(17.078% 0.04 100.73);
  background: rgba(217, 143, 49, 0.28);
}

.icon-primary {
  color: white;
  background: var(--primary);
}

.icon-secondary {
  color: white;
  background: var(--secondary);
}

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

.icon-info {
  color: oklch(0% 0 0);
  background: var(--info);
}

.card p {
  color: var(--muted);
}

.checks {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--muted);
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 122, 87, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(47, 122, 87, 0.2);
}

.footer {
  margin-top: 8px;
  background: var(--neutral);
  color: var(--neutral-content);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 42px 0 32px;
}

.footer h3,
.footer h4 {
  margin-bottom: 12px;
  color: var(--primary);
}

.footer p,
.footer li {
  color: rgba(235, 230, 223, 0.78);
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 8px;
}

.footer-bottom {
  padding: 22px 0 34px;
  border-top: 1px solid rgba(235, 230, 223, 0.2);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(235, 230, 223, 0.64);
}

@media (max-width: 960px) {
  .hero-grid,
  .founder-card,
  .two-up,
  .three-up,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .founder-media {
    width: min(100%, 320px);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 20px, 1120px);
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .product-card,
  .service-card,
  .founder-card {
    padding: 18px;
  }
}
