:root {
  --black: #070707;
  --black-soft: #111111;
  --charcoal: #191919;
  --white: #ffffff;
  --off-white: #f7f5f1;
  --gray: #737373;
  --line: rgba(10, 10, 10, 0.13);
  --purple: #7A00FF;
  --purple-bright: #A13CFF;
  --purple-soft: rgba(122, 0, 255, 0.14);
  --lime: #C7FF00;
  --lime-soft: rgba(199, 255, 0, 0.14);
  --gold: #D6B45C;
  --container: 1240px;
  --header-height: 86px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

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

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

button,
a { -webkit-tap-highlight-color: transparent; }

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

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: 105px 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--lime);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.nav-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
}

.wordmark {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.wordmark-main {
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.wordmark-main > span { color: var(--purple-bright); }

.wordmark small {
  margin-top: 6px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.44em;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active { color: var(--white); }

.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }

.desktop-cta { justify-self: end; }

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  justify-self: end;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  padding: 12px 24px 24px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open { display: grid; }

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.button {
  min-height: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-small {
  min-height: 46px;
  padding: 11px 17px;
  font-size: 9px;
}

.button-lime {
  color: var(--black);
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--purple);
}

.button-lime:hover {
  background: #d7ff4a;
  box-shadow: 5px 5px 0 var(--purple);
}

.button-purple {
  color: var(--white);
  background: var(--purple);
  box-shadow: 8px 8px 0 var(--lime);
}

.button-purple:hover {
  background: var(--purple-bright);
  box-shadow: 5px 5px 0 var(--lime);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: transparent;
}

.button-ghost:hover { border-color: var(--lime); }

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding-top: var(--header-height);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(122,0,255,.18), transparent 30%),
    linear-gradient(135deg, #030303 0%, #0a0a0a 57%, #050505 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-purple {
  width: 560px;
  height: 560px;
  top: 12%;
  right: -260px;
  background: radial-gradient(circle, rgba(122,0,255,.34), transparent 68%);
}

.hero-glow-lime {
  width: 360px;
  height: 360px;
  bottom: 8%;
  left: -170px;
  background: radial-gradient(circle, rgba(199,255,0,.16), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 750px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
  padding: 54px 0 68px;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.eyebrow > span {
  width: 45px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--lime);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 > span,
.hero h1 > strong,
.hero h1 > em { display: block; }

.hero h1 > span { color: var(--white); }
.hero h1 > strong { color: var(--purple-bright); font-style: normal; }
.hero h1 > em { color: var(--lime); font-style: normal; }

.hero-description {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-note {
  max-width: 650px;
  padding-left: 18px;
  color: rgba(255,255,255,.55);
  border-left: 3px solid var(--purple);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.hero-frame {
  position: relative;
  width: min(100%, 510px);
  height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 230px 230px 24px 24px;
  background: var(--charcoal);
  box-shadow: 18px 18px 0 var(--purple), -12px -12px 0 rgba(199,255,0,.72), 0 36px 100px rgba(0,0,0,.55);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-frame-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.48), transparent 40%),
    linear-gradient(90deg, rgba(122,0,255,.08), transparent 30%, transparent 72%, rgba(199,255,0,.07));
}

.hero-badge {
  position: absolute;
  z-index: 3;
  min-width: 240px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-badge > span {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.hero-badge strong,
.hero-badge small { display: block; }

.hero-badge strong { font-size: 9px; letter-spacing: .08em; }
.hero-badge small { margin-top: 3px; color: rgba(255,255,255,.65); font-size: 9px; }

.hero-badge-purple {
  top: 92px;
  left: -12px;
  background: rgba(34,0,72,.74);
}

.hero-badge-purple > span { color: var(--white); background: var(--purple); }

.hero-badge-lime {
  right: -22px;
  bottom: 105px;
  background: rgba(13,18,4,.8);
}

.hero-badge-lime > span { color: var(--black); background: var(--lime); }


.benefits-strip {
  position: relative;
  z-index: 6;
  color: var(--white);
  background: var(--purple);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-item {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 38px 34px;
  border-right: 1px solid rgba(255,255,255,.22);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-number {
  min-width: 96px;
  color: var(--lime);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: .9;
}

.benefit-copy small {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.benefit-copy h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.08;
}

.benefit-copy p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  line-height: 1.65;
}

.service-marquee {
  position: relative;
  z-index: 7;
  overflow: hidden;
  color: var(--black);
  background: var(--lime);
  border-top: 1px solid rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.18);
}

.service-marquee-viewport {
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
}

.service-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: prowealth-marquee 26s linear infinite;
  will-change: transform;
}

.service-marquee:hover .service-marquee-track {
  animation-play-state: paused;
}

.service-marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 28px;
  align-items: center;
  padding-right: 28px;
}

.service-marquee span {
  white-space: nowrap;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
}

.service-marquee i {
  flex: 0 0 auto;
  color: var(--purple);
  font-style: normal;
}

@keyframes prowealth-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-heading {
  max-width: 850px;
  margin-bottom: 52px;
}

.section-heading.center { margin-inline: auto; text-align: center; }

.section-kicker {
  margin-bottom: 16px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker-light { color: var(--lime); }

.section-heading h2,
.split-heading h2,
.about-copy h2,
.faq-heading h2,
.consultation-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 span,
.consultation-copy h2 span { color: var(--lime); }

.section-heading > p:not(.section-kicker),
.split-heading > p,
.faq-heading > p { color: var(--gray); font-size: 16px; }


.audience-section {
  color: var(--black);
  background:
    radial-gradient(circle at 92% 10%, rgba(122,0,255,.09), transparent 24%),
    var(--off-white);
}

.audience-intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 82px;
  align-items: end;
  margin-bottom: 48px;
}

.audience-heading h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
}

.audience-heading h2 span {
  color: var(--purple);
}

.audience-summary > p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.85;
}

.audience-summary > p:last-of-type {
  margin-bottom: 20px;
}

.audience-summary > strong {
  display: block;
  padding: 17px 19px;
  color: var(--black);
  background: var(--lime);
  border-left: 6px solid var(--purple);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.55;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-card {
  min-height: 315px;
  padding: 31px 27px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.audience-card:hover {
  color: var(--white);
  background: var(--black);
  transform: translateY(-6px);
}

.audience-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.audience-card > p {
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.audience-card:hover > p {
  color: var(--lime);
}

.audience-card h3 {
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.12;
}

.audience-card small {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.7;
}

.audience-card:hover small {
  color: rgba(255,255,255,.68);
}

.standard-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 12%, rgba(122,0,255,.14), transparent 28%),
    var(--black);
}

.standard-section .section-heading > p:not(.section-kicker) { color: rgba(255,255,255,.62); }

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.system-card {
  overflow: hidden;
  background: #101010;
  border: 1px solid rgba(255,255,255,.13);
  transition: transform .28s ease, border-color .28s ease;
}

.system-card:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
}

.system-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #080808;
}

