﻿:root {
  --forest: #46563c;
  --moss: #5d7052;
  --sage: #8a9d78;
  --leaf: #e8f0e3;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --ink: #172017;
  --muted: #5d675a;
  --line: #dce5d7;
  --warn: #b65f16;
  --blueprint: #28405a;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--forest);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 10;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid rgba(70, 86, 60, 0.14);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 142px;
  height: 88px;
  object-fit: contain;
  margin: -4px 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--forest);
}

.main-nav .nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(40, 64, 90, 0.24);
  border-radius: 7px;
  padding: 0 14px;
  color: var(--blueprint);
  background: rgba(255, 255, 255, 0.72);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus {
  color: white;
  background: var(--blueprint);
  border-color: var(--blueprint);
}

.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding: 78px 0 70px;
  background:
    linear-gradient(90deg, rgba(251, 252, 248, 0.98) 0%, rgba(251, 252, 248, 0.88) 52%, rgba(232, 240, 227, 0.76) 100%),
    linear-gradient(135deg, #f8faf5 0%, #e5eddf 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.75rem, 5.25vw, 4.7rem);
  line-height: 1.03;
  font-weight: 710;
  text-wrap: balance;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 740;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.hero-proof {
  max-width: 650px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(40, 64, 90, 0.16);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blueprint);
  font-size: 0.86rem;
  font-weight: 720;
}

.hero-actions,
.cta-box {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 18px;
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  background: var(--forest);
  color: white;
}

.button.primary:hover,
.button.primary:focus {
  background: #33452f;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
  color: var(--forest);
}

.workflow-panel {
  background: #fdfefb;
  border: 1px solid rgba(70, 86, 60, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(44, 57, 40, 0.18);
  padding: 20px;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.86rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.panel-topline strong {
  color: var(--ink);
}

.task-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--forest);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card-kicker {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.task-card h2 {
  margin-top: 4px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.status-pill {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 800;
}

.flow-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.flow-item {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
}

.flow-item span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cdd9c6;
}

.flow-item.done span {
  background: #4f7d5a;
}

.flow-item.current {
  border-color: #d99c55;
  background: #fff8ef;
}

.flow-item.current span {
  background: var(--warn);
}

.flow-item p,
.flow-item small,
.radar-note p {
  margin: 0;
}

.flow-item small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.radar-note {
  margin-top: 16px;
  padding: 14px;
  background: #f0f5ec;
  border: 1px solid #d7e3d2;
  border-radius: 8px;
}

.radar-note strong {
  display: block;
  margin-bottom: 4px;
}

.radar-note p {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.muted {
  background: #eef4ea;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
}

.section-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid,
.audience-grid,
.pilot-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.audience-grid article,
.pilot-fit-grid article {
  min-height: 210px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.feature-icon {
  display: inline-flex;
  color: var(--moss);
  font-weight: 850;
  margin-bottom: 30px;
}

.feature-grid p,
.audience-grid p,
.pilot-fit-grid p,
.section-heading p,
.screenshot-grid p,
.cta-box p,
.site-footer p {
  color: var(--muted);
  margin: 0;
}


.build-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  border: 1px solid rgba(40, 64, 90, 0.14);
  border-radius: 8px;
  padding: 16px 18px;
  background: #f7faf4;
}

.build-note strong {
  color: var(--blueprint);
  white-space: nowrap;
}

.build-note p {
  margin: 0;
  color: var(--muted);
}

.pilot-fit-section {
  background: linear-gradient(180deg, #fbfcf8 0%, #f2f6ef 100%);
}

.pilot-fit-grid article {
  min-height: 178px;
}
.timeline {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  background: #fbfdf9;
  border: 1px solid #d7e3d2;
  border-radius: 8px;
  padding: 18px;
}

.timeline span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: white;
  border-radius: 50%;
  font-weight: 840;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
}

.screenshot-placeholder {
  min-height: 360px;
  border: 1px solid #cfdccd;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(70, 86, 60, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(70, 86, 60, 0.08) 1px, transparent 1px),
    #fbfdf9;
  background-size: 28px 28px;
  padding: 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
}

.mock-toolbar {
  width: 100%;
  height: 38px;
  border-radius: 7px;
  background: var(--forest);
  margin-bottom: 18px;
}

.mock-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 0.55fr;
  gap: 12px;
  min-height: 168px;
}

.mock-layout span,
.mock-row {
  display: block;
  border-radius: 7px;
  background: rgba(93, 112, 82, 0.17);
  border: 1px solid rgba(70, 86, 60, 0.18);
}

.mock-row {
  height: 22px;
  margin-top: 14px;
}

.mock-row.wide {
  width: 86%;
}

.mock-row.short {
  width: 54%;
}

.cta-section {
  padding-top: 40px;
}

.cta-box {
  justify-content: space-between;
  background: var(--forest);
  color: white;
  border-radius: 8px;
  padding: 34px;
}

.cta-box > div {
  max-width: 720px;
}

.cta-box .eyebrow,
.cta-box p {
  color: rgba(255, 255, 255, 0.76);
}

.cta-box .button.primary {
  background: white;
  color: var(--forest);
}

.site-footer {
  padding: 34px 0 44px;
  background: #172017;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 28px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

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

  .feature-grid,
  .audience-grid,
  .pilot-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 106px;
    height: 58px;
    margin: 0;
  }

  h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.35rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .workflow-panel {
    padding: 14px;
  }

  .panel-topline,
  .task-card,
  .flow-item,
  .build-note,
  .cta-box {
    display: grid;
  }

  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .audience-grid,
  .pilot-fit-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .audience-grid article,
  .pilot-fit-grid article {
    min-height: auto;
  }

  .mock-layout {
    grid-template-columns: 1fr;
    min-height: 240px;
  }

  .screenshot-placeholder {
    min-height: 320px;
  }
}

.legal-page {
  min-height: calc(100vh - 86px);
  padding: 72px 0 96px;
  background: #f7faf4;
}

.legal-content {
  max-width: 840px;
}

.legal-content h1 {
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  margin-bottom: 44px;
}

.legal-content section {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 14px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--forest);
  font-weight: 760;
}





