:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5e6a63;
  --line: #dfe7df;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --sage: #476f5f;
  --sage-dark: #244438;
  --tomato: #c74734;
  --honey: #e8ad3f;
  --blue: #3d6f91;
  --shadow: 0 22px 70px rgba(31, 46, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 245, 0.88);
  border-bottom: 1px solid rgba(223, 231, 223, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-cta,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 750;
}

.nav-cta,
.primary {
  background: var(--tomato);
  color: #fff;
  box-shadow: 0 12px 30px rgba(199, 71, 52, 0.22);
}

.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(36px, 6vw, 80px) clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
}

.hero-media {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(71, 111, 95, 0.18), rgba(232, 173, 63, 0.14)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1200&q=80") center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 33, 28, 0.12), rgba(23, 33, 28, 0.58));
  border-radius: inherit;
}

.phone,
.publish-board {
  position: relative;
  z-index: 1;
}

.phone {
  width: min(72%, 330px);
  padding: 16px;
  border: 8px solid #181c1a;
  border-radius: 32px;
  background: #f7f4ec;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.phone-status {
  width: 80px;
  height: 8px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #252a27;
}

.dish-photo {
  aspect-ratio: 1 / 0.86;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.52)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=900&q=80") center/cover;
  color: #fff;
  font-size: 28px;
  font-weight: 850;
}

.voice-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}

.voice-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.pulse {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--tomato);
  box-shadow: 0 0 0 8px rgba(199, 71, 52, 0.14);
}

.publish-board {
  position: absolute;
  right: -22px;
  bottom: 44px;
  width: min(330px, 70%);
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.board-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 10px;
  border-bottom: 1px solid #edf0ec;
  color: var(--muted);
  font-size: 14px;
}

.board-row:last-child {
  border-bottom: 0;
}

.board-row strong {
  color: var(--sage-dark);
}

.board-row.active strong {
  color: var(--tomato);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 22px;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 82px clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.intro > p,
.workflow-copy p,
.pilot p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) 82px;
}

.blueprint {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: start;
  padding: 82px clamp(18px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blueprint-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.reference-link {
  display: flex;
  width: fit-content;
  align-items: center;
  margin-top: 22px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf5;
  color: var(--sage-dark);
  font-weight: 800;
}

.reference-link + .reference-link {
  margin-top: 10px;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.blueprint-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf5;
}

.blueprint-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #eaf1ed;
  color: var(--sage-dark);
  font-weight: 900;
}

.blueprint-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.comparison article,
.modules article,
.pilot-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 50px rgba(31, 46, 38, 0.08);
}

.comparison article {
  padding: clamp(22px, 4vw, 36px);
}

.comparison .highlight {
  border-color: rgba(71, 111, 95, 0.42);
  background: #f3f8f3;
}

.guest-questions {
  padding: 82px clamp(18px, 5vw, 72px);
  background: #173128;
  color: #fff;
}

.guest-questions .eyebrow {
  color: #f2bc55;
}

.guest-questions .section-head {
  max-width: 980px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.question-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.question-grid strong {
  display: block;
  font-size: 22px;
}

.question-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin-top: 14px;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--honey);
}

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

.modules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.modules article {
  min-height: 260px;
  padding: 24px;
}

.module-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  border-radius: 8px;
  background: var(--sage-dark);
  color: #fff;
  font-weight: 850;
}

.modules p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(26px, 7vw, 92px);
  align-items: center;
  padding: 86px clamp(18px, 5vw, 72px);
  background: #173128;
  color: #fff;
}

.workflow .eyebrow {
  color: #f2bc55;
}

.workflow-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.steps li::before {
  display: none;
}

.steps strong {
  font-size: 21px;
}

.steps span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.subscription {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: start;
  padding: 82px clamp(18px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.subscription p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.pricing-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf5;
}

.pricing-grid strong,
.pricing-grid span {
  display: block;
}

.pricing-grid strong {
  font-size: 24px;
}

.pricing-grid span {
  margin-top: 10px;
  color: var(--tomato);
  font-weight: 850;
}

.pricing-grid p {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.55;
}

.pilot {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 420px);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
}

.pilot p {
  margin-top: 20px;
}

.pilot-card {
  padding: 26px;
}

.metric {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.metric span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #edf4f0;
  color: var(--sage-dark);
  font-weight: 900;
}

.metric p {
  margin: 0;
  font-size: 16px;
}

.wide {
  width: 100%;
  margin-top: 22px;
}

.guardrails {
  padding: 72px clamp(18px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guardrails h2 {
  max-width: 900px;
}

.guardrails div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.guardrails p {
  margin: 0;
  padding: 18px;
  min-height: 118px;
  border-radius: 8px;
  background: #f7f4ec;
  color: var(--muted);
  line-height: 1.45;
}

.contact {
  min-height: 54vh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 94px clamp(18px, 5vw, 72px);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(23, 33, 28, 0.82), rgba(23, 33, 28, 0.66)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
}

.contact .eyebrow {
  color: #f2bc55;
}

.contact h2 {
  max-width: 980px;
}

.contact p {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .intro,
  .comparison,
  .blueprint,
  .subscription,
  .workflow,
  .pilot {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: 2;
    min-height: 480px;
  }

  .modules,
  .blueprint-grid,
  .question-grid,
  .pricing-grid,
  .guardrails div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 68px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-media {
    min-height: 430px;
  }

  .phone {
    width: 82%;
  }

  .publish-board {
    right: 12px;
    bottom: 18px;
    width: calc(100% - 24px);
  }

  .modules,
  .blueprint-grid,
  .question-grid,
  .pricing-grid,
  .guardrails div {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
