:root {
  --deep-teal: #004e6b;
  --rich-teal: #005f7a;
  --dark-navy-teal: #073b52;
  --ink: #04151f;
  --panel: #082535;
  --panel-2: #0b3144;
  --gold: #d4a63a;
  --bright-gold: #f0c65a;
  --white: #ffffff;
  --light-gray: #e9ecef;
  --muted: #b9c6cf;
  --line: rgba(233, 236, 239, 0.16);
  --line-strong: rgba(240, 198, 90, 0.42);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 220px;
}

body {
  margin: 0;
  font-family: Montserrat, Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(4, 21, 31, 0.95), rgba(7, 59, 82, 0.78) 36%, #04151f 70%),
    radial-gradient(circle at 20% 8%, rgba(0, 95, 122, 0.25), transparent 32%),
    #04151f;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(240, 198, 90, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 219, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--bright-gold);
  outline-offset: 3px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 21, 31, 0.78);
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 21, 31, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.utility-bar {
  border-bottom: 1px solid rgba(233, 236, 239, 0.08);
}

.utility-inner,
.nav-inner,
.section,
.hero-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

.utility-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.utility-links a,
.footer a {
  color: var(--muted);
}

.utility-links a:hover,
.footer a:hover {
  color: var(--bright-gold);
}

.nav-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.03;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  display: block;
}

.brand small {
  display: block;
  color: var(--bright-gold);
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-links > a,
.nav-dropdown > summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-links > a:hover,
.nav-dropdown > summary:hover,
.nav-links > a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid var(--bright-gold);
  border-bottom: 2px solid var(--bright-gold);
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 92vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  background: rgba(5, 28, 41, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.resources-panel {
  grid-template-columns: repeat(2, 1fr);
  width: min(570px, 92vw);
}

.dropdown-group {
  padding: 8px;
  border-left: 1px solid rgba(240, 198, 90, 0.22);
}

.dropdown-group span {
  display: block;
  color: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.dropdown-group a {
  display: block;
  padding: 10px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
}

.dropdown-group a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.dropdown-group small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(360px, 88vw);
  max-height: 78vh;
  overflow: auto;
  padding: 12px;
  background: rgba(5, 28, 41, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-panel a,
.mobile-panel span {
  display: block;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 750;
}

.mobile-panel span {
  color: var(--bright-gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  padding-bottom: 4px;
}

.mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.btn,
.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 0.88rem;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.mobile-menu summary:hover {
  transform: translateY(-1px);
}

.btn:active,
.path-option:active,
.flow-step:active {
  transform: translateY(0);
}

.btn-primary {
  color: #091923;
  background: linear-gradient(135deg, var(--bright-gold), var(--gold));
  box-shadow: 0 14px 36px rgba(212, 166, 58, 0.24);
}

.btn-secondary,
.mobile-menu summary {
  color: var(--white);
  border-color: rgba(240, 198, 90, 0.52);
  background: rgba(240, 198, 90, 0.08);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
  background:
    linear-gradient(90deg, rgba(4, 21, 31, 0.98), rgba(4, 21, 31, 0.76) 46%, rgba(4, 21, 31, 0.54)),
    linear-gradient(180deg, transparent, rgba(4, 21, 31, 0.92));
}

.hero-canvas-bg {
  position: absolute;
  inset: -4% -10% -2% 34%;
  z-index: 0;
  opacity: 0.96;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 21, 31, 0.98) 0%, rgba(4, 21, 31, 0.78) 36%, rgba(4, 21, 31, 0.18) 70%, rgba(4, 21, 31, 0.58) 100%),
    linear-gradient(180deg, transparent 0%, rgba(4, 21, 31, 0.8) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 64px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.4;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--bright-gold), transparent);
}

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

h1,
.h1 {
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 5.2vw, 5.8rem);
  line-height: 0.99;
  max-width: 920px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.05rem;
  line-height: 1.05;
  max-width: 720px;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.text-gold {
  color: var(--bright-gold);
}

.lede {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.72;
  max-width: 690px;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions,
.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 26px;
}

.hero-callouts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 18px;
}

.hero-callouts article {
  min-height: 78px;
  padding: 13px;
  border: 1px solid rgba(240, 198, 90, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 198, 90, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(4, 21, 31, 0.5);
}

.hero-callouts b {
  display: block;
  color: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-callouts span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 750;
}

.hero-bullets {
  margin-top: 20px;
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  max-width: 820px;
}

.proof-strip span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(240, 198, 90, 0.3);
  background: linear-gradient(145deg, rgba(7, 59, 82, 0.74), rgba(4, 21, 31, 0.88));
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(240, 198, 90, 0.14), transparent 28%),
    linear-gradient(310deg, rgba(0, 174, 219, 0.13), transparent 34%);
  pointer-events: none;
}

