.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% -4%, rgba(98, 220, 229, 0.08), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(127, 242, 207, 0.055), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #07111f 48%, #050c15 100%);
  pointer-events: none;
}

.site-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(166, 190, 214, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 190, 214, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

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

.narrow-shell {
  max-width: 940px;
}

.section-pad {
  padding-block: var(--aq-section-pad);
}

.section-pad-sm {
  padding-block: clamp(52px, 7vw, 88px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--aq-radius-sm);
  background: var(--aq-accent);
  color: var(--aq-accent-ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--aq-header-height);
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid rgba(164, 187, 211, 0.12);
  backdrop-filter: blur(18px) saturate(120%);
}

.header-inner {
  min-height: var(--aq-header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(158px, 15vw, 212px);
  height: auto;
}

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

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--aq-muted);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--aq-text);
  background: rgba(164, 187, 211, 0.08);
}

.desktop-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--aq-accent);
}

.header-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--aq-border);
  background: rgba(11, 23, 38, 0.8);
}

.language-switch a {
  min-width: 38px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--aq-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switch a[aria-current="page"] {
  color: var(--aq-accent-ink);
  background: var(--aq-accent);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--aq-accent-ink);
  background: linear-gradient(135deg, var(--aq-accent), var(--aq-accent-strong));
  box-shadow: 0 12px 30px rgba(98, 220, 229, 0.16);
}

.button-primary:hover {
  color: #00191e;
  box-shadow: 0 16px 34px rgba(98, 220, 229, 0.22);
}

.button-secondary {
  color: var(--aq-text);
  border-color: var(--aq-border-strong);
  background: rgba(11, 23, 38, 0.58);
}

.button-secondary:hover {
  border-color: var(--aq-accent);
  background: var(--aq-surface);
}

.header-cta {
  max-width: 220px;
  min-height: 42px;
  padding: 10px 15px;
  font-size: 12px;
}

.menu-toggle {
  width: 48px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--aq-border);
  border-radius: 12px;
  color: var(--aq-text);
  background: var(--aq-surface);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--aq-border);
  background: #07111f;
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding-block: 16px 24px;
  max-height: calc(100dvh - var(--aq-header-height));
  overflow-y: auto;
}

.mobile-nav a:not(.button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--aq-text-soft);
  border: 1px solid transparent;
}

.mobile-nav a[aria-current="page"] {
  color: var(--aq-text);
  border-color: var(--aq-border);
  background: var(--aq-surface);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aq-accent);
  font-family: var(--aq-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--aq-accent-strong);
  box-shadow: 0 0 0 4px rgba(127, 242, 207, 0.1);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--aq-display);
  letter-spacing: -0.025em;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
}

p {
  color: var(--aq-text-soft);
}

.market-ticker {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--aq-border);
  background: rgba(4, 12, 21, 0.74);
}

.market-ticker-inner {
  padding-block: 10px 12px;
}

.market-ticker-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 5px;
  color: var(--aq-muted);
  font-family: var(--aq-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.market-ticker-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.market-ticker-state::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--aq-warning);
}

.market-ticker[data-state="live"] .market-ticker-state::before {
  background: var(--aq-positive);
  box-shadow: 0 0 0 3px rgba(120, 221, 179, 0.1);
}

.market-ticker[data-state="unavailable"] .market-ticker-state::before {
  background: var(--aq-negative);
}

.ticker-stack {
  display: grid;
  gap: 3px;
}

.ticker-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
}

.ticker-label {
  color: var(--aq-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-viewport {
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid var(--aq-border);
  mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: aq-ticker-scroll 36s linear infinite;
  will-change: transform;
}

.ticker-track-slow {
  animation-duration: 48s;
  animation-direction: reverse;
}

.ticker-viewport:hover .ticker-track,
.ticker-viewport:focus .ticker-track,
.ticker-viewport:focus-within .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  min-width: max-content;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 18px;
  border-right: 1px solid rgba(164, 187, 211, 0.12);
  color: var(--aq-text-soft);
  font-family: var(--aq-mono);
  font-size: 11px;
  line-height: 1.5;
}

.ticker-symbol {
  color: var(--aq-text);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.ticker-price {
  color: var(--aq-text-soft);
}

.ticker-change {
  min-width: 52px;
  color: var(--aq-muted);
  text-align: right;
}

.ticker-change.is-up {
  color: var(--aq-positive);
}

.ticker-change.is-down {
  color: var(--aq-negative);
}

@keyframes aq-ticker-scroll {
  to { transform: translateX(-50%); }
}

.hero-section {
  position: relative;
  overflow: clip;
  padding-block: clamp(48px, 6.5vw, 88px) clamp(58px, 7.5vw, 104px);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 42%, rgba(98, 220, 229, 0.09), transparent 27%),
    linear-gradient(90deg, transparent 49.9%, rgba(164, 187, 211, 0.045) 50%, transparent 50.1%);
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(510px, 1.12fr);
  gap: clamp(40px, 4.5vw, 64px);
  align-items: center;
}

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

.hero-copy .eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(98, 220, 229, 0.17);
  border-radius: 999px;
  background: rgba(98, 220, 229, 0.05);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.hero-copy .eyebrow-dot {
  flex: 0 0 auto;
}

.hero-copy h1 {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: clamp(48px, 4.7vw, 68px);
  line-height: 0.99;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.hero-lead,
.page-lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--aq-text-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.hero-copy .hero-lead {
  max-width: 570px;
  margin-bottom: 26px;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.62;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--aq-muted);
  font-size: 13px;
}

.hero-primary-cta {
  gap: 16px;
  padding-left: 22px;
  padding-right: 14px;
}

.hero-primary-cta b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--aq-accent-ink);
  background: rgba(3, 32, 39, 0.1);
  font-size: 15px;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--aq-muted);
  font-size: 11px;
  font-weight: 650;
}

