:root {
  --ink: #12201f;
  --muted: #5c6c69;
  --line: #dbe6e2;
  --paper: #ffffff;
  --soft: #f5f9f7;
  --warm: #fff7f1;
  --forest: #032f2d;
  --forest-2: #0f4b46;
  --orange: #f97316;
  --orange-dark: #d85f08;
  --blue: #2563eb;
  --pink: #ec4899;
  --shadow: 0 24px 70px rgba(3, 47, 45, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}
.logo-brand {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  overflow: hidden;
  padding: 3px 10px;
  width: 220px;
}
.logo-brand img { height: 100%; object-fit: contain; width: 100%; }
.header-nav { align-items: center; color: var(--muted); display: flex; font-size: 14px; font-weight: 700; gap: 22px; }
.header-nav a:hover { color: var(--forest); }
.header-cta, .primary-button, .secondary-button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}
.header-cta, .primary-button { background: var(--orange); color: white; box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22); }
.header-cta:hover, .primary-button:hover { background: var(--orange-dark); }
.secondary-button { border: 1px solid var(--forest); color: var(--forest); }
.secondary-button:hover { background: var(--forest); color: white; }

.jump-links {
  align-items: center;
  background: var(--forest);
  color: #d8ece8;
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  padding: 10px 18px;
  position: sticky;
  top: 76px;
  z-index: 25;
}
.jump-links a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
}
.jump-links a:hover { background: rgba(255, 255, 255, 0.1); color: white; }

.hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(236, 72, 153, 0.12), transparent 24%),
    radial-gradient(circle at 16% 86%, rgba(37, 99, 235, 0.12), transparent 24%),
    linear-gradient(135deg, #f7fbf9 0%, #ffffff 48%, #fff5ee 100%);
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.75fr);
  padding: 42px 40px 54px;
}
.hero-copy, .section, .proof-strip, .launch-band { margin-inline: auto; max-width: 1180px; width: 100%; }
.hero-copy { align-self: start; margin-right: 0; padding-top: 8px; }
.hero-logo-card {
  background: white;
  border: 1px solid rgba(3, 47, 45, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(3, 47, 45, 0.1);
  height: 104px;
  margin-bottom: 24px;
  max-width: 500px;
  overflow: hidden;
  padding: 8px 18px;
}
.hero-logo-card img { height: 100%; object-fit: contain; width: 100%; }
.eyebrow { color: var(--orange-dark); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; margin: 0 0 14px; text-transform: uppercase; }
h1, h2, h3 { font-family: Outfit, Inter, sans-serif; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 76px); line-height: 0.95; max-width: 850px; }
.hero-subtitle { color: var(--muted); font-size: 20px; line-height: 1.55; margin: 24px 0 0; max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { background: white; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); font-size: 12px; font-weight: 800; padding: 8px 12px; }

