:root {
  --ink: #111310;
  --ink-2: #20251f;
  --muted: #626b61;
  --quiet: #879187;
  --paper: #fffefa;
  --wash: #f7f8f3;
  --line: #dde3d7;
  --line-dark: #353b33;
  --green: #0f7b57;
  --green-2: #dff4df;
  --amber: #e7b548;
  --red: #bd3440;
  --blue: #375f7a;
  --shadow: 0 28px 90px rgba(17, 19, 16, 0.14);
  --soft-shadow: 0 16px 42px rgba(17, 19, 16, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--wash);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 18px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 8px 8px 8px 12px;
  color: var(--ink);
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid rgba(221, 227, 215, 0.84);
  border-radius: 12px;
  backdrop-filter: blur(18px);
  transition-property: background-color, box-shadow, border-color;
  transition-duration: 180ms;
  transition-timing-function: ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 254, 250, 0.94);
  border-color: var(--line);
  box-shadow: var(--soft-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  font-weight: 820;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 7px;
  font-weight: 860;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.91rem;
  font-weight: 720;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 7px;
  transition-property: color, background-color;
  transition-duration: 150ms;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(17, 19, 16, 0.06);
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 0 12px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 760;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: 100vh;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 52px;
}

.hero:before {
  position: absolute;
  inset: 92px -60px 30px;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(17, 19, 16, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 16, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 84%);
}

.hero-copy {
  max-width: 600px;
}

.eyebrow,
.micro,
.plan {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
summary {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 8vw, 7.8rem);
  line-height: 0.89;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.22rem, 1.4vw, 1.52rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  transition-property: transform, background-color, border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease;
}

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

.button:active {
  transform: scale(0.98);
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(17, 19, 16, 0.15);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.hero-product {
  min-width: 0;
}

.machine-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  background: #f1f3ed;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #c8d0c2;
}

