:root {
  --ink: #0b0b0c;
  --paper: #ffffff;
  --navy: #0a2e24;
  --deep: #0d3a2d;
  --emerald: #18855e;
  --emerald-light: #43c08c;
  --gray: #55585a;
  --line-soft: #e4e4e1;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.display {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.01em;
}
.divider {
  width: 120px;
  height: 6px;
  margin: 28px auto;
}
.divider.dark {
  background: var(--ink);
}
.divider.white {
  background: #fff;
}
.divider.emerald {
  background: var(--emerald);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border-radius: 40px;
  border: 2px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.pill.on-dark {
  border-color: #fff;
  color: #fff;
}
.pill:hover {
  background: var(--ink);
  color: #fff;
}
.pill.on-dark:hover {
  background: #fff;
  color: var(--ink);
}
.pill.solid {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}
.pill.solid:hover {
  background: var(--emerald-light);
  border-color: var(--emerald-light);
}

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  height: 54px;
  width: auto;
}
.brand-word {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
nav.links {
  display: flex;
  align-items: center;
  gap: 34px;
}
nav.links a {
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
}
nav.links a:hover {
  color: var(--emerald);
}
nav.links a.active {
  color: var(--emerald);
}
nav.links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--emerald);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 210;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 205;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu a {
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.mobile-menu a:hover {
  color: var(--emerald-light);
}

@media (max-width: 900px) {
  nav.links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  header .nav-row > .pill {
    display: none;
  }
}

/* ============ REVEAL ANIMATION ============ */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}

/* ============ PAGE HERO (inner pages) — light, image-filled titles ============ */
.page-hero {
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  padding: 128px 24px 92px;
  position: relative;
  overflow: hidden;
}
.page-hero .ridge-svg {
  display: none;
}
.page-hero .inner {
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--ink);
}
.page-hero p {
  max-width: 600px;
  margin: 26px auto 0;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ============ SECTION HELPERS ============ */
section.page {
  padding: 110px 0;
}
.sec-eyebrow {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 18px;
}
.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.sec-head h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}
.sec-head p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 22px;
  line-height: 1.55;
}

/* offer card */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto 70px;
  gap: 30px;
}
.offer-card {
  border: 2px solid var(--ink);
  padding: 42px 36px;
}
.offer-card .num {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.9rem;
  color: var(--emerald);
  display: block;
  margin-bottom: 16px;
}
.offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
}
.offer-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.97rem;
}

/* black CTA */
.black-cta {
  background: var(--deep);
  color: #fff;
  text-align: center;
  padding: 90px 24px;
}
.black-cta p.lede {
  max-width: 620px;
  margin: 0 auto 6px;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #e7e7e4;
}
.black-cta p.foot {
  font-size: 0.85rem;
  color: #9a9c97;
  margin-bottom: 34px;
}

/* usecases */
.usecase-block {
  background: var(--deep);
  color: #fff;
  padding: 90px 0;
}
.usecase-block .sec-head h2 {
  color: #fff;
}
.usecase-block .sec-head p {
  color: #c7c8c3;
}
.usecase-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 880px;
  margin: 0 auto;
}
.usecase-cols ul {
  list-style: none;
}
.usecase-cols li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.02rem;
  font-weight: 500;
}

/* differentiators */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 70px;
}
.diff-card .idx {
  font-family: "Archivo Black", sans-serif;
  font-size: 2.4rem;
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  margin-bottom: 14px;
}
.diff-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
}
.diff-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* counters band */
.stats-wrap {
  background: var(--navy);
  color: #fff;
  padding: 90px 24px;
  text-align: center;
}
.stats-wrap h3 {
  font-size: 1.5rem;
  max-width: 620px;
  margin: 0 auto 56px;
  font-weight: 700;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 50px;
}
.stats-row .stat-num {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  color: var(--emerald-light);
  line-height: 1;
}
.stats-row .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a9b2bd;
  margin-top: 12px;
}

/* insights */
.insights {
  background: var(--deep);
  color: #fff;
  padding: 110px 0;
  text-align: center;
}
.insights h2 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
}
.insights .pill {
  margin-top: 30px;
  margin-bottom: 70px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  color: var(--ink);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.blog-card .thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card .thumb svg {
  width: 100%;
  height: 100%;
}
.blog-card .body {
  padding: 26px 24px 30px;
}
.blog-card .tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-card h4 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.25;
}
.blog-card .excerpt {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 12px;
}

/* about */
.about-hero {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 90px;
}
.about-hero h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}
.about-hero p {
  color: var(--gray);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-top: 22px;
}
.drive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}
.drive-card {
  border-top: 4px solid var(--emerald);
  padding-top: 24px;
}
.drive-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
}
.drive-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* partner banner */
.partner-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(13, 58, 45, 0.72), rgba(13, 58, 45, 0.72)),
    url("./workers.jpg"); /* change filename */

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.partner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 133, 94, 0.35), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.partner-banner .ridge-svg {
  display: none;
}

.partner-banner > * {
  position: relative;
  z-index: 2;
}

.partner-banner h2 {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
}

.partner-banner .pill {
  margin-top: 10px;
}

