:root {
  --dark: #0f172a;
  --ink: #172033;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --magenta: #ec0f8c;
  --cyan: #00aeef;
  --lime: #d6df21;
}

.site-footer {
  padding: 58px max(20px, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(255, 255, 255, 0.74);
  background: #090f1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.footer-brand img {
  width: 168px;
  max-width: 100%;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--magenta);
}

.site-footer p {
  max-width: 340px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

.site-footer .footer-cta {
  display: inline-flex;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  color: var(--white);
  filter: brightness(0.94);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.35vw, 22px);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  position: relative;
}

.nav-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.nav-menu-trigger {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 4px;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown,
.nav-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: #334155;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--soft);
  color: var(--magenta);
}

nav > a,
.nav-menu-trigger,
.header-cta,
.button.primary {
  transition: color 0.18s ease, background-color 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

nav > a:hover,
nav > a:focus-visible,
.nav-menu-trigger:hover,
.nav-menu-trigger:focus-visible {
  color: var(--magenta);
}

.header-cta:hover,
.header-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  filter: brightness(0.94);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 17px 24px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta {
  min-height: auto;
  padding: 13px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 18px 50px rgba(236, 15, 140, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.eyebrow,
.card-kicker {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark,
.card-kicker {
  color: var(--magenta);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
  min-height: auto;
  padding: 176px max(20px, calc((100vw - 1180px) / 2)) 106px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.20), transparent 34%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.18), transparent 46%),
    var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.12) 44.2% 44.8%, transparent 45% 100%),
    radial-gradient(circle at 77% 42%, rgba(214, 223, 33, 0.22), transparent 9%),
    radial-gradient(circle at 88% 54%, rgba(236, 15, 140, 0.18), transparent 10%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, 46px 46px, 46px 46px;
  pointer-events: none;
}

.hero-content,
.investment-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.55vw, 22px);
  font-weight: 650;
  line-height: 1.48;
}

.hero-subcopy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 700;
}

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

.investment-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.investment-card h2 {
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 48px);
}

.price-block {
  display: grid;
  gap: 4px;
  margin: 20px 0 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.price-block span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-block strong {
  color: var(--white);
  font-size: clamp(54px, 7vw, 76px);
  line-height: 0.92;
}

.investment-card ul,
.fit-grid ul,
.first-90 ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.investment-card li,
.fit-grid li,
.first-90 li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
  line-height: 1.45;
}

.investment-card li::before,
.fit-grid li::before,
.first-90 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
}

.investment-card .button {
  margin-top: 24px;
}

.section {
  padding: clamp(70px, 9vw, 118px) max(20px, calc((100vw - 1180px) / 2));
}

.section-heading {
  display: grid;
  justify-items: start;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.centered {
  justify-items: center;
  text-align: center;
}

.section-heading h2 {
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  font-size: 18px;
  font-weight: 680;
}

.section-heading.centered p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.nav-section,
.provides-section,
.pathway-section,
.request-section {
  background: var(--white);
}

.cost-section,
.fit-section,
.compare-section,
.faq-section {
  background: var(--soft);
}

.problem-section {
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.075), transparent 34%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.09), transparent 48%),
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: auto, auto, 34px 34px, 34px 34px;
}

.split-grid,
.navigator-grid,
.request-grid,
.card-grid,
.provide-grid,
.fit-grid,
.process-grid,
.compare-grid,
.faq-grid,
.investment-panel {
  max-width: 1180px;
  margin-inline: auto;
}

.split-grid,
.navigator-grid,
.request-grid,
.investment-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.stack-copy {
  display: grid;
  gap: 18px;
}

.stack-copy p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}