.dashboard-shell {
  position: relative;
  display: grid;
  gap: 14px;
}

.command-center {
  min-height: 540px;
  display: grid;
  gap: 18px;
}

.command-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.command-top h3 {
  max-width: 470px;
  font-size: clamp(1.4rem, 2.1vw, 2.1rem);
  line-height: 1.05;
}

.command-top img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(240, 198, 90, 0.2));
}

.orbit-stage {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(240, 198, 90, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(240, 198, 90, 0.22), transparent 12%),
    radial-gradient(circle at 50% 50%, rgba(0, 174, 219, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

.orbit-stage::before,
.orbit-stage::after {
  content: "";
  position: absolute;
  inset: 32px 72px;
  border: 1px solid rgba(240, 198, 90, 0.28);
  border-radius: 50%;
  animation: orbitPulse 5.5s ease-in-out infinite;
}

.orbit-stage::after {
  inset: 68px 118px;
  border-color: rgba(0, 174, 219, 0.34);
  animation-delay: 1.2s;
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 148px;
  min-height: 148px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  border: 1px solid rgba(240, 198, 90, 0.56);
  border-radius: 50%;
  background: rgba(4, 21, 31, 0.86);
  box-shadow: 0 0 56px rgba(240, 198, 90, 0.22);
  z-index: 2;
}

.orbit-core img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.orbit-core span {
  color: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.orbit-pill {
  position: absolute;
  z-index: 3;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(240, 198, 90, 0.38);
  border-radius: var(--radius);
  background: rgba(4, 21, 31, 0.9);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.pill-a {
  left: 26px;
  top: 48px;
}

.pill-b {
  right: 26px;
  top: 72px;
}

.pill-c {
  left: 42px;
  bottom: 56px;
}

.pill-d {
  right: 34px;
  bottom: 44px;
}

.command-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.command-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.command-grid b,
.diagnostic-card span {
  display: block;
  color: var(--bright-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.command-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.75;
  }
}

.window-bar {
  height: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.24);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
}

.mockup-card,
.metric-card,
.feature-card,
.plan-card,
.step-card,
.video-card,
.resource-card,
.testimonial-card,
.faq details,
.table-wrap,
.process-tile,
.visual-card,
.answer-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.mockup-card {
  padding: 12px;
}

.mockup-card img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.mockup-card img[src$=".svg"],
.visual-card img[src$=".svg"] {
  object-fit: contain;
  background: linear-gradient(135deg, rgba(7, 59, 82, 0.9), rgba(4, 21, 31, 0.94));
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric-card {
  padding: 16px;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 7px;
  font-size: 1.55rem;
  color: var(--white);
}

.metric-card em {
  display: block;
  color: var(--bright-gold);
  font-style: normal;
  font-size: 0.78rem;
  margin-top: 6px;
}

.section {
  padding: 94px 0;
}

.section.tight {
  padding: 56px 0;
}

.band {
  border-block: 1px solid rgba(233, 236, 239, 0.1);
  background:
    linear-gradient(135deg, rgba(0, 78, 107, 0.32), rgba(4, 21, 31, 0.72)),
    rgba(255, 255, 255, 0.02);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 40px;
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.features,
.plan-grid,
.resource-grid,
.testimonial-grid,
.blog-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.diagnostic-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(240, 198, 90, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(240, 198, 90, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.diagnostic-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 35%;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 174, 219, 0.22), transparent 62%);
  pointer-events: none;
}

.diagnostic-card h3 {
  margin-bottom: 0;
  font-size: 1.34rem;
}

.diagnostic-card p {
  margin-bottom: 0;
}

.diagnostic-card a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--bright-gold);
  font-weight: 900;
}

.feature-card,
.resource-card,
.testimonial-card,
.plan-card,
.diagnostic-card,
.answer-card,
.process-tile,
.video-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.resource-card:hover,
.testimonial-card:hover,
.plan-card:hover,
.diagnostic-card:hover,
.answer-card:hover,
.process-tile:hover,
.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 198, 90, 0.42);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.25);
}

