:root {
  color-scheme: light;
  --ink: #13202a;
  --muted: #61717d;
  --line: #dce3e6;
  --paper: #f8faf9;
  --white: #ffffff;
  --teal: #159c8c;
  --teal-dark: #0d6f65;
  --amber: #d99b28;
  --red: #c9564a;
  --navy: #17324a;
  --charcoal: #0b1115;
  --shadow: 0 18px 48px rgba(19, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

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;
  -ms-overflow-style: none;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #f7fbf9;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(19, 32, 42, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.hero-metrics,
.site-header {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  opacity: 0.68;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta,
.button {
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.nav-cta {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.13);
}

.site-header.is-scrolled .nav-cta {
  background: var(--ink);
  color: #fff;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.js .hero-image {
  animation: heroImageSettle 1600ms cubic-bezier(0.16, 1, 0.32, 1) both;
  transform-origin: 66% 45%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 9, 12, 0.94) 0%, rgba(4, 9, 12, 0.78) 31%, rgba(4, 9, 12, 0.16) 67%),
    linear-gradient(180deg, rgba(4, 9, 12, 0.46) 0%, rgba(4, 9, 12, 0.04) 45%, rgba(4, 9, 12, 0.76) 100%);
}

.js .hero-scrim {
  animation: heroScrimFade 900ms ease both;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 36px));
  padding: clamp(96px, 15vh, 148px) 0 58px;
  margin-left: clamp(18px, 6vw, 88px);
  color: #f6fbfa;
}

.js .hero .eyebrow,
.js .hero h1,
.js .hero-copy,
.js .hero-actions,
.js .hero-metrics div,
.js .start-simple {
  animation: heroTextRise 760ms cubic-bezier(0.16, 1, 0.32, 1) both;
}

.js .hero .eyebrow {
  animation-delay: 120ms;
}

.js .hero h1 {
  animation-delay: 220ms;
}

.js .hero-copy {
  animation-delay: 340ms;
}

.js .hero-actions {
  animation-delay: 460ms;
}

.js .hero-metrics div:nth-child(1) {
  animation-delay: 580ms;
}

.js .hero-metrics div:nth-child(2) {
  animation-delay: 660ms;
}

.js .hero-metrics div:nth-child(3) {
  animation-delay: 740ms;
}