.hero-proof-list li > span {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(127, 242, 207, 0.28);
  border-radius: 50%;
  background: rgba(127, 242, 207, 0.07);
}

.hero-proof-list li > span::before {
  width: 5px;
  height: 3px;
  content: "";
  border-left: 1.5px solid var(--aq-accent-strong);
  border-bottom: 1.5px solid var(--aq-accent-strong);
  transform: translateY(-1px) rotate(-45deg);
}

.hero-product {
  position: relative;
  min-width: 0;
  padding: 16px;
}

.hero-product::before {
  position: absolute;
  inset: 8% 2% -3% 14%;
  content: "";
  z-index: -1;
  border-radius: 40px;
  background: rgba(45, 127, 151, 0.18);
  filter: blur(56px);
}

.hero-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 4px 12px;
  color: var(--aq-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-product-meta > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--aq-text-soft);
  text-transform: uppercase;
}

.hero-product-meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aq-positive);
  box-shadow: 0 0 0 4px rgba(120, 221, 179, 0.08);
}

.advisor-preview {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(#081421, #081421) padding-box,
    linear-gradient(145deg, rgba(127, 242, 207, 0.34), rgba(164, 187, 211, 0.12) 55%, rgba(98, 220, 229, 0.28)) border-box;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255, 255, 255, 0.035) inset;
}

.preview-toolbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 16px;
  border-bottom: 1px solid var(--aq-border);
  background: #0d1b2b;
}

.preview-toolbar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #40546a;
}

.preview-toolbar > span:nth-child(2) { background: #557187; }
.preview-toolbar > span:nth-child(3) { background: #62dce5; }

.preview-toolbar > div {
  margin-left: auto;
  color: var(--aq-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.preview-layout {
  min-height: 410px;
  display: grid;
  grid-template-columns: 64px 1fr;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 10px;
  border-right: 1px solid var(--aq-border);
  background: #07101b;
}

.preview-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 10px;
  color: var(--aq-accent-ink);
  background: var(--aq-accent);
  font-family: var(--aq-display);
  font-size: 11px;
  font-weight: 900;
}

.preview-sidebar > span {
  width: 25px;
  height: 6px;
  border-radius: 99px;
  background: #263a4e;
}

.preview-sidebar > span.is-active {
  background: var(--aq-accent);
}

.preview-content {
  padding: clamp(18px, 3vw, 30px);
}

.preview-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.preview-heading > div {
  display: grid;
  gap: 4px;
}

.preview-heading small,
.risk-card small {
  color: var(--aq-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-heading strong {
  font-family: var(--aq-display);
  font-size: 22px;
}

.preview-heading > span {
  padding: 7px 10px;
  border: 1px solid rgba(244, 199, 106, 0.28);
  border-radius: 99px;
  color: var(--aq-warning);
  background: rgba(244, 199, 106, 0.07);
  font-size: 10px;
  font-weight: 800;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 14px;
}

.allocation-card,
.risk-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--aq-border);
  border-radius: 15px;
  background: #0b1826;
}

.allocation-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
}

.allocation-ring {
  width: 108px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#62dce5 0 55%, #7ff2cf 55% 85%, #6885c6 85% 95%, #526373 95% 100%);
}

.allocation-ring::before {
  content: "";
  grid-area: 1 / 1;
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0b1826;
}

.allocation-ring strong {
  z-index: 1;
  grid-area: 1 / 1;
  font-size: 15px;
}

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

.allocation-card li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 7px;
  align-items: center;
  color: var(--aq-muted);
  font-size: 10px;
}

.allocation-card li i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62dce5;
}

