:root {
  --ink: #0f1416;
  --slate: #1a2226;
  --slate-2: #2c3d42;
  --muted: #5a7077;
  --teal: #009cc4;
  --teal-light: #33b0d0;
  --teal-pale: #99d7e7;
  --paper: #f8fafc;
  --paper-2: #f4fafd;
  --white: #ffffff;
  --border: #e6eef1;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate-2);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 20, 22, 0.92);
  backdrop-filter: saturate(150%) blur(6px);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.nav-name span { color: var(--teal-light); }
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}
.nav-links a {
  color: #cfe3ea;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--slate) 100%);
  color: var(--white);
  padding: 64px 0 76px;
}
.hero .wrap {
  display: flex;
  gap: 48px;
  align-items: center;
}
.hero-photo {
  flex: 0 0 auto;
}
.hero-photo img {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(153, 215, 231, 0.35);
}
.hero-text { flex: 1 1 auto; min-width: 0; }
.eyebrow {
  display: inline-block;
  color: var(--teal-pale);
  background: rgba(0, 156, 196, 0.14);
  border: 1px solid rgba(0, 156, 196, 0.35);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 10px;
  color: var(--white);
  line-height: 1.15;
}
.hero .tagline {
  font-size: 1.15rem;
  color: #e6eef1;
  max-width: 640px;
  margin: 0 0 16px;
}
.hero .lede {
  color: #b7c7cd;
  max-width: 640px;
  margin: 0 0 28px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-light); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--white); }
.btn-outline { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn-outline:hover { background: rgba(0,156,196,0.08); }

.social-row { display: flex; gap: 16px; margin-top: 24px; }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.social-row img, .social-row svg { width: 16px; height: 16px; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--paper-2); }
.section-head { max-width: 680px; margin: 0 0 40px; }
.kicker {
  display: block;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 1.8rem; margin: 0 0 14px; color: var(--ink); }
.section-head p { color: var(--muted); margin: 0; font-size: 1.03rem; }

/* InputLab section */
.inputlab-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.inputlab-brand img { height: 26px; width: auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0 36px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  color: var(--ink);
}
.feature-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.credibility {
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  padding-left: 100px;
  padding-right: 100px;
  text-align: center;
}

/* Facts row */
.facts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 8px 0 40px;
}
.fact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.fact .num { font-weight: 700; color: var(--teal); font-size: 1.05rem; display: block; margin-bottom: 4px; }
.fact .lbl { color: var(--muted); font-size: 0.9rem; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.project-card h3 { margin: 0 0 8px; font-size: 1rem; color: var(--ink); }
.project-card p { margin: 0 0 12px; color: var(--muted); font-size: 0.92rem; }
.project-card a { font-size: 0.88rem; font-weight: 600; }

.links-row { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.links-row a { font-size: 0.94rem; font-weight: 600; }
.links-row span { color: var(--border); }

/* Press */
.press-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.press-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  flex-wrap: wrap;
}
.press-list .src { color: var(--muted); font-size: 0.85rem; white-space: nowrap; }
.press-list a { font-weight: 600; }

/* Contact */
.contact-section {
  background: linear-gradient(180deg, var(--slate) 0%, var(--ink) 100%);
  color: var(--white);
}
.contact-section .section-head h2 { color: var(--white); }
.contact-section .section-head p { color: #b7c7cd; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Footer */
footer {
  background: var(--ink);
  color: #8fa3aa;
  padding: 26px 0;
  font-size: 0.85rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
footer a { color: #b7c7cd; }
footer a:hover { color: var(--white); }

@media (max-width: 760px) {
  .nav-links { gap: 14px; }
  .hero .wrap { flex-direction: column; text-align: center; align-items: center; }
  .hero .lede, .hero .tagline { max-width: none; }
  .cta-row, .social-row { justify-content: center; }
  .feature-grid, .facts-row, .project-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .credibility { padding-left: 0; padding-right: 0; }

}
