:root {
  --ink: #101827;
  --muted: #607089;
  --paper: #ffffff;
  --soft: #f4f8fc;
  --line: #dce5ef;
  --navy: #061b37;
  --blue: #1d65f2;
  --blue-2: #00a6ff;
  --teal: #28d0c2;
  --coral: #ff6b5f;
  --lime: #d6fb6f;
  --shadow: 0 24px 60px rgba(16, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 66px);
  border-bottom: 1px solid rgba(220, 229, 239, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  text-decoration: none;
}

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

.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 14px 28px rgba(29, 101, 242, 0.24);
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol span {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #fff;
}

.brand-symbol::before {
  width: 26px;
  height: 6px;
  transform: rotate(-34deg);
}

.brand-symbol::after {
  width: 26px;
  height: 6px;
  transform: rotate(34deg);
}

.brand-symbol span {
  width: 9px;
  height: 9px;
  box-shadow: -14px 10px 0 #fff, 14px 10px 0 #fff;
}

.brand-copy strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 8px;
  color: #54647c;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
  background: #edf5ff;
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--navy);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: #fff;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 27, 55, 0.96) 0%, rgba(6, 27, 55, 0.82) 42%, rgba(6, 27, 55, 0.32) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 72%, rgba(6, 27, 55, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 5vw, 66px);
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: 4.05rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead,
.page-lead {
  margin: 20px 0 0;
  max-width: 760px;
  color: #e6f2ff;
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  color: #061b37;
  background: var(--lime);
  box-shadow: 0 14px 32px rgba(214, 251, 111, 0.28);
}

.button.primary:hover {
  background: #e5ff93;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.11);
}

.button.light {
  color: var(--navy);
  background: #fff;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof-strip div {
  padding: 24px clamp(18px, 5vw, 52px);
  background: #fff;
}

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

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

.section,
.contact-layout,
.legal-content {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2,
.section-copy h2,
.split-layout h2,
.model-copy h2,
.about-layout h2,
.cta-band h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.section-copy p,
.split-layout p,
.model-copy p,
.about-layout p,
.cta-band p {
  color: var(--muted);
}

.intro-grid,
.split-layout,
.about-layout,
.model-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.signal-panel,
.contact-card,
.relationship-map {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f6fbff);
  box-shadow: var(--shadow);
}

.signal-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #edf5ff;
  font-weight: 900;
}

.signal-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1.1;
}

.signal-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-section {
  width: 100%;
  max-width: none;
  padding: 78px clamp(18px, 5vw, 66px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(29, 101, 242, 0.22), rgba(40, 208, 194, 0.12)),
    var(--navy);
}

.dark-section .section-heading,
.dark-section .process-grid {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.dark-section .eyebrow,
.dark-section p {
  color: #d7e9ff;
}

.process-grid,
.offer-grid,
.values-grid,
.vertical-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article,
.card,
.values-grid article,
.vertical-card,
.criteria-list article,
.contact-side article {
  border: 1px solid rgba(220, 229, 239, 0.9);
  border-radius: 10px;
  background: #fff;
}

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

.process-grid article,
.card,
.values-grid article {
  min-height: 210px;
  padding: 22px;
}

.process-grid span {
  display: block;
  color: var(--lime);
  font-weight: 900;
}

.process-grid h3,
.card h3,
.values-grid h3,
.criteria-list h3,
.contact-side h2,
.vertical-card h2 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  line-height: 1.22;
}

.process-grid p,
.card p,
.values-grid p,
.criteria-list p,
.contact-side p,
.vertical-card p {
  margin: 0;
  color: var(--muted);
}

.dark-section .process-grid p {
  color: #d7e9ff;
}

.vertical-preview {
  padding-bottom: 92px;
}

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

.vertical-grid a {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(16, 24, 39, 0.07);
}

.vertical-grid a:hover {
  color: var(--blue);
  border-color: #bad5ff;
  background: #f7fbff;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px clamp(18px, 5vw, 66px);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy) 78%);
}

.cta-band .eyebrow,
.cta-band p {
  color: #fff;
}

.cta-band div {
  max-width: 780px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 66px);
  color: #dbe9ff;
  background: #071527;
}

.footer-brand {
  color: #fff;
  font-weight: 900;
}

.site-footer p {
  margin: 7px 0 0;
  color: #aebdd2;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #fff;
}

.page-hero {
  padding: 76px clamp(18px, 5vw, 66px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(29, 101, 242, 0.82), rgba(6, 27, 55, 0.95)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 70px);
}

.page-hero.compact {
  padding-bottom: 54px;
}

.page-hero .button {
  margin-top: 28px;
}

.soft-section {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 66px);
  padding-right: clamp(18px, 5vw, 66px);
  background: var(--soft);
}

.soft-section > * {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.criteria-list {
  display: grid;
  gap: 14px;
}

.criteria-list article {
  padding: 20px;
  border-left: 5px solid var(--blue);
}

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

.relationship-map {
  display: grid;
  gap: 12px;
}

.relationship-map div {
  padding: 18px;
  border-radius: 8px;
  background: #f7fbff;
}

.relationship-map strong,
.relationship-map span {
  display: block;
}

.relationship-map span {
  margin-top: 3px;
  color: var(--muted);
}

.map-arrow {
  justify-self: center;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
}

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

.vertical-card {
  min-height: 250px;
  padding: 26px;
}

.vertical-card > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #edf5ff;
  font-weight: 900;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.contact-card p {
  margin: 0;
}

.contact-card a,
.contact-side a,
.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 24px;
  align-items: start;
  padding: 52px 0 82px;
}

.contact-form,
.contact-side article {
  padding: 24px;
  box-shadow: 0 16px 42px rgba(16, 24, 39, 0.08);
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cbd8e8;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(29, 101, 242, 0.18);
  border-color: var(--blue);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-row input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.honeypot {
  position: absolute;
  left: -100vw;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.legal-content {
  max-width: 880px;
  padding: 52px 0 82px;
}

.legal-content h2 {
  margin: 30px 0 8px;
  font-size: 1.25rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 27, 55, 0.94), rgba(6, 27, 55, 0.72));
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.9rem;
  }

  .proof-strip,
  .intro-grid,
  .split-layout,
  .about-layout,
  .model-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 64px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .hero-lead,
  .page-lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .section-copy h2,
  .split-layout h2,
  .model-copy h2,
  .about-layout h2,
  .cta-band h2 {
    font-size: 1.72rem;
  }

  .process-grid,
  .offer-grid,
  .values-grid,
  .vertical-detail-grid,
  .form-grid,
  .vertical-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 54px 18px;
  }

  .contact-form,
  .contact-side article {
    padding: 18px;
  }
}
