:root {
  --bg: #05070f;
  --bg-deep: #02040a;
  --panel: rgba(8, 14, 31, 0.74);
  --panel-strong: rgba(10, 18, 40, 0.9);
  --line: rgba(112, 186, 255, 0.24);
  --line-strong: rgba(83, 240, 255, 0.46);
  --line-hot: rgba(255, 63, 190, 0.42);
  --text: #f8fbff;
  --muted: #b7c2d8;
  --muted-strong: #dce7f7;
  --blue: #1aa8ff;
  --cyan: #53f0ff;
  --violet: #7b5cff;
  --magenta: #ff3fbe;
  --radius: 8px;
  --container: 1200px;
  --shadow-blue: 0 0 38px rgba(26, 168, 255, 0.26);
  --shadow-pink: 0 0 42px rgba(255, 63, 190, 0.2);
  --hero-glow-x: 72%;
  --hero-glow-y: 34%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1000px 620px at 78% 8%, rgba(26, 168, 255, 0.2), transparent 60%),
    radial-gradient(860px 620px at 18% 30%, rgba(123, 92, 255, 0.16), transparent 62%),
    radial-gradient(720px 520px at 84% 76%, rgba(255, 63, 190, 0.13), transparent 66%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(83, 240, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 240, 255, 0.034) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 20%, rgba(26, 168, 255, 0.08) 20.1%, transparent 20.65% 58%, rgba(255, 63, 190, 0.065) 58.1%, transparent 58.7%);
  background-size: 56px 56px, 56px 56px, auto;
  -webkit-mask-image: linear-gradient(180deg, black 0 72%, transparent 100%);
  mask-image: linear-gradient(180deg, black 0 72%, transparent 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.04), transparent 34%);
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(83, 240, 255, 0.95);
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #02101d;
  background: var(--cyan);
  border-radius: var(--radius);
  font-weight: 850;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(2, 4, 10, 0.92), rgba(2, 4, 10, 0.46));
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 4vw;
  bottom: 0;
  left: 4vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(83, 240, 255, 0.32), rgba(255, 63, 190, 0.22), transparent);
  opacity: 0.72;
  animation: headerEnergy 7s ease-in-out infinite;
}

.site-header.is-scrolled {
  border-color: rgba(114, 183, 255, 0.2);
  background: rgba(3, 6, 15, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  min-width: max-content;
}

.brand-mark-img {
  width: clamp(66px, 5.8vw, 90px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(83, 240, 255, 0.34)) drop-shadow(0 0 16px rgba(255, 63, 190, 0.14));
}

.brand-copy {
  display: grid;
  line-height: 1.02;
  color: var(--text);
  font-weight: 850;
  text-shadow: 0 0 18px rgba(26, 168, 255, 0.18);
}

.brand-copy span {
  color: var(--text);
  font-size: clamp(0.86rem, 1.1vw, 1.02rem);
}

.brand-copy strong {
  background: linear-gradient(96deg, var(--text) 0 22%, var(--blue) 42%, var(--violet) 70%, var(--text) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.footer-brand .brand-mark-img {
  width: 100px;
}

.footer-brand .brand-copy span {
  font-size: 1rem;
}

.footer-brand .brand-copy strong {
  font-size: 1.25rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 760;
}

.primary-nav a {
  position: relative;
  padding-block: 9px;
  transition: color 180ms ease, text-shadow 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover {
  color: var(--text);
  text-shadow: 0 0 16px rgba(83, 240, 255, 0.36);
}

.primary-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(83, 240, 255, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(26, 168, 255, 0.13), rgba(255, 63, 190, 0.12)),
    rgba(5, 9, 21, 0.64);
  box-shadow: inset 0 0 18px rgba(83, 240, 255, 0.07), 0 0 22px rgba(255, 63, 190, 0.08);
}

.nav-mobile-only {
  display: none;
}

.nav-desktop-only {
  display: block;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 16, 34, 0.78);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
  border-radius: 999px;
}

/* Hero */
.section-grid {
  position: relative;
  isolation: isolate;
}

.hero {
  min-height: 735px;
  padding-top: 112px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.94) 0%, rgba(2, 4, 10, 0.76) 31%, rgba(2, 4, 10, 0.18) 58%, rgba(2, 4, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 4, 10, 0.06) 0%, rgba(2, 4, 10, 0.08) 68%, rgba(2, 4, 10, 0.92) 100%),
    url("../assets/img/hero-command-center.webp") 58% top / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 4, 10, 0.08) 0 58%, rgba(2, 4, 10, 0.82) 100%),
    radial-gradient(760px 460px at var(--hero-glow-x) var(--hero-glow-y), rgba(83, 240, 255, 0.16), transparent 70%),
    radial-gradient(520px 360px at calc(var(--hero-glow-x) + 10%) calc(var(--hero-glow-y) + 18%), rgba(255, 63, 190, 0.1), transparent 74%);
  animation: ambientGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: 84px;
  left: 42%;
  z-index: -1;
  height: 220px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(83, 240, 255, 0.18), transparent 68%);
  transform: perspective(600px) rotateX(64deg);
  filter: blur(2px);
}

.hero-circuit {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(83, 240, 255, 0.12) 12.1%, transparent 12.4% 48%, rgba(255, 63, 190, 0.11) 48.1%, transparent 48.4%),
    linear-gradient(135deg, transparent 0 24%, rgba(83, 240, 255, 0.09) 24.1%, transparent 24.5% 72%, rgba(123, 92, 255, 0.08) 72.1%, transparent 72.5%);
  opacity: 0.38;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 18%, black 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 18%, black 88%, transparent 100%);
}

