:root {
  color-scheme: light;
  --ink: #14231e;
  --muted: #5f6f68;
  --paper: #f7f4ec;
  --panel: #fffdf7;
  --panel-strong: #edf5ef;
  --line: rgba(20, 35, 30, 0.14);
  --green: #1f7a59;
  --green-dark: #123f35;
  --amber: #b46b24;
  --shadow: 0 24px 70px rgba(25, 54, 45, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

code {
  background: rgba(31, 122, 89, 0.09);
  border: 1px solid rgba(31, 122, 89, 0.16);
  border-radius: 6px;
  color: var(--green-dark);
  font-size: 0.92em;
  padding: 0.08rem 0.3rem;
}

.site-header {
  align-items: center;
  background: rgba(247, 244, 236, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

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

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--green-dark);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
}

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

.nav-links {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 52px) 34px;
}

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

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 22px;
  max-width: 10.6ch;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.lede {
  color: #405149;
  font-size: clamp(18px, 2vw, 22px);
  max-width: 68ch;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--green-dark);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--green-dark);
}

.release-note {
  color: var(--muted);
  font-size: 14px;
  margin: 16px 0 0;
  max-width: 62ch;
}

.product-preview {
  background: linear-gradient(150deg, #fffdf7 0%, #eaf4ef 100%);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-height: 500px;
  overflow: hidden;
}

.window-bar {
  align-items: center;
  background: rgba(20, 35, 30, 0.07);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
}

.window-bar span {
  aspect-ratio: 1;
  background: rgba(20, 35, 30, 0.28);
  border-radius: 50%;
  width: 10px;
}

.preview-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  padding: 18px;
}

.preview-panel {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 150px;
  padding: 18px;
}

.preview-panel.large {
  display: flex;
  flex-direction: column;
  grid-column: 1 / -1;
  min-height: 250px;
}

.preview-panel small {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.preview-panel h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: auto;
}

.preview-panel p {
  color: #405149;
  margin-bottom: 18px;
}

.agenda-line {
  background: rgba(20, 35, 30, 0.13);
  border-radius: 6px;
  height: 13px;
  margin-top: 12px;
  width: 86%;
}

.agenda-line.strong {
  background: rgba(31, 122, 89, 0.28);
  width: 94%;
}

.agenda-line.short {
  width: 58%;
}

.pill {
  background: rgba(180, 107, 36, 0.12);
  border: 1px solid rgba(180, 107, 36, 0.2);
  border-radius: 999px;
  color: #7c4817;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}

.pill.green {
  background: rgba(31, 122, 89, 0.12);
  border-color: rgba(31, 122, 89, 0.22);
  color: var(--green-dark);
}

.trust-strip,
.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 68px clamp(18px, 4vw, 34px);
}

.trust-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 28px;
}

.trust-strip div {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 118px;
  padding: 24px;
}

.trust-strip div:first-child {
  border-radius: 10px 0 0 10px;
}

.trust-strip div:last-child {
  border-radius: 0 10px 10px 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-strip span {
  color: var(--muted);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 860px;
}

.steps,
.feature-grid,
.note-grid {
  display: grid;
  gap: 14px;
}

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

.step,
.feature-grid article,
.note-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 22px;
}

.step span {
  align-items: center;
  aspect-ratio: 1;
  background: var(--panel-strong);
  border: 1px solid rgba(31, 122, 89, 0.2);
  border-radius: 8px;
  color: var(--green-dark);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-bottom: 18px;
  width: 38px;
}

.step p,
.feature-grid p,
.note-grid p,
.copy-block p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.feature-grid article {
  min-height: 178px;
}

.split {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.copy-block {
  background: var(--green-dark);
  border-radius: 10px;
  color: #fff;
  padding: 28px;
}

.copy-block p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.copy-block p + p {
  margin-top: 18px;
}

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

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin: 40px auto 0;
  max-width: 1180px;
  padding: 28px clamp(18px, 4vw, 34px) 42px;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    position: static;
  }

  .nav-links {
    flex-wrap: wrap;
  }

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

  .hero {
    min-height: auto;
  }

  .product-preview {
    min-height: 420px;
  }

  .trust-strip,
  .steps,
  .feature-grid,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .trust-strip div:first-child,
  .trust-strip div:last-child {
    border-radius: 8px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 42px;
    max-width: 11ch;
  }

  .button {
    width: 100%;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-panel.large {
    min-height: 220px;
  }

  .section {
    padding-bottom: 48px;
    padding-top: 48px;
  }
}
