/*
 * CryptoChartPro / AVRO — Home Experience V23
 * Public product story, live intelligence showcase, and animated brand system.
 * Scope is intentionally limited to html[data-avro-page="home"].
 */

html[data-avro-page="home"] {
  --home-bg: #07090d;
  --home-bg-2: #0a0d12;
  --home-panel: #0f1319;
  --home-panel-2: #131820;
  --home-line: rgba(255, 255, 255, 0.09);
  --home-line-strong: rgba(255, 255, 255, 0.16);
  --home-text: #f7f8fa;
  --home-muted: #a5abb5;
  --home-dim: #717985;
  --home-orange: #ff6a1a;
  --home-orange-2: #ff9a3d;
  --home-amber: #ffc15a;
  --home-green: #21d59b;
  --home-cyan: #52c8ff;
  --home-red: #ff5d69;
  --home-max: 1440px;
  color-scheme: dark;
  background: var(--home-bg);
}

html[data-avro-page="home"] body {
  min-width: 320px;
  color: var(--home-text) !important;
  background:
    radial-gradient(1100px 580px at 80% -7%, rgba(255, 84, 17, 0.10), transparent 70%),
    radial-gradient(840px 520px at -10% 20%, rgba(42, 213, 157, 0.055), transparent 70%),
    var(--home-bg) !important;
  font-family: "Segoe UI Variable", "Segoe UI", Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  overflow-x: clip;
}

html[data-avro-page="home"] body::before,
html[data-avro-page="home"] body::after {
  display: none !important;
}

html[data-avro-page="home"] .home-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

html[data-avro-page="home"] .home-ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.65) 58%, transparent 100%);
}

html[data-avro-page="home"] .home-ambient span {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.09;
  animation: homeAmbientFloat 18s ease-in-out infinite alternate;
}

html[data-avro-page="home"] .home-ambient span:first-child {
  top: 12%;
  right: -220px;
  background: var(--home-orange);
}

html[data-avro-page="home"] .home-ambient span:last-child {
  top: 58%;
  left: -260px;
  background: var(--home-green);
  animation-delay: -9s;
}

@keyframes homeAmbientFloat {
  to { transform: translate3d(30px, 60px, 0) scale(1.12); }
}

html[data-avro-page="home"] .avro-home-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), var(--home-max));
  min-height: 68px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: rgba(9, 12, 16, 0.86);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

html[data-avro-page="home"] .home-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--home-text);
  text-decoration: none;
}

html[data-avro-page="home"] .home-brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 0 24px rgba(255, 91, 20, 0.23);
}

html[data-avro-page="home"] .home-brand-copy {
  display: grid;
  gap: 1px;
}

html[data-avro-page="home"] .home-brand-copy strong {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

html[data-avro-page="home"] .home-brand-copy small {
  color: #9aa3ae;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

html[data-avro-page="home"] .home-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

html[data-avro-page="home"] .home-nav-links a {
  padding: 9px 11px;
  border-radius: 9px;
  color: #aeb5c0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

html[data-avro-page="home"] .home-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

html[data-avro-page="home"] .home-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

html[data-avro-page="home"] .home-nav-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 15px;
  border: 1px solid var(--home-line-strong);
  border-radius: 10px;
  color: #d9dde3;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

html[data-avro-page="home"] .home-nav-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 26, 0.5);
  background: rgba(255, 106, 26, 0.07);
}

html[data-avro-page="home"] .home-nav-button.primary {
  color: #160a04;
  border-color: var(--home-orange);
  background: var(--home-orange);
}

html[data-avro-page="home"] .home-nav-button.primary:hover {
  background: var(--home-orange-2);
}

/* Live majors sit below the navigation instead of becoming a loose top strip. */
html[data-avro-page="home"] #ccpLiveMajors.ccp-live-majors {
  position: relative !important;
  z-index: 10 !important;
  width: min(calc(100% - 32px), var(--home-max)) !important;
  min-height: 42px !important;
  max-height: none !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 8px auto 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--home-line) !important;
  border-radius: 13px !important;
  background: rgba(10, 13, 18, 0.78) !important;
}

html[data-avro-page="home"] #ccpLiveMajors .ccp-live-card {
  min-height: 42px !important;
  padding: 7px 13px !important;
  border: 0 !important;
  border-right: 1px solid var(--home-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

html[data-avro-page="home"] #ccpLiveMajors .ccp-live-card:last-child {
  border-right: 0 !important;
}

html[data-avro-page="home"] #ccpLiveMajors .ccp-live-left {
  flex-direction: row !important;
  align-items: baseline !important;
  gap: 8px !important;
}

