:root {
  --green: #0f8a5f;
  --green-dark: #0a6848;
  --green-soft: #eaf7f1;
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --surface: #f8faf9;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.11);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.narrow {
  width: min(900px, 100%);
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.brand-dot {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: #475467;
  font-weight: 600;
  font-size: 14px;
}

.desktop-nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover {
  background: var(--surface);
  color: var(--ink);
}

.hero {
  padding-top: 92px;
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 138, 95, 0.12), transparent 29%),
    linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(15, 138, 95, 0.12);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 6vw, 76px);
  margin-bottom: 26px;
}

h1 span {
  color: var(--green);
}

h2 {
  font-size: clamp(36px, 4.5vw, 54px);
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.lead {
  font-size: 20px;
  color: #475467;
  max-width: 690px;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}

.case-ref {
  margin: 22px 0 0;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}

.case-ref a {
  color: var(--green, #067a68);
  text-decoration: underline;
}

.trust-row span::before {
  content: "✓";
  color: var(--green);
  margin-right: 6px;
}

.worker-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.worker-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.worker-card h2 {
  font-size: 38px;
  margin: 4px 0 0;
}

.label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #98a2b3;
}

.status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.activity {
  padding: 18px 0;
}

.activity-row {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 13px 0;
}

.activity-row + .activity-row {
  border-top: 1px solid #f1f3f5;
}

.activity-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}

.activity-row.running .activity-icon {
  background: #fff5e8;
  color: #d97706;
}

.activity-row strong,
.activity-row small {
  display: block;
}

.activity-row strong {
  font-size: 14px;
}

.activity-row small {
  color: #98a2b3;
  font-size: 12px;
}

.spin {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.metric {
  display: flex;
  align-items: end;
  justify-content: space-between;
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
}

.metric span {
  color: #667085;
  font-size: 13px;
}

.metric strong {
  font-size: 24px;
}

.demo-note {
  font-size: 11px;
  color: #98a2b3;
  margin: 14px 0 0;
}

.problem {
  background: var(--surface);
  text-align: center;
}

.section-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-intro.left {
  margin-left: 0;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.cards.four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: left;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 24px;
}

.icon-worker {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: block;
  flex-shrink: 0;
}

.avatar-worker {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  border-radius: 18px;
  display: block;
  flex-shrink: 0;
}

.info-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.check-list,
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li,
.benefit-list li {
  padding: 10px 0 10px 34px;
  position: relative;
}

.check-list li::before,
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.profile-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.profile-top {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.profile-top h3 {
  margin: 0 0 4px;
  font-size: 28px;
}

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

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
}

.profile-card dl {
  margin: 8px 0 0;
}

.profile-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f3f5;
}

.profile-card dt {
  color: var(--muted);
}

.profile-card dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.green {
  color: var(--green);
}

.trial {
  padding-top: 40px;
}

.trial-box {
  background: #0d2f26;
  color: #fff;
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.trial-box p {
  color: #c7d8d2;
  font-size: 18px;
}

.section-kicker.light {
  color: #7fe0b7;
}

.trial-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trial-points span {
  background: rgba(255, 255, 255, 0.08);
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
}

.trial-points span::before {
  content: "✓";
  color: #7fe0b7;
  margin-right: 8px;
}

.how {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
  text-align: left;
}

.steps article {
  border-top: 2px solid var(--green);
  padding-top: 24px;
}

.steps article > span {
  color: var(--green);
  font-weight: 800;
}

.steps p {
  color: var(--muted);
}

.founders {
  background: var(--surface);
}

.benefit-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 28px;
  margin: 0;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
  background: #fff;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #344054;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 138, 95, 0.13);
  border-color: var(--green);
}

.form-button {
  width: 100%;
  border: none;
}

.form-note,
.form-message {
  font-size: 12px;
  color: #98a2b3;
  text-align: center;
  margin-bottom: 0;
}

.form-message {
  font-weight: 700;
}

footer {
  background: #0b1512;
  color: #d0d5d2;
  padding: 60px 0 26px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  color: #fff;
}

.footer-grid p {
  color: #8f9b97;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.legal {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid #24302c;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7e8b86;
  font-size: 12px;
}

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

  .hero-grid,
  .split,
  .trial-box,
  .reserve-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .worker-card {
    transform: none;
  }

  .cards.three,
  .cards.four,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }
}

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

  .site-header .button-small {
    display: none;
  }

  .nav {
    height: 68px;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 17px;
  }

  .field-grid,
  .trial-points {
    grid-template-columns: 1fr;
  }

  .trial-box {
    padding: 34px 24px;
  }

  .footer-grid,
  .legal {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}/* ===== Sales-redesign additive styles (preview only) ===== */

.button-xl { min-height: 58px; padding: 0 30px; font-size: 17px; border-radius: 14px; }

/* Hero proof row (replaces trust-row) */
.sales-hero { gap: 56px; }
.proof-row { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.proof-row li { font-size: 15px; color: #475467; font-weight: 500; }
.proof-row li::before { content: "✓"; color: var(--green); font-weight: 800; margin-right: 8px; }
.proof-row a { color: var(--green); text-decoration: underline; font-weight: 600; }

/* Right-side offer card (sales version of worker-card, no fake "live activity") */
.sales-offer { background: #0d2f26; color: #fff; border-radius: 28px; padding: 34px; box-shadow: var(--shadow); border: 1px solid #1b4a3d; }
.mini-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; color: #7fe0b7; margin-bottom: 10px; }
.offer-head { display: block; font-family: "Space Grotesk", Inter, sans-serif; font-size: 26px; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 18px; }
.offer-points { list-style: none; margin: 0 0 26px; padding: 0; }
.offer-points li { padding: 9px 0 9px 26px; position: relative; color: #d7e6e0; font-size: 15px; }
.offer-points li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: #7fe0b7; font-weight: 800; }
.offer-cta .button-full { width: 100%; }
.offer-cta small { display: block; text-align: center; color: #9fb6ae; font-size: 12px; margin-top: 10px; }

/* Tighter section rhythm */
.how-tight, .team-tight, .why-tight, .faq-tight { padding: 76px 0; }
.how-tight h2 { margin-bottom: 8px; }
.team-tight { background: var(--surface); }

.tf-center { text-align: center; margin-bottom: 18px; }
.compact-card { padding: 22px; }
.compact-card h3 { margin-bottom: 6px; font-size: 19px; }

/* Team + why kickers left aligned where needed */
.tf-kicker { display: flex; }
.tf-left { justify-content: flex-start; }

.why-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.why-wrap .why-col h2 { margin-bottom: 6px; }
.why-list li { font-size: 16px; }
.why-tight { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* FAQ one-liners (expandable) */
.faq { background: var(--surface); }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 6px 20px; margin-bottom: 12px; }
.faq-list summary { cursor: pointer; font-weight: 700; font-size: 16px; padding: 12px 0; color: var(--ink); }
.faq-list summary::-webkit-details-marker { color: var(--green); }
.faq-list p { color: var(--muted); margin: 0 0 14px; font-size: 15px; }

.inline-note { margin-top: -10px; margin-bottom: 16px; text-align: left; }

@media (max-width: 900px) {
  .why-wrap { grid-template-columns: 1fr; gap: 26px; }
  .proof-row { margin-top: 22px; }
}

@media (max-width: 600px) {
  .sales-offer { padding: 26px 22px; }
  .offer-head { font-size: 22px; }
}
