:root {
  --black: #03050A;
  --black-soft: #07111F;
  --charcoal: #0B1C31;
  --white: #FFFFFF;
  --off-white: #F7FBFF;
  --gray: #68758A;
  --line: rgba(3, 5, 10, 0.13);
  --purple: #0057FF;
  --purple-bright: #00CFFF;
  --purple-soft: rgba(0, 87, 255, 0.16);
  --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.28);
  --chrome-gold: linear-gradient(
    135deg,
    #76500F 0%,
    #D6B45C 24%,
    #FFF3A6 47%,
    #B8862D 72%,
    #F1D678 100%
  );
}

*,
*::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(7, 21, 46, 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(7, 21, 46, 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(7, 21, 46, 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(22,72,216,.18), transparent 30%),
    linear-gradient(135deg, #041126 0%, #091D3B 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(22,72,216,.34), transparent 68%);
}

.hero-glow-lime {
  width: 360px;
  height: 360px;
  bottom: 8%;
  left: -170px;
  background: radial-gradient(circle, rgba(214,180,92,.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(214,180,92,.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(22,72,216,.08), transparent 30%, transparent 72%, rgba(214,180,92,.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(--white);
  background: linear-gradient(90deg, #0F3CAD 0%, var(--purple) 50%, #0F3CAD 100%);
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(228,200,115,.5);
}

.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 {
  color: var(--white);
  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(--gold);
  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(22,72,216,.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(22,72,216,.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: #06152F;
  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: #081A35;
}

.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(22,72,216,.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(214,180,92,.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(22,72,216,.28), transparent 29%),
    radial-gradient(circle at 12% 78%, rgba(214,180,92,.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: #030C1C;
  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(214,180,92,.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; }
}

/* ---------- ELECTRIC LIVING WATER ART DIRECTION ---------- */

body {
  color: var(--black);
  background: var(--white);
}

.site-header {
  background: rgba(3, 5, 10, .82);
  border-bottom-color: rgba(255,255,255,.10);
}

.site-header.scrolled {
  background: rgba(3, 5, 10, .97);
  box-shadow: 0 12px 38px rgba(0,0,0,.42);
}

.mobile-nav {
  background: rgba(3, 5, 10, .98);
}

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

.wordmark small {
  color: var(--lime);
}

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 17%, rgba(0,207,255,.23), transparent 26%),
    radial-gradient(circle at 16% 78%, rgba(0,87,255,.19), transparent 30%),
    linear-gradient(135deg, #03050A 0%, #05101E 48%, #08182D 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8% -4% -8%;
  height: 46%;
  pointer-events: none;
  opacity: .45;
  background:
    repeating-radial-gradient(
      ellipse at 50% 112%,
      rgba(255,255,255,.16) 0 2px,
      transparent 2px 28px
    ),
    radial-gradient(100% 90% at 50% 112%, rgba(0,207,255,.24), transparent 62%);
  animation: living-water-ripple 16s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background:
    linear-gradient(110deg, transparent 0 22%, rgba(255,255,255,.12) 34%, transparent 46%),
    linear-gradient(155deg, transparent 0 56%, rgba(0,207,255,.17) 70%, transparent 82%);
  animation: living-water-light 15s ease-in-out infinite alternate;
}

.hero-grid {
  opacity: .19;
  background-size: 68px 68px;
}

.hero-glow-purple {
  background: radial-gradient(circle, rgba(0,207,255,.45), rgba(0,87,255,.16) 48%, transparent 70%);
}

.hero-glow-lime {
  background: radial-gradient(circle, rgba(199,255,0,.24), rgba(199,255,0,.07) 46%, transparent 70%);
}

.hero h1 > span {
  color: var(--white);
}

.hero h1 > strong {
  color: var(--purple-bright);
  text-shadow: 0 0 36px rgba(0,207,255,.18);
}

.hero h1 > em {
  background: var(--chrome-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.eyebrow > span {
  background: var(--lime);
  box-shadow: 0 0 18px rgba(199,255,0,.35);
}

.hero-note {
  color: rgba(255,255,255,.68);
  border-left-color: var(--lime);
  background: rgba(255,255,255,.025);
}

.hero-frame {
  border: 1px solid rgba(255,255,255,.18);
  background: var(--black-soft);
  box-shadow:
    18px 18px 0 var(--purple),
    -12px -12px 0 rgba(214,180,92,.76),
    0 38px 110px rgba(0,0,0,.62);
}

.hero-frame::before,
.about-image-frame::before,
.system-card::before,
.audience-card::before,
.faq-item::before,
.consultation-form::before,
.process-strip article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--chrome-gold);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .72;
  pointer-events: none;
}

.hero-badge-purple {
  background: rgba(3,5,10,.78);
  border-color: rgba(0,207,255,.42);
}

.hero-badge-purple > span {
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
}

.hero-badge-lime {
  background: rgba(3,5,10,.82);
  border-color: rgba(199,255,0,.48);
}

.button-lime {
  color: #03050A;
  background: linear-gradient(135deg, #E2FF75 0%, #C7FF00 58%, #9FD000 100%);
  box-shadow:
    0 14px 34px rgba(199,255,0,.28),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.button-lime:hover {
  background: linear-gradient(135deg, #EEFF9D 0%, #D1FF2D 58%, #A8DA00 100%);
  box-shadow:
    0 19px 42px rgba(199,255,0,.36),
    inset 0 1px 0 rgba(255,255,255,.62);
}

.button-purple,
.email-button {
  color: var(--white);
  background: linear-gradient(135deg, #0044D1 0%, #0057FF 52%, #00AEEA 100%);
  box-shadow:
    0 14px 34px rgba(0,87,255,.28),
    inset 0 1px 0 rgba(255,255,255,.20);
}

.button-purple:hover,
.email-button:hover {
  background: linear-gradient(135deg, #0057FF 0%, #0078FF 52%, #00CFFF 100%);
}

.button-ghost {
  border-color: rgba(214,180,92,.56);
}

/* Bright contrast block */
.benefits-strip {
  color: var(--black);
  background:
    radial-gradient(circle at 15% 5%, rgba(0,207,255,.10), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
  border-top: 1px solid rgba(0,87,255,.13);
  border-bottom: 1px solid rgba(0,87,255,.13);
}

.benefit-item {
  border-right-color: rgba(3,5,10,.12);
}

.benefit-item::before {
  display: none;
}

.benefit-number {
  color: var(--purple);
  text-shadow: none;
}

.benefit-copy small {
  color: var(--lime);
  text-shadow: 0 0 1px #03050A;
  -webkit-text-stroke: .15px #314000;
}

.benefit-copy h3 {
  color: var(--black);
}

.benefit-copy p {
  color: #627087;
}

/* Electric current banner */
.service-marquee {
  position: relative;
  isolation: isolate;
  color: var(--lime);
  background: linear-gradient(90deg, #003FCE 0%, #0057FF 42%, #00AEEA 78%, #00CFFF 100%);
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(214,180,92,.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 14px 34px rgba(0,87,255,.22);
}

.service-marquee::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .30;
  pointer-events: none;
  background:
    repeating-radial-gradient(
      ellipse at 50% 130%,
      rgba(255,255,255,.18) 0 2px,
      transparent 2px 30px
    ),
    linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.20) 44%, transparent 56%);
  animation: living-water-ripple 12s ease-in-out infinite alternate;
}

.service-marquee-track {
  animation: living-water-marquee 24s linear infinite;
}

.service-marquee span {
  color: var(--lime);
  text-shadow:
    0 1px 0 rgba(3,5,10,.45),
    0 0 16px rgba(199,255,0,.12);
}

.service-marquee i {
  background: var(--chrome-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Dark audience section */
.audience-section {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(0,207,255,.16), transparent 24%),
    radial-gradient(circle at 8% 86%, rgba(0,87,255,.16), transparent 27%),
    linear-gradient(135deg, #03050A 0%, #07111F 60%, #0B1C31 100%);
}

.audience-heading h2,
.audience-summary > strong {
  color: var(--white);
}

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

.audience-summary > p {
  color: rgba(255,255,255,.68);
}

.audience-summary > strong {
  color: #03050A;
  background: linear-gradient(135deg, #E2FF75, var(--lime));
  border-left-color: var(--purple-bright);
}

.audience-grid {
  border-top-color: rgba(255,255,255,.12);
  border-left-color: rgba(255,255,255,.12);
}

.audience-card {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0,87,255,.20), rgba(3,5,10,.82)),
    #07111F;
  border-right-color: rgba(255,255,255,.12);
  border-bottom-color: rgba(255,255,255,.12);
}

.audience-card:hover {
  background:
    radial-gradient(circle at 85% 10%, rgba(0,207,255,.26), transparent 34%),
    linear-gradient(145deg, #06327F, #07111F);
}

.audience-card > span {
  color: #03050A;
  background: var(--lime);
}

.audience-card > p {
  color: var(--purple-bright);
}

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

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

/* Bright services section */
#services.standard-section {
  color: var(--black);
  background:
    radial-gradient(circle at 7% 10%, rgba(0,207,255,.10), transparent 24%),
    radial-gradient(circle at 92% 84%, rgba(199,255,0,.07), transparent 22%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
}

#services.standard-section .section-heading > p:not(.section-kicker) {
  color: #68758A;
}

#services .section-heading h2 {
  color: var(--black);
}

#services .section-heading h2 span {
  color: var(--purple);
}

#services .system-card {
  position: relative;
  background: #FFFFFF;
  border-color: rgba(3,5,10,.12);
  box-shadow: 0 20px 48px rgba(3,5,10,.10);
}

#services .system-card:hover {
  border-color: var(--purple-bright);
  box-shadow: 0 28px 56px rgba(0,87,255,.16);
}

#services .system-card-copy > span {
  color: var(--purple);
}

#services .system-card-copy > p {
  color: var(--purple);
}

#services .system-card-copy h3 {
  color: var(--black);
}

#services .system-card-copy small {
  color: #68758A;
}

/* Electric cobalt process strip */
.process-strip {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 50%, rgba(0,207,255,.25), transparent 24%),
    linear-gradient(90deg, #003FCE 0%, #0057FF 48%, #007FEA 100%);
}

.process-strip article {
  border-right-color: rgba(255,255,255,.20);
}

.process-strip article > span {
  background: var(--chrome-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-strip small {
  color: var(--lime);
}

.process-strip p {
  color: rgba(255,255,255,.78);
}

/* Dark founder section */
.about-section {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(0,207,255,.15), transparent 24%),
    radial-gradient(circle at 10% 86%, rgba(0,87,255,.15), transparent 27%),
    linear-gradient(135deg, #03050A 0%, #07111F 58%, #0B1C31 100%);
}

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

.about-image-frame {
  position: relative;
}

.about-label {
  border-top: 1px solid rgba(214,180,92,.42);
  background: rgba(3,5,10,.92);
}

.about-label strong {
  background: var(--chrome-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-list li::before {
  color: var(--lime);
}

/* Bright FAQ section */
.faq-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(0,207,255,.08), transparent 25%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
}

.faq-item {
  position: relative;
  background: rgba(255,255,255,.72);
  border-bottom-color: rgba(3,5,10,.12);
}

.faq-question {
  color: var(--black);
}

.faq-answer p,
.faq-heading > p {
  color: #68758A;
}

.faq-item.open .faq-question i {
  color: var(--purple);
}

/* Luminous consultation finish */
.consultation-section {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(0,207,255,.35), transparent 27%),
    radial-gradient(circle at 8% 86%, rgba(199,255,0,.12), transparent 22%),
    linear-gradient(135deg, #003FCE 0%, #0057FF 48%, #07111F 100%);
}

.consultation-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8% -6% -8%;
  height: 52%;
  pointer-events: none;
  opacity: .34;
  background:
    repeating-radial-gradient(
      ellipse at 50% 115%,
      rgba(255,255,255,.18) 0 2px,
      transparent 2px 28px
    ),
    radial-gradient(100% 90% at 50% 115%, rgba(0,207,255,.26), transparent 62%);
  animation: living-water-ripple 15s ease-in-out infinite alternate;
}

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

.consultation-form {
  position: relative;
  color: var(--black);
  background: rgba(255,255,255,.97);
  box-shadow: 0 28px 70px rgba(3,5,10,.28);
}

.form-heading span,
.section-kicker {
  background: var(--chrome-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(0,87,255,.11);
}

/* Footer */
.footer {
  color: var(--white);
  background: #03050A;
  border-top: 1px solid rgba(255,255,255,.09);
}

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

@keyframes living-water-ripple {
  0%   { transform: translate3d(-1.5%, 0, 0) scaleX(1); }
  50%  { transform: translate3d(1.2%, -1.4%, 0) scaleX(1.02); }
  100% { transform: translate3d(-1%, 1%, 0) scaleX(.985); }
}

@keyframes living-water-light {
  0%   { transform: translateX(-2%); opacity: .14; }
  100% { transform: translateX(2%); opacity: .26; }
}

@keyframes living-water-marquee {
  0%   { transform: translateX(0) translateY(0); }
  25%  { transform: translateX(-12.5%) translateY(2px); }
  50%  { transform: translateX(-25%) translateY(0); }
  75%  { transform: translateX(-37.5%) translateY(-2px); }
  100% { transform: translateX(-50%) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .consultation-section::before,
  .service-marquee::before,
  .service-marquee-track {
    animation: none !important;
  }
}

/* ---------- TEXT ALIGNMENT AND CONTAINMENT CORRECTIONS ---------- */
.hero-badge,
.benefit-item,
.audience-card,
.system-card,
.system-card-copy,
.process-strip article,
.faq-item,
.faq-question,
.consultation-form {
  min-width: 0;
}

.hero-badge strong,
.hero-badge small,
.benefit-copy,
.benefit-copy h3,
.benefit-copy p,
.audience-card p,
.audience-card h3,
.audience-card small,
.system-card-copy p,
.system-card-copy h3,
.system-card-copy small,
.process-strip h3,
.process-strip p,
.faq-question span,
.faq-answer p {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.system-card-copy > p {
  line-height: 1.45;
}

.faq-item {
  overflow: hidden;
}

.faq-question span {
  min-width: 0;
}

.faq-question i {
  margin-right: 8px;
}

/* ---------- FINAL CTA COLOR HIERARCHY ---------- */
.email-button {
  color: var(--white);
  border: 2px solid transparent;
  background:
    linear-gradient(135deg, rgba(3,5,10,.20), rgba(3,5,10,.20)) padding-box,
    var(--chrome-gold) border-box;
  box-shadow:
    0 12px 28px rgba(3,5,10,.18),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.email-button:hover {
  color: #03050A;
  border-color: transparent;
  background:
    linear-gradient(135deg, #E2FF75 0%, #C7FF00 58%, #9FD000 100%) padding-box,
    var(--chrome-gold) border-box;
  box-shadow:
    0 16px 34px rgba(199,255,0,.24),
    inset 0 1px 0 rgba(255,255,255,.42);
}

/* ---------- FINAL FAITH-BASED IMAGE AND MOBILE ALIGNMENT ---------- */
.hero-frame {
  width: min(100%, 560px);
  height: 560px;
  border-radius: 250px 250px 24px 24px;
}
.hero-frame img { object-fit: cover; object-position: 52% 50%; }
.hero-visual { min-height: 600px; }
.about-visual { width: min(100%, 560px); max-width: 560px; }
.about-image-frame { height: auto; aspect-ratio: 1.18 / 1; }
.about-image-frame img { object-fit: cover; object-position: center 52%; }
.system-card-copy > p { min-height: 2.9em; }
.system-card-copy > small { display: block; min-height: 5.2em; }
@media (max-width: 680px) {
  .hero-visual { min-height: 485px; }
  .hero-frame { width: min(100%, 430px); height: 430px; border-radius: 190px 190px 20px 20px; }
  .benefit-item { grid-template-columns: 96px minmax(0, 1fr); gap: 16px; }
  .benefit-number { min-width: 0; font-size: 44px; letter-spacing: -0.055em; }
  .about-image-frame { height: auto; aspect-ratio: 1.14 / 1; }
  .system-card-copy > p, .system-card-copy > small { min-height: 0; }
}
@media (max-width: 430px) {
  .benefit-item { grid-template-columns: 1fr; gap: 10px; }
  .benefit-number { font-size: 48px; }
}

/* ---------- FOUNDER PORTRAIT FULL-HEAD CORRECTION ---------- */
.about-visual {
  width: min(100%, 520px);
  max-width: 520px;
}

.about-image-frame {
  height: auto;
  aspect-ratio: 4 / 5;
}

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

@media (max-width: 680px) {
  .about-visual {
    width: min(100%, 430px);
  }

  .about-image-frame {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .about-image-frame img {
    object-position: center top;
  }
}

/* ---------- EMAIL BUTTON HARMONY CORRECTION ---------- */
.email-button {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.72);
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(0,207,255,.08));
  box-shadow:
    0 10px 24px rgba(3,5,10,.16),
    inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.email-button:hover {
  color: var(--white);
  border-color: rgba(0,207,255,.95);
  background:
    linear-gradient(135deg, rgba(0,87,255,.22), rgba(0,207,255,.18));
  box-shadow:
    0 14px 30px rgba(0,87,255,.20),
    0 0 0 3px rgba(0,207,255,.08),
    inset 0 1px 0 rgba(255,255,255,.16);
}

/* ---------- CONSULTATION FORM PREMIUM FRAME ---------- */
.consultation-form {
  border: 2px solid transparent;
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(
      135deg,
      #00CFFF 0%,
      #0057FF 18%,
      #D6B45C 38%,
      #FFF3A6 50%,
      #D6B45C 62%,
      #0057FF 82%,
      #00CFFF 100%
    ) border-box;
  box-shadow:
    0 28px 70px rgba(3,5,10,.28),
    0 0 0 1px rgba(255,255,255,.36) inset,
    0 0 28px rgba(0,207,255,.12);
}

.consultation-form::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(0,87,255,.14);
  border-radius: calc(inherit - 10px);
  pointer-events: none;
}

/* ---------- CONSULTATION FORM THICKER PREMIUM FRAME ---------- */
.consultation-form {
  border-width: 5px;
  box-shadow:
    0 30px 76px rgba(3,5,10,.30),
    0 0 0 2px rgba(255,255,255,.28) inset,
    0 0 34px rgba(0,207,255,.20),
    0 0 18px rgba(214,180,92,.16);
}

.consultation-form::after {
  inset: 12px;
  border-width: 2px;
  border-color: rgba(0,87,255,.22);
}

/* ---------- CUSTOM DONE-FOR-YOU DIFFERENTIATION SECTION ---------- */
.difference-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(0,207,255,.17), transparent 24%),
    radial-gradient(circle at 8% 86%, rgba(0,87,255,.18), transparent 26%),
    linear-gradient(135deg, #03050A 0%, #07111F 56%, #0B1C31 100%);
}

.difference-section::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% -8%;
  height: 58%;
  pointer-events: none;
  opacity: .22;
  background:
    repeating-radial-gradient(
      ellipse at 50% 120%,
      rgba(255,255,255,.14) 0 2px,
      transparent 2px 30px
    ),
    radial-gradient(100% 95% at 50% 120%, rgba(0,207,255,.20), transparent 62%);
}

.difference-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 52px;
}

.difference-heading h2 {
  margin: 0;
  max-width: 720px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
}

.difference-heading h2 span {
  display: block;
  color: var(--purple-bright);
}

.difference-summary {
  padding-top: 24px;
}

.difference-summary p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.82;
}

.difference-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.13);
  border-left: 1px solid rgba(255,255,255,.13);
}

.difference-item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 116px;
  padding: 26px 30px;
  background:
    linear-gradient(145deg, rgba(0,87,255,.13), rgba(3,5,10,.68));
  border-right: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.difference-item:hover {
  z-index: 2;
  transform: translateY(-3px);
  background:
    radial-gradient(circle at 90% 10%, rgba(0,207,255,.22), transparent 34%),
    linear-gradient(145deg, rgba(0,87,255,.26), rgba(3,5,10,.82));
  border-color: rgba(0,207,255,.42);
}

.difference-item > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #03050A;
  background: linear-gradient(135deg, #E2FF75 0%, #C7FF00 62%, #9FD000 100%);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(199,255,0,.18);
}

.difference-item h3 {
  margin: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.25;
  letter-spacing: -.025em;
}

.difference-closing {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 18px 28px;
  align-items: center;
  margin-top: 36px;
  padding: 27px 30px;
  border: 1px solid rgba(214,180,92,.34);
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.difference-closing strong {
  color: var(--lime);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  letter-spacing: .02em;
}

.difference-closing span {
  color: var(--purple-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.difference-closing p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

@media (max-width: 920px) {
  .difference-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .difference-summary {
    padding-top: 0;
  }

  .difference-closing {
    grid-template-columns: 1fr;
  }
}

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

  .difference-item {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 100px;
    padding: 22px 20px;
  }

  .difference-item > span {
    width: 46px;
    height: 46px;
  }

  .difference-closing {
    padding: 24px 22px;
  }
}

/* ---------- NETS TO NATIONS FINAL REVISION ---------- */

/* Fishers-of-men banner */
.service-marquee {
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,243,166,.58);
}

.service-marquee-group {
  gap: 24px;
  padding-right: 24px;
}

.service-marquee span {
  font-size: 13px;
  letter-spacing: .075em;
}

.service-marquee i {
  min-width: 14px;
  background: var(--chrome-gold);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chrome-gold-sweep 7s linear infinite;
}

/* Static campaign signature */
.nets-nations-signature {
  position: relative;
  overflow: hidden;
  padding: 34px 0 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 140%, rgba(0,207,255,.17), transparent 46%),
    linear-gradient(180deg, #03050A 0%, #07111F 100%);
  border-bottom: 1px solid rgba(0,207,255,.16);
}

.nets-nations-lockup {
  display: grid;
  grid-template-columns: minmax(38px, 1fr) auto minmax(38px, 1fr);
  gap: 26px;
  align-items: center;
}

.nets-nations-lockup > span {
  height: 2px;
  background: var(--chrome-gold);
  box-shadow: 0 0 18px rgba(214,180,92,.22);
}

.nets-nations-lockup h2 {
  margin: 0;
  background: var(--chrome-gold);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
  text-align: center;
  text-transform: uppercase;
  animation: chrome-gold-sweep 9s ease-in-out infinite;
}

/* Larger, tighter, spill-safe three-box layout */
.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-item {
  min-width: 0;
  min-height: 224px;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 14px;
  padding: 38px 28px;
  align-items: center;
}

.benefit-number {
  min-width: 0;
  white-space: nowrap;
  font-size: clamp(46px, 4.25vw, 64px);
  letter-spacing: -.065em;
}

.benefit-copy {
  min-width: 0;
}

.benefit-copy small {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .11em;
}

.benefit-copy h3 {
  margin-bottom: 12px;
  max-width: 100%;
  overflow-wrap: break-word;
  font-size: clamp(25px, 2.25vw, 30px);
  line-height: 1.08;
}

.benefit-copy p {
  max-width: 100%;
  overflow-wrap: break-word;
  font-size: 14px;
  line-height: 1.72;
}

/* Consolidated faith-community positioning */
.audience-intro {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.audience-heading h2 {
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: .98;
}

.audience-heading h2 em {
  display: block;
  margin-top: 12px;
  background: var(--chrome-gold);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  animation: chrome-gold-sweep 10s ease-in-out infinite;
}

.audience-summary > p {
  margin-bottom: 16px;
  color: rgba(255,255,255,.84);
  font-size: 17px;
  line-height: 1.82;
}

.audience-summary > p:last-child {
  margin-bottom: 0;
}

/* Chrome-gold consistency for key gold text */
.hero h1 > em,
.section-kicker,
.form-heading > span,
.about-label strong,
.process-strip article > span {
  background: var(--chrome-gold);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-kicker,
.form-heading > span {
  text-shadow: 0 1px 0 rgba(3,5,10,.22);
}

.hero-frame,
.about-image-frame,
.consultation-form {
  position: relative;
}

/* Retained and enlarged process */
.process-strip {
  padding: 58px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,207,255,.17), transparent 24%),
    linear-gradient(100deg, #003FCE 0%, #0057FF 54%, #07316E 100%);
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,243,166,.55);
}

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

.process-strip article {
  min-width: 0;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 14px;
  padding: 14px 30px;
  align-items: start;
}

.process-strip article > span {
  min-width: 0;
  font-size: 46px;
  line-height: .9;
  white-space: nowrap;
}

.process-strip small {
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 11px;
  letter-spacing: .12em;
}

.process-strip h3 {
  margin-bottom: 11px;
  overflow-wrap: break-word;
  font-size: clamp(24px, 2.1vw, 28px);
  line-height: 1.08;
}

.process-strip p {
  max-width: 100%;
  overflow-wrap: break-word;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.7;
}

/* Restrained highlight movement on selected number icons */
.audience-card > span,
.hero-badge > span {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.audience-card > span::after,
.hero-badge > span::after {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 22%,
    rgba(255,255,255,.72) 45%,
    transparent 68%
  );
  transform: translateX(-135%);
  animation: icon-highlight-sweep 7.5s ease-in-out infinite;
}

.audience-card:nth-child(2) > span::after { animation-delay: 1.1s; }
.audience-card:nth-child(3) > span::after { animation-delay: 2.2s; }
.audience-card:nth-child(4) > span::after { animation-delay: 3.3s; }
.hero-badge-lime > span::after { animation-delay: 1.8s; }

@keyframes chrome-gold-sweep {
  0%, 18% { background-position: 0% 50%; }
  52%, 70% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes icon-highlight-sweep {
  0%, 64% { transform: translateX(-135%); opacity: 0; }
  70% { opacity: .85; }
  82% { transform: translateX(135%); opacity: .35; }
  100% { transform: translateX(135%); opacity: 0; }
}

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

  .benefit-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(3,5,10,.12);
  }

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

  .audience-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .process-strip-grid {
    grid-template-columns: 1fr;
  }

  .process-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
  }

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

@media (max-width: 680px) {
  .service-marquee span {
    font-size: 11px;
  }

  .nets-nations-signature {
    padding: 27px 0 29px;
  }

  .nets-nations-lockup {
    grid-template-columns: minmax(18px, 1fr) minmax(0, auto) minmax(18px, 1fr);
    gap: 14px;
  }

  .nets-nations-lockup h2 {
    font-size: clamp(25px, 8.2vw, 34px);
    line-height: 1.04;
  }

  .benefit-item {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 12px;
    padding: 30px 20px;
  }

  .benefit-number {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .benefit-copy small {
    font-size: 10px;
  }

  .benefit-copy h3 {
    font-size: clamp(22px, 6.5vw, 27px);
  }

  .benefit-copy p {
    font-size: 13.5px;
  }

  .audience-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .audience-summary > p {
    font-size: 16px;
  }

  .process-strip {
    padding: 46px 0;
  }

  .process-strip article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 24px 8px;
  }

  .process-strip article > span {
    font-size: 38px;
  }

  .process-strip h3 {
    font-size: 23px;
  }

  .process-strip p {
    font-size: 13.5px;
  }
}

@media (max-width: 390px) {
  .benefit-item {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .benefit-number {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-marquee i,
  .nets-nations-lockup h2,
  .audience-heading h2 em,
  .audience-card > span::after,
  .hero-badge > span::after {
    animation: none !important;
  }
}

/* ---------- FINAL READABILITY, ALIGNMENT & COPY REFINEMENT ---------- */

/* The banner remains exact, but now reads more clearly at a slower pace. */
.service-marquee-viewport {
  padding: 20px 0;
}

.service-marquee-track {
  animation-duration: 34s;
}

.service-marquee-group {
  gap: 24px;
  padding-right: 24px;
}

.service-marquee span {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .045em;
  line-height: 1.4;
  text-shadow:
    0 1px 0 rgba(3,5,10,.48),
    0 0 14px rgba(0,207,255,.18);
}

.service-marquee .banner-lead strong {
  color: #FFF3A6;
  font-weight: 900;
  text-shadow:
    0 1px 0 rgba(3,5,10,.55),
    0 0 13px rgba(214,180,92,.22);
}

.service-marquee i {
  font-size: 15px;
}

/* Small section identifiers need solid color, not transparent gradient text. */
.section-kicker {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #FFF3A6;
  -webkit-text-fill-color: currentColor;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .10em;
  line-height: 1.4;
  text-shadow: 0 1px 0 rgba(3,5,10,.45);
}

.faq-section .section-kicker {
  color: #0057FF;
  text-shadow: none;
}

/* Benefit boxes: same top baseline, same heading row, same paragraph row. */
.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.benefit-item {
  min-width: 0;
  min-height: 252px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(66px, auto) 1fr;
  gap: 15px;
  align-content: start;
  align-items: start;
  padding: 36px 28px;
}

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

.benefit-number {
  min-width: 0;
  flex: 0 0 auto;
  color: #0057FF;
  white-space: nowrap;
  font-size: clamp(44px, 4vw, 60px);
  line-height: .9;
}

.benefit-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 11px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #003FCE 0%, #0057FF 58%, #008CEB 100%);
  border: 1px solid rgba(0,87,255,.18);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .065em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0,87,255,.14);
}

.benefit-item > h3 {
  align-self: start;
  margin: 0;
  color: #03050A;
  font-size: clamp(27px, 2.25vw, 30px);
  line-height: 1.08;
}

.benefit-item > p {
  align-self: start;
  margin: 0;
  color: #536278;
  font-size: 15px;
  line-height: 1.72;
}

/* One concise Who We Serve statement. */
.audience-heading h2 em {
  margin-top: 10px;
}

.audience-summary > p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.82;
}

/* Simplified Digital Outreach Systems cards. */
.standard-section .section-heading > p:not(.section-kicker) {
  max-width: 770px;
  margin-inline: auto;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.78;
}

.system-card-copy {
  display: grid;
  grid-template-rows: auto minmax(66px, auto) 1fr;
  align-content: start;
  padding: 29px 29px 33px;
}

.system-card-copy > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  place-items: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #03050A;
  background: var(--chrome-gold);
  border-radius: 50%;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(214,180,92,.18);
}

.system-card-copy h3 {
  margin: 0 0 13px;
  font-size: clamp(26px, 2.2vw, 30px);
  line-height: 1.08;
}

.system-card-copy small {
  display: block;
  min-height: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.72;
}

/* Process: same top row and legible labels. */
.process-strip-grid {
  align-items: stretch;
}

.process-strip article {
  min-width: 0;
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(60px, auto) 1fr;
  gap: 14px;
  align-content: start;
  padding: 24px 30px;
}

.process-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.process-top > span {
  flex: 0 0 auto;
  background: var(--chrome-gold);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: .9;
  white-space: nowrap;
}

.process-top > small {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 6px 10px;
  color: #03050A;
  background: linear-gradient(135deg, #E8FF92 0%, #C7FF00 64%, #A4D600 100%);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(199,255,0,.14);
}

.process-strip article > h3 {
  margin: 0;
  font-size: clamp(27px, 2.15vw, 29px);
  line-height: 1.08;
}

.process-strip article > p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.7;
}

/* Founder section now describes the founder's approach, not the service list again. */
.about-copy > p:not(.section-kicker) {
  color: rgba(255,255,255,.84);
  font-size: 17px;
  line-height: 1.82;
}

.feature-list li {
  font-size: 15px;
}

/* FAQ questions now answer decision-stage concerns. */
.faq-heading > p {
  font-size: 16px;
  line-height: 1.75;
}

.faq-question span {
  font-size: 18px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
}

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

  .benefit-item {
    min-height: 0;
    grid-template-rows: auto auto auto;
  }

  .system-card-copy {
    grid-template-rows: auto auto auto;
  }
}

@media (max-width: 680px) {
  .service-marquee-viewport {
    padding: 17px 0;
  }

  .service-marquee-track {
    animation-duration: 40s;
  }

  .service-marquee span {
    font-size: 12.5px;
    letter-spacing: .035em;
  }

  .section-kicker {
    font-size: 12px;
    letter-spacing: .085em;
  }

  .benefit-item {
    min-height: 0;
    gap: 13px;
    padding: 29px 21px;
  }

  .benefit-top {
    gap: 10px;
  }

  .benefit-number {
    font-size: clamp(40px, 11vw, 48px);
  }

  .benefit-label {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .benefit-item > h3 {
    font-size: clamp(23px, 7vw, 26px);
  }

  .benefit-item > p {
    font-size: 14px;
  }

  .standard-section .section-heading > p:not(.section-kicker),
  .audience-summary > p,
  .about-copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .system-card-copy {
    padding: 25px 23px 29px;
  }

  .system-card-copy h3 {
    font-size: 25px;
  }

  .system-card-copy small {
    font-size: 13.5px;
  }

  .process-strip article {
    min-height: 0;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding: 25px 9px;
  }

  .process-top > span {
    font-size: 40px;
  }

  .process-top > small {
    min-height: 27px;
    font-size: 12px;
  }

  .process-strip article > h3 {
    font-size: 24px;
  }

  .process-strip article > p {
    font-size: 14px;
  }

  .faq-question span {
    font-size: 17px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-marquee-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    animation: none !important;
  }

  .service-marquee-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4px 22px;
  }

  .service-marquee-group[aria-hidden="true"] {
    display: none;
  }
}

/* ---------- SIGNATURE MOMENT & FOUNDER HEADING RESTORATION ---------- */

/* Hero visual frame: cleaner, more deliberate premium structure */
.hero-visual,
.hero-image-card,
.hero-frame,
.hero-photo-wrap,
.hero-photo {
  position: relative;
}

.hero-image-card,
.hero-frame {
  border: 0 !important;
  box-shadow:
    0 20px 55px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.06);
  overflow: visible;
}

.hero-image-card::before,
.hero-frame::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,207,255,.22), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(0,87,255,.16), transparent 34%);
  filter: blur(16px);
  z-index: 0;
}

.hero-image-card::after,
.hero-frame::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(214,180,92,.00) 0 7%, rgba(214,180,92,.92) 7% 10%, rgba(214,180,92,.00) 10% 100%),
    linear-gradient(180deg, rgba(214,180,92,.00) 0 7%, rgba(214,180,92,.92) 7% 10%, rgba(214,180,92,.00) 10% 100%),
    linear-gradient(270deg, rgba(214,180,92,.00) 0 7%, rgba(214,180,92,.92) 7% 10%, rgba(214,180,92,.00) 10% 100%),
    linear-gradient(0deg, rgba(214,180,92,.00) 0 7%, rgba(214,180,92,.92) 7% 10%, rgba(214,180,92,.00) 10% 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,243,166,.24),
    0 0 0 1px rgba(214,180,92,.10);
}