html[data-avro-page="home"] #ccpLiveMajors .ccp-live-symbol {
  color: #8e97a4 !important;
  font-size: 9px !important;
  letter-spacing: 0.08em !important;
}

html[data-avro-page="home"] #ccpLiveMajors .ccp-live-price {
  color: #eef1f4 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

html[data-avro-page="home"] #ccpLiveMajors .ccp-live-change {
  padding: 0 !important;
  color: #8e97a4 !important;
  background: transparent !important;
  font-size: 10px !important;
}

html[data-avro-page="home"] #ccpLiveMajors .ccp-live-card.up .ccp-live-change { color: var(--home-green) !important; }
html[data-avro-page="home"] #ccpLiveMajors .ccp-live-card.down .ccp-live-change { color: var(--home-red) !important; }
html[data-avro-page="home"] #ccpLiveMajors .ccp-live-meta { color: #969faa !important; font-size: 8px !important; }

html[data-avro-page="home"] .container,
html[data-avro-page="home"] .home-main {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--home-max)) !important;
  max-width: var(--home-max) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* Hero */
html[data-avro-page="home"] .hero.ccp-hero-clean {
  position: relative;
  width: 100% !important;
  min-height: min(720px, calc(100vh - 148px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr) !important;
  align-items: center !important;
  gap: clamp(30px, 5vw, 88px) !important;
  margin: 18px 0 0 !important;
  padding: clamp(58px, 7.5vw, 112px) clamp(28px, 6vw, 88px) !important;
  overflow: hidden !important;
  border: 1px solid var(--home-line) !important;
  border-radius: 28px !important;
  color: var(--home-text) !important;
  background:
    radial-gradient(620px 430px at 82% 50%, rgba(255, 89, 16, 0.12), transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005)) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.30) !important;
  isolation: isolate;
}

html[data-avro-page="home"] .hero.ccp-hero-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.045) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255, 255, 255, 0.04) 50%, transparent 50.2%);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 78% 50%, #000, transparent 66%);
}

html[data-avro-page="home"] .hero.ccp-hero-clean::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 1px;
  right: 11%;
  bottom: 14%;
  background: linear-gradient(90deg, transparent, rgba(255, 123, 48, 0.65), transparent);
  box-shadow: 0 0 30px rgba(255, 91, 20, 0.34);
  transform: rotate(-14deg);
}

html[data-avro-page="home"] .home-hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
}

html[data-avro-page="home"] .home-kicker,
html[data-avro-page="home"] .home-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b6bdc7;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html[data-avro-page="home"] .home-kicker::before,
html[data-avro-page="home"] .home-section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 0 5px rgba(255, 106, 26, 0.09), 0 0 18px rgba(255, 106, 26, 0.7);
}

html[data-avro-page="home"] .home-hero-title,
html[data-avro-page="home"] .hero.ccp-hero-clean .home-hero-title {
  max-width: 11ch !important;
  margin: 20px 0 0 !important;
  color: var(--home-text) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  font-size: clamp(52px, 6.3vw, 96px) !important;
  font-weight: 760 !important;
  line-height: 0.94 !important;
  letter-spacing: -0.065em !important;
  animation: none !important;
}

html[data-avro-page="home"] .home-hero-title span {
  display: block;
  color: #9aa1aa;
  font-weight: 500;
}

html[data-avro-page="home"] .home-hero-title::before,
html[data-avro-page="home"] .home-hero-title::after {
  display: none !important;
}

html[data-avro-page="home"] .hero.ccp-hero-clean .home-hero-subtitle {
  max-width: 650px !important;
  margin: 26px 0 0 !important;
  color: #a9b0ba !important;
  font-size: clamp(16px, 1.35vw, 20px) !important;
  font-weight: 430 !important;
  line-height: 1.58 !important;
}

html[data-avro-page="home"] .home-hero-subtitle strong {
  color: #eef1f4;
  font-weight: 650;
}

html[data-avro-page="home"] .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

html[data-avro-page="home"] .home-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid var(--home-line-strong);
  border-radius: 12px;
  color: #edf0f3;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

html[data-avro-page="home"] .home-action:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 26, 0.55);
  background: rgba(255, 106, 26, 0.07);
}

html[data-avro-page="home"] .home-action.primary {
  color: #1b0b03;
  border-color: var(--home-orange);
  background: linear-gradient(135deg, #ff5c16, #ff8f31);
  box-shadow: 0 15px 40px rgba(255, 81, 13, 0.20);
}

html[data-avro-page="home"] .home-action.primary:hover {
  box-shadow: 0 18px 48px rgba(255, 81, 13, 0.32);
}

html[data-avro-page="home"] .home-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

html[data-avro-page="home"] .home-proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin-top: 42px;
}

