:root {
  color-scheme: dark;
  --bg: #101310;
  --raised: #151a16;
  --panel: #1a201b;
  --ink: #f2f4ef;
  --muted: #aab2aa;
  --quiet: #778078;
  --line: rgba(232, 238, 232, 0.13);
  --line-strong: rgba(232, 238, 232, 0.22);
  --accent: #9cc990;
  --accent-soft: #c0dabb;
  --dark: #101510;
  --max: 1180px;
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at 68% 4%, rgba(126, 166, 116, 0.1), transparent 27rem), var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
p, h1, h2, h3 { margin-top: 0; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 750;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(232, 238, 232, 0.08);
  background: rgba(16, 19, 16, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: 78px;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 11px;
  font-size: 0.96rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}
.brand-mark, .product-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(156, 201, 144, 0.32);
  border-radius: 9px;
  background: rgba(156, 201, 144, 0.08);
  color: var(--accent-soft);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}
.site-nav { display: flex; gap: 28px; color: var(--muted); font-size: 0.88rem; font-weight: 650; }
.site-nav a, .footer-links a { transition: color 160ms ease; }
.site-nav a:hover, .footer-links a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 16px; font-size: 0.82rem; }
.button-solid { background: var(--accent); color: var(--dark); }
.button-solid:hover { background: #add4a3; }
.button-quiet { border-color: var(--line-strong); background: rgba(255,255,255,0.02); color: var(--ink); }
.button-quiet:hover { border-color: rgba(232,238,232,0.36); background: rgba(255,255,255,0.05); }
.button-light { background: var(--ink); color: var(--dark); }
.button-light:hover { background: #fff; }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after {
  position: absolute;
  right: max(3vw, calc((100vw - var(--max)) / 2));
  bottom: -90px;
  width: clamp(180px, 24vw, 350px);
  height: clamp(180px, 24vw, 350px);
  border: 1px solid rgba(156,201,144,0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(156,201,144,0.025), 0 0 0 84px rgba(156,201,144,0.016);
  content: "";
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding-block: clamp(92px,12vw,170px) clamp(100px,13vw,185px); }
.eyebrow, .kicker, .product-label {
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; margin-bottom: 28px; gap: 10px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(156,201,144,0.08); }
.hero h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 7.5vw, 7rem);
  font-weight: 670;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-wrap: balance;
}
.hero h1 em { color: var(--accent-soft); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-copy { max-width: 690px; margin-bottom: 38px; color: var(--muted); font-size: clamp(1.08rem,2vw,1.28rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.section { padding-block: clamp(84px,10vw,142px); border-bottom: 1px solid var(--line); }
.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: start;
  margin-bottom: 48px;
  gap: 50px;
}
.section-heading .kicker, .about-grid > .kicker { padding-top: 11px; }
.kicker { margin-bottom: 16px; }
.section h2 {
  max-width: 730px;
  margin-bottom: 0;
  font-size: clamp(2.1rem,4vw,3.75rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.05;
  text-wrap: balance;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0,1.42fr) minmax(330px,0.78fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--raised);
  box-shadow: 0 28px 80px rgba(0,0,0,0.2);
}
.product-copy { padding: clamp(34px,5vw,64px); }
.product-title-row { display: flex; align-items: center; margin-bottom: 34px; gap: 16px; }
.product-icon { width: 50px; height: 50px; border-radius: 13px; font-size: 0.8rem; }
.product-label { margin-bottom: 2px; font-size: 0.63rem; }
.product-card h3 { margin-bottom: 0; font-size: clamp(1.65rem,3vw,2.35rem); font-weight: 680; letter-spacing: -0.04em; line-height: 1.15; }
.product-lede { max-width: 660px; margin-bottom: 38px; color: #d2d8d1; font-size: clamp(1.05rem,2vw,1.22rem); line-height: 1.7; }
.benefit-list { display: grid; margin: 0; padding: 0; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 32px 1fr; padding-block: 20px; border-top: 1px solid var(--line); gap: 14px; }
.benefit-list li > span, .capability-list article > span { padding-top: 2px; color: var(--accent); font-family: ui-monospace,"SFMono-Regular",Consolas,monospace; font-size: 0.68rem; }
.benefit-list strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.benefit-list p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.product-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px,4vw,48px); background: var(--accent); color: var(--dark); }
.pipeline { padding: 20px; border: 1px solid rgba(16,21,16,0.15); border-radius: 15px; background: rgba(247,250,246,0.48); }
.pipeline-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; font-size: 0.75rem; font-weight: 760; }
.status-dot { display: inline-flex; align-items: center; gap: 5px; color: #294326; font-size: 0.64rem; text-transform: uppercase; }
.status-dot::before { width: 6px; height: 6px; border-radius: 50%; background: #3d7038; content: ""; }
.pipeline-row { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; min-height: 32px; gap: 10px; font-size: 0.76rem; font-weight: 700; opacity: 0.55; }
.pipeline-row.is-complete, .pipeline-row.is-current { opacity: 1; }
.pipeline-check { display: inline-grid; place-items: center; width: 22px; height: 22px; border: 1px solid rgba(16,21,16,0.35); border-radius: 50%; font-size: 0.68rem; }
.is-complete .pipeline-check, .is-current .pipeline-check { border-color: var(--dark); background: var(--dark); color: var(--ink); }
.pipeline-row small { padding: 3px 6px; border: 1px solid rgba(16,21,16,0.18); border-radius: 5px; font-size: 0.55rem; font-weight: 800; text-transform: uppercase; }
.pipeline-line { width: 1px; height: 16px; margin-left: 10px; background: var(--dark); }
.pipeline-line.muted { opacity: 0.2; }
.price-block { padding-block: 32px 30px; }
.price-block > p { margin-bottom: 6px; font-size: 0.75rem; font-weight: 750; text-transform: uppercase; }
.price-block div { display: flex; align-items: baseline; margin-bottom: 8px; gap: 8px; }
.price-block strong { font-size: clamp(2.7rem,5vw,4rem); letter-spacing: -0.06em; line-height: 1; }
.price-block span { font-size: 0.8rem; font-weight: 700; }
.price-block small { display: block; max-width: 300px; color: rgba(16,21,16,0.72); font-size: 0.73rem; line-height: 1.5; }

.capabilities { background: #121512; }
.capabilities-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(60px,10vw,150px); }
.section-heading.compact { display: block; margin-bottom: 0; }
.section-heading.compact h2 { max-width: 460px; font-size: clamp(2rem,3.5vw,3.2rem); }
.capability-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-list article { min-height: 210px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-list article > span { display: block; margin-bottom: 44px; }
.capability-list h3 { margin-bottom: 8px; font-size: 1rem; letter-spacing: -0.02em; }
.capability-list p { margin-bottom: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.55; }

.about-grid { display: grid; grid-template-columns: 0.42fr 1fr; gap: 50px; }
.about h2 { margin-bottom: 32px; }
.about-grid > div > p { max-width: 670px; margin-bottom: 0; color: var(--muted); font-size: clamp(1.05rem,1.8vw,1.2rem); line-height: 1.75; }
.contact { border-bottom: 0; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: clamp(38px,6vw,74px);
  border: 1px solid rgba(156,201,144,0.22);
  border-radius: var(--radius);
  background: var(--panel);
  gap: 60px;
}
.contact-card h2 { margin-bottom: 25px; }
.contact-card p:last-child { max-width: 700px; margin-bottom: 0; color: var(--muted); font-size: 1rem; }
.contact-button { white-space: nowrap; }

.site-footer { border-top: 1px solid var(--line); background: #0c0e0c; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; padding-block: 50px; gap: 42px; }
.footer-brand p, .copyright { margin: 10px 0 0; color: var(--quiet); font-size: 0.8rem; }
.footer-links { display: flex; align-items: flex-start; gap: 24px; color: var(--muted); font-size: 0.82rem; }
.copyright { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .header-inner { gap: 18px; }
  .site-nav { gap: 18px; }
  .product-card, .capabilities-grid { grid-template-columns: 1fr; }
  .product-panel { padding-block: 48px; }
  .pipeline, .price-block, .product-panel > .button { width: min(100%,520px); margin-inline: auto; }
  .contact-card { grid-template-columns: 1fr; align-items: start; gap: 34px; }
  .contact-button { width: fit-content; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  html { scroll-padding-top: 132px; }
  .header-inner { grid-template-columns: 1fr auto; min-height: 0; padding-block: 12px 10px; }
  .header-cta { min-height: 38px; padding-inline: 12px; font-size: 0.72rem; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; justify-content: space-between; padding-top: 9px; border-top: 1px solid var(--line); font-size: 0.75rem; }
  .hero-inner { padding-block: 82px 100px; }
  .hero h1 { font-size: clamp(3rem,15vw,4.5rem); }
  .hero::after { right: -72px; bottom: -100px; }
  .hero-actions .button { flex: 1 1 auto; }
  .section { padding-block: 78px; }
  .section-heading, .about-grid { grid-template-columns: 1fr; margin-bottom: 34px; gap: 5px; }
  .section-heading .kicker, .about-grid > .kicker { padding-top: 0; }
  .product-card { border-radius: 17px; }
  .product-copy { padding: 30px 22px; }
  .product-title-row { margin-bottom: 27px; }
  .product-panel { padding: 30px 22px; }
  .pipeline-row { grid-template-columns: 22px 1fr; }
  .pipeline-row small { grid-column: 2; width: fit-content; }
  .pipeline-line { height: 11px; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-list article { min-height: 0; }
  .capability-list article > span { margin-bottom: 28px; }
  .about-grid { margin-bottom: 0; }
  .contact-card { padding: 32px 23px; border-radius: 17px; }
  .contact-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { flex-direction: column; gap: 10px; }
  .site-header .header-inner, .site-header .site-nav { transition: padding 180ms ease; }
  .site-header.is-scrolled .header-inner { padding-block: 7px 6px; }
  .site-header.is-scrolled .site-nav { padding-top: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

body { overflow-x: clip; }
.header-inner > *, .hero-inner, .product-copy, .contact-card > * { min-width: 0; }

@media (max-width: 720px) {
  .brand { font-size: 0.86rem; }
  .header-cta { max-width: 135px; }
  .site-nav { width: 100%; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 3.4rem); letter-spacing: -0.055em; overflow-wrap: anywhere; }
  .hero h1 em { display: block; }
  .hero-copy { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1.35fr 0.65fr; }
  .hero-actions .button { min-width: 0; padding-inline: 12px; }
}