.js .start-simple {
  animation-delay: 860ms;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.7vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(246, 251, 250, 0.84);
  font-size: clamp(17px, 1.6vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
}

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

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.button.dark {
  background: var(--ink);
}

.hero-metrics {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-metrics div {
  min-width: 132px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  font-size: 24px;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(246, 251, 250, 0.72);
  font-size: 13px;
}

.start-simple {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.start-simple div {
  padding: 14px 16px;
  background: rgba(5, 12, 15, 0.32);
}

.start-simple strong,
.start-simple span {
  display: block;
}

.start-simple strong {
  color: #fff;
  font-size: 13px;
}

.start-simple span {
  margin-top: 4px;
  color: rgba(246, 251, 250, 0.72);
  font-size: 13px;
}

@keyframes heroImageSettle {
  from {
    opacity: 0.76;
    transform: scale(1.045) translate3d(1.2%, 0, 0);
  }

  to {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes heroScrimFade {
  from {
    opacity: 0.72;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.section,
.section-band {
  padding: clamp(72px, 9vw, 116px) clamp(18px, 4vw, 56px);
}

.section-band {
  background: var(--white);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 84px);
}

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

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

h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
}

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

.section-heading p,
.cta-panel p {
  max-width: 680px;
  font-size: 18px;
}

.problem-grid,
.employee-grid,
.pod-layout,
.module-grid,
.choice-grid,
.trust-grid {
  display: grid;
  gap: 16px;
}

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

.problem-card,
.pod-card,
.employee-card,
.choice-card,
.trust-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(19, 32, 42, 0.03);
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(4px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.32, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.32, 1),
    filter 620ms cubic-bezier(0.16, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.js .reveal.reveal-soft {
  transform: translate3d(0, 14px, 0) scale(0.985);
}

.js .reveal.reveal-soft.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.problem-card {
  position: relative;
  padding: 24px 24px 24px 58px;
}

.problem-card p,
.pod-card p,
.employee-card p,
.choice-card p,
.trust-card p {
  margin: 10px 0 0;
}

.icon-dot {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.icon-dot.teal {
  background: var(--teal);
}

.icon-dot.amber {
  background: var(--amber);
}

.icon-dot.red {
  background: var(--red);
}

.pod-layout {
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  align-items: stretch;
}

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

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

.choice-card,
.trust-card {
  padding: 24px;
}

.choice-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  border-radius: 8px;
  background: rgba(21, 156, 140, 0.11);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.pod-card {
  padding: 28px;
}

.pod-card.featured {
  background: var(--navy);
  color: #fff;
}

.pod-card.featured p,
.pod-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.pod-card ul {
  display: grid;
  gap: 10px;
  padding-left: 19px;
  margin: 22px 0 0;
}

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

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

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

.employee-card {
  padding: 24px;
}

.employee-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.ai-example {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0 0 18px;
  padding: 18px 20px;
  border: 1px solid #c9dfda;
  border-radius: 8px;
  background: #e7f2ef;
}

.ai-example strong {
  color: var(--teal-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.ai-example span {
  color: var(--ink);
  font-weight: 720;
}

.workflow {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  counter-increment: step;
  position: relative;
  min-height: 88px;
  padding: 21px 24px 21px 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 21px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(21, 156, 140, 0.11);
  color: var(--teal-dark);
  font-weight: 850;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 5px;
  color: var(--muted);
}

.roi-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.roi-calculator {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.roi-calculator label {
  position: relative;
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.roi-calculator input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 54px 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.roi-calculator small {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: var(--muted);
  font-size: 13px;
}

.roi-result {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding: 22px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.roi-result span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.roi-result strong {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

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

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: #e7f2ef;
  border: 1px solid #c9dfda;
}

.pilot-list {
  display: grid;
  gap: 10px;
}

.pilot-list span {
  padding: 12px 14px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-weight: 720;
}

.pilot-list .secondary-item {
  border-left-color: rgba(44, 62, 74, 0.35);
  color: rgba(44, 62, 74, 0.7);
  font-weight: 650;
}

.cta-panel .button {
  justify-self: start;
}

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
}

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

.contact-email {
  display: inline-flex;
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-email:hover {
  color: var(--ink);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form input {
  min-height: 46px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 104px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(18, 147, 126, 0.16);
}

.contact-form button {
  justify-self: start;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  min-height: 20px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 720;
}

.form-status.is-error {
  color: #a33a2f;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 33, 0.54);
  backdrop-filter: blur(8px);
}

.contact-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(100%, 520px);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 88px rgba(12, 26, 33, 0.28);
}

.contact-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.contact-modal-header h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 5vw, 38px);
}

.modal-copy {
  margin: 0;
  color: var(--muted);
}

.modal-close {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 11px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
}

.modal-close:hover {
  border-color: rgba(18, 147, 126, 0.38);
  color: var(--teal-dark);
}

.contact-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.contact-card li {
  padding: 12px 14px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer a:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .js .reveal.reveal-soft,
  .js .hero-image,
  .js .hero-scrim,
  .js .hero .eyebrow,
  .js .hero h1,
  .js .hero-copy,
  .js .hero-actions,
  .js .hero-metrics div,
  .js .start-simple {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }

  .site-header,
  .nav-cta,
  .button {
    transition: none;
  }
}

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

  .split,
  .pod-layout,
  .module-grid,
  .choice-grid,
  .trust-grid,
  .employee-grid,
  .workflow,
  .roi-layout,
  .contact-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .employee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .choice-grid,
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(4, 9, 12, 0.94) 0%, rgba(4, 9, 12, 0.72) 56%, rgba(4, 9, 12, 0.26) 100%),
      linear-gradient(180deg, rgba(4, 9, 12, 0.62) 0%, rgba(4, 9, 12, 0.16) 42%, rgba(4, 9, 12, 0.78) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.8vw, 42px);
    line-height: 1;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.42;
  }

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

  .button {
    width: 100%;
    min-height: 46px;
  }

  .hero-metrics {
    display: none;
  }

  .start-simple {
    grid-template-columns: 1fr;
  }

  .section,
  .section-band {
    padding: 62px 16px;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

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

  .module-grid,
  .choice-grid,
  .trust-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .ai-example {
    grid-template-columns: 1fr;
  }

  .timeline li {
    padding-right: 18px;
  }

  .footer {
    flex-direction: column;
  }

  .contact-actions {
    display: grid;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-modal-panel {
    max-height: calc(100vh - 24px);
    padding: 18px;
  }

  .contact-modal-header {
    align-items: start;
  }
}
