:root {
  --paper: #f7f4ee;
  --paper-2: #fffdf8;
  --ink: #171717;
  --muted: #67615a;
  --line: #e7e1d8;
  --lime: #c6ff3d;
  --lime-dark: #87b91c;
  --sky: #7ddcff;
  --coral: #ff6b57;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.11);
  --radius: 8px;
  font-family: Inter, Manrope, "Golos Text", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(125, 220, 255, 0.18), rgba(247, 244, 238, 0) 360px),
    var(--paper);
  color: var(--ink);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.nav-cta,
.btn,
.console-tabs,
.trust-strip,
.product-label {
  border: 1px solid rgba(23, 23, 23, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 12px 6px 8px;
  background: rgba(255, 253, 248, 0.78);
  border-radius: 999px;
  font-weight: 800;
}

.brand img {
  display: block;
  border-radius: 10px;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 4px;
  background: rgba(255, 253, 248, 0.7);
  border-radius: 999px;
}

.nav a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #3a352f;
}

.nav a:hover,
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper-2);
}

.nav-cta {
  background: var(--paper-2);
}

.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding-top: 34px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: #4c473f;
  font-size: 13px;
  font-weight: 800;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead,
.section-head p,
.proof-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(135, 185, 28, 0.24);
}

.btn-secondary {
  background: var(--paper-2);
  color: var(--ink);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
}

.trust-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(198, 255, 61, 0.22);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 22px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.95), rgba(231, 225, 216, 0.58)),
    var(--paper-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.console-head,
.console-tabs,
.agent-panel {
  position: relative;
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #3b362f;
  font-size: 14px;
  font-weight: 900;
}

.console-head div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 5px rgba(198, 255, 61, 0.22);
}

.console-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
}

.tab {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #544f48;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.tab.is-active {
  background: var(--ink);
  color: var(--paper-2);
}

.agent-panel {
  display: none;
  margin-top: 22px;
}

.agent-panel.is-active {
  display: block;
}

.artifact-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid rgba(23, 23, 23, 0.09);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.82);
}

.artifact-row span,
.steps span,
.result-grid span {
  font-family: "JetBrains Mono", "IBM Plex Mono", Consolas, monospace;
  font-weight: 900;
}

.artifact-row span {
  color: var(--lime-dark);
}

.artifact-row em {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(125, 220, 255, 0.26);
  color: #15556b;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.mini-grid div,
.metrics div,
.price-grid article,
.result-grid article,
.product-card,
.steps article,
.choice-list div,
.faq-list details {
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.mini-grid div {
  min-height: 118px;
  padding: 18px;
}

.mini-grid b,
.metrics b {
  display: block;
  margin-bottom: 8px;
  font-family: "JetBrains Mono", "IBM Plex Mono", Consolas, monospace;
  font-size: 30px;
}

.mini-grid small,
.metrics span {
  color: var(--muted);
  font-weight: 800;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.result-grid,
.product-grid,
.steps,
.price-grid {
  display: grid;
  gap: 16px;
}

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

.result-grid article,
.steps article,
.price-grid article,
.product-card {
  padding: 24px;
}

.result-grid article p,
.steps article p,
.price-grid article p,
.product-card p,
.product-card li,
.faq-list p,
.choice-list span {
  color: var(--muted);
  line-height: 1.52;
}

.result-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--lime-dark);
}

.product-grid {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.product-card.featured {
  background:
    linear-gradient(180deg, rgba(198, 255, 61, 0.22), rgba(255, 253, 248, 0.92)),
    var(--paper-2);
}

.product-card.urgent {
  border-color: rgba(255, 107, 87, 0.35);
}

.product-label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(125, 220, 255, 0.22);
  color: #15556b;
  font-size: 12px;
  font-weight: 900;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 24px;
  padding-left: 18px;
}

.split,
.proof,
.final-cta {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.choice-list {
  display: grid;
  gap: 12px;
}

.choice-list div {
  padding: 18px;
}

.choice-list strong,
.choice-list span {
  display: block;
}

.choice-list strong {
  margin-bottom: 6px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-2);
}

.proof {
  padding: 44px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(125, 220, 255, 0.18), rgba(198, 255, 61, 0.16)),
    var(--paper-2);
}

.metrics {
  display: grid;
  gap: 12px;
}

.metrics div {
  padding: 20px;
}

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

.price-grid strong {
  display: block;
  margin-bottom: 12px;
  font-family: "JetBrains Mono", "IBM Plex Mono", Consolas, monospace;
  font-size: 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  margin-bottom: 48px;
  padding: 38px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--paper-2);
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta h2 {
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .split,
  .proof,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 26px;
  }

  .hero-visual {
    min-height: auto;
  }

  .result-grid,
  .product-grid,
  .steps,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-card.featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .topbar,
  .section,
  .footer {
    width: min(100% - 28px, 1240px);
  }

  .topbar {
    padding: 12px 0;
    gap: 10px;
  }

  .brand {
    min-height: 44px;
  }

  .nav-cta {
    padding: 0 10px;
    font-size: 12px;
  }

  .section {
    padding: 48px 0;
  }

  h1 {
    font-size: 43px;
    line-height: 0.98;
  }

  h2 {
    font-size: 34px;
  }

  .lead,
  .section-head p,
  .proof-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .trust-strip {
    width: 100%;
  }

  .btn,
  .trust-strip span {
    width: 100%;
  }

  .hero-visual,
  .proof,
  .final-cta {
    padding: 18px;
    border-radius: 18px;
  }

  .console-tabs,
  .mini-grid,
  .result-grid,
  .product-grid,
  .steps,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .artifact-row {
    grid-template-columns: 34px 1fr;
  }

  .artifact-row em {
    grid-column: 2;
    width: fit-content;
  }

  .footer {
    display: grid;
    gap: 10px;
  }
}