.hero-side { align-self: start; display: grid; gap: 18px; margin-left: 0; }
.hero-visual {
  background: white;
  border: 1px solid rgba(3, 47, 45, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}
.hero-visual img { aspect-ratio: 4 / 3; height: 100%; object-fit: cover; width: 100%; }
.hero-visual figcaption { align-items: start; display: grid; gap: 4px; padding: 16px 18px 18px; }
.hero-visual figcaption strong { font-family: Outfit, Inter, sans-serif; font-size: 19px; }
.hero-visual figcaption span { color: var(--muted); font-size: 13px; line-height: 1.45; }

.signup-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(3, 47, 45, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(3, 47, 45, 0.1);
  padding: 24px;
}
.panel-topline { align-items: center; color: var(--muted); display: flex; font-size: 12px; font-weight: 800; justify-content: space-between; margin-bottom: 16px; text-transform: uppercase; }
.panel-topline strong { color: var(--forest); }
.signup-panel h2 { font-size: 28px; line-height: 1.05; }
.signup-panel p { color: var(--muted); font-size: 14px; line-height: 1.55; }
form, label { display: grid; gap: 8px; }
form { gap: 13px; margin-top: 18px; }
label { color: var(--ink); font-size: 13px; font-weight: 800; }
input, select { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); font: inherit; min-height: 44px; padding: 0 12px; width: 100%; }
input:focus, select:focus { border-color: var(--orange); outline: 3px solid rgba(249, 115, 22, 0.16); }
.form-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.checkbox-label { align-items: start; color: var(--muted); display: grid; font-size: 12px; font-weight: 600; grid-template-columns: 18px 1fr; line-height: 1.45; }
.checkbox-label input { min-height: auto; margin-top: 2px; }
.form-submit { border: 0; cursor: pointer; width: 100%; }
.privacy-note { font-size: 12px; margin: 0; }
.success-state { background: #dff6ee; border: 1px solid #a9dfce; border-radius: var(--radius); color: var(--forest); display: grid; gap: 4px; margin-top: 16px; padding: 14px; }

.proof-strip { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); padding: 0 40px; transform: translateY(-18px); }
.proof-strip div { background: var(--forest); color: white; display: grid; gap: 8px; min-height: 128px; padding: 24px; }
.proof-strip strong { font-family: Outfit, Inter, sans-serif; font-size: 23px; }
.proof-strip span { color: #cde4df; font-size: 14px; line-height: 1.45; }

.section { padding: 76px 40px; }
.section-heading { margin-bottom: 34px; max-width: 780px; }
.section-heading.compact { max-width: 660px; }
.section-heading h2, .launch-band h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1; }
.section-heading p:not(.eyebrow), .launch-band p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.benefits { background: white; }
.benefit-grid, .workflow, .outcome-grid { display: grid; gap: 18px; }
.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.benefit-grid article, .workflow article, .outcome-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.benefit-grid article { min-height: 260px; }
.benefit-icon { align-items: center; background: var(--warm); border: 1px solid #fed7aa; border-radius: 999px; color: var(--orange-dark); display: inline-flex; font-size: 12px; font-weight: 900; height: 38px; justify-content: center; margin-bottom: 22px; width: 38px; }
.benefit-grid h3, .workflow h3, .outcome-grid h3 { font-size: 22px; line-height: 1.1; }
.benefit-grid p, .workflow p, .outcome-grid p, .faq p, .employee-copy p, .employee-copy li { color: var(--muted); font-size: 14px; line-height: 1.6; }

.platform { background: var(--soft); max-width: none; }
.platform > * { margin-inline: auto; max-width: 1180px; }
.workflow { grid-template-columns: repeat(4, 1fr); }
.workflow article { background: white; position: relative; }
.workflow span { align-items: center; background: var(--forest); border-radius: 50%; color: white; display: inline-flex; font-family: Outfit, Inter, sans-serif; font-size: 18px; font-weight: 800; height: 42px; justify-content: center; margin-bottom: 22px; width: 42px; }

.employee-band { align-items: center; display: grid; gap: 40px; grid-template-columns: minmax(0, 1fr) 380px; }
.employee-copy ul { display: grid; gap: 10px; margin: 22px 0 0; padding-left: 18px; }
.employee-card { background: linear-gradient(145deg, var(--forest), var(--forest-2)); border-radius: 18px; box-shadow: var(--shadow); color: white; display: grid; gap: 12px; padding: 26px; }
.employee-card .card-label { color: #bfe0db; font-size: 12px; font-weight: 900; letter-spacing: 0.08em; margin: 0 0 8px; text-transform: uppercase; }
.employee-card div { align-items: center; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 10px; display: flex; justify-content: space-between; padding: 16px; }
.employee-card strong { font-size: 14px; }
.employee-card span { color: #fff0e6; font-family: Outfit, Inter, sans-serif; font-size: 22px; font-weight: 800; }

.outcomes { background: white; }
.outcome-grid { grid-template-columns: repeat(3, 1fr); }
.outcome-grid article { border-top: 4px solid var(--orange); }

.launch-band { align-items: center; background: #10201f; color: white; display: flex; gap: 28px; justify-content: space-between; margin-bottom: 32px; padding: 42px 40px; }
.launch-band p { color: #cfe1dd; margin-bottom: 0; max-width: 660px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 22px 0; }
summary { cursor: pointer; font-family: Outfit, Inter, sans-serif; font-size: 20px; font-weight: 700; }
.site-footer { align-items: center; background: #061110; color: #aab7b4; display: flex; flex-wrap: wrap; font-size: 13px; gap: 18px; justify-content: space-between; padding: 28px 40px; }
.site-footer a { color: var(--orange); font-weight: 800; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-side { grid-template-columns: 1fr; }
  .benefit-grid, .workflow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .header-nav { display: none; }
  .proof-strip, .outcome-grid, .employee-band { grid-template-columns: 1fr; }
  .proof-strip { transform: none; }
  .employee-card { max-width: 520px; }
  .launch-band { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .site-header { padding: 0 18px; }
  .logo-brand { height: 46px; width: 170px; }
  .header-cta { display: none; }
  .jump-links { justify-content: flex-start; top: 76px; }
  .hero, .section, .proof-strip, .launch-band { padding-left: 18px; padding-right: 18px; }
  .hero { gap: 28px; padding-top: 26px; }
  .hero-logo-card { height: 86px; max-width: 100%; padding: 6px 12px; }
  .hero-subtitle { font-size: 17px; }
  .hero-visual img { aspect-ratio: 1 / 1; }
  .signup-panel { padding: 20px; }
  .form-grid, .benefit-grid, .workflow { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; padding-left: 18px; padding-right: 18px; }
}
.launch-band {
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.launch-band::before {
  background:
    radial-gradient(circle at 88% 28%, rgba(249, 115, 22, 0.2), transparent 28%),
    radial-gradient(circle at 76% 70%, rgba(37, 99, 235, 0.12), transparent 24%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.launch-copy,
.launch-action {
  position: relative;
  z-index: 1;
}

.launch-copy {
  max-width: 790px;
}

.launch-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.launch-points span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #d7ebe7;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
}

.launch-action {
  align-items: stretch;
  display: grid;
  gap: 12px;
  justify-items: stretch;
  min-width: 300px;
}

.launch-button {
  border-radius: 14px;
  font-size: 18px;
  min-height: 76px;
  padding: 0 34px;
  text-align: center;
  width: 100%;
}

.launch-action span {
  color: #b9d4cf;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 900px) {
  .launch-action {
    min-width: min(100%, 360px);
  }
}
.reality {
  background: linear-gradient(180deg, white 0%, #f7fbf9 100%);
}

.reality-grid,
.edge-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.reality-grid article,
.edge-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
}

.reality-grid article {
  border-left: 4px solid var(--orange);
}

.reality-grid h3,
.edge-grid h3 {
  font-size: 23px;
  line-height: 1.1;
}

.reality-grid p,
.edge-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.edge {
  background: var(--soft);
  max-width: none;
}

.edge > * {
  margin-inline: auto;
  max-width: 1180px;
}

.edge-grid article {
  box-shadow: 0 14px 40px rgba(3, 47, 45, 0.06);
}

@media (max-width: 900px) {
  .reality-grid,
  .edge-grid {
    grid-template-columns: 1fr;
  }
}
/* App-theme alignment based on Folkstrot product dashboard */
:root {
  --ink: #063a35;
  --muted: #879993;
  --line: #e7ebe7;
  --paper: #f7f8f6;
  --soft: #f4f6f3;
  --warm: #fff4ec;
  --forest: #063a35;
  --forest-2: #0f4741;
  --orange: #ff7145;
  --orange-dark: #ee5f35;
  --peach: #ffd1a8;
  --shadow: 0 18px 42px rgba(6, 58, 53, 0.1);
  --radius: 24px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", Inter, system-ui, sans-serif;
}

h1,
h2,
h3,
.logo-brand,
summary,
.proof-strip strong,
.employee-card span,
.workflow span {
  font-family: "Nunito Sans", Inter, system-ui, sans-serif;
  letter-spacing: -0.01em;
}

h1,
h2,
h3 {
  font-weight: 900;
}

.site-header {
  background: rgba(247, 248, 246, 0.94);
  border-bottom: 1px solid rgba(6, 58, 53, 0.08);
  min-height: 88px;
  padding-inline: 32px;
}

.logo-brand {
  border-color: rgba(6, 58, 53, 0.1);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(6, 58, 53, 0.08);
  height: 62px;
  padding: 4px 12px;
  width: 254px;
}

.header-nav a,
.jump-links a,
.eyebrow,
.panel-topline,
.trust-row span,
.launch-points span,
.benefit-icon,
.card-label,
label {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-nav {
  color: #7f918c;
  font-size: 13px;
}

.header-cta,
.primary-button,
.secondary-button {
  border-radius: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.header-cta,
.primary-button {
  background: var(--orange);
  box-shadow: 0 18px 34px rgba(255, 113, 69, 0.26);
}

.secondary-button {
  background: white;
  border: 2px solid rgba(6, 58, 53, 0.12);
  color: var(--forest);
}

.jump-links {
  background: var(--forest);
  gap: 12px;
  top: 88px;
}

.jump-links a {
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  color: #b9cbc7;
  font-size: 12px;
  padding: 10px 18px;
}

.hero {
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 113, 69, 0.12), transparent 30%),
    linear-gradient(135deg, #f7f8f6 0%, #fbfbf9 52%, #fff4ec 100%);
  padding-top: 42px;
}

.hero-logo-card,
.hero-visual,
.signup-panel,
.benefit-grid article,
.workflow article,
.outcome-grid article,
.reality-grid article,
.edge-grid article,
.employee-card {
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(6, 58, 53, 0.09);
}

.hero-logo-card {
  border-radius: 0;
  box-shadow: 0 14px 34px rgba(6, 58, 53, 0.08);
}

.hero-subtitle,
.section-heading p:not(.eyebrow),
.launch-band p,
.signup-panel p,
.benefit-grid p,
.workflow p,
.outcome-grid p,
.faq p,
.employee-copy p,
.employee-copy li,
.reality-grid p,
.edge-grid p {
  color: #6f827d;
  font-weight: 700;
}

.eyebrow {
  color: #ff9b7a;
  font-size: 13px;
}

.trust-row span,
.launch-points span {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(6, 58, 53, 0.08);
  color: #738983;
}

.proof-strip div,
.launch-band,
.employee-card,
.pillar-grid article {
  background: linear-gradient(135deg, #073b37, #102f2b);
}

.proof-strip strong,
.launch-band h2,
.employee-card span {
  color: white;
}

.proof-strip span,
.launch-action span,
.launch-band p,
.employee-card .card-label {
  color: #b7cbc6;
}

.benefit-icon,
.workflow span,
.icon-dot {
  background: #ffd1a8;
  border-color: #ffd1a8;
  color: var(--forest);
}

.benefit-grid article,
.workflow article,
.outcome-grid article,
.reality-grid article,
.edge-grid article,
.signup-panel,
.hero-visual {
  border: 1px solid rgba(6, 58, 53, 0.08);
}

input,
select {
  background: #fafbf9;
  border-color: rgba(6, 58, 53, 0.1);
  border-radius: 18px;
  font-weight: 800;
}

.launch-button {
  border-radius: 20px;
  font-size: 20px;
  min-height: 84px;
}

.site-footer {
  background: #061f1d;
}

@media (max-width: 620px) {
  .site-header {
    min-height: 78px;
  }

  .logo-brand {
    height: 52px;
    width: 190px;
  }

  .jump-links {
    top: 78px;
  }
}
/* First-fold density fix */
.hero {
  gap: 34px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.68fr);
  padding-bottom: 36px;
}

.hero-logo-card {
  height: 86px;
  max-width: 430px;
  margin-bottom: 18px;
}

.hero-subtitle {
  margin-top: 18px;
}

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

.trust-row {
  margin-top: 20px;
}

.hero-visual-inline {
  margin-top: 22px;
  max-width: 760px;
}

.hero-visual-inline img {
  aspect-ratio: 16 / 7;
  object-position: center 42%;
}

.hero-visual-inline figcaption {
  grid-template-columns: 240px 1fr;
  align-items: center;
  padding: 12px 16px;
}

.hero-side {
  position: sticky;
  top: 160px;
}

.signup-panel {
  padding: 20px;
}

.signup-panel h2 {
  font-size: 24px;
}

.signup-panel p {
  margin: 8px 0 0;
}

.signup-panel form {
  gap: 10px;
  margin-top: 14px;
}

.signup-panel label {
  gap: 5px;
  font-size: 12px;
}

.signup-panel input,
.signup-panel select {
  min-height: 40px;
}

.signup-panel .form-submit {
  min-height: 52px;
}

.privacy-note {
  line-height: 1.4;
}

.success-state {
  margin-top: 10px;
  padding: 12px 14px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-side {
    position: static;
  }
}

@media (max-width: 620px) {
  .hero-visual-inline img {
    aspect-ratio: 4 / 3;
  }

  .hero-visual-inline figcaption {
    grid-template-columns: 1fr;
  }
}
/* Anchor navigation offset: keep section titles below sticky header + jump links */
html {
  scroll-padding-top: 178px;
}

section[id],
main[id] {
  scroll-margin-top: 178px;
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 162px;
  }

  section[id],
  main[id] {
    scroll-margin-top: 162px;
  }
}
/* Seamless transparent logo treatment */
.logo-brand,
.hero-logo-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.logo-brand {
  height: 64px;
  width: 270px;
}

.hero-logo-card {
  height: 112px;
  max-width: 560px;
  margin-bottom: 18px;
}

.logo-brand img,
.hero-logo-card img {
  filter: drop-shadow(0 10px 18px rgba(6, 58, 53, 0.08));
}

@media (max-width: 620px) {
  .logo-brand {
    height: 54px;
    width: 205px;
  }

  .hero-logo-card {
    height: 84px;
  }
}
/* Right-side visual panels for text-heavy sections */
.section-intro {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  margin-bottom: 34px;
}

.section-intro .section-heading {
  margin-bottom: 0;
}

.visual-panel {
  background: linear-gradient(145deg, #ffffff, #f8faf7);
  border: 1px solid rgba(6, 58, 53, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(6, 58, 53, 0.1);
  min-height: 310px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.visual-panel::after {
  background: radial-gradient(circle, rgba(255, 113, 69, 0.18), transparent 58%);
  content: "";
  height: 220px;
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
}

.visual-label {
  color: #879993;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.flow-row,
.outcome-list {
  align-items: center;
  background: white;
  border: 1px solid rgba(6, 58, 53, 0.08);
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.flow-row strong,
.outcome-list span {
  color: var(--forest);
  font-weight: 900;
}

.flow-row span,
.outcome-list b {
  color: var(--orange);
  font-weight: 900;
}

.flow-row.active {
  background: var(--forest);
}

.flow-row.active strong,
.flow-row.active span {
  color: white;
}

.pulse-line {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.pulse-line i,
.mini-bars i {
  background: #e9efeb;
  border-radius: 999px;
  display: block;
  height: 9px;
  overflow: hidden;
}

.pulse-line i::before,
.mini-bars i::before {
  background: var(--orange);
  border-radius: inherit;
  content: "";
  display: block;
  height: 100%;
  width: 68%;
}

.pulse-line i:nth-child(2)::before { width: 84%; }
.pulse-line i:nth-child(3)::before { width: 52%; }

.metric-ring {
  align-items: center;
  background: var(--forest);
  border-radius: 24px;
  color: white;
  display: grid;
  min-height: 126px;
  padding: 22px;
  position: relative;
  z-index: 1;
}

.metric-ring strong,
.outcome-score strong {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.metric-ring span,
.outcome-score span {
  color: #c4d7d3;
  font-weight: 900;
}

.mini-bars {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.mini-bars i::before { width: var(--w); }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.tag-cloud span {
  background: #fff4ec;
  border-radius: 999px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
}

.outcome-score {
  background: var(--forest);
  border-radius: 24px;
  color: white;
  margin-bottom: 14px;
  padding: 22px;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .section-intro {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: auto;
  }
}
/* CRO pass: reduce nav crowding, improve form trust, tighten section length */
.jump-links {
  position: static;
  top: auto;
}

html {
  scroll-padding-top: 108px;
}

section[id],
main[id] {
  scroll-margin-top: 108px;
}

.optional {
  color: #9cafaa;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-left: 4px;
}

.privacy-lock {
  align-items: flex-start;
  display: flex;
  gap: 8px;
}

.privacy-lock::before {
  content: "▣";
  color: var(--orange);
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 1px;
}

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

.benefit-grid-compact article {
  min-height: 230px;
}

@media (max-width: 980px) {
  .benefit-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 92px;
  }

  section[id],
  main[id] {
    scroll-margin-top: 92px;
  }

  .benefit-grid-compact {
    grid-template-columns: 1fr;
  }
}
/* Outcome metric sizing fix */
.outcomes .section-intro {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
}

.outcomes-visual {
  max-width: 440px;
  justify-self: end;
  min-height: 0;
}

.outcome-score {
  display: grid;
  gap: 8px;
  min-height: 150px;
}

.outcome-score strong {
  display: block;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 0.9;
}

.outcome-score span {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  max-width: 220px;
}

.outcome-list {
  gap: 14px;
}

.outcome-list span {
  min-width: 0;
}

.outcome-list b {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .outcomes .section-intro {
    grid-template-columns: 1fr;
  }

  .outcomes-visual {
    justify-self: stretch;
    max-width: none;
  }
}
/* Founder cohort urgency offer */
.founder-eyebrow strong,
.urgency-callout strong {
  color: var(--forest);
}

.urgency-callout {
  background: #fff4ec;
  border: 1px solid rgba(255, 113, 69, 0.28);
  border-radius: 18px;
  color: #6f827d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  margin: 12px 0 0;
  padding: 12px 14px;
}

.slot-meter {
  background: white;
  border: 1px solid rgba(6, 58, 53, 0.08);
  border-radius: 18px;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
}

.slot-meter div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.slot-meter span {
  color: #879993;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slot-meter strong {
  color: var(--forest);
  flex: 0 0 auto;
  font-weight: 900;
}

.slot-meter i {
  background: #eef3ef;
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
}

.slot-meter b {
  background: linear-gradient(90deg, var(--orange), #ffd1a8);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 71.3%;
}

.urgency-subtext {
  color: #ffd1a8 !important;
  font-weight: 900;
}
/* Global readiness pass */
.benefit-grid-compact {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid-compact article {
  min-height: 250px;
}

@media (max-width: 1200px) {
  .benefit-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .benefit-grid-compact {
    grid-template-columns: 1fr;
  }
}
/* Stronger employee journey section */
.employee-journey {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 113, 69, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f8f6 100%);
  border-radius: 0;
}

.employee-journey .employee-copy {
  max-width: 780px;
}

.journey-steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.journey-steps article {
  background: white;
  border: 1px solid rgba(6, 58, 53, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(6, 58, 53, 0.07);
  padding: 20px;
}

.journey-steps span {
  align-items: center;
  background: #ffd1a8;
  border-radius: 16px;
  color: var(--forest);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.journey-steps strong {
  color: var(--forest);
  display: block;
  font-size: 22px;
  font-weight: 900;
}

.journey-steps p {
  color: #6f827d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  margin: 8px 0 0;
}

.employee-app-card {
  gap: 18px;
  min-height: 460px;
  padding: 30px;
}

.app-card-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.app-card-header span {
  background: rgba(255, 113, 69, 0.18);
  border: 1px solid rgba(255, 113, 69, 0.28);
  border-radius: 999px;
  color: #ffd1a8;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.readiness-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  display: grid !important;
  gap: 8px;
  padding: 24px !important;
}

.readiness-block strong {
  color: white;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.9;
}

.readiness-block span {
  color: #c4d7d3;
  font-size: 16px;
  font-weight: 900;
}

.readiness-block i {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: block;
  height: 10px;
  overflow: hidden;
}

.readiness-block b {
  background: linear-gradient(90deg, var(--orange), #ffd1a8);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 82%;
}

.employee-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.employee-metrics div,
.next-action {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 22px !important;
  display: grid !important;
  padding: 18px !important;
}

.employee-metrics strong {
  color: white;
  font-size: 36px;
  line-height: 1;
}

.employee-metrics span,
.next-action span {
  color: #c4d7d3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-action strong {
  color: white;
  font-size: 24px;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .journey-steps {
    grid-template-columns: 1fr;
  }

  .employee-app-card {
    min-height: auto;
  }
}
/* Consent checkbox alignment fix */
.checkbox-label {
  align-items: flex-start;
  display: flex !important;
  gap: 12px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin-top: 4px;
  text-transform: uppercase;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  border: 2px solid #9cafaa;
  border-radius: 6px;
  flex: 0 0 22px;
  height: 22px;
  margin: 1px 0 0;
  min-height: 22px;
  padding: 0;
  position: relative;
  width: 22px;
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}

.checkbox-label input[type="checkbox"]:checked::after {
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  content: "";
  height: 10px;
  left: 7px;
  position: absolute;
  top: 3px;
  transform: rotate(45deg);
  width: 5px;
}

.checkbox-label input[type="checkbox"]:focus {
  outline: 3px solid rgba(255, 113, 69, 0.18);
  outline-offset: 3px;
}

.checkbox-label span {
  display: block;
  min-width: 0;
  padding-top: 1px;
}
/* Consent row visual scale refinement */
.checkbox-label {
  align-items: flex-start;
  color: #7f918c;
  font-size: 12px !important;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: none;
}

.checkbox-label input[type="checkbox"] {
  border-radius: 5px;
  flex-basis: 18px;
  height: 18px;
  margin-top: 1px;
  min-height: 18px;
  width: 18px;
}

.checkbox-label input[type="checkbox"]:checked::after {
  height: 8px;
  left: 5px;
  top: 2px;
  width: 4px;
}

.checkbox-label span {
  max-width: 720px;
}

/* Header stacking + mobile sizing fixes */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
}

.jump-links {
  z-index: 9998;
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 16px;
    justify-content: space-between;
  }

  .header-nav {
    display: none;
  }

  .logo-brand {
    flex-shrink: 0;
    max-width: 120px;
  }

  .header-cta {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Sticky visible mobile header + jump links final override */
  .site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 10000 !important;
  background: #ffffff !important;
}

.jump-links {
  display: flex !important;
  position: sticky !important;
  top: 88px !important;
  z-index: 9999 !important;
  background: var(--forest) !important;
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 16px;
    justify-content: space-between;
  }

  .header-nav {
    display: none;
  }

  .logo-brand {
    flex-shrink: 0;
    max-width: 120px;
  }

  .header-cta {
    display: inline-flex !important;
    flex-shrink: 0;
    padding: 8px 12px !important;
    font-size: 14px !important;
    min-height: 40px;
  }

  .jump-links {
    top: 78px !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* iOS Safari focus zoom fix: keep form control text at 16px+ */
@media (max-width: 768px) {
  input,
  select,
  textarea,
  button {
    font-size: 16px !important;
  }

  .signup-panel input,
  .signup-panel select,
  .signup-panel textarea {
    font-size: 16px !important;
    line-height: 1.3;
  }

  .signup-panel label {
    font-size: 13px !important;
  }
}