.hero-scan {
  position: absolute;
  inset: 84px 0 auto;
  z-index: -1;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(83, 240, 255, 0.72), rgba(255, 63, 190, 0.42), transparent);
  box-shadow: 0 0 20px rgba(83, 240, 255, 0.32);
  opacity: 0.42;
  animation: heroScan 6.5s ease-in-out infinite;
}

.hero-inner {
  display: block;
  align-items: center;
  min-height: 540px;
  padding: 52px 0 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(83, 240, 255, 0.28);
}

.hero h1,
.section-heading h2,
.sticky-copy h2,
.apply-copy h2 {
  margin: 0;
  color: var(--text);
  font-weight: 920;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.8rem, 4.9vw, 5.2rem);
  line-height: 0.99;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  text-wrap: balance;
}

.section-heading h2,
.sticky-copy h2,
.apply-copy h2 {
  line-height: 1.02;
}

.hero-title-gradient,
.section-heading h2 span {
  background: linear-gradient(100deg, var(--blue), var(--violet) 48%, var(--magenta));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-body {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-support-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-support-link:hover {
  color: var(--cyan);
}

.hero-support-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 12px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::before {
  position: absolute;
  inset: -80% auto -80% -40%;
  width: 38%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg) translateX(-160%);
  transition: transform 520ms ease;
}

.button:hover::before {
  transform: skewX(-18deg) translateX(430%);
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(110deg, var(--blue), var(--violet) 48%, var(--magenta));
  box-shadow: 0 18px 48px rgba(26, 168, 255, 0.22), 0 14px 36px rgba(255, 63, 190, 0.18);
}

.button-primary:hover {
  box-shadow: 0 22px 58px rgba(26, 168, 255, 0.34), 0 18px 46px rgba(255, 63, 190, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 63, 190, 0.54);
  background: rgba(5, 8, 18, 0.66);
  color: var(--text);
  box-shadow: inset 0 0 24px rgba(26, 168, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(83, 240, 255, 0.72);
  box-shadow: var(--shadow-blue);
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button .button-icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  stroke-width: 2;
}

.trust-rail {
  position: relative;
  max-width: 485px;
  margin-top: 32px;
  padding: 0;
  border-left: 0;
  background: none;
}

.command-status {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-width: 680px;
  margin-top: 28px;
  padding: 12px;
  border: 1px solid rgba(114, 183, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(83, 240, 255, 0.08), rgba(255, 63, 190, 0.045)),
    rgba(3, 7, 17, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 34px rgba(26, 168, 255, 0.08);
  backdrop-filter: blur(10px);
}

.command-status div {
  position: relative;
  min-height: 56px;
  padding: 10px 9px;
  border: 1px solid rgba(114, 183, 255, 0.14);
  border-radius: 6px;
  background: rgba(2, 4, 10, 0.46);
}

.command-status div::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(83, 240, 255, 0.68);
  animation: statusPulse 2.6s ease-in-out infinite;
}

.command-status span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.command-status strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 0.84rem;
}

.trust-rail::before,
.trust-rail::after {
  display: none;
}

.trust-rail p {
  margin: 0 0 12px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 760;
}

.trust-rail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-rail li {
  padding: 7px 10px;
  border: 1px solid rgba(114, 183, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 14, 31, 0.48);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.credibility-strip {
  position: relative;
  border-top: 1px solid rgba(114, 183, 255, 0.2);
  border-bottom: 1px solid rgba(114, 183, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(26, 168, 255, 0.08), transparent 24%, rgba(255, 63, 190, 0.08)),
    rgba(3, 6, 15, 0.82);
  backdrop-filter: blur(18px);
}

.credibility-strip::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(83, 240, 255, 0.7), rgba(255, 63, 190, 0.38), transparent);
}

.credibility-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.credibility-inner span {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 18px;
  border-left: 1px solid rgba(114, 183, 255, 0.14);
  color: var(--muted-strong);
  font-size: clamp(0.72rem, 0.82vw, 0.8rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.credibility-inner span:last-child {
  border-right: 1px solid rgba(114, 183, 255, 0.14);
}

.credibility-inner i {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(83, 240, 255, 0.72);
  background: linear-gradient(135deg, rgba(83, 240, 255, 0.7), rgba(255, 63, 190, 0.55));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 16px rgba(83, 240, 255, 0.45);
}

/* Shared sections */
.section {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
}

.section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 1360px);
  height: 1px;
  transform: translateX(-50%);
  content: "";
  background: linear-gradient(90deg, transparent, rgba(83, 240, 255, 0.34), rgba(255, 63, 190, 0.28), transparent);
}

.section-node {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(83, 240, 255, 0.12);
  pointer-events: none;
  transform: rotate(45deg);
}

.node-left {
  top: 128px;
  left: -170px;
  box-shadow: inset 0 0 44px rgba(83, 240, 255, 0.05);
}

.node-right {
  right: -160px;
  bottom: 120px;
  box-shadow: inset 0 0 44px rgba(255, 63, 190, 0.05);
}

.section-heading {
  max-width: 830px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.sticky-copy h2,
.apply-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4.1rem);
}