html[data-avro-page="home"] .home-proof {
  display: grid;
  gap: 1px;
}

html[data-avro-page="home"] .home-proof strong {
  color: #f6f7f9;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.035em;
}

html[data-avro-page="home"] .home-proof small {
  color: #737b86;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-avro-page="home"] .home-proof-divider {
  width: 1px;
  height: 31px;
  background: var(--home-line-strong);
}

/* Animated AVRO brand core */
html[data-avro-page="home"] .home-brand-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1100px;
  isolation: isolate;
}

html[data-avro-page="home"] #avroFireCanvas {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

html[data-avro-page="home"] .brand-orbit {
  position: absolute;
  z-index: 0;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 116, 42, 0.13);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-19deg);
  box-shadow:
    0 0 80px rgba(255, 81, 16, 0.05),
    inset 0 0 80px rgba(255, 81, 16, 0.035);
}

html[data-avro-page="home"] .brand-orbit::before,
html[data-avro-page="home"] .brand-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 13%;
  border: 1px dashed rgba(255, 255, 255, 0.11);
  animation: brandOrbit 18s linear infinite;
}

html[data-avro-page="home"] .brand-orbit::after {
  inset: 29%;
  border-style: solid;
  border-color: rgba(255, 113, 38, 0.16);
  animation-direction: reverse;
  animation-duration: 12s;
}

html[data-avro-page="home"] .brand-plane {
  position: relative;
  z-index: 3;
  width: clamp(225px, 24vw, 350px);
  aspect-ratio: 1;
  transform: rotateX(57deg) rotateZ(-18deg);
  transform-style: preserve-3d;
}

html[data-avro-page="home"] .brand-spinner {
  position: relative;
  width: 100%;
  height: 100%;
  animation: brandCoreSpin 8.5s linear infinite;
  transform-style: preserve-3d;
}

html[data-avro-page="home"] .brand-flame-wake {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateZ(8px);
  pointer-events: none;
}

html[data-avro-page="home"] .brand-flame-wake i {
  position: absolute;
  left: 79%;
  top: 43%;
  width: 45%;
  height: 14%;
  border-radius: 45% 90% 90% 45%;
  background: linear-gradient(90deg, rgba(255, 189, 77, 0.96), rgba(255, 83, 10, 0.74) 38%, rgba(255, 41, 4, 0));
  filter: blur(3px) drop-shadow(0 0 12px rgba(255, 70, 9, 0.75));
  transform-origin: 0 50%;
  animation: brandFlame 620ms ease-in-out infinite alternate;
}

html[data-avro-page="home"] .brand-flame-wake i:nth-child(2) {
  left: 73%;
  top: 26%;
  width: 36%;
  height: 10%;
  opacity: 0.78;
  transform: rotate(-24deg);
  animation-delay: -170ms;
}

html[data-avro-page="home"] .brand-flame-wake i:nth-child(3) {
  left: 76%;
  top: 64%;
  width: 39%;
  height: 11%;
  opacity: 0.72;
  transform: rotate(23deg);
  animation-delay: -320ms;
}

html[data-avro-page="home"] .brand-flame-wake i:nth-child(4) {
  left: 83%;
  top: 35%;
  width: 29%;
  height: 7%;
  opacity: 0.9;
  transform: rotate(-9deg);
  animation-delay: -80ms;
}

html[data-avro-page="home"] .brand-flame-wake i:nth-child(5) {
  left: 82%;
  top: 57%;
  width: 31%;
  height: 8%;
  opacity: 0.82;
  transform: rotate(11deg);
  animation-delay: -420ms;
}

html[data-avro-page="home"] .brand-tile {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 123, 55, 0.42);
  border-radius: 29%;
  background:
    radial-gradient(circle at 48% 42%, rgba(80, 26, 9, 0.76), transparent 48%),
    linear-gradient(145deg, #15100e, #060606 68%);
  box-shadow:
    0 0 0 10px rgba(255, 106, 26, 0.025),
    0 0 70px rgba(255, 74, 10, 0.30),
    0 28px 70px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -18px 50px rgba(0, 0, 0, 0.5);
  transform: translateZ(24px);
}

html[data-avro-page="home"] .brand-tile::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 122, 45, 0.16), transparent 24%, transparent 72%, rgba(255, 93, 19, 0.10), transparent);
  animation: brandSurfaceLight 4.2s linear infinite;
}

html[data-avro-page="home"] .brand-tile::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 26%;
  pointer-events: none;
}