.allocation-card li i.tone-two { background: #7ff2cf; }
.allocation-card li i.tone-three { background: #6885c6; }
.allocation-card li i.tone-four { background: #526373; }
.allocation-card li strong { color: var(--aq-text); }

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

.risk-chart {
  position: relative;
  flex: 1;
  min-height: 120px;
  margin-block: 10px;
  overflow: hidden;
  background:
    linear-gradient(rgba(143, 161, 179, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 161, 179, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.risk-chart::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 22%;
  height: 55%;
  border-top: 3px solid var(--aq-accent);
  border-radius: 50% 40% 45% 30%;
  transform: rotate(-4deg) skewX(-14deg);
  filter: drop-shadow(0 8px 8px rgba(98, 220, 229, 0.12));
}

.risk-chart span {
  position: absolute;
  right: 10%;
  top: 23%;
  width: 8px;
  height: 8px;
  border: 2px solid #0b1826;
  border-radius: 50%;
  background: var(--aq-accent-strong);
}

.risk-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.risk-metrics span {
  display: grid;
  gap: 2px;
  color: var(--aq-muted);
  font-size: 8px;
  text-transform: uppercase;
}

.risk-metrics b {
  color: var(--aq-text);
  font-size: 11px;
  text-transform: none;
}

.preview-callout {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(98, 220, 229, 0.2);
  border-radius: 11px;
  background: rgba(98, 220, 229, 0.05);
}

.preview-callout span,
.roadmap-note > span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--aq-accent-ink);
  background: var(--aq-accent);
  font-weight: 900;
}

.preview-callout p {
  margin: 0;
  font-size: 10px;
}

.preview-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 12px 5px 0;
  color: var(--aq-muted);
  font-size: 11px;
}

.preview-caption span:last-child {
  color: var(--aq-text-soft);
  font-weight: 650;
}

.trust-section {
  border-block: 1px solid var(--aq-border);
  background: rgba(4, 10, 18, 0.32);
}

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

.trust-grid article {
  min-width: 0;
  padding: 26px clamp(18px, 2.5vw, 30px);
  border-right: 1px solid var(--aq-border);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--aq-display);
  font-size: 14px;
}

.trust-grid p {
  margin: 0;
  color: var(--aq-muted);
  font-size: 12px;
  line-height: 1.55;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: end;
}

.split-heading p:last-child {
  margin: 0 0 8px;
}

.resource-grid,
.topic-grid,
.roadmap-grid,
.tool-grid {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.resource-grid article,
.topic-grid article,
.roadmap-column,
.free-tool-card {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-md);
  background: rgba(11, 23, 38, 0.72);
  box-shadow: var(--aq-shadow-sm);
}

.resource-grid article > span,
.topic-grid article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--aq-accent);
  font-family: var(--aq-mono);
  font-size: 12px;
  font-weight: 800;
}

.resource-grid h3,
.topic-grid h3 {
  margin-bottom: 10px;
}

.resource-grid p,
.topic-grid p {
  margin: 0;
  color: var(--aq-muted);
  font-size: 14px;
}

.advisor-overview-section {
  position: relative;
  border-bottom: 1px solid var(--aq-border);
  background: rgba(4, 10, 18, 0.3);
}

.advisor-overview-section .section-heading {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.advisor-overview-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(540px, 1.16fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.advisor-flow-list,
.advisor-capability-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.advisor-flow-list {
  overflow: hidden;
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-lg);
  background: rgba(11, 23, 38, 0.64);
  box-shadow: var(--aq-shadow-sm);
}

.advisor-flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(22px, 2.7vw, 30px);
  border-bottom: 1px solid var(--aq-border);
}

.advisor-flow-list li:last-child {
  border-bottom: 0;
}

.advisor-flow-list li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(98, 220, 229, 0.24);
  border-radius: 12px;
  color: var(--aq-accent);
  background: rgba(98, 220, 229, 0.055);
  font-family: var(--aq-mono);
  font-size: 11px;
  font-weight: 800;
}

.advisor-flow-list h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.advisor-flow-list p {
  margin: 0;
  color: var(--aq-muted);
  font-size: 13px;
  line-height: 1.6;
}

.advisor-capability-panel {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(98, 220, 229, 0.2);
  border-radius: var(--aq-radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(98, 220, 229, 0.085), transparent 35%),
    rgba(11, 23, 38, 0.76);
  box-shadow: var(--aq-shadow-sm);
}

.advisor-capability-panel > header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--aq-border);
}

.advisor-capability-panel > header .eyebrow {
  flex: 0 0 auto;
  margin: 0 0 4px;
}

.advisor-capability-panel > header h3 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(19px, 2.1vw, 25px);
  text-align: right;
  text-wrap: balance;
}

.advisor-capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
}

.advisor-capability-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(164, 187, 211, 0.12);
}

.advisor-capability-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.advisor-capability-list li > span {
  padding-top: 2px;
  color: rgba(98, 220, 229, 0.68);
  font-family: var(--aq-mono);
  font-size: 9px;
  font-weight: 800;
}

.advisor-capability-list h4,
.advisor-methodology h4 {
  margin: 0 0 5px;
  color: var(--aq-text);
  font-family: var(--aq-display);
  font-size: 13px;
  line-height: 1.35;
}

.advisor-capability-list p,
.advisor-methodology p {
  margin: 0;
  color: var(--aq-muted);
  font-size: 11px;
  line-height: 1.55;
}

.advisor-methodology {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 15px;
  border: 1px solid rgba(244, 199, 106, 0.2);
  border-radius: var(--aq-radius-sm);
  background: rgba(244, 199, 106, 0.035);
}

.advisor-methodology > span {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #211802;
  background: var(--aq-warning);
  font-family: var(--aq-mono);
  font-size: 10px;
  font-weight: 900;
}