.plan-finder {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(240, 198, 90, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 198, 90, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.plan-finder::after {
  content: "";
  position: absolute;
  inset: auto -12% -38% 30%;
  height: 220px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 174, 219, 0.18), transparent 62%);
}

.plan-finder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

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

.path-option {
  min-height: 112px;
  padding: 16px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.path-option span {
  display: block;
  color: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.path-option strong {
  display: block;
  margin-top: 9px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.path-option:hover,
.path-option.is-active {
  transform: translateY(-2px);
  border-color: rgba(240, 198, 90, 0.62);
  background:
    linear-gradient(135deg, rgba(240, 198, 90, 0.14), rgba(255, 255, 255, 0.055));
}

.plan-result {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(240, 198, 90, 0.58);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 95, 122, 0.22), rgba(4, 21, 31, 0.7)),
    rgba(255, 255, 255, 0.045);
}

.plan-result h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  line-height: 1;
}

.plan-result .btn {
  margin-top: auto;
  width: fit-content;
}

.plan-result .plan-price strong {
  font-size: clamp(1.65rem, 2.8vw, 2.75rem);
  line-height: 1.05;
}

.interactive-flow {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.flow-track::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 54px;
  height: 2px;
  background: linear-gradient(90deg, rgba(240, 198, 90, 0.28), rgba(0, 174, 219, 0.45), rgba(240, 198, 90, 0.28));
}

.flow-step {
  position: relative;
  z-index: 1;
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(4, 21, 31, 0.72);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.flow-step span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #071923;
  background: linear-gradient(135deg, var(--bright-gold), var(--gold));
  font-weight: 950;
  box-shadow: 0 0 24px rgba(240, 198, 90, 0.32);
}