html[data-avro-page="home"] .brand-tile svg {
  position: relative;
  z-index: 2;
  width: 78%;
  height: 78%;
  overflow: visible;
  filter: drop-shadow(0 0 10px rgba(255, 75, 7, 0.85)) drop-shadow(0 0 28px rgba(255, 117, 33, 0.42));
}

html[data-avro-page="home"] .brand-tile .brand-rays {
  transform-origin: 32px 32px;
  animation: brandRaysPulse 2.7s ease-in-out infinite;
}

html[data-avro-page="home"] .brand-tile .brand-center {
  transform-origin: 32px 32px;
  animation: brandCenterPulse 1.6s ease-in-out infinite;
}

html[data-avro-page="home"] .brand-shadow {
  position: absolute;
  z-index: 0;
  width: 62%;
  height: 16%;
  bottom: 12%;
  border-radius: 50%;
  background: rgba(255, 73, 8, 0.28);
  filter: blur(28px);
  transform: rotate(-11deg);
  animation: brandShadow 2.8s ease-in-out infinite;
}

html[data-avro-page="home"] .brand-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: #aeb5be;
  background: rgba(8, 11, 15, 0.82);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: brandChipFloat 4s ease-in-out infinite;
}

html[data-avro-page="home"] .brand-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 12px rgba(255, 106, 26, 0.75);
}

html[data-avro-page="home"] .brand-chip.one { top: 14%; left: 1%; }
html[data-avro-page="home"] .brand-chip.two { top: 22%; right: -1%; animation-delay: -1.2s; }
html[data-avro-page="home"] .brand-chip.three { bottom: 19%; left: 2%; animation-delay: -2.1s; }
html[data-avro-page="home"] .brand-chip.four { bottom: 13%; right: 3%; animation-delay: -3s; }
html[data-avro-page="home"] .brand-chip.two i { background: var(--home-green); box-shadow: 0 0 12px rgba(33, 213, 155, 0.75); }
html[data-avro-page="home"] .brand-chip.three i { background: var(--home-cyan); box-shadow: 0 0 12px rgba(82, 200, 255, 0.75); }

@keyframes brandCoreSpin { to { transform: rotateZ(360deg); } }
@keyframes brandOrbit { to { transform: rotate(360deg); } }
@keyframes brandSurfaceLight { to { transform: rotate(360deg); } }
@keyframes brandRaysPulse { 50% { transform: scale(1.035); opacity: 0.87; } }
@keyframes brandCenterPulse { 50% { transform: scale(1.35) rotate(22deg); } }
@keyframes brandShadow { 50% { opacity: 0.56; transform: rotate(-11deg) scaleX(1.14); } }
@keyframes brandChipFloat { 50% { transform: translateY(-7px); } }
@keyframes brandFlame {
  0% { scale: 0.84 0.8; opacity: 0.58; }
  55% { scale: 1.08 1.18; opacity: 0.96; }
  100% { scale: 0.94 0.92; opacity: 0.72; }
}

/* Shared public sections */
html[data-avro-page="home"] .home-section {
  position: relative;
  margin-top: clamp(92px, 10vw, 154px);
  scroll-margin-top: 92px;
}

html[data-avro-page="home"] .home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

html[data-avro-page="home"] .home-section-copy {
  max-width: 780px;
}

html[data-avro-page="home"] .home-section h2 {
  margin: 13px 0 0;
  color: var(--home-text) !important;
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

html[data-avro-page="home"] .home-section h2 span {
  color: #7e858f;
  font-weight: 470;
}

html[data-avro-page="home"] .home-section-head p {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.65;
}

html[data-avro-page="home"] .home-section-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  color: #ccd1d7;
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

html[data-avro-page="home"] .home-section-link:hover {
  border-color: rgba(255, 106, 26, 0.42);
  color: #fff;
}

/* Intelligence bento */
html[data-avro-page="home"] .intelligence-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

html[data-avro-page="home"] .intelligence-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  color: var(--home-text);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  isolation: isolate;
}

html[data-avro-page="home"] .intelligence-card.large { grid-column: span 7; min-height: 382px; }
html[data-avro-page="home"] .intelligence-card.medium { grid-column: span 5; min-height: 382px; }

html[data-avro-page="home"] .intelligence-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  right: -160px;
  bottom: -190px;
  border-radius: 50%;
  background: var(--card-accent, var(--home-orange));
  filter: blur(95px);
  opacity: 0.12;
  transition: opacity 180ms ease, transform 300ms ease;
}

html[data-avro-page="home"] .intelligence-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.19);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
}

html[data-avro-page="home"] .intelligence-card:hover::before {
  opacity: 0.20;
  transform: scale(1.12);
}