.terrain-card,
.navigator-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(circle at 34% 25%, rgba(236, 15, 140, 0.22), transparent 18%),
    radial-gradient(circle at 78% 64%, rgba(0, 174, 239, 0.22), transparent 18%),
    linear-gradient(135deg, #111827, #1e293b);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

.terrain-card::before,
.navigator-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.route-line {
  position: absolute;
  left: 18%;
  top: 14%;
  width: 58%;
  height: 70%;
  border-right: 6px solid rgba(214, 223, 33, 0.88);
  border-bottom: 6px solid rgba(214, 223, 33, 0.88);
  border-radius: 0 0 90px 0;
  transform: rotate(10deg);
}

.point,
.hazard {
  position: absolute;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.point-a {
  left: 10%;
  top: 20%;
}

.point-b {
  right: 18%;
  top: 48%;
}

.point-c {
  right: 10%;
  bottom: 16%;
}

.hazard {
  left: 34%;
  bottom: 24%;
  color: var(--dark);
  background: var(--lime);
}

.navigator-visual {
  min-height: 500px;
  background:
    radial-gradient(circle at 30% 24%, rgba(214, 223, 33, 0.24), transparent 12%),
    linear-gradient(145deg, rgba(236, 15, 140, 0.24), transparent 38%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.28), transparent 46%),
    #111827;
}

.navigator-visual::after {
  content: "";
  position: absolute;
  left: 44%;
  top: -10%;
  width: 28%;
  height: 120%;
  border-left: 2px solid rgba(255, 255, 255, 0.22);
  border-right: 2px solid rgba(255, 255, 255, 0.12);
  transform: rotate(24deg);
}

.note-card {
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 14%;
  width: min(310px, 78%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.secondary-note {
  left: auto;
  right: 10%;
  top: auto;
  bottom: 14%;
}

.note-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.note-card strong {
  color: var(--white);
  font-size: 26px;
  line-height: 1.08;
  text-transform: uppercase;
}

.navigator-grid p {
  font-size: 18px;
  font-weight: 680;
}

.card-grid,
.provide-grid,
.process-grid,
.compare-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card-grid article,
.provide-grid article,
.process-grid article,
.compare-grid article,
.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.provide-grid article,
.compare-grid article.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(236, 15, 140, 0.13), rgba(0, 174, 239, 0.08)),
    var(--dark);
  border-color: rgba(255, 255, 255, 0.12);
}

.provide-grid h3,
.provide-grid p,
.compare-grid .featured h3,
.compare-grid .featured p {
  color: var(--white);
}

.provide-grid p,
.compare-grid .featured p {
  color: rgba(255, 255, 255, 0.72);
}

.card-grid span,
.provide-grid span,
.process-grid span,
.compare-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.provide-grid span {
  color: var(--lime);
}

.card-grid p,
.provide-grid p,
.process-grid p,
.compare-grid p,
.faq-grid p {
  margin-bottom: 0;
  font-weight: 680;
}

.investment-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.22), rgba(0, 174, 239, 0.12)),
    var(--dark);
}

.investment-panel {
  align-items: start;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.investment-panel h2,
.investment-panel h3,
.investment-panel p {
  color: var(--white);
}

.investment-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 680;
}

.first-90 {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

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

.fit-grid article {
  padding: 28px;
  border-radius: 8px;
  background: var(--dark);
}

.fit-grid article.not-fit {
  background: #1e293b;
}

.fit-grid h2,
.fit-grid p {
  color: var(--white);
}

.fit-grid h2 {
  font-size: clamp(32px, 2.6vw, 40px);
  line-height: 1;
  white-space: nowrap;
}

.fit-grid li {
  color: rgba(255, 255, 255, 0.78);
}

.request-grid {
  align-items: start;
}

.request-grid > div > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 18px;
  font-weight: 680;
}

.request-note {
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
  color: var(--dark);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.08), rgba(0, 174, 239, 0.08)),
    var(--soft);
  border: 1px solid rgba(236, 15, 140, 0.2);
  font-size: 18px;
  font-weight: 900;
}

.advisory-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.advisory-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisory-form input,
.advisory-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--dark);
  background: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.advisory-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.faq-grid h3 {
  color: var(--magenta);
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(90px, 12vw, 150px) 20px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.92), rgba(0, 174, 239, 0.78)),
    var(--dark);
}

.final-cta h2,
.final-cta p {
  max-width: 980px;
  color: var(--white);
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-weight: 700;
}

.final-cta .hero-actions {
  justify-content: center;
}

@media (max-width: 1180px) {
  .five-grid,
  .provide-grid,
  .process-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-grid,
  .navigator-grid,
  .request-grid,
  .investment-panel {
    grid-template-columns: 1fr;
  }

  .investment-card {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  .nav-menu {
    display: block;
  }

  .nav-menu-trigger {
    display: inline-flex;
  }

  .nav-dropdown {
    top: calc(100% + 10px);
    display: grid;
    min-width: min(300px, calc(100vw - 32px));
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 74px 18px 52px;
  }

  h1,
  h2 {
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .five-grid,
  .provide-grid,
  .process-grid,
  .compare-grid,
  .faq-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid h2 {
    white-space: normal;
  }

  .terrain-card,
  .navigator-visual {
    min-height: 360px;
  }

  .note-card,
  .secondary-note {
    left: 8%;
    right: 8%;
    width: auto;
  }

  .note-card strong {
    font-size: 22px;
  }
}
