:root {
  --green: #0f3d36;
  --green-deep: #0b2e29;
  --logo: #3a8c73;
  --ink: #12241f;
  --muted: #5d726c;
  --line: rgba(15, 61, 54, 0.1);
  --sage: #e7f3ef;
  --page: #ffffff;
  --soft: #f4f7f6;
  --on: #f4faf8;
  --shadow: 0 16px 40px rgba(18, 36, 31, 0.08);
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

.site-header,
.site-footer {
  align-items: center;
  background: #121716;
  color: var(--on);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto 1fr;
  padding: 14px 32px;
}
.site-header { position: sticky; top: 0; z-index: 20; }
.site-footer { background: #101413; }
.header-actions { display: flex; gap: 10px; justify-self: end; }
.brand-lockup {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 10px;
  justify-self: start;
  letter-spacing: -0.3px;
  text-decoration: none;
}
.badge {
  background: var(--green);
  border: 2px solid var(--logo);
  border-radius: 999px;
  height: 36px;
  object-fit: contain;
  padding: 3px;
  width: 36px;
}
.nav, .site-footer nav { display: flex; gap: 18px; }
.nav a, .site-footer nav a {
  color: rgba(244, 250, 248, 0.78);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.nav a:hover, .site-footer nav a:hover { color: white; }

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 750;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  text-decoration: none;
}
.btn-lg { min-height: 48px; padding: 12px 22px; }
.btn-ghost { border: 1px solid rgba(244, 250, 248, 0.35); color: var(--on); }
.btn-light { background: white; color: var(--green); }
.btn-green { background: var(--green); color: var(--on); }
.btn-outline { background: white; border: 1.5px solid rgba(15, 61, 54, 0.25); color: var(--green); }
.btn-green:hover, .btn-light:hover { filter: brightness(1.05); }

.hero {
  background: #fff;
  overflow: hidden;
  padding: 64px 24px 0;
  position: relative;
  text-align: center;
}
.hero::before {
  background: radial-gradient(ellipse at 50% 42%, rgba(126, 176, 158, 0.34), rgba(255, 255, 255, 0) 64%);
  content: "";
  height: 520px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 210px;
  transform: translateX(-50%);
  width: min(980px, 96vw);
}
.hero-copy,
.laptop { position: relative; z-index: 1; }
.hero-copy { margin: 0 auto; max-width: 760px; }
.kicker, .eyebrow {
  color: var(--logo);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.kicker.light { color: rgba(244, 250, 248, 0.72); }
h1 {
  color: #111;
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 0.98;
  margin: 0 auto 16px;
}
.lede, .section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 26px; }

.laptop { margin: 42px auto 0; max-width: 880px; }
.laptop-lid {
  background: #111816;
  border: 10px solid #1c1c1c;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 40px 80px rgba(15, 61, 54, 0.18);
  overflow: hidden;
}
.laptop-lip {
  background: linear-gradient(#3a3a3a, #1a1a1a);
  border-radius: 0 0 14px 14px;
  height: 14px;
  margin: 0 10%;
}
.app { display: grid; grid-template-columns: 220px 1fr; min-height: 340px; text-align: left; }
.app aside {
  background: var(--green);
  color: var(--on);
  padding: 22px 16px;
}
.app aside img {
  background: var(--green);
  border: 2px solid var(--logo);
  border-radius: 999px;
  height: 42px;
  margin-bottom: 10px;
  object-fit: contain;
  padding: 4px;
  width: 42px;
}
.app aside strong { display: block; font-size: 18px; }
.app aside em {
  color: rgba(244, 250, 248, 0.7);
  display: block;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 18px 0 8px;
  text-transform: uppercase;
}
.app aside ul { list-style: none; margin: 0; padding: 0; }
.app aside li {
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  padding: 8px 10px;
}
.app aside li.on { background: rgba(255, 255, 255, 0.1); }
.app aside small { color: rgba(244, 250, 248, 0.65); display: block; font-weight: 600; }
.workspace { background: #f3f6f5; padding: 16px; }
.workspace header, .ui header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.workspace header span, .mini-btn {
  background: var(--green);
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 750;
  padding: 6px 10px;
}
.chips { display: flex; gap: 6px; margin-bottom: 10px; }
.chips i {
  background: white;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  padding: 4px 8px;
}
.workspace article {
  background: white;
  border-radius: 10px;
  margin-top: 8px;
  padding: 10px 12px;
}
.workspace article b, .row b { display: block; font-size: 13px; }
.workspace article small { color: var(--muted); font-size: 12px; }

.showcase, .features, .roles, .faq { padding: 28px 24px 8px; text-align: center; }
.features, .faq { padding-top: 72px; }
h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.05;
  margin: 0 auto 12px;
}
.card-row, .feature-row, .role-row {
  display: grid;
  gap: 16px;
  margin: 32px auto 0;
  max-width: var(--max);
  text-align: left;
}
.card-row { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.ui-card, .feature-row article, .role-row article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
}
.ui {
  background: var(--soft);
  border-radius: 12px;
  margin-bottom: 14px;
  min-height: 168px;
  padding: 12px;
}
.row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 8px 0;
}
.pill {
  background: rgba(58, 140, 115, 0.16);
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  padding: 3px 7px;
  white-space: nowrap;
}
.pill.soft { background: #ece7da; color: #6d6248; }
.pill.warn { background: #e7efe4; }
.cal {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(7, 1fr);
}
.cal s, .cal span {
  align-items: center;
  border-radius: 6px;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  height: 20px;
  justify-content: center;
  text-decoration: none;
}
.cal s { color: var(--muted); font-weight: 700; height: 16px; }
.cal .job { background: rgba(58, 140, 115, 0.18); }
.cal .today { background: var(--green); color: white; }
.ui-card h3, .feature-row h3, .role-row h3 { font-size: 18px; margin: 0 0 6px; }
.ui-card p, .feature-row p, .role-row p { color: var(--muted); font-size: 14px; line-height: 1.45; margin: 0; }

.facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin: 54px auto 10px;
  max-width: 880px;
  padding: 0 24px 20px;
  text-align: center;
}
.facts strong { display: block; font-size: 48px; letter-spacing: -1.5px; line-height: 1; }
.facts span { color: var(--muted); font-size: 14px; font-weight: 650; }

.feature-row, .role-row { grid-template-columns: repeat(5, 1fr); }
.role-row { grid-template-columns: repeat(4, 1fr); margin-bottom: 26px; }
.icon, .shield {
  align-items: center;
  background: var(--sage);
  border-radius: 12px;
  color: var(--green);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  margin-bottom: 12px;
  width: 40px;
}
.icon svg, .shield svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 22px;
}
.shield svg { fill: rgba(15, 61, 54, 0.12); }
.roles .btn { margin-bottom: 20px; }

.devices {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.05fr 0.95fr;
  margin: 10px auto 20px;
  max-width: 1040px;
  padding: 36px 24px 10px;
}
.device-stage { min-height: 250px; position: relative; }
.mini-laptop { width: 78%; }
.mini-screen {
  background: #1c1c1c;
  border-radius: 12px 12px 6px 6px;
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 190px;
  padding: 10px;
}
.mini-side { background: var(--green); border-radius: 6px; }
.mini-main { display: grid; gap: 8px; padding: 12px; }
.mini-main span { background: white; border-radius: 6px; }
.mini-phone {
  background: var(--green);
  border: 7px solid #1c1c1c;
  border-radius: 22px;
  bottom: 6px;
  color: white;
  min-height: 196px;
  padding: 22px 12px;
  position: absolute;
  right: 4%;
  width: 118px;
}
.mini-phone b, .mini-phone span, .mini-phone em { display: block; }
.mini-phone span { color: rgba(244, 250, 248, 0.75); font-size: 12px; margin-top: 6px; }
.mini-phone em {
  background: white;
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  margin-top: 28px;
  padding: 8px 6px;
  text-align: center;
}
.devices h2 { margin-left: 0; }
.devices p { color: var(--muted); line-height: 1.5; }

.checks { list-style: none; margin: 16px 0 0; padding: 0; }
.checks li {
  align-items: flex-start;
  color: var(--ink);
  display: flex;
  gap: 10px;
  line-height: 1.4;
  margin-top: 10px;
}
.checks li::before {
  background: var(--green);
  border-radius: 999px;
  color: white;
  content: "✓";
  flex: none;
  font-size: 11px;
  height: 18px;
  line-height: 18px;
  margin-top: 1px;
  text-align: center;
  width: 18px;
}

.pricing { margin: 48px auto 10px; max-width: 1040px; padding: 0 24px; }
.price-band {
  align-items: center;
  background: var(--sage);
  border-radius: 28px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.85fr;
  padding: 32px;
}
.price {
  align-items: flex-end;
  display: flex;
  gap: 10px;
  margin: 6px 0 8px;
}
.price span { font-size: 64px; font-weight: 800; letter-spacing: -2px; line-height: 0.85; }
.price small { font-size: 22px; font-weight: 750; padding-bottom: 8px; }
.price-note, .billing-note { color: var(--muted); line-height: 1.45; }
.billing-note { font-size: 13px; margin: 14px 4px 0; text-align: center; }
.included {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 18px 18px 10px;
}
.included h3 { margin: 0; }
.shield { margin-bottom: 8px; }

.split-notes {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  margin: 48px auto;
  max-width: var(--max);
  padding: 0 24px;
}
.split-notes h2 { font-size: 28px; margin-bottom: 8px; }
.split-notes ol { color: var(--muted); line-height: 1.5; margin: 12px 0 0; padding-left: 18px; }
.split-notes ol li { margin-top: 10px; }
.split-notes ol b { color: var(--ink); }

.faq { padding-bottom: 40px; text-align: left; }
.faq h2, .section-copy.left { margin-left: auto; margin-right: auto; max-width: 720px; }
.faq h2 { text-align: center; }
.faq-list { margin: 22px auto 0; max-width: 720px; }
.faq-list details { border-top: 1px solid var(--line); padding: 14px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-weight: 750; }
.faq-list p { color: var(--muted); margin: 8px 0 0; }

.closer {
  align-items: center;
  background: #121716;
  border-radius: 28px;
  color: var(--on);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 10px auto 28px;
  max-width: 1040px;
  padding: 36px 40px;
}
.closer h2 { color: white; margin-bottom: 8px; }
.closer p { color: rgba(244, 250, 248, 0.78); margin: 0; max-width: 520px; }

#projects, #schedule, #daily-logs, #features, #pricing, #questions { scroll-margin-top: 84px; }

@media (max-width: 980px) {
  .site-header, .site-footer { grid-template-columns: 1fr auto; }
  .nav, .site-footer nav { grid-column: 1 / -1; flex-wrap: wrap; }
  .card-row, .role-row, .facts, .split-notes, .devices, .price-band { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .devices { grid-template-columns: 1fr; }
  .closer { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 680px) {
  .card-row, .role-row, .facts, .feature-row, .split-notes, .price-band { grid-template-columns: 1fr; }
  .app { grid-template-columns: 1fr; }
  .app aside ul { display: none; }
  .hero-actions, .header-actions { flex-wrap: wrap; }
  .price span { font-size: 52px; }
  .closer, .price-band { border-radius: 20px; padding: 22px; }
}