html[data-avro-page="home"] .intelligence-card[data-tone="green"] { --card-accent: var(--home-green); }
html[data-avro-page="home"] .intelligence-card[data-tone="cyan"] { --card-accent: var(--home-cyan); }
html[data-avro-page="home"] .intelligence-card[data-tone="amber"] { --card-accent: var(--home-amber); }

html[data-avro-page="home"] .intelligence-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

html[data-avro-page="home"] .intelligence-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  color: var(--card-accent, var(--home-orange));
  background: rgba(255, 255, 255, 0.035);
}

html[data-avro-page="home"] .intelligence-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html[data-avro-page="home"] .intelligence-index {
  color: #5e6670;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

html[data-avro-page="home"] .intelligence-card h3 {
  margin: auto 0 0;
  padding-top: 42px;
  color: #f4f6f8 !important;
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

html[data-avro-page="home"] .intelligence-card > p {
  max-width: 570px;
  margin: 11px 0 0;
  color: #929aa5;
  font-size: 13px;
  line-height: 1.55;
}

html[data-avro-page="home"] .intelligence-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

html[data-avro-page="home"] .intelligence-tools span {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  color: #8f97a2;
  background: rgba(255, 255, 255, 0.022);
  font-size: 9px;
  font-weight: 650;
}

html[data-avro-page="home"] .money-flow-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  width: min(100%, 590px);
  margin-top: 24px;
}

html[data-avro-page="home"] .money-node {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(33, 213, 155, 0.13);
  border-radius: 10px;
  color: #a6b0b8;
  background: rgba(33, 213, 155, 0.035);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

html[data-avro-page="home"] .money-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 8px;
  height: 1px;
  background: rgba(33, 213, 155, 0.35);
}

html[data-avro-page="home"] .relative-visual {
  position: relative;
  height: 102px;
  margin-top: 26px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-avro-page="home"] .relative-visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

html[data-avro-page="home"] .relative-visual path {
  fill: none;
  stroke: var(--home-orange);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 8 6;
  animation: relativeLine 6s linear infinite;
}

html[data-avro-page="home"] .relative-visual path:last-child {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-dasharray: none;
  animation: none;
}

@keyframes relativeLine { to { stroke-dashoffset: -84; } }

/* Tool rail */
html[data-avro-page="home"] .tool-rail {
  position: relative;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
}

html[data-avro-page="home"] .tool-rail::before,
html[data-avro-page="home"] .tool-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 90px;
  pointer-events: none;
}

html[data-avro-page="home"] .tool-rail::before { left: 0; background: linear-gradient(90deg, var(--home-bg), transparent); }
html[data-avro-page="home"] .tool-rail::after { right: 0; background: linear-gradient(-90deg, var(--home-bg), transparent); }

html[data-avro-page="home"] .tool-rail-track {
  width: max-content;
  display: flex;
  gap: 8px;
  padding: 10px;
  animation: toolRail 38s linear infinite;
}

html[data-avro-page="home"] .tool-rail-set {
  display: flex;
  gap: 8px;
}

html[data-avro-page="home"] .tool-rail:hover .tool-rail-track { animation-play-state: paused; }

html[data-avro-page="home"] .tool-rail a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  color: #939ba6;
  background: #0c1015;
  text-decoration: none;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
}

html[data-avro-page="home"] .tool-rail a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-orange);
}

@keyframes toolRail { to { transform: translateX(-50%); } }

/* Live system tabs */
html[data-avro-page="home"] .home-live-shell,
html[data-avro-page="home"] .home-radar-shell {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 24px;
  background: rgba(11, 14, 19, 0.74);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

html[data-avro-page="home"] .home-tabs {
  display: flex;
  gap: 5px;
  padding: 8px;
  border-bottom: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.015);
}

html[data-avro-page="home"] .home-tab {
  min-height: 39px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #858e99;
  background: transparent;
  font: inherit;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  cursor: pointer;
}

html[data-avro-page="home"] .home-tab[aria-selected="true"] {
  color: #fff;
  border-color: rgba(255, 106, 26, 0.26);
  background: rgba(255, 106, 26, 0.08);
}

html[data-avro-page="home"] .home-tab-panel {
  display: none;
  padding: 16px;
}

html[data-avro-page="home"] .home-tab-panel.is-active { display: block; }

html[data-avro-page="home"] .home-live-shell [data-avro-climb],
html[data-avro-page="home"] .home-live-shell [data-fundamental-radar] {
  min-height: 300px;
}

html[data-avro-page="home"] .home-live-shell .avro-climb,
html[data-avro-page="home"] .home-live-shell .fundamental-radar {
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 0 0, rgba(255, 106, 26, 0.055), transparent 30%),
    #0c1015 !important;
  box-shadow: none !important;
}

