:root {
  --bg-main: #050505;
  --bg-secondary: #090d09;
  --bg-surface: rgba(12, 17, 13, 0.8);
  --bg-surface-strong: rgba(15, 21, 16, 0.96);
  --bg-card: rgba(15, 21, 16, 0.86);
  --text-primary: #f4f7f3;
  --text-secondary: #aab3aa;
  --text-muted: #6d776d;
  --accent-primary: #19ff4f;
  --accent-secondary: #0ccb52;
  --accent-soft: rgba(25, 255, 79, 0.12);
  --accent-glow: rgba(25, 255, 79, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(25, 255, 79, 0.18);
  --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.46);
  --shadow-md: 0 24px 48px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --shell-max: 1200px;
  --shell-pad: clamp(1rem, 2vw, 1.75rem);
  --section-space: clamp(6rem, 9vw, 8.75rem);
  --grid-gap: clamp(1rem, 1.8vw, 1.35rem);
  --font-main: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-main);
  color: var(--text-primary);
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 255, 79, 0.08), transparent 18%),
    radial-gradient(circle at 15% 18%, rgba(10, 88, 37, 0.16), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(22, 78, 39, 0.14), transparent 18%),
    linear-gradient(180deg, #040504 0%, #060706 40%, #040504 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  pointer-events: none;
  opacity: 0.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

section[id] {
  scroll-margin-top: 6.75rem;
}

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

p {
  color: var(--text-secondary);
  line-height: 1.78;
}

ul {
  padding-left: 0;
}

:focus-visible {
  outline: 2px solid rgba(25, 255, 79, 0.55);
  outline-offset: 3px;
}

.site-shell {
  width: min(100%, var(--shell-max));
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

.section,
.site-footer,
.hero,
.proof {
  position: relative;
}

.section,
.site-footer {
  padding-block: var(--section-space);
}

.eyebrow,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: #8cf0a4;
}

.eyebrow::before,
.panel-label::before {
  content: "";
  width: 1.35rem;
  height: 1px;
  background: currentColor;
}

.panel-label {
  margin-bottom: 1rem;
  color: #7de69a;
}

.panel-label--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #031006;
  background: linear-gradient(180deg, #31ff73 0%, #14d553 100%);
  box-shadow: 0 18px 44px rgba(25, 255, 79, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 22px 52px rgba(25, 255, 79, 0.28);
}

.button--secondary {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(25, 255, 79, 0.2);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(25, 255, 79, 0.35);
  box-shadow: 0 14px 30px rgba(25, 255, 79, 0.1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding-top: 0.9rem;
  transition: padding-top 0.3s ease;
}

.site-header.is-scrolled {
  padding-top: 0;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 5, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.brand__logo {
  width: clamp(8.75rem, 13vw, 11.75rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a,
.footer__columns > div > a {
  position: relative;
  color: var(--text-secondary);
  transition: color 0.24s ease;
}

.site-nav a:not(.site-nav__cta)::after,
.footer__columns > div > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer__columns > div > a:hover,
.footer__columns > div > a:focus-visible {
  color: var(--text-primary);
}

.site-nav a:not(.site-nav__cta):hover::after,
.site-nav a:not(.site-nav__cta):focus-visible::after,
.footer__columns > div > a:hover::after,
.footer__columns > div > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__cta {
  display: none;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: currentColor;
  transition: top 0.24s ease, transform 0.24s ease, opacity 0.24s ease;
}

.nav-toggle span:nth-child(1) { top: 0.95rem; }
.nav-toggle span:nth-child(2) { top: 1.45rem; }
.nav-toggle span:nth-child(3) { top: 1.95rem; }

.nav-toggle.is-active span:nth-child(1) {
  top: 1.45rem;
  transform: rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  top: 1.45rem;
  transform: rotate(-45deg);
}

.hero {
  padding-top: 8.6rem;
  padding-bottom: 3.5rem;
  overflow: clip;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center top, rgba(25, 255, 79, 0.16), transparent 26%),
    radial-gradient(circle at 20% 22%, rgba(17, 107, 47, 0.18), transparent 24%),
    radial-gradient(circle at 80% 14%, rgba(13, 85, 40, 0.18), transparent 20%);
  pointer-events: none;
}

.hero__intro {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.hero__intro h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(3.5rem, 7vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero__intro h1 span {
  color: var(--accent-primary);
}

.hero__lede {
  max-width: 41rem;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero__actions--center {
  margin-bottom: 0;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  list-style: none;
}

.hero__chips li {
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.hero__visual {
  margin-top: 3rem;
}

.page-hero {
  padding-bottom: 1.5rem;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.hero-stage,
.metrics-band,
.feature-card,
.matrix-card,
.audience-card,
.process-card,
.contact-card,
.testimonial-card,
.testimonial-feature,
.faq-item,
.engage__panel,
.cta-band {
  border: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(14, 19, 15, 0.92) 0%, rgba(10, 13, 11, 0.94) 100%);
  box-shadow: var(--shadow-md);
}

.hero-stage {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 2vw, 1.7rem);
  border-color: rgba(25, 255, 79, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 255, 79, 0.12), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 17, 14, 0.97) 0%, rgba(7, 9, 8, 0.98) 100%);
  background-size: auto, 82px 82px, 82px 82px, auto;
  box-shadow: var(--shadow-lg);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-stage,
.metric-tile,
.feature-card,
.matrix-card,
.audience-card,
.process-card,
.contact-card,
.testimonial-card,
.testimonial-feature,
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-stage__orbit {
  position: absolute;
  border: 1px solid rgba(25, 255, 79, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-stage__orbit--one {
  width: 26rem;
  height: 26rem;
  top: 4.25rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 80px rgba(25, 255, 79, 0.08) inset;
}

.hero-stage__orbit--two {
  width: 18rem;
  height: 18rem;
  top: 8.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-stage__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stage__status {
  display: inline-flex;
  align-items: center;
  padding: 0.68rem 0.95rem;
  border: 1px solid rgba(25, 255, 79, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage__core {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 35rem;
  margin: 0 auto;
  padding: 1rem 0 6.5rem;
  text-align: center;
}

.hero-stage__mark {
  width: clamp(11rem, 22vw, 16rem);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 40px rgba(25, 255, 79, 0.18));
}

.hero-stage__core h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-stage__core p {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.hero-stage--focused .hero-stage__core {
  max-width: min(100%, 38rem);
  margin-bottom: 1.35rem;
  padding: 1.5rem 1.35rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 17, 13, 0.88) 0%, rgba(10, 13, 11, 0.94) 100%);
}

.hero-stage--focused .hero-stage__core h2 {
  max-width: 16ch;
}

.hero-stage__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-stage__badges span {
  padding: 0.58rem 0.8rem;
  border: 1px solid rgba(25, 255, 79, 0.14);
  border-radius: 999px;
  background: rgba(25, 255, 79, 0.06);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.support-card {
  position: relative;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 0%, rgba(25, 255, 79, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(15, 18, 18, 0.98) 0%, rgba(11, 13, 13, 0.98) 100%);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
}

.support-card::before {
  content: "";
  position: absolute;
  inset: auto 12% 0 12%;
  height: 35%;
  background: radial-gradient(circle, rgba(25, 255, 79, 0.08), rgba(25, 255, 79, 0));
  pointer-events: none;
}

.support-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.support-card__list,
.support-card__points {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  list-style: none;
}

.support-card__list li,
.support-card__points div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.support-card__list li:first-child,
.support-card__points div:first-child {
  padding-top: 0;
  border-top: 0;
}

.support-card__points strong {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.support-card__pill-row {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.support-card__pill-row span {
  display: inline-flex;
  width: fit-content;
  padding: 0.6rem 0.78rem;
  border: 1px solid rgba(25, 255, 79, 0.14);
  border-radius: 999px;
  background: rgba(25, 255, 79, 0.06);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.metric-tile,
.feature-card,
.matrix-card,
.audience-card,
.process-card,
.contact-card,
.testimonial-card,
.testimonial-feature {
  padding: 1.45rem;
}

.proof {
  padding-bottom: 0;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
  padding: clamp(1.05rem, 2vw, 1.25rem);
  border-color: rgba(25, 255, 79, 0.12);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    radial-gradient(circle at center top, rgba(25, 255, 79, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(12, 17, 13, 0.94) 0%, rgba(8, 10, 9, 0.96) 100%);
}

.metric-tile__value {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-primary);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.metric-tile p,
.feature-card p,
.matrix-card p,
.audience-card p,
.process-card p,
.contact-card p,
.testimonial-card p,
.testimonial-feature p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 3rem;
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.difference__intro h2,
.engage__copy h2,
.faq__intro h2,
.cta-band h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 4.6vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.feature-grid,
.difference__layout,
.audience-grid,
.process-track,
.faq__layout,
.footer__layout {
  display: grid;
  gap: var(--grid-gap);
}

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

.feature-card {
  grid-column: span 5;
}

.feature-card--wide {
  grid-column: span 7;
}

.feature-card--glow {
  background:
    radial-gradient(circle at right bottom, rgba(25, 255, 79, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(14, 20, 15, 0.95) 0%, rgba(9, 12, 10, 0.94) 100%);
  border-color: rgba(25, 255, 79, 0.16);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(25, 255, 79, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 30%, rgba(25, 255, 79, 0.32), transparent 36%),
    rgba(25, 255, 79, 0.08);
  color: #96ffb2;
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.feature-card h3,
.matrix-card h3,
.audience-card h3,
.process-card h3,
.contact-card h3,
.footer__columns h3 {
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  line-height: 1.18;
}

.feature-card__meta,
.engage__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.feature-card__meta span,
.engage__notes span {
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #c2c8c2;
  font-size: 0.86rem;
}

.difference__layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.difference__intro {
  grid-column: 1 / span 5;
}

.difference__matrix {
  grid-column: 6 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.matrix-card--feature {
  grid-column: span 2;
  min-height: 14rem;
  background:
    radial-gradient(circle at right top, rgba(25, 255, 79, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(15, 21, 16, 0.95) 0%, rgba(10, 13, 11, 0.96) 100%);
  border-color: rgba(25, 255, 79, 0.16);
}

.governance-band {
  padding-top: 0;
}

.governance-band__panel {
  padding: clamp(1.4rem, 2vw, 1.7rem);
  border: 1px solid rgba(25, 255, 79, 0.14);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    radial-gradient(circle at right top, rgba(25, 255, 79, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(12, 17, 13, 0.96) 0%, rgba(8, 10, 9, 0.98) 100%);
  box-shadow: var(--shadow-lg);
}

.governance-band__panel .section-heading {
  margin-bottom: 1.8rem;
}

.governance-band__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.governance-band__chips span {
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 0.88rem;
}

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

.audience-card::before,
.matrix-card::before,
.feature-card::before,
.testimonial-feature::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(25, 255, 79, 0.14), transparent 34%);
  pointer-events: none;
}

.process-track {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-track::before {
  content: "";
  position: absolute;
  left: 2.3rem;
  right: 2.3rem;
  top: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 255, 79, 0.14), rgba(25, 255, 79, 0.4), rgba(25, 255, 79, 0.14));
}

.process-card {
  min-height: 16rem;
}

.process-card__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(25, 255, 79, 0.18);
  border-radius: 50%;
  background: rgba(8, 12, 8, 0.94);
  color: var(--accent-primary);
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(5, 5, 5, 0.85);
}

.engage__panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  padding: clamp(1.35rem, 2vw, 1.6rem);
  border-color: rgba(25, 255, 79, 0.15);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    radial-gradient(circle at left center, rgba(25, 255, 79, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(12, 17, 13, 0.96) 0%, rgba(8, 10, 9, 0.96) 100%);
  box-shadow: var(--shadow-lg);
}

.engage__copy {
  grid-column: 1 / span 5;
}

.engage__actions {
  justify-content: flex-start;
  margin-top: 1.8rem;
  margin-bottom: 0;
}

.contact-grid {
  grid-column: 6 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.contact-grid--cta .contact-card:not(.contact-card--feature) {
  min-height: 100%;
}

.contact-card--feature {
  grid-column: span 2;
  background:
    radial-gradient(circle at right top, rgba(25, 255, 79, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(14, 20, 15, 0.96) 0%, rgba(10, 13, 11, 0.96) 100%);
  border-color: rgba(25, 255, 79, 0.16);
}

.contact-card a {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--accent-primary);
  font-weight: 800;
}

.contact-page {
  padding-top: 2rem;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: start;
}

.contact-form-card,
.contact-aside {
  grid-column: span 6;
}

.contact-form-card {
  padding: clamp(1.5rem, 2vw, 1.8rem);
  border: 1px solid rgba(25, 255, 79, 0.14);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    radial-gradient(circle at left top, rgba(25, 255, 79, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(12, 17, 13, 0.96) 0%, rgba(8, 10, 9, 0.98) 100%);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.success-banner {
  margin-bottom: 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(25, 255, 79, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(25, 255, 79, 0.08);
  color: var(--text-primary);
  font-weight: 700;
}

.inquiry-form {
  margin-top: 1.6rem;
}

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

.field {
  display: grid;
  gap: 0.55rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #879087;
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(25, 255, 79, 0.3);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 4px rgba(25, 255, 79, 0.08);
  outline: none;
}

.form-submit {
  margin-top: 1.2rem;
}

.contact-stack {
  display: grid;
  gap: var(--grid-gap);
  margin-top: var(--grid-gap);
}

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

.testimonial-feature {
  grid-column: 1 / span 7;
  padding: 2rem;
  border-color: rgba(25, 255, 79, 0.14);
  background:
    radial-gradient(circle at 80% 16%, rgba(25, 255, 79, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(14, 20, 15, 0.96) 0%, rgba(9, 12, 10, 0.96) 100%);
}

.testimonial-feature p {
  font-size: clamp(1.16rem, 2vw, 1.4rem);
  line-height: 1.7;
}

.testimonial-card {
  grid-column: span 5;
}

.stars {
  margin-bottom: 1rem;
  color: var(--accent-primary);
  letter-spacing: 0.26em;
}

.testimonial-card span,
.testimonial-feature span {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.faq__layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.faq__intro {
  grid-column: 1 / span 4;
}

.faq-list {
  grid-column: 5 / -1;
  display: grid;
  gap: 0.95rem;
}

.faq-item {
  padding: 0;
}

.faq-question {
  width: 100%;
  padding: 1.28rem 1.35rem;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--accent-primary);
  transition: transform 0.24s ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.35rem 1.35rem;
}

.cta-band {
  padding: clamp(2rem, 4vw, 3.2rem);
  border-color: rgba(25, 255, 79, 0.16);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    radial-gradient(circle at center top, rgba(25, 255, 79, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(13, 18, 14, 0.96) 0%, rgba(8, 10, 9, 0.98) 100%);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-band .eyebrow {
  justify-content: center;
}

.cta-band p {
  max-width: 36rem;
  margin: 0 auto 1.6rem;
}

.site-footer {
  padding-top: 0;
  padding-bottom: 3rem;
}

.footer__layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  grid-column: 1 / span 5;
}

.footer__brand p {
  max-width: 28rem;
  margin-top: 1rem;
}

.footer__columns {
  grid-column: 6 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.footer__columns div {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: transform 0.24s ease, color 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.footer__socials a:hover,
.footer__socials a:focus-visible {
  transform: translateY(-2px);
  color: var(--text-primary);
  border-color: rgba(25, 255, 79, 0.22);
  background: rgba(25, 255, 79, 0.08);
}

.footer__socials svg {
  width: 1rem;
  height: 1rem;
}

.footer__copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

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

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

@media (max-width: 1180px) {
  .signal-card--left,
  .command-core,
  .signal-card--right,
  .difference__intro,
  .difference__matrix,
  .engage__copy,
  .contact-grid,
  .contact-form-card,
  .contact-aside,
  .faq__intro,
  .faq-list,
  .footer__brand,
  .footer__columns {
    grid-column: 1 / -1;
  }

  .hero__command,
  .difference__layout,
  .engage__panel,
  .faq__layout,
  .footer__layout,
  .testimonials__layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .feature-card,
  .feature-card--wide {
    grid-column: span 6;
  }

  .audience-grid,
  .contact-grid,
  .metrics-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page__layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

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

  .process-track::before {
    display: none;
  }

  .testimonial-feature {
    grid-column: 1 / -1;
  }

  .testimonial-card {
    grid-column: span 6;
  }

  .footer__columns {
    margin-top: 0.8rem;
  }
}

@media (max-width: 1024px) {
  section[id] {
    scroll-margin-top: 5.75rem;
  }

  .section,
  .site-footer {
    padding-block: clamp(5rem, 9vw, 7rem);
  }

  .site-header {
    padding-top: 0;
  }

  .header__inner {
    grid-template-columns: auto auto auto;
    gap: 1rem;
    min-height: 4.5rem;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    z-index: 1002;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100vw, 24rem);
    z-index: 1001;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.4rem;
    overflow-y: auto;
    padding: calc(6rem + env(safe-area-inset-top, 0px)) 1.25rem 2rem;
    background:
      radial-gradient(circle at center top, rgba(25, 255, 79, 0.12), transparent 18%),
      rgba(5, 8, 5, 0.96);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: -28px 0 60px rgba(0, 0, 0, 0.36);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    font-size: clamp(1.3rem, 4vw, 1.9rem);
    color: var(--text-primary);
    text-align: center;
  }

  .site-nav__cta {
    display: inline-flex;
    width: min(100%, 26rem);
    margin: 1rem auto 0;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 6.9rem;
    padding-bottom: 3rem;
  }

  .hero-stage__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__visual {
    margin-top: 2.35rem;
  }

  .hero-stage {
    padding: 1.2rem;
  }

  .hero-stage__orbit--one {
    width: 21rem;
    height: 21rem;
    top: 4.9rem;
  }

  .hero-stage__orbit--two {
    width: 14rem;
    height: 14rem;
    top: 7.9rem;
  }

  .hero-stage__core {
    padding: 1.2rem 1rem 4rem;
  }

  .hero-stage--focused .hero-stage__core {
    padding: 1.25rem 1rem 1rem;
  }

  .support-card {
    padding: 1rem;
  }

  .hero-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-shell {
    padding-inline: 1rem;
  }

  .section,
  .site-footer {
    padding-block: clamp(4.5rem, 12vw, 5.75rem);
  }

  .hero {
    padding-top: 6.3rem;
  }

  .hero__intro,
  .page-hero__content {
    max-width: 100%;
  }

  .hero__intro > *,
  .page-hero__content > * {
    max-width: 100%;
  }

  .hero__intro h1,
  .page-hero__content h1 {
    max-width: 12ch;
    margin-inline: auto;
    margin-bottom: 1rem;
    padding-inline: 0.2rem;
    font-size: clamp(2.2rem, 10vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero__lede {
    max-width: 34rem;
    padding-inline: 0.2rem;
    font-size: 0.98rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .feature-grid,
  .difference__matrix,
  .audience-grid,
  .process-track,
  .contact-grid,
  .form-grid,
  .metrics-band,
  .hero-support-grid,
  .footer__columns {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .matrix-card--feature,
  .feature-card--wide,
  .contact-card--feature,
  .testimonial-card,
  .testimonial-feature {
    grid-column: 1 / -1;
  }

  .section-heading h2,
  .difference__intro h2,
  .engage__copy h2,
  .faq__intro h2,
  .cta-band h2 {
    font-size: clamp(2rem, 8vw, 2.9rem);
    text-wrap: balance;
  }

  .hero-stage__header {
    margin-bottom: 1.6rem;
  }

  .hero-stage__core {
    padding: 1rem 0.9rem 2.6rem;
  }

  .hero__chips {
    justify-content: center;
  }

  .hero-stage__orbit--one {
    width: 17rem;
    height: 17rem;
    top: 5.5rem;
  }

  .hero-stage__orbit--two {
    width: 11rem;
    height: 11rem;
    top: 8rem;
  }

  .hero-stage__mark {
    width: clamp(8.5rem, 35vw, 11rem);
    margin-bottom: 1.1rem;
  }

  .hero-stage__core h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    text-wrap: balance;
  }

  .hero-stage__core p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .metric-tile,
  .feature-card,
  .matrix-card,
  .audience-card,
  .process-card,
  .contact-card,
  .testimonial-card,
  .testimonial-feature {
    padding: 1.2rem;
  }

  .section-heading {
    margin-bottom: 2.25rem;
  }

  .process-card {
    min-height: auto;
  }

  .engage__panel,
  .contact-form-card {
    padding: 1.15rem;
  }

  .faq-question {
    padding: 1.05rem 1.1rem;
    font-size: 0.96rem;
  }

  .faq-answer p {
    padding: 0 1.1rem 1.1rem;
  }

  .engage__actions {
    justify-content: center;
  }

  .contact-page {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .brand__logo {
    width: 8rem;
  }

  .header__inner {
    min-height: 4.1rem;
  }

  .nav-toggle {
    width: 2.8rem;
    height: 2.8rem;
  }

  .site-nav {
    padding-inline: 0.95rem;
  }

  .site-nav a {
    font-size: 1.25rem;
  }

  .button {
    width: 100%;
    min-height: 3.15rem;
    padding-inline: 1.1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero {
    padding-top: 5.95rem;
  }

  .hero__intro h1,
  .page-hero__content h1 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 11vw, 2.65rem);
    line-height: 1.01;
  }

  .hero__lede {
    font-size: 0.95rem;
  }

  .hero-stage__status {
    width: 100%;
    justify-content: center;
  }

  .hero-stage__orbit {
    display: none;
  }

  .hero-stage {
    padding: 1rem;
  }

  .hero-stage--focused .hero-stage__core {
    padding: 1rem 0.85rem 0.95rem;
  }

  .hero-stage__core {
    padding-bottom: 0.75rem;
  }

  .hero-stage__core h2 {
    font-size: clamp(1.5rem, 8.6vw, 2rem);
  }

  .support-card {
    padding: 0.95rem;
  }

  .hero__chips li {
    width: 100%;
    text-align: center;
  }

  .hero-stage,
  .engage__panel,
  .cta-band {
    border-radius: 22px;
  }
}

@media (max-width: 400px) {
  .site-shell {
    padding-inline: 0.85rem;
  }

  .button {
    font-size: 0.89rem;
  }

  .hero__intro h1,
  .page-hero__content h1 {
    font-size: clamp(1.8rem, 12vw, 2.25rem);
  }

  .section-heading h2,
  .difference__intro h2,
  .engage__copy h2,
  .faq__intro h2,
  .cta-band h2 {
    font-size: clamp(1.75rem, 9.5vw, 2.2rem);
  }

  .hero-stage__core h2 {
    font-size: clamp(1.4rem, 8.8vw, 1.85rem);
  }

  .hero__chips li,
  .governance-band__chips span,
  .feature-card__meta span,
  .engage__notes span {
    font-size: 0.82rem;
  }
}

.site-nav__list,
.footer-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list li,
.footer-menu li {
  list-style: none;
}

.admin-bar .site-header {
  top: 32px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
  gap: var(--grid-gap);
  align-items: start;
}

.content-card,
.sidebar-panel {
  border: 1px solid var(--border-subtle);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    radial-gradient(circle at right top, rgba(25, 255, 79, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(12, 17, 13, 0.96) 0%, rgba(8, 10, 9, 0.98) 100%);
  box-shadow: var(--shadow-lg);
}

.content-card {
  padding: clamp(1.45rem, 2vw, 1.8rem);
}

.entry-thumbnail {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.35rem;
}

.entry-thumbnail img {
  width: 100%;
  height: auto;
}

.entry-content > :last-child,
.sidebar-panel > :last-child,
.sidebar-widget > :last-child {
  margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  line-height: 1.12;
}

.entry-content a,
.post-card a:not(.entry-thumbnail),
.nav-links .page-numbers {
  color: var(--accent-primary);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.entry-content blockquote {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(25, 255, 79, 0.45);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.entry-content .wp-block-button__link {
  border-radius: 999px;
}

.sidebar-panel {
  padding: 1.15rem;
}

.sidebar-widget + .sidebar-widget {
  margin-top: 1rem;
}

.widget-title {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.post-card a {
  font-weight: 800;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(25, 255, 79, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.nav-links .page-numbers.current {
  color: #031006;
  background: linear-gradient(180deg, #31ff73 0%, #14d553 100%);
}

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

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.8rem 1rem;
  top: 1rem;
  left: 1rem;
  background: #fff;
  color: #000;
  z-index: 999999;
}

@media (max-width: 1024px) {
  .site-nav__list {
    flex-direction: column;
    width: 100%;
    gap: 1.4rem;
  }

  .content-layout,
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