.system-card-copy { padding: 27px 28px 31px; }

.system-card-copy > span {
  color: var(--lime);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.system-card-copy > p {
  margin: 7px 0 13px;
  color: var(--purple-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.system-card-copy h3 {
  margin-bottom: 11px;
  font-size: 28px;
  line-height: 1.12;
}

.system-card-copy small { color: rgba(255,255,255,.62); font-size: 13px; }

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

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 350px;
  padding: 40px 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, background .25s ease;
}

.service-card:hover { color: var(--white); background: var(--purple); }

.service-number {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--purple);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.service-label {
  margin-bottom: 12px;
  color: var(--lime);
  background: var(--black);
  display: inline-block;
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

.service-card:hover .service-label { color: var(--black); background: var(--lime); }

.service-card h3 { margin-bottom: 18px; font-size: 32px; }

.service-card p:not(.service-label) { color: var(--gray); font-size: 14px; }

.service-card:hover p:not(.service-label) { color: rgba(255,255,255,.74); }

.service-card a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: var(--black);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card:hover a { color: var(--lime); }

.process-strip {
  color: var(--white);
  background: var(--purple);
  padding: 52px 0;
}

.process-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 10px 34px;
  border-right: 1px solid rgba(255,255,255,.24);
}

.process-strip article:last-child { border-right: 0; }

.process-strip article > span {
  color: var(--lime);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 46px;
  font-weight: 900;
}

.process-strip small {
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.process-strip h3 { margin-bottom: 10px; font-size: 24px; }

.process-strip p { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; }

.about-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(122,0,255,.11), transparent 34%),
    var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 86px;
  align-items: center;
}

.about-copy > p:not(.section-kicker) { color: rgba(255,255,255,.67); }

.feature-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 36px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 31px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--lime);
}

.about-visual { position: relative; max-width: 530px; justify-self: end; }

.about-image-frame {
  height: 680px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background: var(--charcoal);
  box-shadow: 15px 15px 0 var(--purple), -9px -9px 0 rgba(199,255,0,.72);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-label {
  position: absolute;
  right: -22px;
  bottom: 34px;
  padding: 18px 22px;
  color: var(--black);
  background: var(--lime);
  box-shadow: 9px 9px 0 var(--purple);
}

.about-label strong,
.about-label span { display: block; }

.about-label strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
}