.roadmap-note {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(98, 220, 229, 0.22);
  border-radius: var(--aq-radius-md);
  background: rgba(98, 220, 229, 0.045);
}

.roadmap-note h2 {
  margin: 0 0 7px;
  font-size: 16px;
}

.roadmap-note p {
  margin: 0;
  color: var(--aq-muted);
  font-size: 13px;
}

.walkthrough-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.walkthrough-copy > p:not(.eyebrow) {
  margin-bottom: 24px;
}

.transcript {
  border-top: 1px solid var(--aq-border);
  padding-top: 16px;
}

.transcript summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--aq-accent);
  font-weight: 750;
  cursor: pointer;
}

.transcript p {
  color: var(--aq-muted);
  font-size: 14px;
}

.video-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-lg);
  background:
    radial-gradient(circle at 70% 30%, rgba(98, 220, 229, 0.12), transparent 28%),
    linear-gradient(145deg, #0c1b2b, #07111f);
  box-shadow: var(--aq-shadow-lg);
}

.product-video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.video-play {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--aq-text);
  background: rgba(4, 10, 18, 0.84);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-weight: 750;
}

.video-play[hidden] {
  display: none;
}

.video-play span {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--aq-accent);
}

.market-intelligence-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--aq-border);
  background:
    radial-gradient(circle at 8% 8%, rgba(98, 220, 229, 0.11), transparent 27%),
    radial-gradient(circle at 92% 94%, rgba(127, 242, 207, 0.065), transparent 25%),
    linear-gradient(180deg, rgba(7, 21, 33, 0.96), rgba(4, 12, 21, 0.98));
}

.market-intelligence-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(143, 161, 179, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 161, 179, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.market-intelligence-section > .shell {
  position: relative;
}

.market-pulse-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.market-pulse-heading .section-heading {
  max-width: 760px;
  margin: 0;
}

.market-pulse-heading .section-heading > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 16px;
}

.market-pulse-heading .eyebrow {
  display: flex;
  align-items: center;
}

.market-pulse-controls {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
}

.market-pulse-status,
.market-refresh {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.market-pulse-status {
  padding: 10px 14px;
  border: 1px solid rgba(120, 221, 179, 0.18);
  color: var(--aq-text-soft);
  background: rgba(120, 221, 179, 0.045);
}

.market-pulse-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--aq-warning);
  box-shadow: 0 0 0 4px rgba(244, 199, 106, 0.08);
}

.market-intelligence-section[data-state="live"] .market-pulse-status i {
  background: var(--aq-positive);
  box-shadow: 0 0 0 4px rgba(120, 221, 179, 0.09), 0 0 16px rgba(120, 221, 179, 0.3);
}

.market-intelligence-section[data-state="stale"] .market-pulse-status i {
  background: var(--aq-warning);
}

.market-intelligence-section[data-state="unavailable"] .market-pulse-status {
  border-color: rgba(242, 138, 155, 0.2);
  background: rgba(242, 138, 155, 0.045);
}

.market-intelligence-section[data-state="unavailable"] .market-pulse-status i {
  background: var(--aq-negative);
  box-shadow: 0 0 0 4px rgba(242, 138, 155, 0.08);
}

.market-refresh {
  padding: 9px 15px;
  border: 1px solid var(--aq-border-strong);
  color: var(--aq-text);
  background: rgba(11, 23, 38, 0.84);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.market-refresh:hover {
  border-color: var(--aq-accent);
  background: rgba(19, 37, 58, 0.94);
  transform: translateY(-1px);
}

.market-refresh:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.market-refresh-icon {
  color: var(--aq-accent);
  font-size: 17px;
  line-height: 1;
}

.market-refresh.is-loading .market-refresh-icon {
  animation: market-refresh-spin 900ms linear infinite;
}

@keyframes market-refresh-spin {
  to { transform: rotate(360deg); }
}

.market-pulse-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(560px, 1.16fr);
  gap: 18px;
  align-items: stretch;
}

.market-module {
  min-width: 0;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(164, 187, 211, 0.19);
  border-radius: var(--aq-radius-lg);
  background: linear-gradient(155deg, rgba(16, 32, 51, 0.93), rgba(7, 17, 31, 0.96));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.025);
}

.market-module-header {
  min-height: 61px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--aq-border);
}

.market-module-header h3 {
  margin: 3px 0 0;
  font-size: clamp(20px, 2vw, 25px);
}