.hero-image-card > img,
.hero-frame > img,
.hero-photo img,
.hero-image-card picture,
.hero-frame picture {
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.hero-image-card .hero-badge,
.hero-frame .hero-badge {
  z-index: 3;
}

/* Nets to Nations: make it feel like a true signature band */
.nets-nations-signature {
  position: relative;
  overflow: hidden;
  padding: 42px 0 46px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,207,255,.17), transparent 42%),
    radial-gradient(circle at 50% 110%, rgba(214,180,92,.18), transparent 38%),
    linear-gradient(180deg, #04101E 0%, #07192E 52%, #05101F 100%);
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,243,166,.26);
}

.nets-nations-signature::before {
  content: "";
  position: absolute;
  inset: auto -8% -60% -8%;
  height: 120%;
  pointer-events: none;
  opacity: .18;
  background:
    repeating-radial-gradient(
      ellipse at 50% 0%,
      rgba(255,255,255,.16) 0 2px,
      transparent 2px 24px
    );
}

.nets-nations-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  gap: 22px;
  align-items: center;
}

.nets-nations-center {
  position: relative;
  padding: 18px 30px 20px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow:
    0 0 0 1px rgba(255,243,166,.10),
    0 16px 35px rgba(0,0,0,.22);
}

.nets-nations-center::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,207,255,.24), transparent 44%);
  filter: blur(14px);
}