.browser-bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 14px;
  padding: 14px;
  background:
    linear-gradient(rgba(17, 19, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 16, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.status-panel,
.queue-panel,
.trace-panel {
  padding: 18px;
  background: rgba(255, 254, 250, 0.92);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.status-panel {
  min-height: 290px;
}

.status-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.status-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(231, 181, 72, 0.5);
  border-radius: var(--radius);
  background: #fff8df;
}

.status-line em {
  grid-column: 2;
  color: #8b6a20;
  font-size: 0.9rem;
  font-style: normal;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.dot.warning {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(231, 181, 72, 0.22);
}

.quick-actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.quick-actions span {
  padding: 10px 12px;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 740;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-head strong,
.price-card h3,
.trace-step span,
.setup-list span {
  font-variant-numeric: tabular-nums;
}

.work-item {
  margin-top: 10px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.work-item.hot {
  border-color: rgba(189, 52, 64, 0.34);
  background: #fff5f5;
}

.work-item span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 850;
}

.work-item strong {
  display: block;
}

.work-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trace-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.trace-panel .micro {
  grid-column: 1 / -1;
}

.trace-step {
  padding: 12px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trace-step span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 850;
}

.trace-step.kept span {
  color: var(--green);
  background: var(--green-2);
  border-color: rgba(15, 123, 87, 0.25);
}

.trace-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.hero-strip span {
  padding: 16px;
  background: rgba(255, 254, 250, 0.8);
  color: var(--muted);
  font-weight: 760;
}

.section {
  padding: clamp(76px, 10vw, 144px) 20px;
}

.intro,
.promises,
.modules,
.setup,
.pricing,
.faq {
  background: var(--paper);
}

.section-heading,
.intro-layout,
.promise-grid,
.response-top,
.response-board,
.module-table,
.setup-card,
.tech-grid,
.pricing-grid,
.pricing-note,
.faq-grid,
.contact-panel {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading.left {
  margin-left: max(calc((100% - var(--max)) / 2), 0px);
  text-align: left;
}

.section-heading p,
.intro-copy p,
.response-top p,
.setup-card p,
.pricing-note,
.contact-panel p {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-kicker {
  width: min(var(--max), 100%);
  margin: 0 auto 20px;
  color: var(--quiet);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-copy {
  padding-top: 12px;
}

.promise-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.promise,
.price-card,
.module-table article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.promise {
  min-height: 300px;
  padding: 22px;
}

.promise span {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--green);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.promise p,
.module-table p,
.price-card p,
.price-card li,
.faq p,
.site-footer p {
  color: var(--muted);
}

.response,
.architecture {
  color: var(--paper);
  background: var(--ink);
}

.response-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 5vw, 76px);
  align-items: end;
  margin-bottom: 42px;
}

.response .eyebrow,
.architecture .eyebrow {
  color: var(--amber);
}

.response-top p,
.architecture .section-heading p {
  color: rgba(255, 254, 250, 0.7);
}

.response-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--line-dark);
}

.response-board article {
  min-height: 280px;
  padding: 22px;
  background: #171a16;
}

.response-board .step {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 64px;
  color: var(--amber);
  border: 1px solid rgba(231, 181, 72, 0.32);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.response-board p {
  color: rgba(255, 254, 250, 0.68);
}

.module-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.module-table article {
  min-height: 270px;
  padding: clamp(22px, 4vw, 38px);
  border: 0;
  border-radius: 0;
}

.module-table h3 {
  max-width: 480px;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
}

.module-table p:last-child {
  max-width: 590px;
}

.setup-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(26px, 5vw, 56px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(15, 123, 87, 0.22), transparent 44%),
    var(--ink-2);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.setup-card .eyebrow {
  color: var(--amber);
}

.setup-card p {
  color: rgba(255, 254, 250, 0.72);
}

.setup-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  color: rgba(255, 254, 250, 0.86);
  background: rgba(255, 254, 250, 0.08);
  border: 1px solid rgba(255, 254, 250, 0.12);
  border-radius: var(--radius);
  font-weight: 740;
}

.setup-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--amber);
  border-radius: 7px;
  font-weight: 900;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tech-grid span {
  padding: 16px;
  color: rgba(255, 254, 250, 0.82);
  background: rgba(255, 254, 250, 0.07);
  border: 1px solid rgba(255, 254, 250, 0.12);
  border-radius: var(--radius);
  font-weight: 760;
  text-align: center;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 24px;
  background: var(--wash);
}

.price-card.featured {
  background: var(--paper);
  border-color: rgba(15, 123, 87, 0.34);
  box-shadow: var(--soft-shadow);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  color: var(--green);
  background: var(--green-2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  line-height: 0.95;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 760;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li:before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
  font-weight: 900;
}

.pricing-note {
  max-width: 820px;
  margin-top: 22px;
}

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

details {
  padding: 20px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 820;
}

summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

details p {
  margin: 14px 0 0;
}

.contact {
  padding-top: 0;
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  color: var(--paper);
  background: var(--green);
  border-radius: 16px;
}

.contact-panel .eyebrow,
.contact-panel p {
  color: rgba(255, 254, 250, 0.78);
}

.contact-panel .button.primary {
  color: var(--ink);
  background: var(--paper);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px max(20px, calc((100% - var(--max)) / 2));
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px;
  font-weight: 740;
}

@media (max-width: 1020px) {
  .hero,
  .intro-layout,
  .response-top,
  .setup-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .promise-grid,
  .pricing-grid,
  .response-board,
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    right: 12px;
    left: 12px;
    width: auto;
    margin-top: 12px;
  }

  .nav-toggle {
    display: none !important;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--soft-shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .hero {
    width: min(100% - 28px, var(--max));
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(2.85rem, 12.5vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }

  .product-grid,
  .trace-panel,
  .hero-strip,
  .promise-grid,
  .response-board,
  .module-table,
  .tech-grid,
  .pricing-grid,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    gap: 0;
  }

  .trace-panel {
    display: grid;
  }

  .status-panel {
    min-height: unset;
  }

  .section-heading,
  .section-heading.left {
    margin-left: auto;
    text-align: left;
  }

  .promise {
    min-height: unset;
  }

  .promise span,
  .response-board .step {
    margin-bottom: 34px;
  }

  .site-footer nav {
    justify-content: start;
  }
}

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