.market-module-kicker {
  color: var(--aq-accent);
  font-family: var(--aq-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-module-count {
  color: rgba(143, 161, 179, 0.5);
  font-family: var(--aq-mono);
  font-size: 22px;
  font-weight: 700;
}

.market-module-time {
  min-width: max-content;
  padding-top: 6px;
  color: var(--aq-muted);
  font-family: var(--aq-mono);
  font-size: 10px;
}

.market-news-list,
.market-movers-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-news-list {
  counter-reset: market-news;
  max-height: 520px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 10px;
  scroll-behavior: smooth;
  scrollbar-color: rgba(98, 220, 229, 0.42) rgba(143, 161, 179, 0.08);
  scrollbar-width: thin;
}

.market-news-item {
  counter-increment: market-news;
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 2px;
  border-bottom: 1px solid rgba(164, 187, 211, 0.12);
}

.market-news-item:first-child {
  padding-top: 2px;
}

.market-news-item:last-child {
  padding-bottom: 2px;
  border-bottom: 0;
}

.market-news-item::before {
  content: counter(market-news, decimal-leading-zero);
  padding-top: 2px;
  color: rgba(98, 220, 229, 0.62);
  font-family: var(--aq-mono);
  font-size: 10px;
  font-weight: 800;
}

.market-news-item-title {
  display: block;
  color: var(--aq-text);
  font-family: var(--aq-display);
  font-size: 14px;
  font-weight: 690;
  line-height: 1.45;
  transition: color 160ms ease;
}

.market-news-item a:hover {
  color: var(--aq-accent);
}

.market-news-list::-webkit-scrollbar,
.supporting-intelligence-section .updates-grid::-webkit-scrollbar {
  width: 7px;
}

.market-news-list::-webkit-scrollbar-track,
.supporting-intelligence-section .updates-grid::-webkit-scrollbar-track {
  border-radius: 99px;
  background: rgba(143, 161, 179, 0.06);
}

.market-news-list::-webkit-scrollbar-thumb,
.supporting-intelligence-section .updates-grid::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: rgba(98, 220, 229, 0.36);
}

.market-news-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 7px;
  color: var(--aq-muted);
  font-family: var(--aq-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.market-news-meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: rgba(143, 161, 179, 0.5);
}

.market-movers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.movers-column {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(164, 187, 211, 0.14);
  border-radius: var(--aq-radius-md);
  background: rgba(4, 12, 22, 0.5);
}

.movers-column-header {
  margin-bottom: 4px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(164, 187, 211, 0.11);
}

.movers-column-header h4 {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  color: var(--aq-text-soft);
  font-family: var(--aq-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.movers-column-header i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-style: normal;
  font-size: 12px;
}

.movers-column-header i.is-positive {
  color: var(--aq-positive);
  background: rgba(120, 221, 179, 0.08);
}

.movers-column-header i.is-negative {
  color: var(--aq-negative);
  background: rgba(242, 138, 155, 0.08);
}

.market-mover-item {
  display: grid;
  gap: 6px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(164, 187, 211, 0.1);
  font-variant-numeric: tabular-nums;
}

.market-mover-item:last-child {
  padding-bottom: 1px;
  border-bottom: 0;
}

.market-mover-head,
.market-mover-detail {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.market-mover-symbol {
  overflow: hidden;
  color: var(--aq-text);
  font-family: var(--aq-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-mover-change,
.market-mover-price {
  flex: 0 0 auto;
  font-family: var(--aq-mono);
  font-size: 11px;
  font-weight: 800;
}

.market-mover-change.is-positive { color: var(--aq-positive); }
.market-mover-change.is-negative { color: var(--aq-negative); }

.market-mover-name {
  min-width: 0;
  overflow: hidden;
  color: var(--aq-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-mover-price {
  color: var(--aq-text-soft);
  font-weight: 650;
}

.market-mover-bar {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(98, 220, 229, 0.06);
}

.market-mover-bar span {
  width: var(--market-bar, 20%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(120, 221, 179, 0.25), var(--aq-positive));
}

.market-mover-item.is-negative .market-mover-bar span {
  background: linear-gradient(90deg, rgba(242, 138, 155, 0.25), var(--aq-negative));
}

.market-empty-state {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--aq-muted);
  font-size: 12px;
  text-align: center;
}

.market-data-note {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 16px 4px 0;
  color: var(--aq-muted);
  font-size: 11px;
}

.market-data-note span {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--aq-border);
  border-radius: 50%;
  color: var(--aq-accent);
  font-family: var(--aq-mono);
  font-size: 9px;
  font-weight: 800;
}

.market-skeleton,
.mover-skeleton {
  position: relative;
  overflow: hidden;
}

.market-skeleton {
  display: grid;
  gap: 9px;
  padding: 16px 2px;
  border-bottom: 1px solid rgba(164, 187, 211, 0.09);
}

.market-skeleton span,
.mover-skeleton span {
  display: block;
  border-radius: 99px;
  background: rgba(143, 161, 179, 0.11);
}

.market-skeleton span:first-child { width: 89%; height: 10px; }
.market-skeleton span:last-child { width: 35%; height: 7px; }

.mover-skeleton {
  display: grid;
  gap: 8px;
  padding: 14px 0;
}

.mover-skeleton span:nth-child(1) { width: 100%; height: 9px; }
.mover-skeleton span:nth-child(2) { width: 72%; height: 7px; }
.mover-skeleton span:nth-child(3) { width: 100%; height: 3px; }

.market-skeleton::after,
.mover-skeleton::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(98, 220, 229, 0.07), transparent);
  transform: translateX(-110%);
  animation: market-skeleton-shimmer 1.35s ease-in-out infinite;
}

@keyframes market-skeleton-shimmer {
  to { transform: translateX(110%); }
}

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

.supporting-intelligence-section {
  padding-block: clamp(48px, 6vw, 76px);
}

.supporting-intelligence-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1.66fr);
  gap: 28px;
  align-items: baseline;
  margin-bottom: 26px;
}

.supporting-intelligence-heading .eyebrow,
.supporting-intelligence-heading h2 {
  margin: 0;
}

.supporting-intelligence-heading h2 {
  max-width: 850px;
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.12;
}

.supporting-intelligence-section .resource-grid {
  gap: 12px;
}

.supporting-intelligence-section .resource-grid article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 20px;
  border-radius: var(--aq-radius-sm);
  box-shadow: none;
}