html[data-avro-page="home"] .home-live-shell .ac-kicker,
html[data-avro-page="home"] .home-live-shell .fr-kicker { color: var(--home-orange) !important; }

html[data-avro-page="home"] .home-live-shell .ac-live i { background: var(--home-green) !important; }

html[data-avro-page="home"] .home-feed-standby {
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.025) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255, 255, 255, 0.025) 50%, transparent 50.2%),
    #0c1015;
  background-size: 48px 48px;
  text-align: center;
}

html[data-avro-page="home"] .home-inline-standby {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  color: #8a939e;
  background: rgba(255, 255, 255, 0.016);
  font-size: 10px;
  font-weight: 650;
  text-align: center;
}

html[data-avro-page="home"] .home-inline-standby.wide { grid-column: 1 / -1; min-height: 150px; }
html[data-avro-page="home"] .home-inline-standby i { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--home-orange); box-shadow: 0 0 12px rgba(255, 106, 26, .55); }

html[data-avro-page="home"] .standby-core {
  max-width: 480px;
}

html[data-avro-page="home"] .standby-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 106, 26, 0.22);
  border-radius: 16px;
  color: var(--home-orange);
  background: rgba(255, 106, 26, 0.06);
  box-shadow: 0 0 32px rgba(255, 86, 15, 0.10);
}

