:root {
  --navy: #0a192f;
  --ink: #14211c;
  --muted: #5d6b65;
  --soft: #f4f7f5;
  --line: #dce6e1;
  --green: #00a86b;
  --green-dark: #087b50;
  --amber: #b8872e;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 225, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: var(--max);
  height: 72px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
}

.mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  top: 9px;
  width: 11px;
  height: 14px;
  border-radius: 12px 12px 12px 12px;
  transform: rotate(-14deg);
}

.mark::before {
  left: 7px;
  background: var(--white);
}

.mark::after {
  right: 7px;
  background: var(--green);
}

.brand-name {
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}

.brand-name span:last-child {
  color: var(--green);
}

.brand-caption {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2d4038;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green-dark);
  border-bottom-color: var(--green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
  padding: 9px 11px;
  font-weight: 700;
}

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #f7faf9;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 38%, rgba(255,255,255,0.28) 72%, rgba(255,255,255,0.06) 100%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 28px 76px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  width: 100%;
  min-width: 0;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 16px;
  font-size: 60px;
  line-height: 1.02;
  font-weight: 780;
  color: var(--navy);
  overflow-wrap: break-word;
}

.hero-sub {
  margin-top: 24px;
  max-width: 560px;
  color: #2f443b;
  font-size: 19px;
  line-height: 1.52;
  overflow-wrap: break-word;
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  border-color: #9eb0a8;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.62);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  width: 100%;
  max-width: 760px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-points div {
  min-height: 90px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.hero-points strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.hero-points span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-kicker {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: #75e0b7;
}

h2 {
  margin-top: 10px;
  font-size: 39px;
  line-height: 1.12;
  font-weight: 780;
  color: var(--navy);
}

.section-dark h2 {
  color: var(--white);
}

.section-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.section-dark .section-lead,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.path-grid,
.app-grid,
.proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.path-item,
.app-item,
.proof-item,
.faq-item,
.process-step,
.spec-row {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.path-item,
.app-item,
.proof-item,
.faq-item {
  padding: 24px;
}

.path-item:hover,
.app-item:hover,
.proof-item:hover {
  border-color: rgba(0, 168, 107, 0.45);
  transform: translateY(-2px);
}

.path-item,
.app-item,
.proof-item {
  transition: transform 160ms ease, border-color 160ms ease;
}

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

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

.visual-tile {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease;
}

.visual-tile:hover {
  border-color: rgba(0, 168, 107, 0.45);
  transform: translateY(-2px);
}

.visual-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-caption {
  padding: 20px;
}

.visual-caption .label,
.signal-label {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-caption h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.visual-caption p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.signal-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.signal-item {
  min-width: 0;
  padding: 20px;
  background: var(--white);
}

.signal-mark {
  display: inline-flex;
  width: auto;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 8px;
  background: #edf4f1;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.signal-item h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.signal-item p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section-dark .signal-grid {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.section-dark .signal-item {
  background: rgba(255, 255, 255, 0.07);
}

.section-dark .signal-mark {
  background: rgba(117, 224, 183, 0.14);
  color: #75e0b7;
}

.section-dark .signal-item h3 {
  color: var(--white);
}

.section-dark .signal-item p {
  color: rgba(255, 255, 255, 0.72);
}

.path-item .label,
.app-item .label {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.path-item h3,
.app-item h3,
.proof-item h3,
.faq-item h3,
.process-step h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.22;
}

.path-item p,
.app-item p,
.proof-item p,
.faq-item p,
.process-step p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 46px;
  align-items: center;
}

.media-split > *,
.section-head > *,
.form-layout > * {
  min-width: 0;
}

.media-split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.image-panel {
  border-radius: 8px;
  overflow: hidden;
  min-height: 420px;
  background: var(--soft);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.bullet-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.bullet-list li {
  padding-left: 24px;
  position: relative;
  color: #32463d;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  padding: 22px;
}

.process-step .num {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 15px;
}

th {
  color: var(--navy);
  background: #edf4f1;
}

tr:last-child td {
  border-bottom: 0;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #243b32;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd8d2;
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 168, 107, 0.18);
  border-color: var(--green);
}

.help-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.note {
  padding: 20px;
  border-left: 4px solid var(--green);
  background: #eef8f3;
  color: #28463a;
  border-radius: 0 8px 8px 0;
}

.compact-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.compact-list li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  background: var(--white);
  color: #31443b;
}

.compact-list strong {
  color: var(--navy);
}

.contact-aside {
  display: grid;
  gap: 16px;
}

.aside-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.aside-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.aside-visual div {
  padding: 18px;
}

.aside-visual h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.24;
}

.aside-visual p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.detail-card h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.24;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  font-size: 15px;
}

.detail-card p {
  margin-top: 10px;
}

.contact-list,
.next-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-list li,
.next-list li {
  padding-left: 22px;
  position: relative;
}

.contact-list li::before,
.next-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

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

.check-option {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid #cbd8d2;
  border-radius: 5px;
  background: #fbfdfc;
  color: #2e4038;
  font-size: 14px;
  font-weight: 600;
}

.check-option input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--green);
}

button.btn {
  cursor: pointer;
}

button.btn:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.submit-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.success-panel {
  max-width: 760px;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.site-footer {
  background: #071321;
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.footer-grid h3 {
  color: var(--white);
  margin: 0 0 12px;
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
  color: #79e2bd;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav {
    height: auto;
    min-height: 68px;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(10, 25, 47, 0.12);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 55%, rgba(255,255,255,0.45) 100%);
  }

  .hero-inner {
    padding-top: 90px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-points,
  .path-grid,
  .path-grid.four,
  .app-grid,
  .proof-grid,
  .faq-grid,
  .visual-grid,
  .visual-grid.two,
  .signal-grid,
  .signal-grid.five,
  .success-grid,
  .process,
  .footer-grid,
  .form-layout,
  .media-split,
  .media-split.reverse,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-points div {
    min-height: auto;
  }

  .image-panel,
  .image-panel img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .nav {
    padding-left: 18px;
    padding-right: 18px;
    max-width: 390px;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
    gap: 12px;
  }

  .menu-toggle {
    margin-left: 8px;
    padding: 8px 10px;
  }

  .brand-caption {
    display: none;
  }

  .wrap,
  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 390px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.94) 68%, rgba(255,255,255,0.78) 100%);
  }

  .hero-copy,
  .hero-points {
    width: 100%;
    max-width: 350px;
  }

  h1 {
    font-size: 33px;
  }

  .hero-sub {
    font-size: 17px;
    line-height: 1.55;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  h2 {
    font-size: 30px;
  }

  .section {
    padding: 66px 0;
  }

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

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

  .compact-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