.supporting-intelligence-section .resource-grid article > span {
  margin: 2px 0 0;
  font-size: 10px;
}

.resource-card-body {
  min-width: 0;
}

.supporting-intelligence-section .resource-grid h3 {
  margin-bottom: 5px;
  font-size: 15px;
}

.supporting-intelligence-section .resource-grid p {
  font-size: 12px;
  line-height: 1.5;
}

.resource-grid article a,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--aq-accent);
  font-size: 13px;
  font-weight: 800;
}

.supporting-intelligence-section .resource-grid article a {
  min-height: 38px;
  margin-top: 7px;
  padding-top: 4px;
  font-size: 11px;
}

.supporting-intelligence-section .resource-grid article a b {
  transition: transform 160ms ease;
}

.supporting-intelligence-section .resource-grid article a:hover b {
  transform: translateX(3px);
}

.updates-panel {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-lg);
  background: rgba(4, 10, 18, 0.56);
}

.supporting-intelligence-section .updates-panel {
  margin-top: 14px;
  padding: 18px 20px 20px;
  border-radius: var(--aq-radius-md);
}

.supporting-intelligence-section .updates-header {
  margin-bottom: 14px;
}

.supporting-intelligence-section .updates-header > div {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.supporting-intelligence-section .updates-header .eyebrow {
  font-size: 9px;
}

.supporting-intelligence-section .updates-header h3 {
  font-size: 16px;
}

.supporting-intelligence-section .updates-grid {
  max-height: 400px;
  display: block;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 9px;
  scroll-behavior: smooth;
  scrollbar-color: rgba(98, 220, 229, 0.42) rgba(143, 161, 179, 0.08);
  scrollbar-width: thin;
}

.supporting-intelligence-section .update-card {
  padding: 13px 14px;
}

.supporting-intelligence-section .update-card + .update-card {
  margin-top: 8px;
}

.supporting-intelligence-section .update-card h4 {
  margin-bottom: 4px;
  font-size: 13px;
}

.supporting-intelligence-section .update-card p {
  display: block;
  margin-bottom: 7px;
  overflow: visible;
  -webkit-line-clamp: unset;
  white-space: pre-line;
  font-size: 11px;
  line-height: 1.45;
}

.updates-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.updates-header h3,
.updates-header .eyebrow {
  margin-bottom: 0;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aq-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aq-positive);
}

.updates-panel.is-stale .status-label i {
  background: var(--aq-warning);
}

.updates-state {
  margin: -10px 0 20px;
  color: var(--aq-warning);
  font-size: 12px;
}

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

.update-card {
  padding: 18px;
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-sm);
  background: var(--aq-surface);
}

.update-card h4 {
  margin: 0 0 8px;
  font-family: var(--aq-display);
  font-size: 15px;
}

.update-card p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--aq-muted);
  font-size: 12px;
}

.update-card time {
  color: var(--aq-accent);
  font-size: 10px;
}

.loading-copy {
  margin: 0;
  color: var(--aq-muted);
  font-size: 13px;
}

.roadmap-preview {
  border-block: 1px solid var(--aq-border);
  background: linear-gradient(100deg, rgba(98, 220, 229, 0.04), rgba(127, 242, 207, 0.015));
}

.roadmap-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 88px);
}

.roadmap-preview-inner p {
  margin-top: 0;
}

.final-cta-section {
  padding-top: clamp(40px, 6vw, 72px);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: clamp(32px, 5vw, 52px);
  border-top: 1px solid var(--aq-border);
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 46px);
}

.final-cta p:not(.eyebrow) {
  margin: 0;
}

.page-hero {
  padding-top: clamp(76px, 10vw, 126px);
}

.page-hero h1 {
  max-width: 930px;
}

.updated-label {
  color: var(--aq-muted);
  font-size: 12px;
}

.editorial-feature {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.podcast-cover-card,
.podcast-feature,
.latest-episode {
  padding: 24px;
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-lg);
  background: rgba(11, 23, 38, 0.75);
}

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

.podcast-cover-card p {
  margin: 16px 0 0;
  color: var(--aq-muted);
  font-size: 12px;
}

.podcast-feature h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.podcast-feature > p:not(.eyebrow) {
  max-width: 680px;
}

.spotify-embed {
  width: 100%;
  min-height: 152px;
  margin-top: 24px;
  border: 0;
  border-radius: 14px;
}

