:root {
  color-scheme: light;
  --ink: #12242a;
  --muted: #587078;
  --paper: #f7fbfb;
  --white: #ffffff;
  --line: #dbe7e7;
  --teal: #2a8f95;
  --teal-dark: #17646b;
  --coral: #d56a54;
  --gold: #c29b45;
  --navy: #263f59;
  --shadow: 0 18px 55px rgba(18, 36, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 5vw;
  background: rgba(247, 251, 251, 0.88);
  border-bottom: 1px solid rgba(219, 231, 231, 0.8);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.nav-action {
  padding: 9px 15px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 6px;
}

.nav-action:hover {
  color: var(--white);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 5vw 88px;
  background: var(--white);
}

.investor-hero {
  min-height: 76vh;
  background:
    linear-gradient(180deg, rgba(248, 243, 233, 0.86), rgba(247, 251, 251, 1)),
    var(--paper);
}

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

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

.hero-shade {
  background: linear-gradient(90deg, rgba(247, 251, 251, 0.98) 0%, rgba(247, 251, 251, 0.9) 34%, rgba(247, 251, 251, 0.32) 68%, rgba(247, 251, 251, 0.1) 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: 4.9rem;
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.12;
  font-weight: 760;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: #2f4a52;
  font-size: 1.24rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

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

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

.button-secondary {
  background: var(--coral);
  color: var(--white);
}

.button-secondary:hover {
  background: #a94434;
}

.button-outline {
  border-color: #9cb6b8;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
}

.button-outline:hover {
  border-color: var(--teal-dark);
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 96px;
  padding: 24px 5vw;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--teal-dark);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--ink);
  font-weight: 720;
}

.section {
  padding: 92px 5vw;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-intro p:not(.eyebrow),
.proof-copy p,
.company-copy p,
.investors-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.platform-grid,
.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.step-list {
  display: grid;
  gap: 16px;
}

.step-list article,
.solution-card,
.proof-points div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-list span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.step-list p,
.solution-card p,
.proof-points span {
  margin: 0;
  color: var(--muted);
}

.section-muted {
  background: #eef6f3;
}

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

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

.wide-visual img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.proof-section h2,
.proof-section .eyebrow {
  color: var(--white);
}

.proof-copy p {
  color: #c0d0d2;
}

.proof-points {
  display: grid;
  gap: 16px;
}

.proof-points div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.proof-points strong,
.proof-points span {
  display: block;
}

.proof-points strong {
  color: var(--white);
  margin-bottom: 7px;
}

.proof-points span {
  color: #c0d0d2;
}

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

.company-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.company-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.investors-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #f8f3e9;
  border-top: 1px solid #ecddbd;
  border-bottom: 1px solid #ecddbd;
}

.investors-section div {
  max-width: 760px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 48px;
  align-items: start;
  background: var(--paper);
}

.contact-copy {
  max-width: 700px;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 720;
}

.contact-form span {
  font-size: 0.86rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bfd1d3;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdfd;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(42, 143, 149, 0.18);
  border-color: var(--teal-dark);
}

.form-honey {
  position: absolute;
  left: -10000px;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status.is-success {
  color: var(--teal-dark);
}

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

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 760;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 5vw;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 170px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal-dark);
}

.site-footer p {
  margin: 0;
}

.simple-page {
  min-height: 100vh;
  padding: 130px 5vw 76px;
  background: var(--paper);
}

.simple-page-inner {
  max-width: 860px;
}

.simple-page h1 {
  margin-bottom: 24px;
  font-size: 3.2rem;
}

.simple-page h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.simple-page p,
.simple-page li {
  color: var(--muted);
}

.simple-page ul {
  padding-left: 20px;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 5vw 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 0;
  }

  .nav-action {
    width: auto;
    padding: 10px 15px;
    margin-top: 8px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 116px;
  }

  .hero-shade {
    background: rgba(247, 251, 251, 0.84);
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .trust-strip,
  .solution-grid,
  .platform-grid,
  .company-section,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 84px;
  }

  .section {
    padding: 68px 5vw;
  }

  .investors-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 145px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 24px;
    gap: 14px;
  }

  .nav-toggle {
    position: absolute;
    top: 12px;
    right: 24px;
    border-color: #94b5b8;
    box-shadow: 0 4px 14px rgba(18, 36, 42, 0.08);
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    min-height: 82vh;
    padding: 106px 30px 54px;
  }

  .hero-content {
    max-width: calc(100vw - 60px);
  }

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

  .hero-shade {
    background: rgba(247, 251, 251, 0.86);
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .simple-page h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-copy,
  .section-intro p:not(.eyebrow),
  .proof-copy p,
  .company-copy p,
  .investors-section p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .button {
    width: 100%;
  }

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