
:root {
  --navy: #071d35;
  --navy-2: #0b2b4c;
  --orange: #ff5a14;
  --text: #0b1f36;
  --muted: #5f7185;
  --line: #e4eaf0;
  --soft: #f6f8fb;
  --soft-blue: #eef5fb;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(7, 29, 53, 0.06);
  --shadow-md: 0 18px 48px rgba(7, 29, 53, 0.09);
  --radius: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228,234,240,.92);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img { width: 205px; height: auto; }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

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

.btn {
  border: 0;
  border-radius: 10px;
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 9px 22px rgba(255,90,20,.18);
}

.btn-primary:hover { filter: brightness(.96); }

/* HERO */
.hero {
  overflow: hidden;
  background: linear-gradient(180deg,#fff 0%,#fafcfe 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  min-height: 520px;
  max-height: 540px;
}

.hero-copy {
  padding: 50px 36px 34px 0;
  position: relative;
  z-index: 2;
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #385571;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.hero-text {
  max-width: 610px;
  margin: 0 0 24px;
  color: #32485f;
  font-size: 17px;
}

.hero-image-wrap {
  position: relative;
  min-height: 520px;
  max-height: 540px;
  overflow: hidden;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.9) 7%, rgba(255,255,255,.2) 25%, rgba(255,255,255,0) 42%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 38%;
}