.nets-nations-center p {
  margin: 0 0 8px;
  color: #E8FF92;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.nets-nations-lockup h2 {
  margin: 0;
  background: var(--chrome-gold);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.05em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(214,180,92,.12);
  animation: chrome-gold-sweep 10s ease-in-out infinite;
}

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

.nets-ornament-right {
  justify-content: flex-end;
}

.nets-ornament .orb {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--chrome-gold);
  box-shadow:
    0 0 0 1px rgba(255,243,166,.16),
    0 0 24px rgba(214,180,92,.28);
}

.nets-ornament .wave {
  position: relative;
  height: 10px;
  flex: 1 1 auto;
  min-width: 60px;
}

.nets-ornament .wave::before,
.nets-ornament .wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 2px solid rgba(255,243,166,.62);
  border-radius: 999px;
}

.nets-ornament .wave::before {
  top: 1px;
  transform: translateY(0);
}

.nets-ornament .wave::after {
  top: 5px;
  border-top-color: rgba(0,207,255,.55);
}

/* Founder section spacing after removing the small label */
.about-copy h2 {
  margin-top: 0;
}

/* Keep headings readable on smaller screens */
@media (max-width: 860px) {
  .nets-nations-lockup {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nets-ornament,
  .nets-ornament-right {
    justify-content: center;
  }

  .nets-ornament .wave {
    max-width: 180px;
  }

  .nets-nations-center {
    border-radius: 28px;
    padding: 18px 20px 20px;
  }
}

@media (max-width: 680px) {
  .hero-image-card::before,
  .hero-frame::before {
    inset: -14px;
  }

  .hero-image-card::after,
  .hero-frame::after {
    inset: -9px;
  }

  .nets-nations-signature {
    padding: 34px 0 38px;
  }

  .nets-nations-center p {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .nets-nations-lockup h2 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .nets-ornament {
    gap: 10px;
  }

  .nets-ornament .wave {
    min-width: 40px;
  }
}

/* ---------- OUTER HERO FRAME + STANDALONE GOLD-FOIL SIGNATURE ---------- */

/* Reset the previous overlay frame so it no longer sits inside the image */
.hero-image-card::before,
.hero-frame::before,
.hero-image-card::after,
.hero-frame::after {
  content: none !important;
  display: none !important;
}

/* Build a clean outer frame around the image container */
.hero-image-card,
.hero-frame {
  position: relative;
  overflow: visible !important;
  padding: 0 !important;
  border-radius: 22px;
  background: transparent !important;
  box-shadow:
    0 22px 54px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.05);
}

.hero-image-card > img,
.hero-frame > img,
.hero-image-card picture,
.hero-frame picture,
.hero-photo img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  display: block;
}

