: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-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.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.23), transparent 38%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.18), transparent 48%),
    var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 70% 36%, rgba(214, 223, 33, 0.2), transparent 9%),
    radial-gradient(circle at 86% 62%, rgba(236, 15, 140, 0.18), transparent 11%),
    linear-gradient(120deg, transparent 0 43%, rgba(255, 255, 255, 0.12) 43.2% 43.8%, transparent 44% 100%),
    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 {
  max-width: 780px;
}

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

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

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

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

.offer-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.13), rgba(0, 174, 239, 0.11)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.offer-card h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
}

.price-block {
  display: grid;
  gap: 6px;
  padding: 22px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

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

.price-block s {
  color: rgba(255, 255, 255, 0.52);
  font-size: 24px;
  font-weight: 900;
}

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

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

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

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

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

.offer-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.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;
}

.section-heading .eyebrow {
  width: fit-content;
  max-width: 100%;
}

.receive-section,
.process-section,
.request-section {
  background: var(--white);
}

.roadmap-section,
.fit-section,
.price-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;
}

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

.problem-grid,
.receive-grid,
.process-grid,
.faq-grid,
.audit-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

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

.diagnostic-map {
  position: relative;
  min-height: 360px;
  max-width: 1180px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 223, 33, 0.24), transparent 18%),
    radial-gradient(circle at 25% 25%, rgba(236, 15, 140, 0.18), transparent 18%),
    radial-gradient(circle at 80% 72%, rgba(0, 174, 239, 0.18), transparent 18%),
    linear-gradient(135deg, #111827, #1e293b);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

.diagnostic-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  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;
}

.diagnostic-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(560px, 76%);
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 116px;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.center-node {
  left: 50%;
  top: 50%;
  width: 230px;
  min-height: 112px;
  border-radius: 8px;
  color: var(--dark);
  background: var(--lime);
  transform: translate(-50%, -50%);
}

.center-node span,
.center-node strong {
  display: block;
}

.center-node span {
  font-size: 11px;
  letter-spacing: 0.14em;
}

.center-node strong {
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0;
}

.node-hire {
  left: 14%;
  top: 20%;
}

.node-tools {
  right: 13%;
  top: 18%;
}

.node-process {
  left: 16%;
  bottom: 18%;
}

.node-effort {
  right: 14%;
  bottom: 19%;
}

.audit-flow {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.audit-flow article {
  position: relative;
  min-height: 116px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(236, 15, 140, 0.08), rgba(0, 174, 239, 0.06)),
    var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.audit-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
}

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

.audit-flow strong {
  display: block;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.problem-grid article,
.receive-grid article,
.process-grid article,
.faq-grid article,
.cost-list article,
.fit-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.problem-grid p,
.receive-grid p,
.process-grid p,
.faq-grid p,
.cost-list p {
  margin-bottom: 0;
  font-weight: 680;
}

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

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.roadmap-list {
  margin-top: 26px;
}

.roadmap-list li {
  color: var(--dark);
}

.roadmap-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.roadmap-header {
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
}

.roadmap-header strong {
  display: block;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
  text-transform: uppercase;
}

.roadmap-row {
  padding: 22px 28px;
  border-top: 1px solid var(--line);
}

.roadmap-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-row p {
  margin-bottom: 0;
  font-weight: 700;
}

.roadmap-row.priority {
  background: rgba(167, 243, 208, 0.22);
}

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

.fit-grid article {
  background: var(--dark);
}

.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);
}

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

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

.guarantee-box {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.22), rgba(0, 174, 239, 0.14)),
    rgba(255, 255, 255, 0.08);
}

.guarantee-box h2,
.guarantee-box p {
  color: var(--white);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

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

.request-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.request-steps article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.request-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-steps p {
  margin-bottom: 0;
  color: var(--dark);
  font-weight: 820;
}

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

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

.audit-form input,
.audit-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;
}

.audit-form textarea {
  resize: vertical;
}

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

.cost-list {
  display: grid;
  gap: 12px;
}

.cost-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cost-list span {
  margin: 0;
}

.cost-list strong {
  color: var(--dark);
  font-size: 22px;
}

.section-grid,
.problem-grid,
.receive-grid,
.process-grid,
.faq-grid,
.request-steps,
.fit-grid,
.cost-list,
.diagnostic-map,
.audit-flow {
  max-width: 1180px;
  margin-inline: auto;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.92), rgba(0, 174, 239, 0.78)),
    var(--dark);
  text-align: center;
}

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

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

@media (max-width: 1080px) {
  .hero,
  .section-grid,
  .fit-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .receive-grid,
  .process-grid,
  .faq-grid,
  .audit-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit-flow article:not(:last-child)::after {
    display: none;
  }
}

@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;
  }

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

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

  .problem-grid,
  .receive-grid,
  .process-grid,
  .faq-grid,
  .request-steps,
  .audit-flow {
    grid-template-columns: 1fr;
  }

  .cost-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .diagnostic-map {
    min-height: 420px;
  }

  .diagnostic-map::after {
    width: 82%;
  }

  .center-node {
    width: 190px;
  }

  .center-node strong {
    font-size: 22px;
  }

  .node-hire {
    left: 7%;
    top: 14%;
  }

  .node-tools {
    right: 7%;
    top: 14%;
  }

  .node-process {
    left: 7%;
    bottom: 14%;
  }

  .node-effort {
    right: 7%;
    bottom: 14%;
  }
}