.waitlist-card {
  width: min(100%, 555px);
  padding: 20px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.waitlist-card h2 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.3;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input[type="email"] {
  width: 100%;
  min-width: 0;
  height: 50px;
  border: 1px solid #d5dee7;
  border-radius: 9px;
  padding: 0 15px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  outline: none;
}

input[type="email"]:focus {
  border-color: #8ba2b9;
  box-shadow: 0 0 0 3px rgba(11,43,76,.08);
}

.privacy-note,
.form-status {
  margin: 9px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.form-status.success { color: #14734a; }
.form-status.error { color: #b33225; }

.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* GENERAL SECTIONS */
.section { padding: 72px 0; }

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact { margin-bottom: 30px; }

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-heading > p:last-child {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
}

/* TWO WORKFLOWS */
.workflow-types {
  background: #fff;
  padding-top: 64px;
}

.workflow-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.workflow-type-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.workflow-type-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.workflow-photo {
  height: 230px;
  overflow: hidden;
  background: var(--soft);
}

.workflow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-type-card:first-child .workflow-photo img {
  object-position: center 45%;
}

.workflow-type-card:last-child .workflow-photo img {
  object-position: center 38%;
}

.workflow-type-body { padding: 25px 26px 28px; }

.card-kicker {
  margin: 0 0 7px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
}

.workflow-type-body h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.workflow-type-body > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* PROCESS */
.process-section {
  background: linear-gradient(180deg,#fbfcfe 0%,#fff 100%);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 47px;
  height: 1px;
  background: repeating-linear-gradient(90deg,#cbd6e0 0 6px,transparent 6px 12px);
  z-index: 0;
}

.process-grid article {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: 8px;
}

.process-top {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 7px 18px rgba(255,90,20,.16);
}

.process-grid article:nth-child(2) .step-number { background: #3478d4; }
.process-grid article:nth-child(3) .step-number { background: #66a947; }
.process-grid article:nth-child(4) .step-number { background: #7c57bd; }

.icon-circle {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff4ee;
  border: 1px solid #ffe0d1;
  box-shadow: 0 6px 18px rgba(7,29,53,.05);
}

.process-grid article:nth-child(2) .icon-circle { background:#eef5ff; border-color:#dceafa; }
.process-grid article:nth-child(3) .icon-circle { background:#f1f8ed; border-color:#dfeeda; }
.process-grid article:nth-child(4) .icon-circle { background:#f4effb; border-color:#e8dcf8; }

.icon-circle img {
  width: 28px;
  height: 28px;
}

.process-grid h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 18px;
}

.process-grid article > p {
  max-width: 235px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

/* DAILY WORK */
.daily-work {
  padding-top: 58px;
  background: var(--soft);
}

.work-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  min-height: 220px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(7,29,53,.04);
}

.work-card.featured {
  border-color: #d7e5f5;
  box-shadow: 0 12px 30px rgba(37,101,174,.08);
}

.work-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0e8;
}

.work-card:nth-child(2) .work-icon { background:#eaf3ff; }
.work-card:nth-child(3) .work-icon { background:#edf8e9; }

.work-icon img {
  width: 24px;
  height: 24px;
}

.work-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* DOCUMENT FLOW */
.documentation-flow {
  padding-block: 64px;
  background: #fff;
}

.documentation-inner {
  padding: 42px 42px 38px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg,#fff 0%,#fbfcfe 100%);
}

.document-sequence {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.document-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  color: var(--navy);
}

.document-stage:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 17px;
  color: #9fb0c1;
  font-size: 20px;
  font-weight: 700;
}

.document-stage > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1f6fb;
  border: 1px solid #e2eaf2;
}

.document-stage:nth-child(1) > span,
.document-stage:nth-child(5) > span { background:#fff1e9; }

.document-stage:nth-child(2) > span,
.document-stage:nth-child(4) > span { background:#eef5ff; }

.document-stage:nth-child(3) > span,
.document-stage:nth-child(6) > span { background:#eff8ec; }

.document-stage img {
  width: 23px;
  height: 23px;
}

.document-stage strong { font-size: 13px; }

/* FINAL CTA */
.final-cta {
  padding: 0 0 28px;
}

.final-cta .cta-inner {
  display: grid;
  grid-template-columns: 1fr minmax(430px, .9fr);
  gap: 40px;
  align-items: center;
  padding: 36px 42px;
  color: #fff;
  background: linear-gradient(135deg,var(--navy) 0%,#0a345a 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.eyebrow.light { color: #bfd2e3; }

.final-cta h2 {
  margin: 0 0 9px;
  font-size: clamp(28px,3vw,42px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.final-cta .cta-inner > div > p:last-child {
  margin: 0;
  max-width: 560px;
  color: #d9e4ed;
}

.cta-form {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,.98);
  border-radius: 14px;
}

.cta-form .form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #5f7185;
}

/* FOOTER */
.footer {
  padding: 22px 0 28px;
}

.footer-main {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-brand img { width: 175px; }

.footer-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #52677b;
  font-size: 13px;
}

.footer-links a:hover { color: var(--orange); }

.copyright {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: #708196;
  font-size: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* TABLET */
@media (max-width: 1024px) {
  .container { width: min(100% - 36px, 1200px); }
  .nav { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .hero-copy {
    padding: 44px 0 26px;
  }

  .hero-image-wrap {
    min-height: 330px;
    max-height: 360px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .hero-image-wrap::before {
    background: linear-gradient(180deg,rgba(255,255,255,0) 60%,#fff 100%);
  }

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

  .workflow-types-grid { grid-template-columns: 1fr; }
  .workflow-photo { height: 260px; }

  .process-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 34px 24px;
  }

  .process-grid::before { display: none; }

  .work-card-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 0; }

  .document-sequence {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 28px 20px;
  }

  .document-stage:nth-child(3)::after { display: none; }

  .final-cta .cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }

  .site-header .btn {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .brand img { width: 165px; }

  .hero h1 { font-size: 42px; }
  .hero-text { font-size: 16px; }

  .form-row,
  .cta-form {
    grid-template-columns: 1fr;
  }

  .section { padding: 54px 0; }

  .section-heading { margin-bottom: 26px; }

  .workflow-photo { height: 190px; }

  .workflow-type-body { padding: 21px; }

  .process-grid { grid-template-columns: 1fr; gap: 30px; }

  .process-grid article {
    text-align: left;
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 14px;
    align-items: start;
  }

  .process-top {
    grid-row: 1 / span 2;
    grid-column: 1;
    margin: 0;
  }

  .process-grid h3,
  .process-grid article > p {
    grid-column: 2;
    max-width: none;
    margin-inline: 0;
  }

  .documentation-inner { padding: 30px 20px; }

  .document-sequence {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 24px 18px;
  }

  .document-stage::after { display: none !important; }

  .final-cta .cta-inner { padding: 28px 22px; }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    margin-left: 0;
    gap: 14px 18px;
  }
}