/* outer frame sits clearly outside the image */
.hero-image-card .hero-frame-outline,
.hero-frame .hero-frame-outline {
  display: none;
}

.hero-image-card {
  isolation: isolate;
}

.hero-image-card::marker {
  content: "";
}

.hero-image-card > .hero-badge,
.hero-frame > .hero-badge {
  z-index: 4;
}

.hero-image-card::selection {
  background: transparent;
}

.hero-image-card:before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 1;
  pointer-events: none;
  border-radius: 28px;
  box-shadow:
    0 0 0 2px rgba(214,180,92,.78),
    0 0 0 9px rgba(255,243,166,.08);
}

.hero-image-card:after {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 0;
  pointer-events: none;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0,207,255,.22), transparent 30%),
    radial-gradient(circle at 82% 82%, rgba(214,180,92,.18), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(0,87,255,.12), transparent 56%);
  filter: blur(10px);
}

/* Remove extra signature wording and make the phrase stand alone */
.nets-nations-signature {
  position: relative;
  overflow: hidden;
  padding: 38px 0 42px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,207,255,.14), transparent 44%),
    linear-gradient(180deg, #040A14 0%, #071220 48%, #040A14 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,243,166,.18);
}

.nets-nations-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%, rgba(255,243,166,.10), transparent 28%);
  filter: blur(14px);
}