/* ============ MULTI-STEP FORM ============ */
.apply-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.progress {
  display: flex;
  align-items: center;
  margin-bottom: 44px;
}
.progress .step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.progress .step .dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: #fff;
  color: var(--gray);
  transition: all 0.3s ease;
  z-index: 2;
}
.progress .step.active .dot {
  border-color: var(--emerald);
  background: var(--emerald);
  color: #fff;
}
.progress .step.done .dot {
  border-color: var(--emerald);
  background: var(--emerald);
  color: #fff;
}
.progress .step .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 10px;
  color: var(--gray);
  font-weight: 600;
  text-align: center;
}
.progress .step.active .lbl {
  color: var(--emerald);
}
.progress .bar {
  position: absolute;
  top: 21px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--line-soft);
  z-index: 1;
}
.progress .step.done .bar,
.progress .step.active .bar {
  background: var(--emerald);
}
.progress .step:first-child .bar {
  display: none;
}

.form-card {
  border: 2px solid var(--ink);
  padding: 46px;
}
.fstep {
  display: none;
  animation: fade 0.4s ease;
}
.fstep.show {
  display: block;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fstep h3 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.fstep .desc {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.field input,
.field select {
  border: none;
  border-bottom: 2px solid var(--line-soft);
  padding: 11px 2px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  outline: none;
  background: transparent;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus {
  border-color: var(--emerald);
}
.field input.err,
.field select.err {
  border-color: #c0392b;
}
.form-error {
  background: #fdedeb;
  border: 1px solid #e7b4ad;
  color: #9b2c1f;
  font-size: 0.85rem;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 8px;
  margin-top: 18px;
}
.choice-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.choice {
  border: 2px solid var(--ink);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.choice.sel {
  background: var(--ink);
  color: #fff;
}
.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
  gap: 14px;
}
.form-nav .pill {
  flex: 0 0 auto;
}
.ghost-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ghost-btn:hover {
  color: var(--ink);
}
.review-list {
  list-style: none;
}
.review-list li {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
  gap: 16px;
}
.review-list li .k {
  color: var(--gray);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.review-list li .v {
  font-weight: 600;
  text-align: right;
}
.success-state {
  text-align: center;
  padding: 30px 0;
}
.success-state .check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.success-state h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.success-state p {
  color: var(--gray);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* contact info column */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-left .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 6px;
}
.contact-left .value {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.contact-left h2 {
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  margin-bottom: 20px;
}
.contact-left p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 30px;
}
.contact-left .note {
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
}

/* ============ FOOTER ============ */
footer {
  background: var(--emerald);
  color: #cfe6da;
  padding: 80px 0 0;
}
.foot-top {
  text-align: center;
  padding-bottom: 60px;
}
.foot-logo-box {
  width: 96px;
  height: 96px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.foot-logo-box img {
  height: 62px;
  width: auto;
}
.foot-top .word {
  font-family: "Archivo Black", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}
.foot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 560px;
  margin: 0 auto;
  gap: 40px;
  text-align: center;
  padding-bottom: 60px;
}
.foot-cols h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a6ceba;
  margin-bottom: 18px;
}
.foot-cols a,
.foot-cols p {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #e0efe7;
}
.foot-cols a:hover {
  color: #fff;
}
.foot-bottom {
  background: var(--navy);
  text-align: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: #9a9c97;
}
.foot-bottom a {
  color: #c7cac5;
}
.foot-bottom a:hover {
  color: #fff;
}
.foot-bottom .sep {
  margin: 0 10px;
  color: #55585a;
}

/* Legal / long-form pages (privacy, terms) */
.legal {
  max-width: 820px;
  margin: 0 auto;
}
.legal .updated {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 36px;
}
.legal h2 {
  font-size: 1.45rem;
  margin: 42px 0 14px;
  color: var(--ink);
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal h3 {
  font-size: 1.08rem;
  margin: 26px 0 10px;
  color: var(--ink);
}
.legal p,
.legal li {
  color: #3f4143;
  font-size: 1rem;
  line-height: 1.7;
}
.legal p {
  margin-bottom: 16px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal li {
  margin-bottom: 8px;
}
.legal a {
  color: var(--emerald);
  text-decoration: underline;
}
.legal .disclaimer {
  background: #f4f6f4;
  border-left: 4px solid var(--emerald);
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #55585a;
  margin: 34px 0 0;
}

/* ============ IMAGE-FILLED HERO TITLES (NYC skyline shows through the letters) ============ */
.txt-skyline {
  background-image: url("skyline.jpg");
  background-size: cover;
  background-position: center center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ============ MEDIA BAND (photo + text) ============ */
.media-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.media-band.flip .media-img {
  order: 2;
}
.media-band .media-img {
  min-height: 440px;
  background-color: var(--deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.media-band .media-text {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-band .media-text .sec-eyebrow {
  text-align: left;
  margin-bottom: 14px;
}
.media-band .media-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 18px;
}
.media-band .media-text p {
  color: var(--gray);
  line-height: 1.65;
  font-size: 1.02rem;
  margin-bottom: 14px;
}
.media-band.on-dark {
  background: var(--deep);
}
.media-band.on-dark .media-text h2 {
  color: #fff;
}
.media-band.on-dark .media-text p {
  color: #c7d6ce;
}

@media (max-width: 900px) {
  .usecase-cols,
  .diff-grid,
  .stats-row,
  .drive-grid,
  .blog-grid,
  .contact-grid,
  .field-grid,
  .foot-cols {
    grid-template-columns: 1fr;
  }
  section.page {
    padding: 80px 0;
  }
  .progress .step .lbl {
    font-size: 0.6rem;
  }
  .form-card {
    padding: 30px 22px;
  }
  .contact-grid {
    gap: 40px;
  }
  .media-band {
    grid-template-columns: 1fr;
  }
  .media-band.flip .media-img {
    order: 0;
  }
  .media-band .media-img {
    min-height: 280px;
  }
  .media-band .media-text {
    padding: 50px 28px;
  }
}