.latest-episode {
  box-shadow: none;
}

.latest-episode h2 {
  font-size: clamp(26px, 3.5vw, 40px);
}

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

.tool-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.free-tool-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.free-tool-card h3,
.free-tool-card p {
  margin: 0;
}

.free-tool-card p {
  color: var(--aq-muted);
}

.free-tool-badge,
.free-tool-tags span {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid var(--aq-border);
  border-radius: 99px;
  color: var(--aq-muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.free-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.free-tool-link {
  margin-top: auto;
}

.faq-search {
  max-width: 620px;
  margin-top: 34px;
}

.faq-search label {
  display: block;
  margin-bottom: 7px;
  color: var(--aq-muted);
  font-size: 12px;
  font-weight: 750;
}

.faq-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-sm);
  color: var(--aq-text);
  background: var(--aq-surface);
}

.faq-layout,
.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.faq-categories,
.legal-toc {
  position: sticky;
  top: calc(var(--aq-header-height) + 28px);
}

.faq-categories {
  display: grid;
  gap: 6px;
}

.faq-categories a,
.legal-toc a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-left: 2px solid var(--aq-border);
  color: var(--aq-muted);
  font-size: 13px;
}

.faq-categories a:hover,
.legal-toc a:hover {
  color: var(--aq-text);
  border-left-color: var(--aq-accent);
}

.faq-content {
  max-width: 820px;
}

.faq-content section + section {
  margin-top: 52px;
}

.faq-content h2 {
  font-size: 26px;
}

.faq-content details {
  border-top: 1px solid var(--aq-border);
}

.faq-content details:last-of-type {
  border-bottom: 1px solid var(--aq-border);
}

.faq-content summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--aq-text);
  font-weight: 750;
  cursor: pointer;
}

.faq-content summary::after {
  content: "+";
  color: var(--aq-accent);
  font-size: 20px;
}

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

.faq-content details p {
  max-width: 70ch;
  margin: 0;
  padding: 0 0 24px;
  color: var(--aq-muted);
}

.faq-empty {
  padding: 24px;
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-sm);
  color: var(--aq-muted);
}

.roadmap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.roadmap-column {
  display: flex;
  flex-direction: column;
}

.roadmap-state {
  width: fit-content;
  margin-bottom: 24px;
  padding: 6px 10px;
  border: 1px solid var(--aq-border);
  border-radius: 99px;
  color: var(--aq-muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.roadmap-state-1 {
  border-color: rgba(127, 242, 207, 0.34);
}

.roadmap-state-1 .roadmap-state {
  color: var(--aq-positive);
  border-color: rgba(127, 242, 207, 0.35);
  background: rgba(127, 242, 207, 0.06);
}

.roadmap-column h2 {
  font-size: 27px;
}

.roadmap-column > p {
  color: var(--aq-muted);
}

.roadmap-column ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 28px;
  padding: 0;
  list-style: none;
}

.roadmap-column li {
  position: relative;
  padding-left: 18px;
  color: var(--aq-text-soft);
  font-size: 14px;
}

.roadmap-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aq-accent);
}

.roadmap-column .button {
  margin-top: auto;
}

.roadmap-note {
  max-width: 900px;
  margin-inline: auto;
}

.legal-toc details {
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-sm);
  background: rgba(11, 23, 38, 0.72);
}

.legal-toc summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.legal-toc nav {
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  padding: 0 10px 12px;
}

.legal-document {
  max-width: var(--aq-readable);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-lg);
  background: rgba(11, 23, 38, 0.72);
}

.legal-document h2 {
  margin-top: 48px;
  font-size: 24px;
  scroll-margin-top: calc(var(--aq-header-height) + 24px);
}

.legal-document h2:first-of-type {
  margin-top: 0;
}

.legal-document h3 {
  margin-top: 28px;
  font-size: 17px;
}

.legal-document p,
.legal-document li,
.legal-document .kvs {
  color: var(--aq-text-soft);
  font-size: 15px;
  line-height: 1.8;
}

.legal-document a {
  color: var(--aq-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding-top: clamp(60px, 8vw, 96px);
  border-top: 1px solid var(--aq-border);
  background: rgba(4, 10, 18, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.7fr));
  gap: clamp(28px, 5vw, 70px);
}

.footer-brand .brand img {
  width: 210px;
}

.footer-brand > p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--aq-text-soft);
  font-size: 14px;
}

.footer-brand .footer-disclosure {
  color: var(--aq-muted);
  font-size: 12px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--aq-text);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-link-button {
  min-height: 36px;
  display: flex;
  align-items: center;
  color: var(--aq-muted);
  font-size: 13px;
}

.footer-link-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.footer-column a:hover,
.footer-link-button:hover {
  color: var(--aq-accent);
}

.footer-bottom {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  border-top: 1px solid var(--aq-border);
  color: var(--aq-muted);
  font-size: 12px;
}