html[data-avro-page="home"] .standby-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; }
html[data-avro-page="home"] .standby-core strong { display: block; color: #f1f3f5; font-size: 18px; }
html[data-avro-page="home"] .standby-core p { margin: 8px auto 0; color: #818a95; font-size: 12px; line-height: 1.55; }
html[data-avro-page="home"] .standby-core span { display: inline-flex; margin-top: 16px; padding: 6px 9px; border: 1px solid var(--home-line); border-radius: 999px; color: #9ea6b0; font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

/* Radar laboratory */
html[data-avro-page="home"] .home-radar-shell .home-tab-panel { padding: 18px; }

html[data-avro-page="home"] .home-radar-shell .strength-radar,
html[data-avro-page="home"] .home-radar-shell .microcap-radar {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(18px, 2.5vw, 30px) !important;
  border: 0 !important;
  border-radius: 17px !important;
  background: #0c1015 !important;
  box-shadow: none !important;
}

html[data-avro-page="home"] .home-radar-shell :where(.strength-radar-head, .microcap-head) h2 {
  font-size: clamp(29px, 3.5vw, 47px) !important;
}

html[data-avro-page="home"] .home-radar-shell :where(.radar-stage, .microcap-stage) {
  background: #10151b !important;
  border-color: rgba(255, 255, 255, 0.075) !important;
}

html[data-avro-page="home"] .home-radar-shell :where(.strength-card, .microcap-card) {
  background: #141920 !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
}

/* Signature engine strip */
html[data-avro-page="home"] .signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

html[data-avro-page="home"] .signature-card {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  padding: 21px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  color: inherit;
  background: rgba(255, 255, 255, 0.018);
  text-decoration: none;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

html[data-avro-page="home"] .signature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 26, 0.34);
  background: rgba(255, 106, 26, 0.035);
}

html[data-avro-page="home"] .signature-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

html[data-avro-page="home"] .signature-number {
  color: #59616c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

html[data-avro-page="home"] .signature-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8e97a1;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html[data-avro-page="home"] .signature-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 9px rgba(33, 213, 155, 0.6);
}

html[data-avro-page="home"] .signature-card h3 {
  margin: auto 0 0;
  color: #f3f5f7 !important;
  font-size: 23px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

html[data-avro-page="home"] .signature-card p {
  margin: 9px 0 0;
  color: #89929d;
  font-size: 12px;
  line-height: 1.55;
}

html[data-avro-page="home"] .signature-open {
  margin-top: 18px;
  color: var(--home-orange);
  font-size: 10px;
  font-weight: 750;
}

/* Workflow */
html[data-avro-page="home"] .workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.016);
}

html[data-avro-page="home"] .workflow-step {
  min-height: 230px;
  padding: 25px;
  border-right: 1px solid var(--home-line);
}

html[data-avro-page="home"] .workflow-step:last-child { border-right: 0; }
html[data-avro-page="home"] .workflow-step span { color: var(--home-orange); font-size: 10px; font-weight: 750; letter-spacing: .12em; }
html[data-avro-page="home"] .workflow-step h3 { margin: 65px 0 0; color: #f1f3f5 !important; font-size: 23px; letter-spacing: -.035em; }
html[data-avro-page="home"] .workflow-step p { margin: 9px 0 0; color: #858e99; font-size: 12px; line-height: 1.6; }

/* Final call to action */
html[data-avro-page="home"] .home-final-cta {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 54px 24px;
  border: 1px solid var(--home-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 120%, rgba(255, 86, 15, 0.22), transparent 50%),
    #0c1015;
  text-align: center;
  isolation: isolate;
}

html[data-avro-page="home"] .home-final-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 106, 26, 0.10);
  border-radius: 50%;
  bottom: -470px;
  box-shadow: 0 0 0 70px rgba(255, 106, 26, 0.025), 0 0 0 140px rgba(255, 106, 26, 0.015);
}

html[data-avro-page="home"] .home-final-cta > div { max-width: 790px; }
html[data-avro-page="home"] .home-final-cta h2 { margin: 15px auto 0; font-size: clamp(40px, 5.8vw, 78px); }
html[data-avro-page="home"] .home-final-cta p { max-width: 580px; margin: 18px auto 0; color: #929aa4; font-size: 14px; line-height: 1.65; }
html[data-avro-page="home"] .home-final-cta .home-hero-actions { justify-content: center; }

/* Old long-form cards are superseded by the curated product story. */
html[data-avro-page="home"] :where(
  .technical-analysis-entry,
  .drawdown-entry,
  .features,
  .explanation,
  .use-cases,
  .disclaimer
) {
  display: none !important;
}

html[data-avro-page="home"] .footer.home-footer {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: end !important;
  gap: 30px !important;
  margin: 0 0 18px !important;
  padding: 28px 4px !important;
  border: 0 !important;
  border-top: 1px solid var(--home-line) !important;
  border-radius: 0 !important;
  color: #737b86 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
}

html[data-avro-page="home"] .home-footer-brand { display: flex; align-items: center; gap: 11px; }
html[data-avro-page="home"] .home-footer-brand img { width: 36px; height: 36px; border-radius: 10px; }
html[data-avro-page="home"] .home-footer-brand strong { display: block; color: #dfe3e8; font-size: 13px; }
html[data-avro-page="home"] .home-footer-brand small { display: block; margin-top: 2px; color: #98a1ac; font-size: 9px; }
html[data-avro-page="home"] .home-footer .footer-links { justify-content: flex-end !important; gap: 7px 16px !important; }
html[data-avro-page="home"] .home-footer .footer-links a { color: #858e99 !important; font-size: 10px !important; font-weight: 600 !important; }
html[data-avro-page="home"] .home-footer .footer-links a:hover { color: #fff !important; }
html[data-avro-page="home"] button.home-section-link { cursor: pointer; }

/* Entry animation. */
html[data-avro-page="home"] [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1);
}

html[data-avro-page="home"] [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  html[data-avro-page="home"] .home-nav-links { display: none; }
  html[data-avro-page="home"] .avro-home-nav { grid-template-columns: 1fr auto; }
  html[data-avro-page="home"] .hero.ccp-hero-clean {
    min-height: auto !important;
    grid-template-columns: 1fr minmax(350px, .8fr) !important;
    padding: 64px 44px !important;
  }
  html[data-avro-page="home"] .home-brand-stage { min-height: 430px; }
  html[data-avro-page="home"] .intelligence-card { grid-column: span 6; }
  html[data-avro-page="home"] .intelligence-card.large,
  html[data-avro-page="home"] .intelligence-card.medium { grid-column: span 6; min-height: 350px; }
}

@media (max-width: 820px) {
  html[data-avro-page="home"] .avro-home-nav,
  html[data-avro-page="home"] #ccpLiveMajors.ccp-live-majors,
  html[data-avro-page="home"] .container,
  html[data-avro-page="home"] .home-main { width: min(calc(100% - 20px), var(--home-max)) !important; }
  html[data-avro-page="home"] .home-nav-button:not(.primary) { display: none; }
  html[data-avro-page="home"] #ccpLiveMajors.ccp-live-majors { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  html[data-avro-page="home"] #ccpLiveMajors .ccp-live-card:nth-child(2) { border-right: 0 !important; }
  html[data-avro-page="home"] #ccpLiveMajors .ccp-live-card:nth-child(-n+2) { border-bottom: 1px solid var(--home-line) !important; }
  html[data-avro-page="home"] .hero.ccp-hero-clean {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 56px 26px 32px !important;
  }
  html[data-avro-page="home"] .home-hero-copy { text-align: center; }
  html[data-avro-page="home"] .home-kicker { justify-content: center; }
  html[data-avro-page="home"] .home-hero-title { max-width: 12ch !important; margin-inline: auto !important; }
  html[data-avro-page="home"] .home-hero-subtitle { margin-inline: auto !important; }
  html[data-avro-page="home"] .home-hero-actions,
  html[data-avro-page="home"] .home-proof-row { justify-content: center; }
  html[data-avro-page="home"] .home-brand-stage { order: -1; min-height: 350px; margin-bottom: -8px; }
  html[data-avro-page="home"] .brand-plane { width: min(62vw, 290px); }
  html[data-avro-page="home"] .brand-orbit { width: min(76vw, 390px); }
  html[data-avro-page="home"] .home-section-head { align-items: flex-start; flex-direction: column; }
  html[data-avro-page="home"] .intelligence-card,
  html[data-avro-page="home"] .intelligence-card.large,
  html[data-avro-page="home"] .intelligence-card.medium { grid-column: 1 / -1; min-height: 300px; }
  html[data-avro-page="home"] .signature-grid { grid-template-columns: 1fr 1fr; }
  html[data-avro-page="home"] .workflow { grid-template-columns: 1fr; }
  html[data-avro-page="home"] .workflow-step { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--home-line); }
  html[data-avro-page="home"] .workflow-step:last-child { border-bottom: 0; }
  html[data-avro-page="home"] .workflow-step h3 { margin-top: 42px; }
}

@media (max-width: 560px) {
  html[data-avro-page="home"] .avro-home-nav { min-height: 58px; margin-top: 7px; border-radius: 14px; }
  html[data-avro-page="home"] .home-brand img { width: 33px; height: 33px; }
  html[data-avro-page="home"] .home-brand-copy small { display: none; }
  html[data-avro-page="home"] .home-nav-button.primary { min-height: 36px; padding: 0 11px; font-size: 10px; }
  html[data-avro-page="home"] #ccpLiveMajors .ccp-live-meta { display: none !important; }
  html[data-avro-page="home"] #ccpLiveMajors .ccp-live-card { padding: 7px 9px !important; }
  html[data-avro-page="home"] #ccpLiveMajors .ccp-live-symbol { font-size: 8px !important; }
  html[data-avro-page="home"] #ccpLiveMajors .ccp-live-price { font-size: 10px !important; }
  html[data-avro-page="home"] .hero.ccp-hero-clean { margin-top: 10px !important; border-radius: 20px !important; padding: 48px 18px 25px !important; }
  html[data-avro-page="home"] .home-hero-title,
  html[data-avro-page="home"] .hero.ccp-hero-clean .home-hero-title { font-size: clamp(43px, 14vw, 67px) !important; }
  html[data-avro-page="home"] .home-hero-actions { display: grid; grid-template-columns: 1fr; }
  html[data-avro-page="home"] .home-action { width: 100%; }
  html[data-avro-page="home"] .home-proof-divider { display: none; }
  html[data-avro-page="home"] .home-proof-row { gap: 15px 22px; }
  html[data-avro-page="home"] .home-brand-stage { order: -1; min-height: 285px; margin-bottom: -10px; }
  html[data-avro-page="home"] .brand-chip { padding: 6px 8px; font-size: 7px; }
  html[data-avro-page="home"] .brand-chip.one { left: -6%; }
  html[data-avro-page="home"] .brand-chip.two { right: -5%; }
  html[data-avro-page="home"] .brand-chip.three { left: -5%; }
  html[data-avro-page="home"] .brand-chip.four { right: -4%; }
  html[data-avro-page="home"] .home-section { margin-top: 86px; }
  html[data-avro-page="home"] .home-section h2 { font-size: 37px; }
  html[data-avro-page="home"] .money-flow-visual { grid-template-columns: 1fr 1fr; }
  html[data-avro-page="home"] .money-node:nth-child(2)::after { display: none; }
  html[data-avro-page="home"] .signature-grid { grid-template-columns: 1fr; }
  html[data-avro-page="home"] .home-tabs { overflow-x: auto; }
  html[data-avro-page="home"] .home-tab { flex: 0 0 auto; }
  html[data-avro-page="home"] .home-tab-panel,
  html[data-avro-page="home"] .home-radar-shell .home-tab-panel { padding: 8px; }
  html[data-avro-page="home"] .home-live-shell .avro-climb,
  html[data-avro-page="home"] .home-live-shell .fundamental-radar { border-radius: 13px !important; }
  html[data-avro-page="home"] .footer.home-footer { grid-template-columns: 1fr !important; align-items: start !important; }
  html[data-avro-page="home"] .home-footer .footer-links { justify-content: flex-start !important; }
}

@media (prefers-reduced-motion: reduce) {
  html[data-avro-page="home"] *,
  html[data-avro-page="home"] *::before,
  html[data-avro-page="home"] *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html[data-avro-page="home"] [data-reveal] { opacity: 1; transform: none; }
}