.nets-nations-lockup {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.nets-nations-lockup h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.055em;
  text-align: center;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, #FFF7D6 0%, #F6E49D 20%, #D9B54C 44%, #FFF1B8 58%, #B98520 78%, #FDE9A0 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(90, 58, 5, .25);
  text-shadow:
    0 2px 0 rgba(80, 52, 6, .10),
    0 10px 30px rgba(214,180,92,.18);
}

@media (max-width: 680px) {
  .hero-image-card:before {
    inset: -12px;
    border-radius: 24px;
  }

  .hero-image-card:after {
    inset: -18px;
    border-radius: 28px;
  }

  .nets-nations-signature {
    padding: 30px 0 34px;
  }

  .nets-nations-lockup h2 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.02;
  }
}
/* =========================================================
   FBO CONSULTATION MODAL — 2026-08-04
   ========================================================= */

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

/* Consultation invitation shown on the page */
.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;
}

/* Hidden state must override every other modal rule */
.consultation-modal[hidden] {
  display: none !important;
}

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

/* Darkened page behind the form */
.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;
}

/* Actual consultation box */
.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);
}

/* Image panel */
.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;
}

/* Scroll only the form side when necessary */
.consultation-modal-content {
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  scrollbar-gutter: stable;
}

/* Override the original full-page form styling */
.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;
}

/* Close button */
.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;
}

/* Tablet and mobile */
@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;
  }
}
    /* FBO 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);
    }