.flow-step strong {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.flow-step:hover,
.flow-step.is-active {
  transform: translateY(-3px);
  border-color: rgba(240, 198, 90, 0.68);
  background:
    linear-gradient(180deg, rgba(240, 198, 90, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(4, 21, 31, 0.9);
}

.flow-step.is-active span {
  animation: flowPulse 1.8s ease-in-out infinite;
}

.flow-detail {
  padding: 26px;
  border: 1px solid rgba(240, 198, 90, 0.48);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 14%, rgba(0, 174, 219, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.flow-detail h3 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

@keyframes flowPulse {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(240, 198, 90, 0.34);
  }
  50% {
    box-shadow: 0 0 34px rgba(240, 198, 90, 0.72);
  }
}

.engine-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.answer-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-theater {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(240, 198, 90, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 174, 219, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(240, 198, 90, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.product-theater::before {
  content: "";
  position: absolute;
  inset: -30% 42% -30% -20%;
  background: radial-gradient(circle, rgba(240, 198, 90, 0.18), transparent 58%);
  pointer-events: none;
}

.theater-copy,
.theater-screen {
  position: relative;
  z-index: 1;
}

.theater-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.theater-tab {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theater-tab:hover,
.theater-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(240, 198, 90, 0.64);
  background: rgba(240, 198, 90, 0.11);
}

.theater-screen {
  min-height: 540px;
  perspective: 1200px;
}

.screen-halo {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(74%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 198, 90, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg);
  background:
    radial-gradient(circle at center, rgba(240, 198, 90, 0.12), transparent 42%),
    conic-gradient(from 120deg, rgba(240, 198, 90, 0.36), rgba(0, 174, 219, 0.16), rgba(240, 198, 90, 0.36));
  filter: blur(0.1px);
  animation: haloRotate 14s linear infinite;
}

.screen-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(4, 21, 31, 0.88);
  box-shadow: var(--shadow);
}

.screen-main {
  left: 8%;
  top: 10%;
  width: 72%;
  min-height: 360px;
  padding: 28px;
  transform: rotateY(-9deg) rotateX(3deg);
}

.screen-main span,
.screen-side small {
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.screen-main h3 {
  margin-top: 18px;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.screen-side {
  width: 210px;
  min-height: 108px;
  padding: 16px;
}

.screen-side b {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.screen-side.one {
  right: 2%;
  top: 22%;
}

.screen-side.two {
  right: 11%;
  bottom: 17%;
}

.screen-side.three {
  left: 0;
  bottom: 10%;
}

@keyframes haloRotate {
  to {
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg);
  }
}

.guide-showcase {
  padding-top: 72px;
}

.guide-showcase-grid,
.resource-command-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.guide-visual img {
  min-height: 420px;
}

.guide-control-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(240, 198, 90, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 198, 90, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

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

.blueprint-steps article {
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.blueprint-steps strong {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-gold), var(--gold));
  color: #061923;
}

.blueprint-steps span {
  display: block;
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
}

.blueprint-steps p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.resource-command {
  padding-bottom: 70px;
}

.resource-deck {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.resource-deck article {
  position: absolute;
  left: calc(var(--i) * 8%);
  top: calc(36px + var(--i) * 54px);
  width: 78%;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(240, 198, 90, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 174, 219, 0.12), rgba(240, 198, 90, 0.08)),
    rgba(4, 21, 31, 0.92);
  box-shadow: var(--shadow);
  transform: rotateY(-10deg) translateZ(calc(var(--i) * 16px));
}

.resource-deck article b {
  display: block;
  color: var(--bright-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.resource-deck article span {
  display: block;
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 950;
}

.resource-deck article small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

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

.feature-card,
.resource-card,
.testimonial-card,
.process-tile,
.answer-card,
.contact-card {
  padding: 22px;
}

.feature-card b,
.resource-card b,
.testimonial-card b,
.answer-card b,
.contact-card b {
  display: inline-flex;
  color: var(--bright-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-card h3,
.resource-card h3,
.testimonial-card h3,
.answer-card h3,
.contact-card h3 {
  color: var(--white);
}

.visual-card {
  overflow: hidden;
}

.visual-card img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.visual-card .caption {
  padding: 18px 20px;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.flow-line span {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(240, 198, 90, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-weight: 900;
}

.flow-line span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--bright-gold);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  padding: 22px;
}

.step-card strong {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(240, 198, 90, 0.12);
  color: var(--bright-gold);
  border: 1px solid rgba(240, 198, 90, 0.42);
  margin-bottom: 16px;
}

.plan-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-card.featured {
  border-color: rgba(240, 198, 90, 0.72);
  background:
    linear-gradient(180deg, rgba(240, 198, 90, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.plan-card.simple {
  background: rgba(255, 255, 255, 0.04);
}

.plan-badge {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(240, 198, 90, 0.4);
  border-radius: var(--radius);
  color: var(--bright-gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 900;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 4px 0;
}

.plan-price strong {
  font-size: clamp(2.1rem, 3.3vw, 3.35rem);
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  padding-bottom: 6px;
}

.plan-card ul,
.check-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.plan-card li,
.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.plan-card li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bright-gold);
  box-shadow: 0 0 16px rgba(240, 198, 90, 0.62);
}

.plan-card .btn {
  margin-top: auto;
}

.upgrade-paths {
  position: relative;
  overflow: hidden;
}

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

.upgrade-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(233, 236, 239, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(4, 21, 31, 0.38);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.upgrade-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 198, 90, 0.34);
  background:
    linear-gradient(145deg, rgba(240, 198, 90, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(4, 21, 31, 0.46);
}

.upgrade-card h3 {
  margin-top: 14px;
}

.upgrade-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 9px;
}

.upgrade-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.upgrade-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 198, 90, 0.85);
}

.upgrade-card .btn {
  margin-top: 20px;
}

.upgrade-note {
  max-width: 850px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.94rem;
}

.subtle-details {
  border: 1px solid rgba(233, 236, 239, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 20px;
}

.subtle-details summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
  list-style: none;
}

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

.subtle-details summary::after {
  content: "+";
  float: right;
  color: var(--bright-gold);
}

.subtle-details[open] summary::after {
  content: "-";
}

.subtle-details .section-head {
  margin-top: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--bright-gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--muted);
}

.comparison-table td:first-child {
  color: var(--white);
  font-weight: 800;
}

.comparison-table code,
.process-tile code {
  color: var(--bright-gold);
  font-size: 0.9em;
}

.table-wrap {
  overflow: auto;
}

.table-wrap table {
  min-width: 720px;
}

.ai-demo-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(240, 198, 90, 0.25);
  background:
    linear-gradient(135deg, rgba(240, 198, 90, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(0, 95, 122, 0.18), rgba(4, 21, 31, 0.62));
}

.checkout-preview-section {
  border-block: 1px solid rgba(240, 198, 90, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 198, 90, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(0, 95, 122, 0.16), rgba(4, 21, 31, 0.62));
}

.checkout-above-fold {
  padding-top: 48px;
}

.form-embed-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  overflow: visible;
  border: 1px solid rgba(240, 198, 90, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 198, 90, 0.06), transparent 32%),
    rgba(4, 21, 31, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.form-embed-intro {
  padding: 26px 28px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.12);
}

.form-embed-intro b {
  display: inline-flex;
  color: var(--bright-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-embed-intro h3 {
  margin: 10px 0 8px;
}

.form-embed-frame {
  padding: 0;
  background: transparent;
}

.form-embed-frame iframe {
  width: 100%;
  min-height: 720px;
  display: block;
  background: transparent;
}

.contact-form-section {
  border-top: 1px solid rgba(233, 236, 239, 0.1);
}

.booking-calendar-section {
  border-top: 1px solid rgba(233, 236, 239, 0.1);
}

.booking-embed-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(240, 198, 90, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 198, 90, 0.08), transparent 30%),
    rgba(4, 21, 31, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.booking-embed-shell iframe {
  width: 100%;
  min-height: 780px;
  display: block;
  background: transparent;
}

.lsa-eligibility-section {
  border-top: 1px solid rgba(233, 236, 239, 0.1);
}

.source-note {
  color: rgba(233, 236, 239, 0.74);
  font-size: 0.94rem;
}

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

.lsa-category-card {
  border: 1px solid rgba(233, 236, 239, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 175, 239, 0.12), transparent 30%),
    rgba(4, 21, 31, 0.44);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.lsa-category-card h3 {
  margin: 0 0 16px;
  color: var(--bright-gold);
}

.lsa-category-card ul {
  columns: 2;
  column-gap: 26px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.lsa-category-card li {
  break-inside: avoid;
  margin: 0 0 7px;
  font-size: 0.92rem;
}

.embed-fallback {
  margin: 0;
  padding: 14px 24px 20px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.embed-fallback a {
  color: var(--bright-gold);
  font-weight: 800;
}

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

.contact-method-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.contact-method-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(233, 236, 239, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.contact-method-list a:hover {
  border-color: rgba(240, 198, 90, 0.55);
  background: rgba(240, 198, 90, 0.08);
}

.contact-method-list span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method-list strong {
  color: var(--white);
  text-align: right;
  overflow-wrap: anywhere;
}

[data-ghl-embed-slot]:empty {
  display: none;
}

.form-plan-hero .page-hero-grid {
  align-items: stretch;
}

.form-flow-visual {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 420px;
}

.flow-node {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  border: 1px solid rgba(240, 198, 90, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 198, 90, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.flow-node.active {
  color: var(--ink);
  background: linear-gradient(135deg, var(--bright-gold), var(--gold));
}

.flow-line {
  width: 2px;
  height: 22px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bright-gold), rgba(0, 174, 219, 0.48));
  box-shadow: 0 0 24px rgba(240, 198, 90, 0.45);
}

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

.form-wireframe {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(0, 174, 219, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.form-wireframe > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--bright-gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-wireframe ol {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.form-wireframe li::marker {
  color: var(--bright-gold);
  font-weight: 900;
}

.form-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.demo-embed {
  min-height: 420px;
  border: 1px solid rgba(240, 198, 90, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(4, 21, 31, 0.62);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.demo-embed iframe,
.demo-embed div,
.demo-embed button {
  max-width: 100%;
}

.demo-embed button {
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.demo-embed button p {
  white-space: normal !important;
  max-width: 100%;
}

.demo-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.phone-visual {
  position: relative;
  min-height: 500px;
}

.phone-frame {
  width: min(310px, 82%);
  margin: 0 auto;
  border: 1px solid rgba(240, 198, 90, 0.46);
  border-radius: 34px;
  padding: 14px;
  background: linear-gradient(180deg, #061b27, #02090e);
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 430px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 95, 122, 0.28), rgba(4, 21, 31, 0.92)),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.04) 50%, transparent 51%);
  padding: 20px;
}

.phone-screen .call-badge {
  color: var(--bright-gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 900;
}

.chat-bubble {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  line-height: 1.5;
}

.chat-bubble.ai {
  border-left: 3px solid var(--bright-gold);
}

.floating-card {
  position: absolute;
  width: 175px;
  padding: 13px;
  border: 1px solid rgba(240, 198, 90, 0.34);
  border-radius: var(--radius);
  background: rgba(4, 21, 31, 0.9);
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.floating-card.one {
  top: 48px;
  left: 0;
}

.floating-card.two {
  top: 170px;
  right: 0;
}

.floating-card.three {
  bottom: 58px;
  left: 20px;
}

.roi-card {
  border: 1px solid rgba(240, 198, 90, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(240, 198, 90, 0.12), rgba(255, 255, 255, 0.04));
  padding: 24px;
}

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

.roi-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.roi-grid input {
  width: 100%;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 12px;
}

.roi-output {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--bright-gold);
  font-weight: 950;
  font-size: 1.12rem;
}

.video-card {
  overflow: hidden;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #02090e;
}

.video-card.vertical video {
  aspect-ratio: 9 / 16;
  max-height: 620px;
  object-fit: contain;
  margin-inline: auto;
}

.video-card div {
  padding: 18px;
}

.testimonial-video-grid {
  align-items: stretch;
}

.testimonial-video-card {
  display: flex;
  flex-direction: column;
}

.testimonial-video-card video {
  height: 460px;
  aspect-ratio: auto;
  object-fit: contain;
}

.testimonial-video-card.vertical video,
.testimonial-video-card.horizontal video {
  max-height: none;
}

.review-widget-panel {
  overflow: hidden;
  border: 1px solid rgba(240, 198, 90, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.review-widget-panel iframe {
  display: block;
  min-height: 620px;
  border: 0;
  background: var(--white);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--bright-gold);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 12px 0 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border: 1px solid rgba(240, 198, 90, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(125deg, rgba(240, 198, 90, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(0, 95, 122, 0.34), rgba(4, 21, 31, 0.86));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 860px;
}

.breadcrumbs {
  padding: 22px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs.section.tight {
  padding: 22px 0;
}

.breadcrumbs a {
  color: var(--bright-gold);
}

.page-hero {
  padding: 0;
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
  background:
    linear-gradient(145deg, rgba(0, 78, 107, 0.2), rgba(4, 21, 31, 0.88)),
    rgba(255, 255, 255, 0.02);
}

.page-hero .hero-inner {
  padding: 44px 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: start;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 3.7vw, 3.65rem);
  max-width: 760px;
  line-height: 1;
}

.mini-dashboard {
  display: grid;
  gap: 12px;
}

.mini-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.mini-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bright-gold);
  box-shadow: 0 0 18px rgba(240, 198, 90, 0.72);
}

.mini-row strong {
  color: var(--white);
}

.mini-row span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
}

.article {
  max-width: 860px;
  margin: 0 auto;
}

.article h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-top: 42px;
}

.article h3 {
  margin-top: 28px;
}

.article p,
.article li {
  color: var(--muted);
  line-height: 1.78;
}

.article ul,
.article ol {
  display: grid;
  gap: 10px;
}

.legal-article {
  max-width: 980px;
  padding: 8px 0 12px;
}

.legal-article .lede {
  color: var(--white);
  font-size: 1.06rem;
}

.sitemap-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sitemap-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 9px;
}

.sitemap-card a {
  color: var(--white);
}

.sitemap-card a:hover {
  color: var(--bright-gold);
}

.note-box {
  padding: 20px;
  margin: 28px 0;
  border: 1px solid rgba(240, 198, 90, 0.36);
  border-radius: var(--radius);
  background: rgba(240, 198, 90, 0.08);
}

.footer {
  border-top: 1px solid rgba(233, 236, 239, 0.12);
  background: rgba(2, 9, 14, 0.64);
}

.footer-inner {
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-contact a:hover {
  color: var(--bright-gold);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.social-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(240, 198, 90, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
}

.social-links a:hover {
  border-color: var(--bright-gold);
  background: rgba(240, 198, 90, 0.09);
}

.social-card-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.social-card {
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(240, 198, 90, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(0, 78, 107, 0.28), rgba(2, 9, 14, 0.72));
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.social-card span {
  color: var(--bright-gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.social-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.02rem;
}

.social-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 198, 90, 0.58);
  background: linear-gradient(145deg, rgba(0, 95, 122, 0.36), rgba(2, 9, 14, 0.82));
}

.footer h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--bright-gold);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(233, 236, 239, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

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

  .hero-inner,
  .page-hero-grid,
  .split,
  .demo-grid,
  .engine-grid,
  .product-theater,
  .guide-showcase-grid,
  .resource-command-grid,
  .plan-finder-grid,
  .interactive-flow {
    grid-template-columns: 1fr;
  }

  .form-wireframe-grid,
  .form-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-path-grid {
    grid-template-columns: 1fr;
  }

  .hero-canvas-bg {
    inset: 25% -20% -10% 0;
    opacity: 0.46;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

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

  .features,
  .features.four,
  .plan-grid,
  .upgrade-grid,
  .resource-grid,
  .sitemap-grid,
  .social-card-grid,
  .testimonial-grid,
  .blog-grid,
  .guide-grid,
  .diagnostic-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-line,
  .roi-grid,
  .answer-stack,
  .blueprint-steps,
  .flow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-line span:not(:last-child)::after,
  .flow-track::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .utility-inner {
    justify-content: center;
    text-align: center;
  }

  .utility-links {
    display: none;
  }

  .nav-inner {
    min-height: 70px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    max-width: 130px;
  }

  .site-header .btn-primary {
    display: none;
  }

  .hero-inner {
    padding: 62px 0 58px;
  }

  h1,
  .h1 {
    font-size: 2.45rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2rem;
  }

  .testimonial-video-card video {
    height: 380px;
  }

  .review-widget-panel iframe {
    min-height: 540px;
  }

  .proof-strip,
  .hero-bullets,
  .hero-callouts,
  .dashboard-grid,
  .features,
  .features.four,
  .plan-grid,
  .upgrade-grid,
  .resource-grid,
  .testimonial-grid,
  .blog-grid,
  .guide-grid,
  .diagnostic-grid,
  .steps,
  .flow-line,
  .flow-track,
  .roi-grid,
  .answer-stack,
  .theater-tabs,
  .blueprint-steps,
  .path-options,
  .command-grid,
  .form-wireframe-grid,
  .form-route-grid,
  .footer-grid,
  .sitemap-grid,
  .social-card-grid {
    grid-template-columns: 1fr;
  }

  .form-flow-visual {
    min-height: auto;
  }

  .product-theater {
    padding: 20px;
  }

  .theater-screen {
    min-height: 620px;
  }

  .screen-main,
  .screen-side {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
    transform: none;
  }

  .screen-halo {
    width: 100%;
    top: 36%;
  }

  .guide-showcase-grid,
  .resource-command-grid {
    width: min(var(--max), calc(100% - 40px));
  }

  .lsa-category-grid {
    grid-template-columns: 1fr;
  }

  .lsa-category-card ul {
    columns: 1;
  }

  .booking-embed-shell iframe {
    min-height: 860px;
  }

  .resource-deck {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .resource-deck article {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .command-center {
    min-height: auto;
  }

  .command-top {
    grid-template-columns: 1fr;
  }

  .orbit-stage {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
  }

  .orbit-stage::before {
    inset: 66px 26px;
  }

  .orbit-stage::after {
    inset: 108px 58px;
  }

  .orbit-pill {
    position: static;
    width: fit-content;
    margin: 6px;
  }

  .orbit-core {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 12px;
  }

  .demo-embed button {
    transform: scale(0.86) !important;
    transform-origin: center center;
  }

  .section {
    padding: 68px 0;
  }

  .cta-band {
    padding: 30px;
  }

  .plan-finder {
    padding: 20px;
  }

  .flow-step {
    min-height: 104px;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .phone-visual {
    min-height: 460px;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