.section-heading p,
.sticky-copy p,
.apply-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading p {
  max-width: 760px;
  margin: 22px auto 0;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.four-up {
  grid-template-columns: repeat(4, 1fr);
}

.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.services-grid {
  grid-template-columns: repeat(6, 1fr);
}

.services-grid .service-card {
  grid-column: span 3;
}

.services-grid .service-card:last-child {
  grid-column: 2 / span 4;
}

.feature-card,
.service-card,
.answer-card,
.fit-card,
.mini-card,
.process-step,
.application-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 24, 52, 0.86), rgba(5, 9, 22, 0.72)),
    rgba(10, 16, 34, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.feature-card::before,
.service-card::before,
.answer-card::before,
.fit-card::before,
.mini-card::before,
.process-step::before,
.application-form::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(83, 240, 255, 0.11), transparent 34%, rgba(255, 63, 190, 0.08)),
    linear-gradient(rgba(83, 240, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 240, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.feature-card::after,
.service-card::after,
.answer-card::after,
.fit-card::after,
.mini-card::after,
.application-form::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(83, 240, 255, 0.5);
  border-right: 1px solid rgba(255, 63, 190, 0.38);
  content: "";
  opacity: 0.75;
}

.feature-card:hover,
.service-card:hover,
.answer-card:hover,
.fit-card:hover,
.mini-card:hover,
.process-step:hover {
  border-color: rgba(83, 240, 255, 0.5);
  box-shadow: var(--shadow-blue), var(--shadow-pink), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-card:hover::before,
.service-card:hover::before,
.answer-card:hover::before,
.fit-card:hover::before,
.mini-card:hover::before,
.process-step:hover::before {
  opacity: 1;
}

.feature-card,
.service-card,
.answer-card,
.fit-card {
  padding: 30px;
}

.feature-card h3,
.service-card h3,
.answer-card h3,
.mini-card h3,
.process-step h3 {
  position: relative;
  margin: 0;
  color: var(--text);
  font-size: 1.16rem;
}

.feature-card p,
.service-card p,
.answer-card p,
.fit-card p,
.process-step p {
  position: relative;
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-size: 0.98rem;
}

.card-icon {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--cyan);
  border: 1px solid rgba(83, 240, 255, 0.4);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26, 168, 255, 0.13), rgba(255, 63, 190, 0.07));
  box-shadow: inset 0 0 18px rgba(255, 63, 190, 0.12), 0 0 24px rgba(83, 240, 255, 0.18);
}

.card-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  overflow: visible;
}

/* What We Fix */
.problem-section {
  background:
    radial-gradient(720px 460px at 86% 42%, rgba(255, 63, 190, 0.09), transparent 62%),
    linear-gradient(180deg, rgba(5, 7, 15, 0.3), rgba(5, 7, 15, 0.8));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.sticky-copy p:not(.eyebrow) {
  margin-top: 22px;
}

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

.mini-card {
  min-height: 132px;
  padding: 22px 22px 24px;
}

.mini-card::before {
  opacity: 0.16;
  background:
    linear-gradient(180deg, transparent 0 28%, rgba(83, 240, 255, 0.12) 28.5%, transparent 30%),
    linear-gradient(rgba(83, 240, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 240, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  animation: diagnosticScan 5.8s ease-in-out infinite;
}

.mini-card span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-card span svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  overflow: visible;
  filter: drop-shadow(0 0 10px rgba(83, 240, 255, 0.42));
}

.mini-card h3 {
  font-size: 1rem;
  line-height: 1.35;
}

/* Services */
.services-section {
  background: radial-gradient(700px 520px at 12% 52%, rgba(83, 240, 255, 0.07), transparent 64%);
}

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.service-number,
.process-step span {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.service-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--cyan);
  font-weight: 860;
}

.service-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 12px rgba(83, 240, 255, 0.5);
  transition: width 180ms ease;
}

.service-link:hover::after {
  width: 42px;
}

/* Clear Answers */
.answer-section {
  background:
    radial-gradient(760px 480px at 82% 18%, rgba(123, 92, 255, 0.08), transparent 64%),
    radial-gradient(680px 440px at 16% 86%, rgba(83, 240, 255, 0.07), transparent 64%);
}

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

.answer-card {
  min-height: 300px;
}

.answer-card span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.answer-card span::after {
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 14px rgba(83, 240, 255, 0.44);
}

/* Audience */
.audience-section {
  background:
    radial-gradient(720px 460px at 16% 20%, rgba(83, 240, 255, 0.08), transparent 64%),
    radial-gradient(720px 460px at 84% 76%, rgba(255, 63, 190, 0.07), transparent 64%);
}

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

.audience-panel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 24, 52, 0.84), rgba(5, 9, 22, 0.72)),
    rgba(10, 16, 34, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 70px rgba(0, 0, 0, 0.2);
}

.audience-panel::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-top: 1px solid rgba(83, 240, 255, 0.48);
  border-right: 1px solid rgba(255, 63, 190, 0.34);
  content: "";
}

