:root {
  --bg: #f4f1ea;
  --ink: #202124;
  --muted: #625d55;
  --panel: #fffdf7;
  --line: #d8d0c4;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --soft: #d7f0ec;
  --gold: #9b6b16;
}

* {
  box-sizing: border-box;
}

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

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

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.logo span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 13px;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 36px;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: 42px 0 64px;
}

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

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

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

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 850;
  padding: 0 18px;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: #e9e0d4;
  color: var(--ink);
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(34, 30, 24, 0.16);
}

.shot-toolbar {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 14px;
  background: #ebe3d7;
}

.shot-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b8aa9a;
}

.shot-body {
  padding: 28px;
}

.doc-label {
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  padding: 6px 10px;
}

.shot-body h2 {
  margin: 0 0 22px;
  font-size: 28px;
}

.shot-body h3 {
  margin: 22px 0 8px;
  font-size: 15px;
}

.shot-body p,
.shot-body li {
  color: var(--muted);
  line-height: 1.55;
}

.band {
  border-block: 1px solid var(--line);
  background: #ebe3d7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.metrics div {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.metrics div:first-child {
  border-left: 1px solid var(--line);
}

.metrics strong {
  font-size: 34px;
}

.metrics span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

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

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

article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

article h3 {
  margin: 0 0 10px;
}

article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

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

.audience-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 700;
}

.pricing {
  border-top: 1px solid var(--line);
}

.price {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
}

.featured {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}


.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  padding: 0 14px;
}

.card-button:hover {
  background: var(--accent-dark);
}

.featured .card-button {
  background: var(--accent);
}

.featured .card-button:hover {
  background: var(--accent-dark);
}
.cta {
  display: grid;
  place-items: center;
  gap: 22px;
  margin: 0 auto 72px;
  width: min(960px, calc(100% - 32px));
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 56px 24px;
  text-align: center;
}

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

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 24px 0 34px;
  font-size: 14px;
}

footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 860px) {
  .topbar,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-shot {
    order: -1;
  }

  .metrics,
  .grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .metrics div,
  .metrics div:first-child {
    border-left: 1px solid var(--line);
  }
}


.examples {
  padding-bottom: 36px;
}

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

.example-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(255, 249, 238, 0.96)),
    radial-gradient(circle at 100% 0, rgba(15, 118, 110, 0.16), transparent 38%);
}

.example-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #d2a258);
}

.example-card span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  padding: 6px 10px;
}

.example-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.example-card li {
  position: relative;
  color: var(--muted);
  font-weight: 700;
  padding-left: 22px;
}

.example-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent-dark);
  font-weight: 900;
}

.text-link:hover {
  color: var(--gold);
}
@media (max-width: 860px) {
  .example-grid {
    grid-template-columns: 1fr;
  }

  .example-card {
    min-height: auto;
  }
}

.waitlist {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.waitlist-copy {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(255, 249, 238, 0.96)),
    radial-gradient(circle at 100% 0, rgba(15, 118, 110, 0.14), transparent 38%);
  padding: 22px;
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px;
  outline: none;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--soft);
}

.waitlist-form p {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 860px) {
  .waitlist {
    grid-template-columns: 1fr;
  }
}
.launch-note {
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 8px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 14px;
  line-height: 1.45;
  padding: 12px;
}