.about-label span { margin-top: 4px; font-size: 9px; font-weight: 700; text-transform: uppercase; }

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

.faq-layout {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 92px;
  align-items: start;
}

.faq-heading { position: sticky; top: 125px; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 27px 0;
  color: var(--black);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-question i {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--purple);
  font-style: normal;
  font-size: 21px;
  transition: transform .25s ease, background .25s ease;
}

.faq-item.open .faq-question i {
  color: var(--black);
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-answer p {
  max-width: 760px;
  margin: 0 0 29px;
  padding-right: 55px;
  color: var(--gray);
  font-size: 14px;
}

.consultation-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background: var(--black);
}

.consultation-pattern {
  position: absolute;
  inset: 0;
  opacity: .85;
  background:
    radial-gradient(circle at 85% 25%, rgba(122,0,255,.28), transparent 29%),
    radial-gradient(circle at 12% 78%, rgba(199,255,0,.13), transparent 25%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, auto, 54px 54px, 54px 54px;
}

.consultation-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.consultation-copy > p:not(.section-kicker) { color: rgba(255,255,255,.68); }

.email-button {
  display: inline-flex;
  margin-top: 22px;
  padding: 13px 17px;
  color: var(--black);
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--purple);
}

.consultation-form {
  padding: 46px;
  color: var(--black);
  background: var(--white);
  border-top: 9px solid var(--purple);
  box-shadow: 14px 14px 0 var(--lime);
}

.form-heading { margin-bottom: 30px; }

.form-heading > span {
  color: var(--purple);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
}

.form-heading h3 { margin: 7px 0 11px; font-size: 37px; }

.form-heading p { margin-bottom: 0; color: var(--gray); font-size: 12px; }

.consultation-form label { display: block; margin-bottom: 18px; }

.consultation-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #333;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  outline: 0;
  background: #fafafa;
}

.consultation-form input,
.consultation-form select {
  min-height: 52px;
  padding: 0 14px;
}

.consultation-form textarea {
  min-height: 135px;
  padding: 13px 14px;
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-soft);
}

.consultation-form .invalid {
  border-color: #c53434;
  box-shadow: 0 0 0 3px rgba(197,52,52,.11);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  min-height: 23px;
  margin: 0 0 13px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
}

.form-status.error { color: #b62323; }
.form-status.success { color: #2d6819; }

.form-submit { width: 100%; border: 0; }

.privacy-note {
  margin: 17px 0 0;
  color: var(--gray);
  font-size: 10px;
  text-align: center;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: #020202;
  border-top: 1px solid rgba(255,255,255,.09);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.footer-grid > p {
  margin: 0;
  color: rgba(255,255,255,.46);
  font-size: 10px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,.63);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--lime); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}

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

@media (max-width: 1120px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav,
  .desktop-cta { display: none; }
  .menu-button { display: block; }
  .hero-layout { grid-template-columns: 1fr; gap: 58px; padding-top: 78px; }
  .hero-copy { max-width: 940px; }
  .hero-visual { width: min(100%, 760px); margin-inline: auto; }
  .about-layout,
  .consultation-layout { grid-template-columns: 1fr; }
  .about-visual { justify-self: center; }
}

@media (max-width: 900px) {
  .audience-intro { grid-template-columns: 1fr; gap: 30px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
  }
  .benefit-item:last-child { border-bottom: 0; }
  .section { padding: 88px 0; }
  .split-heading,
  .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .faq-heading { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .process-strip-grid { grid-template-columns: 1fr; }
  .process-strip article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .process-strip article:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-wordmark { margin-inline: auto; align-items: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 680px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 0; }
  .benefit-item {
    grid-template-columns: 78px 1fr;
    gap: 16px;
    padding: 28px 20px;
  }
  .benefit-number { min-width: 0; }
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { min-height: var(--header-height); }
  .wordmark-main { font-size: 19px; }
  .wordmark small { font-size: 8px; }
  .hero { min-height: 0; }
  .hero-layout { min-height: 0; gap: 42px; padding-top: 52px; padding-bottom: 62px; }
  .eyebrow { align-items: flex-start; font-size: 9px; }
  .hero h1 { font-size: clamp(47px, 14vw, 70px); }
  .hero-description { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 550px; }
  .hero-frame {
    width: min(100%, 430px);
    height: 530px;
    border-radius: 190px 190px 20px 20px;
    box-shadow: 9px 9px 0 var(--purple), -6px -6px 0 rgba(199,255,0,.72), 0 28px 70px rgba(0,0,0,.52);
  }
  .hero-badge { min-width: 200px; padding: 12px 13px; }
  .hero-badge-purple { top: 35px; left: 0; }
  .hero-badge-lime { right: 0; bottom: 45px; }
  .standard-grid { grid-template-columns: 1fr; }
  .system-card-copy h3 { font-size: 25px; }
  .section-heading h2,
  .split-heading h2,
  .about-copy h2,
  .faq-heading h2,
  .consultation-copy h2 { font-size: clamp(38px, 12vw, 56px); }
  .about-image-frame { height: 600px; }
  .about-label { right: 10px; bottom: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .consultation-form { padding: 33px 23px; box-shadow: 8px 8px 0 var(--lime); }
  .form-heading h3 { font-size: 30px; }
  .faq-answer p { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .service-marquee-track { animation: none; }
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   PWL CONSULTATION MODAL — 2026-08-05
   ========================================================= */

body.consultation-modal-open {
  overflow: hidden;
}

.consultation-action {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  padding: 42px;
  background: rgba(3, 5, 10, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 24px 55px rgba(3, 5, 10, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.consultation-action h3 {
  margin: 8px 0 14px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.consultation-action > p:not(.section-kicker) {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.76);
}

.consultation-open-button {
  border: 0;
  cursor: pointer;
}

.consultation-modal[hidden] {
  display: none !important;
}

.consultation-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: auto;
}

.consultation-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 5, 14, 0.82);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 0.22s ease;
}

.consultation-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(440px, 1.25fr);
  width: min(900px, calc(100vw - 48px));
  max-height: 88vh;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(214, 180, 92, 0.72);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.consultation-modal.is-open .consultation-modal-backdrop {
  opacity: 1;
}

.consultation-modal.is-open .consultation-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.consultation-modal-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--black-soft);
}

.consultation-modal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 5, 10, 0.04),
      rgba(3, 5, 10, 0.38)
    ),
    linear-gradient(
      90deg,
      transparent 72%,
      rgba(3, 5, 10, 0.18)
    );
  pointer-events: none;
}