.audience-panel h2 {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-grid span {
  padding: 9px 12px;
  border: 1px solid rgba(114, 183, 255, 0.22);
  border-radius: 999px;
  background: rgba(2, 4, 10, 0.46);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 780;
}

.outcome-grid span {
  border-color: rgba(255, 63, 190, 0.2);
}

/* Fit Check */
.fit-section {
  background:
    linear-gradient(180deg, rgba(5, 7, 15, 0.24), rgba(5, 7, 15, 0.72)),
    radial-gradient(720px 460px at 50% 18%, rgba(255, 63, 190, 0.07), transparent 64%);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fit-card {
  min-height: 150px;
}

.fit-card span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 920;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fit-card span::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(83, 240, 255, 0.62);
}

.fit-card p {
  margin-top: 0;
  font-size: 1.02rem;
  font-weight: 760;
}

/* Process */
.process-section {
  background:
    linear-gradient(180deg, rgba(5, 7, 15, 0.36), rgba(5, 7, 15, 0.76)),
    radial-gradient(760px 480px at 50% 42%, rgba(123, 92, 255, 0.08), transparent 62%);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 42px 0 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 18px;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  box-shadow: 0 0 18px rgba(83, 240, 255, 0.28);
}

.process-step {
  min-height: 270px;
  padding: 30px;
}

.process-step::after {
  position: absolute;
  top: -31px;
  left: 30px;
  width: 18px;
  height: 18px;
  content: "";
  border: 2px solid rgba(83, 240, 255, 0.78);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 20px rgba(83, 240, 255, 0.55), inset 0 0 10px rgba(255, 63, 190, 0.18);
}

/* FAQ */
.faq-section {
  background:
    radial-gradient(760px 480px at 50% 14%, rgba(83, 240, 255, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(5, 7, 15, 0.3), rgba(5, 7, 15, 0.82));
}

.faq-list {
  display: grid;
  max-width: 940px;
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 24, 52, 0.82), rgba(5, 9, 22, 0.68)),
    rgba(10, 16, 34, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--text);
  cursor: pointer;
  font-weight: 860;
  list-style: none;
}

.faq-item summary span {
  display: block;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  content: "";
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted-strong);
}

.faq-item a {
  color: var(--cyan);
  font-weight: 850;
}

/* Static SEO Pages */
.subpage-hero {
  position: relative;
  min-height: 520px;
  padding-top: 112px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.96) 0%, rgba(2, 4, 10, 0.82) 46%, rgba(2, 4, 10, 0.44) 100%),
    linear-gradient(180deg, rgba(2, 4, 10, 0.12) 0%, rgba(2, 4, 10, 0.92) 100%),
    url("../assets/img/hero-command-center.webp") 70% top / cover no-repeat;
  isolation: isolate;
}

.subpage-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(760px 420px at 78% 24%, rgba(83, 240, 255, 0.12), transparent 70%),
    radial-gradient(560px 360px at 22% 66%, rgba(255, 63, 190, 0.08), transparent 72%);
}

.subpage-hero--about {
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.96) 0%, rgba(2, 4, 10, 0.76) 48%, rgba(2, 4, 10, 0.16) 100%),
    radial-gradient(720px 420px at 18% 56%, rgba(123, 92, 255, 0.2), transparent 68%),
    url("../assets/img/hero-command-center.webp") 74% top / cover no-repeat;
}

.subpage-hero--services,
.subpage-hero--tools {
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.97) 0%, rgba(2, 4, 10, 0.8) 50%, rgba(2, 4, 10, 0.22) 100%),
    radial-gradient(620px 380px at 72% 24%, rgba(83, 240, 255, 0.16), transparent 66%),
    url("../assets/img/hero-command-center.webp") 76% top / cover no-repeat;
}

.subpage-hero--apply {
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.98) 0%, rgba(2, 4, 10, 0.82) 54%, rgba(2, 4, 10, 0.28) 100%),
    radial-gradient(680px 420px at 78% 30%, rgba(255, 63, 190, 0.16), transparent 68%),
    url("../assets/img/hero-command-center.webp") 74% top / cover no-repeat;
}

.subpage-hero-inner {
  max-width: 860px;
  padding: 88px 0 116px;
}

.subpage-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 5vw, 5.05rem);
  font-weight: 920;
  line-height: 1;
  text-wrap: balance;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 740px;
  margin: 26px 0 0;
  color: var(--muted-strong);
  font-size: 1.14rem;
}