.footer-bottom a:hover {
  color: var(--aq-accent);
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(46px, 7vw, 72px);
  }

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

  .hero-product {
    width: 100%;
    max-width: 820px;
  }

  .advisor-overview-grid {
    grid-template-columns: 1fr;
  }

  .market-pulse-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-pulse-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --aq-header-height: 72px;
  }

  .brand img {
    width: 158px;
  }

  .trust-grid,
  .resource-grid,
  .topic-grid,
  .roadmap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--aq-border);
  }

  .split-heading,
  .walkthrough-grid,
  .roadmap-preview-inner,
  .editorial-feature,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .faq-categories {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .faq-categories a {
    min-height: 40px;
    border: 1px solid var(--aq-border);
    border-radius: 99px;
  }

  .legal-toc {
    position: static;
  }

  .market-pulse-controls {
    width: 100%;
    justify-content: space-between;
  }

  .supporting-intelligence-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-toc nav {
    max-height: 260px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --aq-page-pad: 18px;
    --aq-section-pad: 72px;
  }

  .language-switch a {
    min-width: 40px;
    min-height: 40px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-section {
    padding-block: 42px 64px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 17px;
    white-space: normal;
  }

  .hero-copy h1 {
    margin-bottom: 20px;
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }

  .hero-copy .hero-lead {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .hero-proof-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }

  .hero-product {
    padding: 0;
  }

  .hero-product-meta > span:last-child,
  .preview-caption > span:last-child {
    display: none;
  }

  .preview-caption {
    justify-content: flex-end;
  }

  .market-ticker-heading > span:first-child {
    display: none;
  }

  .market-ticker-heading {
    justify-content: flex-end;
  }

  .ticker-row {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .ticker-item {
    gap: 6px;
    padding-inline: 12px;
  }

  .button-row,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .final-cta .button {
    width: 100%;
  }

  .preview-layout {
    min-height: 360px;
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-content {
    padding: 16px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .risk-card {
    display: none;
  }

  .allocation-card {
    grid-template-columns: 90px 1fr;
  }

  .allocation-ring {
    width: 88px;
  }

  .allocation-ring::before {
    width: 56px;
  }

  .trust-grid,
  .resource-grid,
  .updates-grid,
  .topic-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--aq-border);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .video-card,
  .product-video {
    min-height: 280px;
  }

  .advisor-flow-list,
  .advisor-capability-panel {
    border-radius: var(--aq-radius-md);
  }

  .advisor-flow-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 17px;
  }

  .advisor-flow-list li > span {
    width: 34px;
    height: 34px;
  }

  .advisor-capability-panel {
    padding: 20px 17px;
  }

  .advisor-capability-panel > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .advisor-capability-panel > header h3 {
    text-align: left;
  }

  .advisor-capability-list {
    grid-template-columns: 1fr;
  }

  .advisor-capability-list li:nth-last-child(2) {
    border-bottom: 1px solid rgba(164, 187, 211, 0.12);
  }

  .supporting-intelligence-section {
    padding-block: 48px;
  }

  .supporting-intelligence-heading {
    margin-bottom: 20px;
  }

  .supporting-intelligence-heading h2 {
    font-size: 28px;
  }

  .supporting-intelligence-section .resource-grid article {
    padding: 17px;
  }

  .supporting-intelligence-section .updates-panel {
    padding: 17px;
  }

  .supporting-intelligence-section .updates-header > div {
    display: block;
  }

  .market-pulse-heading {
    gap: 24px;
  }

  .market-pulse-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .market-pulse-status,
  .market-refresh {
    width: 100%;
    justify-content: center;
  }

  .market-module {
    padding: 20px 16px;
    border-radius: var(--aq-radius-md);
  }

  .market-module-header {
    min-height: auto;
  }

  .market-module-time {
    max-width: 88px;
    min-width: 0;
    text-align: right;
  }

  .market-movers-grid {
    grid-template-columns: 1fr;
  }

  .market-news-item {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
  }

  .market-news-list {
    max-height: 430px;
  }

  .supporting-intelligence-section .updates-grid {
    max-height: 360px;
  }

  .updates-header,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal-document {
    padding: 22px 18px;
    border-radius: var(--aq-radius-md);
  }
}

@media (min-width: 1121px) and (max-height: 760px) {
  .hero-section {
    padding-block: 38px 56px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(46px, 4.15vw, 58px);
  }

  .hero-copy .hero-lead {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-proof-list {
    margin-top: 16px;
  }

  .preview-layout {
    min-height: 350px;
  }

  .preview-content {
    padding: 22px;
  }

  .risk-chart {
    min-height: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-viewport {
    overflow-x: auto;
    mask-image: none;
  }

  .ticker-track {
    animation: none !important;
  }

  .ticker-track > [aria-hidden="true"] {
    display: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .aq-chat,
  .legal-toc,
  .site-backdrop {
    display: none !important;
  }

  body,
  .legal-document {
    color: #111;
    background: #fff;
  }

  .legal-document {
    max-width: none;
    padding: 0;
    border: 0;
  }

  .legal-document p,
  .legal-document li,
  .legal-document h2,
  .legal-document h3 {
    color: #111;
  }
}