.consultation-modal-image img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center;
}

.consultation-modal-content {
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  scrollbar-gutter: stable;
}

.consultation-modal .consultation-form {
  min-width: 0;
  padding: 36px 38px 34px;
  background: var(--white);
  border-top: 0;
  box-shadow: none;
}

.consultation-modal .form-heading {
  padding-right: 34px;
  margin-bottom: 24px;
}

.consultation-modal .form-heading h3 {
  margin: 7px 0 9px;
  font-size: 32px;
  line-height: 1.12;
}

.consultation-modal .consultation-form label {
  margin-bottom: 14px;
}

.consultation-modal .consultation-form input,
.consultation-modal .consultation-form select {
  min-height: 48px;
}

.consultation-modal .consultation-form textarea {
  min-height: 112px;
}

.consultation-modal-close {
  position: absolute;
  z-index: 5;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--white);
  background: rgba(3, 5, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.consultation-modal-close:hover,
.consultation-modal-close:focus-visible {
  color: var(--black);
  background: var(--lime);
  border-color: var(--lime);
  outline: none;
}

@media (max-width: 820px) {
  .consultation-action {
    max-width: none;
    justify-self: stretch;
    padding: 34px;
  }

  .consultation-modal {
    padding: 14px;
  }

  .consultation-modal-panel {
    grid-template-columns: 1fr;
    width: min(620px, calc(100vw - 28px));
    max-height: 92vh;
  }

  .consultation-modal-image {
    display: none;
  }

  .consultation-modal-content {
    max-height: 92vh;
  }

  .consultation-modal .consultation-form {
    padding: 34px 26px 30px;
  }

  .consultation-modal .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .consultation-action {
    padding: 28px 22px;
  }

  .consultation-modal {
    padding: 8px;
  }

  .consultation-modal-panel {
    width: calc(100vw - 16px);
    max-height: 95vh;
  }

  .consultation-modal-content {
    max-height: 95vh;
  }

  .consultation-modal .consultation-form {
    padding: 30px 19px 25px;
  }

  .consultation-modal .form-heading h3 {
    font-size: 27px;
  }

  .consultation-modal-close {
    top: 9px;
    right: 9px;
    width: 36px;
    height: 36px;
    font-size: 25px;
  }
}
/* PWL CONSULTATION SUCCESS MESSAGE */

.consultation-success-message[hidden] {
  display: none !important;
}

.consultation-success-message {
  margin-top: 24px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(3, 5, 10, 0.48);
  border-left: 5px solid var(--lime);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 12px 28px rgba(3, 5, 10, 0.2);
}