.page-section {
  background:
    radial-gradient(760px 480px at 84% 24%, rgba(83, 240, 255, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(5, 7, 15, 0.28), rgba(5, 7, 15, 0.76));
}

.page-section--dark {
  background:
    radial-gradient(780px 460px at 22% 14%, rgba(123, 92, 255, 0.1), transparent 68%),
    linear-gradient(180deg, rgba(2, 4, 10, 0.72), rgba(5, 7, 15, 0.96));
}

.page-section--grid {
  background:
    linear-gradient(rgba(83, 240, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 240, 255, 0.022) 1px, transparent 1px),
    radial-gradient(820px 520px at 82% 10%, rgba(26, 168, 255, 0.08), transparent 66%),
    linear-gradient(180deg, rgba(5, 7, 15, 0.34), rgba(5, 7, 15, 0.86));
  background-size: 52px 52px, 52px 52px, auto, auto;
}

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

.page-card,
.cta-panel,
.quiz-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 24, 52, 0.86), rgba(5, 9, 22, 0.72)),
    rgba(10, 16, 34, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.page-card {
  min-height: 230px;
  padding: 28px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.page-card:hover {
  border-color: rgba(83, 240, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 28px 80px rgba(0, 0, 0, 0.28), 0 0 34px rgba(83, 240, 255, 0.09);
  transform: translateY(-3px);
}

.page-card--accent {
  border-color: rgba(83, 240, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(26, 168, 255, 0.18), rgba(255, 63, 190, 0.11)),
    linear-gradient(145deg, rgba(14, 24, 52, 0.9), rgba(5, 9, 22, 0.74));
}

.card-kicker {
  position: relative;
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 930;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-card::after,
.cta-panel::after,
.quiz-shell::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(83, 240, 255, 0.5);
  border-right: 1px solid rgba(255, 63, 190, 0.38);
  content: "";
}

.page-card h3,
.quiz-shell h2,
.legal-copy h2 {
  position: relative;
  margin: 0;
  color: var(--text);
}

.page-card p {
  position: relative;
  margin: 14px 0 0;
  color: var(--muted-strong);
}

.text-panel {
  position: relative;
  max-width: 920px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(83, 240, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(83, 240, 255, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-card);
}

.text-panel::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-top: 1px solid rgba(241, 55, 255, 0.35);
  border-right: 1px solid rgba(241, 55, 255, 0.35);
  content: "";
}

.text-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.text-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.78;
}

.text-panel p + p {
  margin-top: 1rem;
}

.service-detail-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.resource-track-grid,
.tool-grid,
.belief-grid {
  grid-template-columns: repeat(3, 1fr);
}

.section-mini-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.service-proof-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(83, 240, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(83, 240, 255, 0.08), rgba(255, 63, 190, 0.07)),
    rgba(8, 14, 31, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 80px rgba(0, 0, 0, 0.25);
}

.service-proof-panel::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 120px;
  height: 120px;
  border-right: 1px solid rgba(255, 63, 190, 0.38);
  border-bottom: 1px solid rgba(83, 240, 255, 0.48);
  content: "";
  opacity: 0.75;
}

.service-proof-panel h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}

.service-proof-panel p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.content-narrow {
  max-width: 880px;
}

.content-narrow p:not(.eyebrow) {
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.resource-article {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(83, 240, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(83, 240, 255, 0.055), transparent 30%),
    rgba(8, 14, 31, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 70px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.breadcrumb a {
  color: var(--cyan);
}

.breadcrumb span:last-child {
  color: var(--muted-strong);
}

.resource-article h2 {
  margin: clamp(28px, 5vw, 42px) 0 12px;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.resource-article .eyebrow + h2 {
  margin-top: 0;
}

.resource-article p {
  max-width: 78ch;
}

.resource-article a {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(83, 240, 255, 0.34);
  text-underline-offset: 0.18em;
}

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

.diagnostic-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.diagnostic-checklist {
  grid-template-columns: repeat(2, 1fr);
}

.diagnostic-item {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(114, 183, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(83, 240, 255, 0.04) 0 2px, transparent 2px 100%),
    linear-gradient(145deg, rgba(13, 22, 49, 0.82), rgba(5, 9, 22, 0.74));
  background-size: 100% 120px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.diagnostic-item::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(83, 240, 255, 0.08), transparent);
  transform: translateY(-100%);
  animation: diagnosticScan 8s ease-in-out infinite;
}

.diagnostic-item span {
  position: relative;
  display: inline-flex;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.diagnostic-item p {
  position: relative;
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-weight: 760;
}

.compact-timeline {
  margin-top: 20px;
}

.compact-timeline .process-step {
  min-height: 230px;
}

.deliverables-grid .page-card,
.page-service-detail .page-card {
  min-height: 210px;
}

.tool-card {
  display: flex;
  flex-direction: column;
}

.tool-card .service-link,
.tool-card .planned-pill {
  margin-top: auto;
}

.planned-pill {
  position: relative;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(114, 183, 255, 0.2);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(2, 4, 10, 0.38);
  font-size: 0.78rem;
  font-weight: 850;
}

.track-topics {
  padding-top: 12px;
  border-top: 1px solid rgba(114, 183, 255, 0.14);
  font-size: 0.94rem;
}

.tool-guidance {
  margin-top: 28px;
}

.apply-fit-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.fit-panel,
.after-apply-panel,
.confirmation-panel,
.legal-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(114, 183, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 24, 52, 0.72), rgba(5, 9, 22, 0.62)),
    rgba(10, 16, 34, 0.58);
}

.fit-panel::after,
.after-apply-panel::after,
.confirmation-panel::after,
.legal-panel::after {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-top: 1px solid rgba(83, 240, 255, 0.42);
  border-right: 1px solid rgba(255, 63, 190, 0.32);
  content: "";
}

.fit-panel h3,
.after-apply-panel h3,
.confirmation-panel h2 {
  position: relative;
  margin: 0 0 12px;
}

.fit-bullets {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted-strong);
}

.after-apply-panel p,
.confirmation-panel p {
  position: relative;
  margin: 0;
  color: var(--muted-strong);
}

.confirmation-panel {
  max-width: 680px;
  margin-top: 28px;
}

.legal-panel {
  max-width: 900px;
  padding: clamp(24px, 4vw, 42px);
}

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

.team-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(83, 240, 255, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 24, 52, 0.88), rgba(5, 9, 22, 0.74)),
    rgba(10, 16, 34, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 70px rgba(0, 0, 0, 0.22);
}

.team-card::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-top: 1px solid rgba(83, 240, 255, 0.48);
  border-right: 1px solid rgba(255, 63, 190, 0.36);
  content: "";
}

.team-card img {
  width: 160px;
  aspect-ratio: 1;
  border: 1px solid rgba(83, 240, 255, 0.32);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 0 32px rgba(83, 240, 255, 0.12);
}

.team-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.team-role {
  margin-top: 8px;
  color: var(--cyan);
  font-weight: 850;
}

.team-card p {
  color: var(--muted-strong);
}

.diagnostic-tool {
  max-width: 980px;
}

.quiz-progress {
  display: grid;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 880;
}

.quiz-progress div {
  overflow: hidden;
  height: 8px;
  border: 1px solid rgba(83, 240, 255, 0.28);
  border-radius: 999px;
  background: rgba(2, 4, 10, 0.58);
}

.quiz-progress span span,
.quiz-progress div span {
  display: block;
}

.quiz-progress div span {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--magenta));
  box-shadow: 0 0 18px rgba(83, 240, 255, 0.28);
  transition: width 220ms ease;
}

.quiz-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.quiz-step {
  position: relative;
  overflow: visible;
  gap: 16px;
}

.quiz-step::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(83, 240, 255, 0.06), transparent);
  content: "";
  opacity: 0.7;
}

.quiz-question {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  overflow: visible;
}

.quiz-category-pill {
  width: fit-content;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(83, 240, 255, 0.25);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(83, 240, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 930;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.quiz-question-title {
  display: block;
  max-width: 780px;
  min-height: 0;
  height: auto;
  max-height: none;
  margin: 0;
  padding-bottom: 0.08em;
  color: var(--text);
  font-size: clamp(1.28rem, 2vw, 1.76rem);
  font-weight: 920;
  letter-spacing: 0;
  line-height: 1.22;
  overflow: visible;
  white-space: normal;
  text-wrap: balance;
}

.quiz-options {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.quiz-option {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  min-height: 72px;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(114, 183, 255, 0.2);
  border-radius: 16px;
  background: rgba(2, 4, 10, 0.48);
  color: var(--muted-strong);
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, outline-color 160ms ease, border-color 160ms ease;
}

.quiz-option:hover {
  background: rgba(83, 240, 255, 0.07);
  box-shadow: 0 0 24px rgba(83, 240, 255, 0.08);
}

.quiz-option:focus-within {
  outline: 2px solid rgba(83, 240, 255, 0.82);
  outline-offset: 3px;
}

.quiz-option:has(input:checked) {
  outline: 1px solid rgba(83, 240, 255, 0.62);
  outline-offset: 0;
  border-color: rgba(83, 240, 255, 0.34);
  background: linear-gradient(120deg, rgba(26, 168, 255, 0.14), rgba(255, 63, 190, 0.1));
  box-shadow: 0 0 30px rgba(83, 240, 255, 0.13);
}

.quiz-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.quiz-option-control {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border: 1px solid rgba(83, 240, 255, 0.52);
  border-radius: 50%;
  background: rgba(2, 4, 10, 0.72);
  box-shadow: inset 0 0 0 4px rgba(2, 4, 10, 0.88), 0 0 14px rgba(83, 240, 255, 0.14);
}

.quiz-option-control::after {
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  content: "";
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.quiz-option:has(input:checked) .quiz-option-control::after {
  opacity: 1;
  transform: scale(1);
}

.quiz-option-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.quiz-option-copy strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.25;
}

.quiz-option-copy span {
  min-width: 0;
  color: var(--muted-strong);
  font-size: 0.93rem;
  font-weight: 620;
  line-height: 1.42;
}

.quiz-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.quiz-controls .button {
  width: auto;
}

.diagnostic-report .score-line {
  color: var(--cyan);
  font-size: 1.05rem;
  font-weight: 900;
}

.page-cta {
  background:
    radial-gradient(900px 520px at 50% 12%, rgba(26, 168, 255, 0.13), transparent 62%),
    linear-gradient(180deg, rgba(5, 7, 15, 0.26), rgba(5, 7, 15, 0.94));
}

.cta-panel {
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
}

.cta-panel h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 30px;
  color: var(--muted-strong);
}

.quiz-shell {
  max-width: 920px;
  padding: clamp(24px, 4vw, 42px);
}

.quiz-form {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.quiz-form:not(.quiz-ready) .quiz-step {
  display: grid;
}

.quiz-form.quiz-ready .quiz-step {
  display: none;
}

.quiz-form.quiz-ready .quiz-step.is-active {
  display: grid;
}

.quiz-form.quiz-complete .quiz-progress,
.quiz-form.quiz-complete .quiz-step,
.quiz-form.quiz-complete .quiz-step.is-active,
.quiz-form.quiz-complete .quiz-controls {
  display: none;
}

.quiz-form fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  overflow: visible;
  border: 1px solid rgba(114, 183, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(2, 4, 10, 0.42);
}

.noscript-note {
  margin: 1.2rem 0 0;
  padding: 1rem;
  border: 1px solid rgba(255, 63, 190, 0.28);
  border-radius: 14px;
  color: var(--muted-strong);
  background: rgba(255, 63, 190, 0.08);
}

.noscript-note a {
  color: var(--cyan);
  font-weight: 850;
}

.quiz-result {
  display: grid;
  min-height: 28px;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: var(--cyan);
  font-weight: 850;
}

.quiz-result:not(:empty) {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(83, 240, 255, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(83, 240, 255, 0.1), transparent 34%),
    rgba(2, 4, 10, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36), 0 0 40px rgba(83, 240, 255, 0.08);
}

.quiz-result strong {
  color: var(--text);
  font-size: 1.12rem;
}

.quiz-result p {
  margin: 0;
  color: var(--muted-strong);
  font-weight: 650;
}

.score-breakdown {
  display: grid;
  gap: 0.68rem;
  list-style: none;
  margin: 0.4rem 0;
  padding: 0;
}

.score-breakdown li {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(83, 240, 255, 0.18);
  border-radius: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(100px, 34%) auto;
  gap: 0.85rem;
  padding: 0.78rem 0.9rem;
}

.score-breakdown span {
  color: var(--muted-strong);
}

.score-breakdown strong {
  color: var(--text);
  font-size: 0.95rem;
}

.score-meter {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.score-meter span {
  display: block;
  width: var(--score, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--magenta));
  box-shadow: 0 0 14px rgba(83, 240, 255, 0.25);
}

.next-move-panel {
  padding: 1rem;
  border: 1px solid rgba(255, 63, 190, 0.22);
  border-radius: 14px;
  background: rgba(255, 63, 190, 0.07);
}

.quiz-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.quiz-result a {
  width: fit-content;
  margin-top: 4px;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 34px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--muted-strong);
  font-size: 1.04rem;
}

/* Apply */
.final-cta {
  padding-bottom: 130px;
  background:
    linear-gradient(180deg, rgba(5, 7, 15, 0.26), rgba(5, 7, 15, 0.94)),
    radial-gradient(900px 520px at 50% 12%, rgba(26, 168, 255, 0.13), transparent 62%);
}

.apply-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(34px, 6vw, 78px);
}

.apply-copy {
  position: sticky;
  top: 120px;
}

.apply-copy p:not(.eyebrow) {
  margin: 24px 0 32px;
}

.quiz-context {
  display: inline-flex;
  margin-top: 0;
  padding: 10px 12px;
  border: 1px solid rgba(83, 240, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(8, 14, 31, 0.68);
  font-size: 0.9rem;
  font-weight: 850;
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: clamp(24px, 4vw, 40px);
  border-color: rgba(83, 240, 255, 0.3);
}

.application-form::before {
  opacity: 0.9;
}

.form-row {
  position: relative;
  display: grid;
  gap: 9px;
}

.form-row.full,
.form-submit,
.form-message,
.privacy-note {
  grid-column: 1 / -1;
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

.privacy-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-note a {
  color: var(--cyan);
  font-weight: 850;
}

.privacy-note a:hover {
  color: var(--text);
}

label {
  color: var(--muted-strong);
  font-size: 0.93rem;
  font-weight: 830;
}

input,
select,
textarea {
  position: relative;
  width: 100%;
  border: 1px solid rgba(114, 183, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(2, 4, 10, 0.62);
  color: var(--text);
  padding: 15px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(83, 240, 255, 0.74);
  background: rgba(4, 8, 19, 0.86);
  box-shadow: 0 0 0 4px rgba(83, 240, 255, 0.12), 0 0 26px rgba(83, 240, 255, 0.08);
  outline: 0;
}

::placeholder {
  color: rgba(186, 197, 218, 0.58);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 820;
}

.form-message.is-success {
  color: var(--cyan);
}

.form-message.is-error {
  color: #ffb3dd;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(114, 183, 255, 0.18);
  background: rgba(2, 4, 10, 0.94);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
  padding: clamp(40px, 5vw, 64px) 0 28px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 920;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-nav {
  display: grid;
  gap: 9px;
  color: var(--muted-strong);
  font-weight: 800;
}

.footer-column a:hover,
.footer-nav a:hover {
  color: var(--cyan);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(114, 183, 255, 0.14);
  font-size: 0.9rem;
}

/* Animation */
.reveal {
  transition: opacity 560ms ease, transform 560ms ease;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
}

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

@keyframes heroScan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.18;
  }

  50% {
    transform: translateY(540px);
    opacity: 0.48;
  }
}

@keyframes ambientGlow {
  0% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@keyframes headerEnergy {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-1.5%);
  }

  50% {
    opacity: 0.86;
    transform: translateX(1.5%);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.64;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes diagnosticScan {
  0%,
  100% {
    background-position: 0 -120px, 0 0, 0 0;
  }

  50% {
    background-position: 0 120px, 0 0, 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero::before,
  .hero-scan,
  .button::before,
  .site-header::after,
  .command-status div::before,
  .mini-card::before,
  .diagnostic-item::before {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .header-inner {
    gap: 20px;
  }

  .brand-mark-img {
    width: 70px;
  }

  .brand-copy span {
    font-size: 0.88rem;
  }

  .brand-copy strong {
    font-size: 1.06rem;
  }

  .primary-nav {
    gap: 16px;
    font-size: 0.84rem;
  }

  .hero {
    background-position: 62% top;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 4.8vw, 4.55rem);
  }

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

@media (max-width: 1080px) {
  .hero {
    min-height: 0;
    background-position: 67% top;
  }

  .hero-inner {
    min-height: 520px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .four-up,
  .answer-grid,
  .fit-grid,
  .page-card-grid,
  .diagnostic-list,
  .team-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-grid .service-card,
  .services-grid .service-card:last-child {
    grid-column: auto;
  }

  .process-list::before,
  .process-step::after {
    display: none;
  }

  .process-list {
    padding-top: 0;
  }

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

  .credibility-inner span {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 96px 0;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(2, 4, 10, 0.96) 0%, rgba(2, 4, 10, 0.82) 52%, rgba(2, 4, 10, 0.46) 100%),
      linear-gradient(180deg, rgba(2, 4, 10, 0.1) 0%, rgba(2, 4, 10, 0.14) 58%, rgba(2, 4, 10, 0.94) 100%),
      url("../assets/img/hero-command-center.webp") 70% top / cover no-repeat;
  }

  .hero-inner {
    min-height: 500px;
  }

  .subpage-hero {
    background:
      linear-gradient(90deg, rgba(2, 4, 10, 0.96) 0%, rgba(2, 4, 10, 0.84) 54%, rgba(2, 4, 10, 0.5) 100%),
      linear-gradient(180deg, rgba(2, 4, 10, 0.1) 0%, rgba(2, 4, 10, 0.92) 100%),
      url("../assets/img/hero-command-center.webp") 72% top / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 7vw, 4rem);
  }

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

  .split-section,
  .apply-layout,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy,
  .apply-copy {
    position: static;
  }

  .two-up {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 74px;
  }

  .brand-mark-img {
    width: 66px;
  }

  .brand-copy span {
    font-size: 0.84rem;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background:
      linear-gradient(135deg, rgba(26, 168, 255, 0.11), rgba(255, 63, 190, 0.09)),
      rgba(3, 6, 15, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: max-height 220ms ease, border-color 220ms ease;
  }

  .primary-nav.is-open {
    max-height: 560px;
    border-color: rgba(114, 183, 255, 0.24);
  }

  .primary-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(114, 183, 255, 0.12);
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .nav-mobile-only {
    display: block;
  }

  .nav-desktop-only {
    display: none;
  }

  .nav-cta {
    border: 0;
    border-radius: 0;
    background: linear-gradient(110deg, rgba(26, 168, 255, 0.18), rgba(255, 63, 190, 0.18));
    color: var(--text);
  }

  .hero {
    padding-top: 92px;
  }

  .hero-inner {
    padding-top: 34px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(2, 4, 10, 0.97) 0%, rgba(2, 4, 10, 0.94) 50%, rgba(2, 4, 10, 0.62) 78%, rgba(2, 4, 10, 0.98) 100%),
      url("../assets/img/hero-command-center.webp") 68% calc(100% - 74px) / auto 34% no-repeat;
  }

  .hero-inner {
    min-height: auto;
    padding: 44px 0 120px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.34rem, 9.6vw, 3.45rem);
    line-height: 1.02;
  }

  .hero-body,
  .section-heading p,
  .sticky-copy p,
  .apply-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .command-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 10px;
  }

  .command-status div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    min-height: 44px;
    gap: 8px;
  }

  .command-status span {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }

  .command-status strong {
    flex: 0 0 auto;
    margin-top: 0;
    font-size: 0.82rem;
  }

  .trust-rail {
    padding-right: 12px;
  }

  .trust-rail ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-rail li {
    width: auto;
    line-height: 1.35;
  }

  .four-up,
  .answer-grid,
  .fix-grid,
  .fit-grid,
  .page-card-grid,
  .diagnostic-list,
  .team-grid,
  .process-list,
  .services-grid,
  .application-form {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card img {
    width: min(180px, 100%);
  }

  .quiz-controls {
    display: grid;
  }

  .quiz-controls .button {
    width: 100%;
  }

  .score-breakdown li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .score-meter {
    width: 100%;
  }

  .quiz-result-actions .button,
  .quiz-result-actions .service-link {
    width: 100%;
    justify-content: center;
  }

  .subpage-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(2, 4, 10, 0.97) 0%, rgba(2, 4, 10, 0.94) 56%, rgba(2, 4, 10, 0.72) 82%, rgba(2, 4, 10, 0.98) 100%),
      url("../assets/img/hero-command-center.webp") 68% bottom / auto 36% no-repeat;
  }

  .subpage-hero-inner {
    padding: 60px 0 150px;
  }

  .subpage-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .credibility-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(83, 240, 255, 0.5) rgba(8, 14, 31, 0.55);
  }

  .services-grid .service-card,
  .services-grid .service-card:last-child {
    grid-column: auto;
  }

  .credibility-inner span {
    flex: 0 0 228px;
    min-height: 66px;
    justify-content: flex-start;
    text-align: left;
    border-right: 1px solid rgba(114, 183, 255, 0.14);
    scroll-snap-align: start;
  }

  .section {
    padding: 84px 0;
  }

  .feature-card,
  .service-card,
  .answer-card,
  .fit-card,
  .page-card,
  .process-step,
  .audience-panel {
    padding: 24px;
  }

  .quiz-option {
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
  }

  .audience-panel {
    min-height: auto;
  }

  .audience-panel h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    gap: 7px;
  }

  .brand-mark-img {
    width: 56px;
  }

  .brand-copy span {
    font-size: 0.76rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .eyebrow {
    letter-spacing: 0.18em;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.72rem);
  }

  .hero-body {
    margin-top: 22px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .trust-rail {
    margin-top: 26px;
    padding-right: 0;
  }

  .trust-rail ul {
    grid-template-columns: 1fr;
  }

  .credibility-inner span {
    flex-basis: 216px;
    padding: 16px;
    font-size: 0.74rem;
  }

  .application-form {
    gap: 16px;
  }
}

@media (max-width: 380px) {
  .brand-mark-img {
    width: 50px;
  }

  .brand-copy span {
    font-size: 0.71rem;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .nav-toggle {
    width: 42px;
    height: 40px;
  }

  .hero {
    background-position: 68% bottom;
  }

  .button {
    padding-inline: 18px;
  }
}
