:root {
  --sc-bg: #03101f;
  --sc-bg-deep: #020914;
  --sc-bg-soft: #071a2f;
  --sc-panel: rgba(7, 27, 49, 0.86);
  --sc-panel-strong: rgba(9, 32, 57, 0.95);
  --sc-border: rgba(21, 214, 229, 0.22);
  --sc-border-bright: rgba(21, 214, 229, 0.55);
  --sc-text: #f5fbff;
  --sc-muted: #a9bfd1;
  --sc-dim: #6e879a;
  --sc-teal: #20f0ef;
  --sc-teal-2: #0bb9d7;
  --sc-green: #70dd60;
  --sc-red: #ff5f6d;
  --sc-purple: #b46cff;
  --sc-gold: #e7b84a;
  --sc-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  --sc-radius: 16px;
  --sc-radius-sm: 11px;
  --sc-shell: 1296px;
  --sc-header: 72px;
  --sc-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sc-font);
  color: var(--sc-text);
  background:
    radial-gradient(circle at 72% 7%, rgba(6, 200, 226, 0.18), transparent 31%),
    radial-gradient(circle at 22% 23%, rgba(0, 120, 180, 0.12), transparent 28%),
    linear-gradient(180deg, #061b2f 0%, var(--sc-bg) 44%, var(--sc-bg-deep) 100%);
  min-height: 100vh;
  line-height: 1.45;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(32, 240, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 240, 239, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 72%);
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0, rgba(14, 156, 186, 0.15), transparent 36%),
    linear-gradient(90deg, rgba(0,0,0,0.2), transparent 20%, transparent 80%, rgba(0,0,0,0.24));
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input { font: inherit; }

.sc-shell {
  width: min(var(--sc-shell), calc(100% - 44px));
  margin-inline: auto;
}

.sc-skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--sc-teal);
  color: #03101f;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.sc-skip-link:focus { left: 12px; }

.sc-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--sc-header);
  border-bottom: 1px solid rgba(32, 240, 239, 0.15);
  background: rgba(2, 12, 25, 0.83);
  backdrop-filter: blur(18px);
}
.sc-header-inner {
  min-height: var(--sc-header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.sc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.sc-brand-mark { width: 54px; height: auto; }
.sc-brand-text {
  color: var(--sc-teal);
  font-weight: 900;
  letter-spacing: 0.035em;
  font-style: italic;
  font-size: 1.25rem;
  text-shadow: 0 0 24px rgba(32, 240, 239, 0.26);
}
.custom-logo { max-height: 54px; width: auto; }
.sc-primary-nav { justify-self: center; }
.sc-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin: 0;
  padding: 0;
}
.sc-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  color: #cce0ed;
  font-size: 0.91rem;
  font-weight: 750;
  opacity: 0.92;
  border-bottom: 3px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}
.sc-menu a:hover,
.sc-menu .current-menu-item > a,
body.home .sc-menu li:first-child a {
  color: var(--sc-teal);
  border-color: var(--sc-teal);
  opacity: 1;
}
.sc-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 9px;
  font-weight: 850;
  font-size: 0.94rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.sc-btn:hover { transform: translateY(-1px); }
.sc-btn-solid {
  color: #02111d;
  background: linear-gradient(135deg, var(--sc-teal), var(--sc-teal-2));
  box-shadow: 0 14px 34px rgba(16, 220, 232, 0.2);
}
.sc-btn-solid:hover { box-shadow: 0 18px 48px rgba(16, 220, 232, 0.32); }
.sc-btn-ghost {
  color: var(--sc-text);
  border-color: rgba(32, 240, 239, 0.65);
  background: rgba(2, 16, 31, 0.46);
}
.sc-btn-ghost:hover { background: rgba(32, 240, 239, 0.09); }
.sc-btn-small {
  min-height: 42px;
  padding-inline: 21px;
  font-size: 0.86rem;
}
.sc-mobile-toggle { display: none; }

.sc-main { overflow: hidden; }
.sc-hero-section { padding: 30px 0 17px; }
.sc-hero-grid {
  min-height: 300px;
  display: grid;
  grid-template-columns: 0.92fr 1.58fr;
  align-items: center;
  gap: 32px;
  position: relative;
}
.sc-hero-copy { position: relative; z-index: 2; padding-left: 4px; }
.sc-kicker {
  color: var(--sc-teal);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 10px;
}
.sc-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 5.35rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
  font-weight: 950;
}
.sc-hero-copy h1 span { color: var(--sc-teal); }
.sc-hero-lead {
  color: #d9e6ef;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.55;
  max-width: 430px;
  margin: 19px 0 24px;
}
.sc-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 18px; }
.sc-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #c6d6e0;
  font-size: 0.86rem;
  font-weight: 750;
}
.sc-stars {
  color: var(--sc-teal);
  letter-spacing: 0.12em;
  text-shadow: 0 0 18px rgba(32, 240, 239, 0.55);
}
.sc-hero-art {
  position: relative;
  min-height: 345px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-hero-art::before {
  content: "";
  position: absolute;
  inset: 0 0 -12px -8%;
  background: radial-gradient(ellipse at center, rgba(29, 219, 227, 0.19), transparent 58%);
  filter: blur(10px);
}
.sc-hero-art img {
  position: relative;
  width: min(920px, 100%);
  filter: drop-shadow(0 34px 64px rgba(0, 0, 0, 0.48));
}

.sc-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 6px;
}
.sc-stat-card,
.sc-panel,
.sc-challenge-card,
.sc-mini-card {
  border: 1px solid var(--sc-border);
  background: linear-gradient(180deg, rgba(10, 37, 65, 0.86), rgba(4, 20, 38, 0.87));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 14px 36px rgba(0,0,0,0.18);
  border-radius: var(--sc-radius);
}
.sc-stat-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 85px;
  padding: 16px 22px;
}
.sc-stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--sc-teal);
  font-size: 2rem;
  border-radius: 14px;
  background: rgba(32, 240, 239, 0.08);
  border: 1px solid rgba(32, 240, 239, 0.18);
}
.sc-stat-card strong {
  display: block;
  color: var(--sc-teal);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.sc-stat-card span { display: block; font-weight: 850; color: #eaf6fb; line-height: 1.15; }
.sc-stat-card small { display: block; color: var(--sc-muted); font-weight: 650; }
.sc-stat-card i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sc-green);
  margin-right: 5px;
  box-shadow: 0 0 12px rgba(112, 221, 96, 0.8);
}

.sc-section { margin-top: 16px; }
.sc-section-head,
.sc-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 11px;
}
.sc-section-head h2,
.sc-panel h2,
.sc-panel-head h2 {
  margin: 0;
  color: #f3f9fd;
  text-transform: uppercase;
  font-size: 1.03rem;
  letter-spacing: 0.035em;
  font-weight: 950;
}
.sc-section-head a,
.sc-panel-head a,
.sc-mini-card a {
  color: var(--sc-teal);
  font-size: 0.82rem;
  font-weight: 850;
}
.sc-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sc-challenge-card {
  position: relative;
  min-height: 190px;
  padding: 18px;
  overflow: hidden;
  isolation: isolate;
}
.sc-challenge-card::before,
.sc-challenge-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.sc-challenge-card::before {
  background:
    radial-gradient(circle at 78% 45%, rgba(32,240,239,0.22), transparent 34%),
    linear-gradient(135deg, rgba(21,125,191,0.18), transparent 60%);
}
.sc-challenge-card::after {
  opacity: 0.78;
  background-image:
    linear-gradient(145deg, transparent 0 45%, rgba(32,240,239,0.11) 46%, transparent 48%),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,0.035) 22px 24px);
  mask-image: radial-gradient(circle at 78% 48%, black, transparent 50%);
}
.sc-card-green { border-color: rgba(112, 221, 96, 0.34); }
.sc-card-green::before { background: radial-gradient(circle at 78% 44%, rgba(112,221,96,0.31), transparent 34%), linear-gradient(135deg, rgba(21,191,80,0.14), transparent 62%); }
.sc-card-purple { border-color: rgba(180,108,255,0.38); }
.sc-card-purple::before { background: radial-gradient(circle at 78% 44%, rgba(180,108,255,0.31), transparent 34%), linear-gradient(135deg, rgba(114,44,204,0.16), transparent 62%); }
.sc-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #9afdec;
  background: rgba(32, 240, 239, 0.09);
  border: 1px solid rgba(32, 240, 239, 0.36);
  text-transform: uppercase;
  font-weight: 950;
  font-size: 0.68rem;
  border-radius: 999px;
  padding: 3px 9px;
  margin-bottom: 8px;
}
.sc-pill-purple { color: #e1c2ff; border-color: rgba(180,108,255,0.45); background: rgba(180,108,255,0.11); }
.sc-challenge-card h3 {
  margin: 0 0 9px;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}
.sc-challenge-card h3 span { color: #abff68; }
.sc-challenge-card ul {
  margin: 0 0 17px;
  padding-left: 0;
  list-style: none;
  color: #d9e7ef;
  font-size: 0.86rem;
  line-height: 1.45;
  max-width: 78%;
}
.sc-challenge-card li::before { content: "•"; color: var(--sc-teal); margin-right: 7px; }
.sc-card-actions { display: flex; gap: 14px; position: relative; z-index: 2; }
.sc-card-btn {
  flex: 1;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(32, 240, 239, 0.38);
  color: #e8f8ff;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
  background: rgba(2, 13, 25, 0.34);
}
.sc-card-btn-solid { color: #03111b; background: linear-gradient(135deg, var(--sc-teal), var(--sc-teal-2)); border-color: transparent; }
.sc-card-btn-purple { color: #fff; background: linear-gradient(135deg, #b46cff, #7e42dd); border-color: transparent; }

.sc-dashboard-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 0.92fr 1.48fr;
  gap: 14px;
}
.sc-panel { padding: 16px; }
.sc-table { display: grid; gap: 2px; }
.sc-table-row {
  display: grid;
  grid-template-columns: 46px 1.25fr 1fr 0.72fr;
  align-items: center;
  min-height: 36px;
  gap: 12px;
  padding: 0 3px;
  color: #d7e6ef;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.045);
}
.sc-table-row span:nth-child(3),
.sc-table-row span:nth-child(4) { text-align: right; }
.sc-table-head {
  color: #82a4b7;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: none;
}
.sc-up { color: #37f28a !important; font-style: normal; }
.sc-down { color: var(--sc-red) !important; font-style: normal; }

.sc-market-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.2fr 1.2fr;
  gap: 10px;
}
.sc-mini-card {
  min-height: 142px;
  padding: 12px;
  border-radius: var(--sc-radius-sm);
}
.sc-mini-card small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e7f3fa;
  font-weight: 900;
  margin-bottom: 8px;
}
.sc-mini-card p {
  margin: 7px 0;
  color: #d5e7ef;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
}
.sc-mini-card p span { color: #a9bfd1; margin-left: auto; }
.sc-mini-card label {
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  color: #e7f3fa;
  margin-bottom: 8px;
}
.sc-search-box {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  border: 1px solid rgba(32, 240, 239, 0.23);
  background: rgba(0, 8, 18, 0.35);
  border-radius: 8px;
  padding: 0 8px;
  min-height: 34px;
}
.sc-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--sc-text);
  font-size: 0.75rem;
}
.sc-search-box span { color: var(--sc-muted); text-align: center; }
.sc-watchlist { margin-top: 10px; }
.sc-chart-card strong {
  display: block;
  font-size: 1.15rem;
  margin: 3px 0;
}
.sc-chart-card svg {
  width: 100%;
  height: 74px;
  overflow: visible;
}
.sc-chart-card polyline {
  fill: none;
  stroke: var(--sc-teal);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(32, 240, 239, 0.5));
}
.sc-chart-axis { display: flex; justify-content: space-between; color: #7d95a8; font-size: 0.69rem; }
.sc-heatmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.sc-heatmap span {
  min-height: 34px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #eafff2;
  background: rgba(46, 186, 113, 0.45);
  font-weight: 850;
  font-size: 0.64rem;
}
.sc-heatmap .sc-hot-red { background: rgba(210, 63, 75, 0.58); color: #fff; }
.sc-wide-mini { grid-column: span 2; }
.sc-eligible {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.sc-eligible strong { color: var(--sc-teal); font-size: 2rem; line-height: 1; }
.sc-eligible span { color: var(--sc-muted); font-size: 0.78rem; }
.sc-eligible i {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: conic-gradient(var(--sc-green) 0 78%, #102b42 78% 100%);
  display: block;
  border: 7px solid rgba(255,255,255,0.06);
}

.sc-how-section { margin-top: 14px; }
.sc-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 13px;
}
.sc-steps div {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: start;
  min-height: 82px;
}
.sc-steps div:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -3px;
  top: 24px;
  color: var(--sc-teal);
  font-size: 2rem;
  opacity: 0.62;
}
.sc-steps b {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #02111b;
  background: var(--sc-teal);
  font-weight: 950;
  box-shadow: 0 0 22px rgba(32, 240, 239, 0.28);
}
.sc-steps strong { display: block; color: #f7fbff; font-size: 0.82rem; line-height: 1.15; }
.sc-steps span { display: block; color: var(--sc-muted); font-size: 0.75rem; margin-top: 4px; }

.sc-two-col {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sc-feature-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.sc-feature-row div { text-align: center; }
.sc-feature-row span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 9px;
  color: var(--sc-teal);
  font-size: 1.6rem;
  background: radial-gradient(circle, rgba(32,240,239,0.18), rgba(32,240,239,0.05));
  border: 1px solid rgba(32,240,239,0.15);
}
.sc-feature-row strong { display: block; color: #f3fbff; font-size: 0.82rem; }
.sc-feature-row p { color: var(--sc-muted); margin: 4px 0 0; font-size: 0.72rem; line-height: 1.32; }
.sc-resource-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}
.sc-resource-grid a {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 128px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(32,240,239,0.2);
  background: rgba(5, 20, 39, 0.6);
  color: #e8f5fb;
  font-weight: 850;
  font-size: 0.72rem;
  line-height: 1.16;
}
.sc-resource-grid img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: contain; }
.sc-balanced { grid-template-columns: 1fr 1fr; }
.sc-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 18px;
  margin-top: 15px;
}
.sc-check-grid p { margin: 0; color: #dceaf2; font-size: 0.86rem; }
.sc-rules-panel {
  position: relative;
  overflow: hidden;
}
.sc-rules-panel::after {
  content: "✓";
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--sc-teal);
  border: 2px solid rgba(32,240,239,0.45);
  opacity: 0.32;
}
.sc-community-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
}
.sc-avatar-stack { display: flex; align-items: center; }
.sc-avatar-stack span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #061527;
  font-size: 0.72rem;
  font-weight: 950;
  background: linear-gradient(135deg, #ffd49d, #28e4e8);
  border: 3px solid #071a2f;
  margin-left: -8px;
}
.sc-avatar-stack span:first-child { margin-left: 0; }
.sc-community-grid ul { margin: 0; padding-left: 18px; color: #dceaf2; font-weight: 780; }
.sc-badges { display: flex; gap: 8px; }
.sc-badges span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px 999px 12px 12px;
  color: var(--sc-gold);
  background: rgba(231, 184, 74, 0.1);
  border: 1px solid rgba(231, 184, 74, 0.38);
  font-size: 1.2rem;
}

.sc-winner-grid {
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr;
  gap: 10px;
}
.sc-winner-card,
.sc-quote-card {
  min-height: 132px;
  border-radius: 12px;
  border: 1px solid rgba(32,240,239,0.18);
  background: rgba(5, 20, 39, 0.52);
  padding: 12px;
}
.sc-winner-card { display: grid; grid-template-columns: 58px 1fr; gap: 10px; align-items: center; }
.sc-face,
.sc-trophy {
  grid-row: span 4;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #061527;
  background: linear-gradient(135deg, #ffd49d, #20f0ef);
  font-weight: 950;
}
.sc-trophy { font-size: 1.8rem; }
.sc-winner-card strong { font-size: 0.82rem; line-height: 1.25; }
.sc-winner-card span, .sc-winner-card small { color: var(--sc-muted); font-size: 0.72rem; }
.sc-winner-card b { font-size: 0.88rem; }
.sc-quote-card p { margin: 0 0 14px; color: #dfeef5; font-size: 0.86rem; line-height: 1.45; }
.sc-quote-card span { color: #fff; font-weight: 900; font-size: 0.82rem; }
.sc-device-panel img { width: 100%; margin-top: 12px; }

.sc-final-row { grid-template-columns: 1.26fr 0.84fr; align-items: stretch; margin-bottom: 10px; }
.sc-faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: 12px;
}
details {
  border: 1px solid rgba(32,240,239,0.18);
  background: rgba(5, 20, 39, 0.5);
  border-radius: 9px;
  padding: 0;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 11px 13px;
  color: #e8f4fb;
  font-weight: 850;
  font-size: 0.84rem;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "⌄"; position: absolute; right: 14px; color: var(--sc-teal); }
details[open] summary::after { content: "⌃"; }
details p { margin: 0; padding: 0 13px 13px; color: var(--sc-muted); font-size: 0.82rem; }
.sc-newsletter-panel p { color: var(--sc-muted); margin: 9px 0 18px; }
.sc-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border: 1px solid rgba(32,240,239,0.18);
  background: rgba(4, 15, 30, 0.54);
  border-radius: 10px;
  padding: 8px;
}
.sc-newsletter-form input {
  width: 100%;
  min-height: 42px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--sc-text);
  padding: 0 10px;
}
.sc-socials { display: flex; gap: 10px; margin-top: 15px; }
.sc-socials a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(32,240,239,0.1);
  border: 1px solid rgba(32,240,239,0.2);
  color: #e8f7ff;
  font-weight: 950;
}

.sc-footer {
  margin-top: 16px;
  padding: 31px 0 22px;
  border-top: 1px solid rgba(32,240,239,0.16);
  background: linear-gradient(180deg, rgba(2,14,27,0.7), rgba(1,8,17,0.95));
}
.sc-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(5, 1fr);
  gap: 32px;
  align-items: start;
}
.sc-footer-brand p,
.sc-mobile-app p { color: #c2d5df; margin: 15px 0 0; }
.sc-footer-logo .sc-brand-mark { width: 50px; }
.sc-footer-col h3 {
  color: var(--sc-teal);
  margin: 0 0 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.sc-footer-col a {
  display: block;
  color: #c3d5df;
  margin: 6px 0;
  font-size: 0.84rem;
}
.sc-store-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.sc-store-row span {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.38);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 850;
}
.sc-footer-bottom {
  margin-top: 24px;
  text-align: center;
  color: #678198;
  font-size: 0.86rem;
}

.sc-simple-page {
  min-height: 60vh;
  padding: 90px 0;
}
.sc-readable {
  max-width: 900px;
}
.sc-readable h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1; margin: 0 0 22px; }
.sc-page-content { color: #d7e6ef; font-size: 1.05rem; }
.sc-page-content a { color: var(--sc-teal); }
.sc-meta { color: var(--sc-muted); margin-bottom: 22px; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

@media (max-width: 1180px) {
  :root { --sc-shell: 1000px; }
  .sc-header-inner { grid-template-columns: auto auto 1fr; }
  .sc-primary-nav {
    position: fixed;
    inset: var(--sc-header) 18px auto 18px;
    display: none;
    justify-self: stretch;
    background: rgba(3, 16, 31, 0.98);
    border: 1px solid rgba(32,240,239,0.22);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--sc-shadow);
  }
  .sc-primary-nav.is-open { display: block; }
  .sc-menu { display: grid; gap: 4px; }
  .sc-menu a { min-height: 44px; border-bottom: 0; }
  .sc-mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(32,240,239,0.34);
    border-radius: 10px;
    background: rgba(2, 14, 27, 0.7);
  }
  .sc-mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--sc-teal); margin-inline: auto; }
  .sc-header-actions { justify-self: end; }
  .sc-hero-grid { grid-template-columns: 1fr; gap: 12px; }
  .sc-hero-copy { text-align: center; display: grid; place-items: center; }
  .sc-hero-lead { max-width: 680px; }
  .sc-hero-art { min-height: 280px; }
  .sc-stat-strip, .sc-challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-dashboard-grid, .sc-two-col, .sc-final-row { grid-template-columns: 1fr; }
  .sc-market-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-steps { grid-template-columns: repeat(3, 1fr); }
  .sc-resource-grid { grid-template-columns: repeat(3, 1fr); }
  .sc-footer-grid { grid-template-columns: repeat(3, 1fr); }
  .sc-footer-brand { grid-column: span 3; }
}

@media (max-width: 760px) {
  .sc-shell { width: min(100% - 28px, var(--sc-shell)); }
  .sc-site-header { position: sticky; }
  .sc-header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .sc-brand-text { font-size: 0.95rem; }
  .sc-brand-mark { width: 42px; }
  .sc-header-actions {
    grid-column: 1 / -1;
    width: 100%;
  }
  .sc-header-actions .sc-btn { flex: 1; }
  .sc-primary-nav { inset: 116px 14px auto 14px; }
  .sc-hero-section { padding-top: 34px; }
  .sc-hero-copy h1 { font-size: 3.25rem; }
  .sc-hero-actions { width: 100%; }
  .sc-hero-actions .sc-btn { flex: 1 1 100%; }
  .sc-hero-art { min-height: 210px; margin-top: 6px; }
  .sc-stat-strip,
  .sc-challenge-grid,
  .sc-market-grid,
  .sc-resource-grid,
  .sc-check-grid,
  .sc-faq-list,
  .sc-footer-grid { grid-template-columns: 1fr; }
  .sc-footer-brand { grid-column: auto; }
  .sc-stat-card { grid-template-columns: 52px 1fr; padding: 14px; }
  .sc-challenge-card ul { max-width: 100%; }
  .sc-card-actions { flex-direction: column; gap: 9px; }
  .sc-dashboard-grid { gap: 11px; }
  .sc-table-row {
    grid-template-columns: 32px 1fr 0.95fr;
    font-size: 0.75rem;
  }
  .sc-table-row span:nth-child(4) { display: none; }
  .sc-market-grid { display: grid; }
  .sc-wide-mini { grid-column: auto; }
  .sc-steps { grid-template-columns: 1fr; }
  .sc-steps div:not(:last-child)::after { display: none; }
  .sc-feature-row { grid-template-columns: 1fr 1fr; }
  .sc-community-grid { grid-template-columns: 1fr; }
  .sc-badges { flex-wrap: wrap; }
  .sc-winner-grid { grid-template-columns: 1fr; }
  .sc-newsletter-form { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .sc-brand-text { font-size: 0.78rem; }
  .sc-header-actions { gap: 8px; }
  .sc-btn-small { padding-inline: 14px; }
  .sc-hero-copy h1 { font-size: 2.85rem; }
  .sc-feature-row { grid-template-columns: 1fr; }
}


/* =========================================================
   StockChallenges V1.4 premium header correction
   This is the single header calibration layer. It keeps the
   homepage direction from the supplied full-site reference while
   matching the compact market-dashboard header mockup.
========================================================= */
:root {
  --sc-shell: 1208px;
  --sc-header: 66px;
}

.sc-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--sc-header);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(32, 240, 239, 0.26);
  background: linear-gradient(90deg, rgba(1, 9, 20, 0.98), rgba(5, 25, 45, 0.96) 48%, rgba(1, 9, 20, 0.98));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34), inset 0 -1px 0 rgba(32, 240, 239, 0.12);
  backdrop-filter: blur(18px);
}

.sc-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../img/header-market-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.82;
  pointer-events: none;
}

.sc-site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 8, 18, 0.66), rgba(1, 8, 18, 0.16) 30%, rgba(1, 8, 18, 0.22) 70%, rgba(1, 8, 18, 0.58)),
    radial-gradient(circle at 12% 55%, rgba(32, 240, 239, 0.17), transparent 18%),
    radial-gradient(circle at 88% 50%, rgba(32, 240, 239, 0.16), transparent 18%);
  pointer-events: none;
}

.sc-header-inner {
  min-height: var(--sc-header);
  display: grid;
  grid-template-columns: 226px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  position: relative;
}

.sc-brand {
  min-width: 0;
  width: 226px;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  transform: translateY(1px);
}

.sc-brand-logo,
.sc-brand .custom-logo {
  width: 214px;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 15px rgba(32, 240, 239, 0.25));
}

.sc-primary-nav {
  justify-self: center;
  min-width: 0;
}

.sc-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.65vw, 25px);
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sc-menu a {
  min-height: var(--sc-header);
  display: inline-flex;
  align-items: center;
  white-space: nowrap !important;
  color: rgba(231, 243, 250, 0.88);
  font-size: clamp(0.76rem, 0.83vw, 0.88rem);
  font-weight: 850;
  letter-spacing: -0.012em;
  border-bottom: 3px solid transparent;
  text-shadow: 0 0 14px rgba(32, 240, 239, 0.08);
  transition: color 160ms ease, border-color 160ms ease, text-shadow 160ms ease, opacity 160ms ease;
}

.sc-menu a:hover,
.sc-menu .current-menu-item > a,
body.home .sc-menu li:first-child a {
  color: var(--sc-teal);
  border-color: var(--sc-teal);
  text-shadow: 0 0 18px rgba(32, 240, 239, 0.46);
}

.sc-header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.sc-header-actions .sc-btn-small {
  min-height: 42px;
  padding-inline: 22px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.sc-header-actions .sc-btn-ghost {
  color: #f6fbff;
  border-color: rgba(32, 240, 239, 0.82);
  background: linear-gradient(180deg, rgba(2, 17, 33, 0.76), rgba(1, 10, 22, 0.88));
  box-shadow: inset 0 0 16px rgba(32, 240, 239, 0.11), 0 0 20px rgba(32, 240, 239, 0.12);
}

.sc-header-actions .sc-btn-solid {
  color: #03121f;
  border-color: rgba(32, 240, 239, 0.95);
  background: linear-gradient(135deg, #29f8f3, #0abbd8);
  box-shadow: 0 0 24px rgba(32, 240, 239, 0.36), inset 0 1px 0 rgba(255,255,255,0.35);
}

.sc-header-actions .sc-btn-small:hover {
  transform: translateY(-1px);
}

.sc-mobile-toggle {
  display: none;
}

.sc-main {
  overflow: hidden;
}

.sc-hero-section {
  padding-top: 26px;
}

.sc-hero-grid {
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.68fr);
  gap: clamp(24px, 3vw, 42px);
  min-height: 354px;
}

.sc-hero-copy h1 {
  font-size: clamp(3.15rem, 4.55vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.072em;
}

.sc-hero-lead {
  max-width: 460px;
}

.sc-hero-art {
  min-height: 324px;
  justify-content: flex-end;
}

.sc-hero-art img {
  width: min(860px, 100%);
  max-height: 318px;
  object-fit: contain;
  object-position: right center;
}

@media (max-width: 1280px) {
  :root { --sc-shell: 1160px; }
  .sc-header-inner {
    grid-template-columns: 198px minmax(0, 1fr) auto;
    gap: 16px;
  }
  .sc-brand { width: 198px; }
  .sc-brand-logo,
  .sc-brand .custom-logo {
    width: 188px;
    max-height: 44px;
  }
  .sc-menu { gap: clamp(10px, 1.15vw, 16px); }
  .sc-menu a { font-size: 0.76rem; }
  .sc-header-actions { gap: 10px; }
  .sc-header-actions .sc-btn-small {
    min-height: 40px;
    padding-inline: 17px;
  }
}

@media (max-width: 1120px) {
  :root { --sc-header: 68px; }
  .sc-site-header { overflow: visible; }
  .sc-header-inner {
    grid-template-columns: minmax(190px, 1fr) auto auto;
  }
  .sc-brand { width: auto; }
  .sc-brand-logo,
  .sc-brand .custom-logo {
    width: min(230px, 46vw);
    max-height: 48px;
  }
  .sc-mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(32,240,239,0.44);
    border-radius: 11px;
    background: rgba(2, 14, 27, 0.82);
    box-shadow: inset 0 0 14px rgba(32,240,239,0.08);
  }
  .sc-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--sc-teal);
    margin-inline: auto;
  }
  .sc-primary-nav {
    display: none;
    position: fixed;
    top: calc(var(--sc-header) + 10px);
    right: 18px;
    left: 18px;
    padding: 14px;
    border: 1px solid rgba(32, 240, 239, 0.28);
    border-radius: 16px;
    background: rgba(2, 13, 26, 0.98);
    box-shadow: var(--sc-shadow);
  }
  .sc-primary-nav.is-open { display: block; }
  .sc-menu { display: grid; gap: 4px; justify-content: stretch; }
  .sc-menu a { min-height: 42px; border-bottom: 0; font-size: 0.88rem; }
  .sc-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .sc-hero-copy { display: grid; place-items: center; }
  .sc-hero-actions { justify-content: center; }
  .sc-hero-art { justify-content: center; min-height: 260px; }
  .sc-hero-art img { width: min(860px, 100%); object-position: center; }
}

@media (max-width: 760px) {
  :root { --sc-header: 68px; }
  .sc-shell { width: min(100% - 28px, var(--sc-shell)); }
  .sc-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .sc-brand-logo,
  .sc-brand .custom-logo {
    width: min(220px, 68vw);
    max-height: 48px;
  }
  .sc-header-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-bottom: 8px;
  }
  .sc-header-actions .sc-btn-small { width: 100%; }
  .sc-primary-nav { top: 122px; }
  .sc-hero-section { padding-top: 28px; }
  .sc-hero-copy h1 { font-size: 3.05rem; }
  .sc-hero-actions {
    flex-wrap: wrap;
    width: 100%;
  }
  .sc-hero-actions .sc-btn { flex: 1 1 100%; }
  .sc-hero-art { min-height: 215px; }
  .sc-hero-art img { max-height: 232px; }
}

@media (max-width: 430px) {
  .sc-brand-logo,
  .sc-brand .custom-logo { width: min(198px, 64vw); }
  .sc-hero-copy h1 { font-size: 2.78rem; }
}

/* =========================================================
   StockChallenges V1.5 header rebuild
   Header only. Keeps the homepage sections intact while rebuilding
   the navigation, logo, market backdrop, and image based auth buttons.
========================================================= */
:root {
  --sc-header: 63px;
}

.sc-site-header {
  min-height: var(--sc-header) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(24, 230, 242, 0.38) !important;
  background:
    linear-gradient(90deg, rgba(1, 10, 24, 0.97), rgba(6, 30, 52, 0.94) 25%, rgba(4, 18, 35, 0.96) 58%, rgba(1, 9, 20, 0.98)) !important;
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(84, 246, 255, 0.08),
    inset 0 -1px 0 rgba(31, 235, 244, 0.20) !important;
  backdrop-filter: blur(16px) saturate(1.14);
}

.sc-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image: url('../img/header-market-bg-v2.svg') !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  opacity: 0.98 !important;
}

.sc-site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 11% 50%, rgba(23, 244, 245, 0.26), transparent 15%),
    radial-gradient(circle at 83% 50%, rgba(23, 215, 255, 0.23), transparent 17%),
    linear-gradient(90deg, rgba(0, 7, 18, 0.42), rgba(0, 7, 18, 0.08) 20%, rgba(0, 7, 18, 0.18) 66%, rgba(0, 7, 18, 0.52));
}

.sc-site-header > .sc-shell.sc-header-inner {
  width: min(100% - 52px, 1500px) !important;
  min-height: var(--sc-header) !important;
  display: grid !important;
  grid-template-columns: clamp(232px, 19vw, 285px) minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(14px, 2vw, 32px) !important;
  margin-inline: auto !important;
  position: relative;
}

.sc-brand {
  width: clamp(232px, 19vw, 285px) !important;
  min-width: 0 !important;
  height: var(--sc-header) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-decoration: none !important;
  transform: none !important;
}

.sc-brand-logo,
.sc-brand .custom-logo {
  width: clamp(224px, 18.2vw, 278px) !important;
  max-width: 100% !important;
  max-height: 48px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  filter:
    drop-shadow(0 0 13px rgba(23, 240, 245, 0.34))
    drop-shadow(0 3px 9px rgba(0, 0, 0, 0.35)) !important;
}

.sc-primary-nav {
  justify-self: center !important;
  min-width: 0 !important;
  align-self: stretch !important;
  display: flex !important;
  align-items: center !important;
}

.sc-menu {
  display: flex !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: clamp(12px, 1.36vw, 23px) !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.sc-menu li {
  display: flex !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sc-menu a {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: var(--sc-header) !important;
  padding: 0 !important;
  color: rgba(232, 243, 251, 0.9) !important;
  font-size: clamp(0.72rem, 0.78vw, 0.84rem) !important;
  line-height: 1.05 !important;
  font-weight: 850 !important;
  letter-spacing: -0.012em !important;
  text-decoration: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  text-shadow: 0 0 12px rgba(31, 239, 245, 0.15), 0 1px 2px rgba(0, 0, 0, 0.6) !important;
  transition: color 160ms ease, text-shadow 160ms ease, transform 160ms ease !important;
}

.sc-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--sc-teal), transparent);
  box-shadow: 0 0 13px rgba(32, 240, 239, 0.8);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.sc-menu a:hover {
  color: #f7fdff !important;
  text-decoration: none !important;
  text-shadow: 0 0 18px rgba(32, 240, 239, 0.48), 0 1px 2px rgba(0, 0, 0, 0.6) !important;
}

.sc-menu .current-menu-item > a,
.sc-menu .current_page_item > a,
body.home .sc-menu li:first-child > a {
  color: var(--sc-teal) !important;
  text-decoration: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
}

.sc-menu .current-menu-item > a::after,
.sc-menu .current_page_item > a::after,
body.home .sc-menu li:first-child > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.sc-menu-caret {
  display: inline-block;
  margin-left: 5px;
  font-size: 0.82em;
  line-height: 1;
  color: rgba(207, 239, 249, 0.86);
  transform: translateY(-1px);
}

.sc-header-actions {
  display: flex !important;
  align-items: center !important;
  justify-self: end !important;
  gap: 10px !important;
  min-width: max-content !important;
}

.sc-header-actions .sc-btn-small,
.sc-header-login,
.sc-header-signup {
  position: relative !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
  box-shadow: none !important;
  transform: none !important;
}

.sc-header-actions .sc-btn-small span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sc-header-login {
  width: 110px !important;
  height: 33px !important;
  background-image: url('../img/header-login-art.png') !important;
}

.sc-header-signup {
  width: 118px !important;
  height: 35px !important;
  background-image: url('../img/header-signup-art.png') !important;
}

.sc-header-login:hover,
.sc-header-signup:hover {
  transform: translateY(-1px) !important;
  filter: brightness(1.08) saturate(1.08) drop-shadow(0 0 10px rgba(32, 240, 239, 0.36));
}

@media (max-width: 1280px) {
  .sc-site-header > .sc-shell.sc-header-inner {
    width: min(100% - 44px, 1240px) !important;
    grid-template-columns: 224px minmax(0, 1fr) auto !important;
    gap: 14px !important;
  }
  .sc-brand { width: 224px !important; }
  .sc-brand-logo,
  .sc-brand .custom-logo {
    width: 218px !important;
    max-height: 44px !important;
  }
  .sc-menu { gap: clamp(9px, 1vw, 15px) !important; }
  .sc-menu a { font-size: clamp(0.68rem, 0.74vw, 0.78rem) !important; }
  .sc-header-actions { gap: 8px !important; }
  .sc-header-login { width: 98px !important; height: 30px !important; }
  .sc-header-signup { width: 105px !important; height: 31px !important; }
}

@media (max-width: 1120px) {
  :root { --sc-header: 68px; }
  .sc-site-header { overflow: visible !important; }
  .sc-site-header > .sc-shell.sc-header-inner {
    width: min(100% - 36px, 1100px) !important;
    grid-template-columns: minmax(205px, 1fr) auto auto !important;
    gap: 12px !important;
  }
  .sc-brand {
    width: auto !important;
    height: var(--sc-header) !important;
  }
  .sc-brand-logo,
  .sc-brand .custom-logo {
    width: min(250px, 48vw) !important;
    max-height: 48px !important;
  }
  .sc-mobile-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    justify-self: end !important;
    width: 44px !important;
    height: 44px !important;
    border: 1px solid rgba(32,240,239,0.44) !important;
    border-radius: 12px !important;
    background: rgba(2, 14, 27, 0.84) !important;
    box-shadow: inset 0 0 14px rgba(32,240,239,0.08), 0 0 18px rgba(32,240,239,0.11) !important;
  }
  .sc-mobile-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: var(--sc-teal) !important;
    margin-inline: auto !important;
  }
  .sc-primary-nav {
    display: none !important;
    position: fixed !important;
    top: calc(var(--sc-header) + 10px) !important;
    right: 18px !important;
    left: 18px !important;
    padding: 14px !important;
    border: 1px solid rgba(32, 240, 239, 0.32) !important;
    border-radius: 16px !important;
    background:
      linear-gradient(180deg, rgba(4, 22, 40, 0.98), rgba(1, 10, 22, 0.98)),
      url('../img/header-market-bg-v2.svg') center/cover no-repeat !important;
    box-shadow: var(--sc-shadow) !important;
  }
  .sc-primary-nav.is-open { display: block !important; }
  .sc-menu {
    display: grid !important;
    gap: 2px !important;
    justify-content: stretch !important;
    align-items: stretch !important;
  }
  .sc-menu li { display: block !important; }
  .sc-menu a {
    justify-content: flex-start !important;
    min-height: 42px !important;
    padding: 0 10px !important;
    font-size: 0.9rem !important;
  }
  .sc-menu a::after { left: 10px; right: auto; width: 56px; bottom: 4px; }
}

@media (max-width: 760px) {
  :root { --sc-header: 68px; }
  .sc-site-header > .sc-shell.sc-header-inner {
    width: min(100% - 28px, 740px) !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
  }
  .sc-brand-logo,
  .sc-brand .custom-logo {
    width: min(235px, 68vw) !important;
  }
  .sc-header-actions {
    grid-column: 1 / -1 !important;
    justify-content: center !important;
    display: flex !important;
    gap: 10px !important;
    width: 100% !important;
    margin-bottom: 7px !important;
  }
  .sc-header-login { width: 116px !important; height: 35px !important; }
  .sc-header-signup { width: 124px !important; height: 37px !important; }
  .sc-primary-nav { top: 118px !important; }
}

@media (max-width: 430px) {
  .sc-brand-logo,
  .sc-brand .custom-logo { width: min(205px, 64vw) !important; }
  .sc-header-login { width: 102px !important; height: 31px !important; }
  .sc-header-signup { width: 110px !important; height: 33px !important; }
}

/* =========================================================
   StockChallenges V1.6 header background correction
   Header background only. Keeps current logo, nav, login,
   signup, hero, and all homepage sections unchanged.
========================================================= */
.sc-site-header {
  background:
    linear-gradient(90deg, rgba(0, 6, 16, 0.72), rgba(4, 23, 42, 0.44) 32%, rgba(4, 20, 39, 0.40) 68%, rgba(0, 5, 14, 0.76)) !important;
  border-bottom: 1px solid rgba(35, 238, 247, 0.54) !important;
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(88, 246, 255, 0.12),
    inset 0 -1px 0 rgba(31, 235, 244, 0.32) !important;
}

.sc-site-header::before {
  background-image: url('../img/header-market-bg-v3.png') !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  opacity: 1 !important;
  filter: saturate(1.2) contrast(1.1) !important;
}

.sc-site-header::after {
  background:
    radial-gradient(circle at 9% 50%, rgba(21, 244, 245, 0.13), transparent 17%),
    radial-gradient(circle at 84% 48%, rgba(20, 222, 255, 0.15), transparent 20%),
    linear-gradient(180deg, rgba(31, 239, 245, 0.05) 0%, rgba(0, 4, 13, 0.03) 48%, rgba(0, 4, 13, 0.18) 100%),
    linear-gradient(90deg, rgba(0, 6, 16, 0.36), rgba(0, 8, 19, 0.07) 19%, rgba(0, 8, 18, 0.05) 64%, rgba(0, 5, 14, 0.35)) !important;
}

@media (max-width: 1120px) {
  .sc-primary-nav {
    background:
      linear-gradient(180deg, rgba(4, 22, 40, 0.97), rgba(1, 10, 22, 0.98)),
      url('../img/header-market-bg-v3.png') center/cover no-repeat !important;
  }
}

/* =========================================================
   StockChallenges V1.7 header background rebuild
   Header background only. This removes the weak v1.6 swoosh-style
   header art and replaces it with a cleaner layered market-dashboard
   background closer to the provided reference header.
========================================================= */
:root {
  --sc-header: 72px;
}

.sc-site-header {
  background:
    linear-gradient(90deg, rgba(0, 5, 15, 0.58), rgba(5, 27, 51, 0.24) 36%, rgba(3, 26, 54, 0.20) 70%, rgba(0, 5, 15, 0.54)) !important;
  border-bottom: 1px solid rgba(34, 230, 241, 0.58) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(99, 245, 255, 0.10),
    inset 0 -1px 0 rgba(31, 235, 244, 0.28) !important;
}

.sc-site-header::before {
  background-image: url('../img/header-market-bg-v4.png') !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  opacity: 1 !important;
  filter: saturate(1.08) contrast(1.04) !important;
}

.sc-site-header::after {
  background:
    linear-gradient(180deg, rgba(0, 8, 23, 0.08) 0%, rgba(0, 8, 23, 0.00) 44%, rgba(0, 5, 16, 0.20) 100%),
    linear-gradient(90deg, rgba(0, 5, 15, 0.32), rgba(0, 6, 18, 0.04) 18%, rgba(0, 7, 20, 0.02) 68%, rgba(0, 5, 15, 0.30)) !important;
}

.sc-site-header > .sc-shell.sc-header-inner,
.sc-brand,
.sc-menu a {
  min-height: var(--sc-header) !important;
}

.sc-brand {
  height: var(--sc-header) !important;
}

.sc-menu a::after {
  bottom: 4px !important;
}

@media (max-width: 1120px) {
  :root { --sc-header: 72px; }
  .sc-primary-nav {
    top: calc(var(--sc-header) + 10px) !important;
    background:
      linear-gradient(180deg, rgba(4, 22, 40, 0.96), rgba(1, 10, 22, 0.98)),
      url('../img/header-market-bg-v4.png') center/cover no-repeat !important;
  }
}

@media (max-width: 760px) {
  :root { --sc-header: 72px; }
  .sc-primary-nav { top: 122px !important; }
}


/* =========================================================
   StockChallenges V1.8 final header correction
   Keeps the homepage intact. Fixes only the header foundation:
   toned market background, larger readable nav, supplied auth
   button art, and restored functional search.
========================================================= */
:root {
  --sc-header: 84px;
}

.sc-site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  min-height: var(--sc-header) !important;
  overflow: visible !important;
  background: linear-gradient(90deg, #020713 0%, #061a31 39%, #06182f 68%, #020713 100%) !important;
  border-bottom: 1px solid rgba(22, 221, 238, 0.46) !important;
  box-shadow:
    0 15px 36px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(93, 241, 255, 0.08),
    inset 0 -1px 0 rgba(31, 235, 244, 0.18) !important;
}

.sc-site-header::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background-image: url('../img/header-market-bg-v5-soft.png') !important;
  background-size: 100% 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: 0.88 !important;
  filter: saturate(0.90) brightness(0.92) contrast(0.92) !important;
}

.sc-site-header::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 18% 52%, rgba(18, 235, 242, 0.06), transparent 16%),
    radial-gradient(circle at 84% 51%, rgba(23, 236, 242, 0.07), transparent 17%),
    linear-gradient(180deg, rgba(0, 6, 18, 0.18) 0%, rgba(0, 8, 23, 0.02) 49%, rgba(0, 5, 16, 0.26) 100%),
    linear-gradient(90deg, rgba(0, 5, 15, 0.32), rgba(0, 6, 18, 0.08) 22%, rgba(0, 7, 20, 0.06) 69%, rgba(0, 5, 15, 0.36)) !important;
}

.sc-site-header > .sc-shell.sc-header-inner {
  position: relative !important;
  z-index: 2 !important;
  min-height: var(--sc-header) !important;
  width: min(100% - 30px, 1328px) !important;
  display: grid !important;
  grid-template-columns: 276px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 0 !important;
}

.sc-brand {
  width: 276px !important;
  min-height: var(--sc-header) !important;
  height: var(--sc-header) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.sc-brand-logo,
.sc-brand .custom-logo {
  width: 268px !important;
  max-width: 100% !important;
  max-height: 58px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 10px rgba(25, 234, 242, 0.22)) !important;
}

.sc-primary-nav {
  justify-self: center !important;
  min-width: 0 !important;
}

.sc-menu {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(16px, 1.45vw, 24px) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  white-space: nowrap !important;
}

.sc-menu li,
.sc-menu li::before,
.sc-menu li::after {
  list-style: none !important;
  content: none !important;
}

.sc-menu a {
  position: relative !important;
  min-height: var(--sc-header) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  color: rgba(255,255,255,0.92) !important;
  font-size: clamp(14.5px, 1.05vw, 16.5px) !important;
  line-height: 1.05 !important;
  font-weight: 850 !important;
  letter-spacing: -0.025em !important;
  text-decoration: none !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.78) !important;
}

.sc-menu a:hover,
.sc-menu a:focus-visible {
  color: #24f0f1 !important;
  text-decoration: none !important;
}

.sc-menu a::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 14px !important;
  width: 62px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(20,241,242,0.15), #22f4f2, rgba(20,241,242,0.15)) !important;
  box-shadow: 0 0 11px rgba(31,240,242,0.55) !important;
  transform: translateX(-50%) scaleX(0) !important;
  transform-origin: center !important;
  opacity: 0 !important;
  transition: opacity 160ms ease, transform 160ms ease !important;
}

body.home .sc-menu > li:first-child > a,
.sc-menu .current-menu-item > a,
.sc-menu .current_page_item > a,
.sc-menu .current_page_parent > a,
.sc-menu .current-menu-ancestor > a {
  color: #24f0f1 !important;
}

body.home .sc-menu > li:first-child > a::after,
.sc-menu .current-menu-item > a::after,
.sc-menu .current_page_item > a::after,
.sc-menu .current_page_parent > a::after,
.sc-menu .current-menu-ancestor > a::after {
  opacity: 1 !important;
  transform: translateX(-50%) scaleX(1) !important;
}

.sc-header-actions {
  position: relative !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  min-width: max-content !important;
}

.sc-header-actions .sc-btn-small,
.sc-header-login,
.sc-header-signup {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  box-shadow: none !important;
  text-decoration: none !important;
  overflow: visible !important;
}

.sc-header-actions .sc-btn-small span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sc-header-login {
  width: 126px !important;
  height: 38px !important;
  background-image: url('../img/header-login-final.png') !important;
}

.sc-header-signup {
  width: 134px !important;
  height: 38px !important;
  background-image: url('../img/header-signup-final.png') !important;
}

.sc-header-login:hover,
.sc-header-signup:hover,
.sc-header-login:focus-visible,
.sc-header-signup:focus-visible {
  transform: translateY(-1px) !important;
  filter: brightness(1.08) saturate(1.08) drop-shadow(0 0 10px rgba(32, 240, 239, 0.30)) !important;
  outline: none !important;
}

.sc-header-search-toggle {
  width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(35, 239, 246, 0.55) !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, rgba(8, 39, 65, 0.78), rgba(1, 13, 29, 0.92)) !important;
  box-shadow:
    inset 0 0 16px rgba(35, 230, 242, 0.12),
    0 0 14px rgba(26, 225, 242, 0.16) !important;
  cursor: pointer !important;
  position: relative !important;
}

.sc-header-search-toggle span,
.sc-header-search-toggle span::before {
  content: "" !important;
  position: absolute !important;
  display: block !important;
}

.sc-header-search-toggle span {
  width: 14px !important;
  height: 14px !important;
  border: 2px solid #eafcff !important;
  border-radius: 50% !important;
  left: 10px !important;
  top: 9px !important;
  box-shadow: 0 0 8px rgba(28, 235, 242, 0.38) !important;
}

.sc-header-search-toggle span::before {
  width: 9px !important;
  height: 2px !important;
  background: #eafcff !important;
  border-radius: 2px !important;
  right: -7px !important;
  bottom: -4px !important;
  transform: rotate(45deg) !important;
  transform-origin: left center !important;
}

.sc-header-search-toggle:hover,
.sc-header-search-toggle:focus-visible {
  border-color: rgba(36, 244, 242, 0.92) !important;
  background: linear-gradient(180deg, rgba(13, 57, 87, 0.88), rgba(1, 18, 37, 0.96)) !important;
  outline: none !important;
}

.sc-header-search-form {
  position: absolute !important;
  top: calc(100% + 11px) !important;
  right: 0 !important;
  width: min(360px, calc(100vw - 32px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
  padding: 10px !important;
  border: 1px solid rgba(35, 239, 246, 0.42) !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, rgba(4, 24, 43, 0.98), rgba(1, 9, 21, 0.98)) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,0.42), 0 0 22px rgba(26,225,242,0.13) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-6px) !important;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease !important;
}

.sc-header-search-form.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.sc-header-search-form input[type="search"] {
  width: 100% !important;
  min-height: 42px !important;
  border: 1px solid rgba(35, 239, 246, 0.28) !important;
  border-radius: 11px !important;
  background: rgba(0, 8, 20, 0.82) !important;
  color: #fff !important;
  padding: 0 12px !important;
  outline: none !important;
}

.sc-header-search-form input[type="search"]::placeholder {
  color: rgba(219, 240, 246, 0.58) !important;
}

.sc-header-search-form button[type="submit"] {
  min-height: 42px !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: linear-gradient(135deg, #24f4f2, #12b7d2) !important;
  color: #02101d !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

@media (max-width: 1320px) {
  .sc-site-header > .sc-shell.sc-header-inner {
    width: min(100% - 24px, 1290px) !important;
    grid-template-columns: 248px minmax(0, 1fr) auto !important;
    gap: 14px !important;
  }
  .sc-brand { width: 248px !important; }
  .sc-brand-logo,
  .sc-brand .custom-logo { width: 240px !important; max-height: 54px !important; }
  .sc-menu { gap: clamp(12px, 1.05vw, 18px) !important; }
  .sc-menu a { font-size: clamp(13.5px, 0.98vw, 15.2px) !important; }
  .sc-header-actions { gap: 8px !important; }
  .sc-header-login { width: 112px !important; height: 34px !important; }
  .sc-header-signup { width: 120px !important; height: 34px !important; }
  .sc-header-search-toggle { width: 34px !important; height: 34px !important; border-radius: 10px !important; }
  .sc-header-search-toggle span { left: 9px !important; top: 8px !important; }
}

@media (max-width: 1120px) {
  :root { --sc-header: 76px; }
  .sc-site-header > .sc-shell.sc-header-inner {
    width: min(100% - 28px, 1080px) !important;
    grid-template-columns: minmax(190px, 1fr) auto auto !important;
    gap: 12px !important;
  }
  .sc-brand,
  .sc-brand-logo,
  .sc-brand .custom-logo {
    width: min(250px, 48vw) !important;
  }
  .sc-mobile-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    justify-self: end !important;
    width: 44px !important;
    height: 44px !important;
    border: 1px solid rgba(32,240,239,0.44) !important;
    border-radius: 12px !important;
    background: rgba(2, 14, 27, 0.84) !important;
    box-shadow: inset 0 0 14px rgba(32,240,239,0.08), 0 0 18px rgba(32,240,239,0.11) !important;
  }
  .sc-primary-nav {
    display: none !important;
    position: fixed !important;
    top: calc(var(--sc-header) + 10px) !important;
    right: 16px !important;
    left: 16px !important;
    padding: 14px !important;
    border: 1px solid rgba(32, 240, 239, 0.32) !important;
    border-radius: 16px !important;
    background:
      linear-gradient(180deg, rgba(4, 22, 40, 0.97), rgba(1, 10, 22, 0.98)),
      url('../img/header-market-bg-v5-soft.png') center/cover no-repeat !important;
    box-shadow: var(--sc-shadow) !important;
  }
  .sc-primary-nav.is-open { display: block !important; }
  .sc-menu {
    display: grid !important;
    gap: 3px !important;
    justify-content: stretch !important;
    white-space: normal !important;
  }
  .sc-menu a {
    justify-content: flex-start !important;
    min-height: 44px !important;
    padding: 0 12px !important;
    font-size: 0.95rem !important;
  }
  .sc-menu a::after { left: 40px !important; bottom: 5px !important; width: 56px !important; }
}

@media (max-width: 760px) {
  :root { --sc-header: 78px; }
  .sc-site-header > .sc-shell.sc-header-inner {
    width: min(100% - 24px, 740px) !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
  }
  .sc-brand-logo,
  .sc-brand .custom-logo { width: min(235px, 67vw) !important; }
  .sc-header-actions {
    grid-column: 1 / -1 !important;
    justify-content: center !important;
    display: flex !important;
    gap: 9px !important;
    width: 100% !important;
    margin-bottom: 8px !important;
  }
  .sc-header-login { width: 116px !important; height: 34px !important; }
  .sc-header-signup { width: 124px !important; height: 35px !important; }
  .sc-header-search-toggle { width: 35px !important; height: 35px !important; }
  .sc-primary-nav { top: 126px !important; }
}

@media (max-width: 430px) {
  .sc-brand-logo,
  .sc-brand .custom-logo { width: min(210px, 64vw) !important; }
  .sc-header-login { width: 104px !important; height: 31px !important; }
  .sc-header-signup { width: 112px !important; height: 32px !important; }
  .sc-header-search-toggle { width: 32px !important; height: 32px !important; }
}

/* =========================================================
   StockChallenges V1.9 header background correction
   Keeps the approved logo, auth buttons, search, hero, and all
   homepage sections. Restores the detailed header market background
   and removes dropdown/caret marks after Challenges and Resources.
========================================================= */
.sc-site-header {
  background: linear-gradient(90deg, #020713 0%, #061b35 38%, #061932 70%, #020713 100%) !important;
  border-bottom: 1px solid rgba(26, 225, 242, 0.58) !important;
  box-shadow:
    0 15px 36px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(93, 241, 255, 0.10),
    inset 0 -1px 0 rgba(31, 235, 244, 0.22) !important;
}

.sc-site-header::before {
  background-image: url('../img/header-market-bg-v6-final.png') !important;
  background-size: 100% 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: 1 !important;
  filter: saturate(1.04) brightness(0.98) contrast(0.98) !important;
}

.sc-site-header::after {
  background:
    radial-gradient(circle at 17% 53%, rgba(20, 238, 244, 0.055), transparent 17%),
    radial-gradient(circle at 86% 51%, rgba(25, 238, 245, 0.065), transparent 18%),
    linear-gradient(180deg, rgba(0, 6, 18, 0.04) 0%, rgba(0, 8, 23, 0.00) 50%, rgba(0, 5, 16, 0.14) 100%),
    linear-gradient(90deg, rgba(0, 5, 15, 0.20), rgba(0, 6, 18, 0.02) 24%, rgba(0, 7, 20, 0.02) 68%, rgba(0, 5, 15, 0.24)) !important;
}

.sc-menu-caret,
.sc-menu .menu-item-has-children > a .sc-menu-caret,
.sc-menu .page_item_has_children > a .sc-menu-caret {
  display: none !important;
  visibility: hidden !important;
}

.sc-menu .menu-item-has-children > a::before,
.sc-menu .page_item_has_children > a::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 1120px) {
  .sc-primary-nav {
    background:
      linear-gradient(180deg, rgba(4, 22, 40, 0.93), rgba(1, 10, 22, 0.97)),
      url('../img/header-market-bg-v6-final.png') center/cover no-repeat !important;
  }
}

/* =========================================================
   StockChallenges V1.10 active header state correction
   The teal underline now follows the current page or clicked nav item.
   Everything else in the approved header remains unchanged.
========================================================= */
.sc-menu > li > a::after {
  opacity: 0 !important;
  transform: translateX(-50%) scaleX(0) !important;
}

.sc-menu > li.sc-js-current > a,
.sc-menu > li.sc-active-menu-item > a,
.sc-menu > li.current-menu-item > a,
.sc-menu > li.current_page_item > a,
.sc-menu > li.current_page_parent > a,
.sc-menu > li.current-menu-ancestor > a,
body.home .sc-menu > li:first-child > a {
  color: #24f0f1 !important;
}

.sc-menu > li.sc-js-current > a::after,
.sc-menu > li.sc-active-menu-item > a::after,
.sc-menu > li.current-menu-item > a::after,
.sc-menu > li.current_page_item > a::after,
.sc-menu > li.current_page_parent > a::after,
.sc-menu > li.current-menu-ancestor > a::after,
body.home .sc-menu > li:first-child > a::after {
  opacity: 1 !important;
  transform: translateX(-50%) scaleX(1) !important;
}

/* =========================================================
   StockChallenges V1.11 homepage section navigation
   Converts the header into a true one page section navigator.
   Keeps the approved visual header unchanged.
========================================================= */
.sc-scroll-target,
.sc-anchor-target {
  scroll-margin-top: calc(var(--sc-header) + 34px) !important;
}

.sc-anchor-target {
  display: block !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

body.home .sc-menu > li:first-child:not(.sc-js-current):not(.sc-active-menu-item):not(.current-menu-item):not(.current_page_item) > a:not([aria-current="page"]) {
  color: rgba(255,255,255,0.92) !important;
}

body.home .sc-menu > li:first-child:not(.sc-js-current):not(.sc-active-menu-item):not(.current-menu-item):not(.current_page_item) > a:not([aria-current="page"])::after {
  opacity: 0 !important;
  transform: translateX(-50%) scaleX(0) !important;
}

.sc-menu > li.sc-js-current > a {
  color: #24f0f1 !important;
}

.sc-menu > li.sc-js-current > a::after {
  opacity: 1 !important;
  transform: translateX(-50%) scaleX(1) !important;
}

/* =========================================================
   StockChallenges V1.12 search functionality and premium search button
   Keeps the approved header visuals intact while making search useful
   for hardcoded homepage sections and future WordPress content.
========================================================= */
.sc-header-search-form {
  width: min(450px, calc(100vw - 32px)) !important;
  grid-template-columns: minmax(0, 1fr) 124px !important;
  gap: 10px !important;
}

.sc-header-search-form input[type="search"] {
  min-height: 46px !important;
  border-radius: 13px !important;
  font-weight: 700 !important;
}

.sc-header-search-form button[type="submit"],
.sc-search-page-form button[type="submit"] {
  min-height: 46px !important;
  min-width: 124px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(39, 237, 242, 0.74) !important;
  border-radius: 14px !important;
  color: #ffffff !important;
  font-weight: 950 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.95), 0 0 11px rgba(255,205,92,0.35) !important;
  background:
    linear-gradient(90deg, rgba(0, 9, 21, 0.42), rgba(4, 27, 43, 0.08), rgba(0, 7, 19, 0.48)),
    url('../img/search-alpha-button-bg.png') center center / 100% 100% no-repeat !important;
  box-shadow:
    inset 0 0 18px rgba(39, 237, 242, 0.16),
    inset 0 1px 0 rgba(255, 236, 143, 0.24),
    0 0 16px rgba(35, 237, 242, 0.19),
    0 12px 26px rgba(0,0,0,0.28) !important;
  cursor: pointer !important;
  overflow: hidden !important;
  position: relative !important;
}

.sc-header-search-form button[type="submit"]:hover,
.sc-header-search-form button[type="submit"]:focus-visible,
.sc-search-page-form button[type="submit"]:hover,
.sc-search-page-form button[type="submit"]:focus-visible {
  filter: brightness(1.12) saturate(1.08) !important;
  border-color: rgba(255, 218, 97, 0.82) !important;
  box-shadow:
    inset 0 0 20px rgba(255, 206, 81, 0.15),
    0 0 22px rgba(34, 237, 242, 0.30),
    0 14px 30px rgba(0,0,0,0.34) !important;
  outline: none !important;
}

.sc-search-results-page {
  min-height: 64vh !important;
  padding: 82px 0 92px !important;
}

.sc-search-shell {
  max-width: 1120px !important;
}

.sc-search-results-page .sc-eyebrow {
  margin: 0 0 12px !important;
  color: var(--sc-teal) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.22em !important;
  font-weight: 950 !important;
  font-size: 0.82rem !important;
}

.sc-search-results-page h1 {
  margin: 0 0 12px !important;
  font-size: clamp(2.25rem, 5vw, 4.6rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
  color: #f5fbff !important;
}

.sc-search-intro {
  max-width: 820px !important;
  color: #c8dbe6 !important;
  margin: 0 0 24px !important;
  font-size: 1.05rem !important;
}

.sc-search-page-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 138px !important;
  gap: 12px !important;
  max-width: 720px !important;
  padding: 12px !important;
  border: 1px solid rgba(35, 239, 246, 0.35) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(7, 31, 55, 0.92), rgba(3, 16, 31, 0.94)),
    radial-gradient(circle at 24% 10%, rgba(32,240,239,0.09), transparent 34%) !important;
  box-shadow: var(--sc-shadow) !important;
  margin: 28px 0 28px !important;
}

.sc-search-page-form input[type="search"] {
  min-height: 48px !important;
  border: 1px solid rgba(35, 239, 246, 0.30) !important;
  border-radius: 13px !important;
  background: rgba(0, 8, 20, 0.86) !important;
  color: #fff !important;
  padding: 0 14px !important;
  font-weight: 750 !important;
  outline: none !important;
}

.sc-search-page-form input[type="search"]:focus {
  border-color: rgba(36,244,242,0.78) !important;
  box-shadow: 0 0 0 3px rgba(36,244,242,0.10) !important;
}

.sc-search-results-grid,
.sc-wp-search-results {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 24px !important;
}

.sc-wp-search-results {
  margin-top: 34px !important;
}

.sc-wp-search-results > h2 {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  color: var(--sc-teal) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 1rem !important;
}

.sc-search-result-card,
.sc-no-results-panel {
  border: 1px solid var(--sc-border) !important;
  border-radius: var(--sc-radius) !important;
  background:
    linear-gradient(180deg, rgba(10, 37, 65, 0.90), rgba(4, 20, 38, 0.90)),
    radial-gradient(circle at 85% 15%, rgba(32,240,239,0.10), transparent 32%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 16px 38px rgba(0,0,0,0.20) !important;
  padding: 20px !important;
}

.sc-search-result-card span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 24px !important;
  padding: 0 9px !important;
  border: 1px solid rgba(32,240,239,0.30) !important;
  border-radius: 999px !important;
  color: var(--sc-teal) !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
  background: rgba(32,240,239,0.07) !important;
}

.sc-search-result-card h2 {
  margin: 14px 0 8px !important;
  font-size: 1.2rem !important;
  line-height: 1.08 !important;
  color: #f5fbff !important;
  letter-spacing: -0.035em !important;
}

.sc-search-result-card p,
.sc-no-results-panel p {
  color: #b7cedd !important;
  margin: 0 0 16px !important;
}

.sc-search-result-card a,
.sc-quick-search-links a {
  color: var(--sc-teal) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.sc-search-result-card a:hover,
.sc-quick-search-links a:hover {
  color: #ffffff !important;
}

.sc-no-results-panel {
  margin-top: 26px !important;
  max-width: 780px !important;
}

.sc-no-results-panel h2 {
  margin: 0 0 8px !important;
  font-size: 1.45rem !important;
}

.sc-quick-search-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.sc-quick-search-links a {
  border: 1px solid rgba(32,240,239,0.26) !important;
  border-radius: 999px !important;
  padding: 9px 13px !important;
  background: rgba(32,240,239,0.07) !important;
}

@media (max-width: 900px) {
  .sc-search-results-grid,
  .sc-wp-search-results {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 760px) {
  .sc-header-search-form {
    grid-template-columns: 1fr !important;
    width: min(360px, calc(100vw - 28px)) !important;
    right: 50% !important;
    transform: translate(50%, -6px) !important;
  }
  .sc-header-search-form.is-open {
    transform: translate(50%, 0) !important;
  }
  .sc-header-search-form button[type="submit"] {
    width: 100% !important;
  }
  .sc-search-page-form,
  .sc-search-results-grid,
  .sc-wp-search-results {
    grid-template-columns: 1fr !important;
  }
  .sc-search-results-page {
    padding-top: 58px !important;
  }
}


/* =========================================================
   StockChallenges V1.13 hero correction
   Updates the homepage hero to match the approved mockup direction:
   no kicker, image buttons, stronger left copy, larger blended bull/bear art.
   Header and search functionality remain unchanged.
========================================================= */
.sc-hero-section {
  padding: clamp(34px, 4.4vw, 64px) 0 20px !important;
}

.sc-hero-grid {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.88fr) !important;
  align-items: center !important;
  gap: clamp(22px, 3vw, 48px) !important;
  min-height: clamp(420px, 40vw, 560px) !important;
}

.sc-hero-copy {
  align-self: center !important;
  padding-left: 4px !important;
}

.sc-hero-copy h1 {
  font-size: clamp(4.35rem, 5.95vw, 6.7rem) !important;
  line-height: 0.90 !important;
  letter-spacing: -0.082em !important;
  max-width: 440px !important;
}

.sc-hero-copy h1 span {
  color: #29f4ef !important;
  text-shadow: 0 0 24px rgba(32,240,239,0.12) !important;
}

.sc-hero-lead {
  max-width: 445px !important;
  margin: 24px 0 18px !important;
  color: #e6f3fb !important;
  font-size: clamp(1.02rem, 1.08vw, 1.15rem) !important;
  line-height: 1.55 !important;
}

.sc-hero-image-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin: 6px 0 18px !important;
  width: 292px !important;
}

.sc-hero-image-btn {
  display: block !important;
  width: 282px !important;
  height: 64px !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  border: 0 !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  overflow: visible !important;
  filter: drop-shadow(0 0 16px rgba(30, 238, 243, 0.27)) drop-shadow(0 9px 22px rgba(0,0,0,0.34)) !important;
  transition: transform 160ms ease, filter 160ms ease !important;
}

.sc-hero-image-btn:hover,
.sc-hero-image-btn:focus-visible {
  transform: translateY(-1px) !important;
  filter: brightness(1.08) saturate(1.07) drop-shadow(0 0 22px rgba(30, 238, 243, 0.38)) drop-shadow(0 10px 24px rgba(0,0,0,0.40)) !important;
  outline: none !important;
}

.sc-hero-image-btn span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.sc-hero-join-btn {
  background-image: url('../img/hero-join-button-v28.png') !important;
}

.sc-hero-leaderboards-btn {
  background-image: url('../img/hero-leaderboards-button-v29.png') !important;
}

.sc-trust-row {
  max-width: 420px !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 0.86rem !important;
  line-height: 1.28 !important;
  color: #d7e6f0 !important;
  font-weight: 800 !important;
}

.sc-hero-art {
  min-height: clamp(420px, 37vw, 550px) !important;
  justify-content: flex-end !important;
  overflow: visible !important;
  margin-right: clamp(-110px, -5.2vw, -54px) !important;
}

.sc-hero-art::before {
  inset: 3% 1% 4% -7% !important;
  background: radial-gradient(ellipse at center, rgba(29, 219, 227, 0.16), transparent 64%) !important;
  filter: blur(18px) !important;
}

.sc-hero-art img {
  width: min(1130px, 115%) !important;
  max-width: none !important;
  max-height: clamp(390px, 36vw, 530px) !important;
  object-fit: contain !important;
  object-position: right center !important;
  filter: drop-shadow(0 32px 78px rgba(0,0,0,0.42)) !important;
}

@media (max-width: 1120px) {
  .sc-hero-section {
    padding-top: 38px !important;
  }
  .sc-hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 20px !important;
  }
  .sc-hero-copy {
    text-align: center !important;
    display: grid !important;
    place-items: center !important;
  }
  .sc-hero-copy h1 {
    max-width: 680px !important;
    font-size: clamp(4.1rem, 9vw, 6.25rem) !important;
  }
  .sc-hero-lead {
    max-width: 640px !important;
  }
  .sc-hero-image-actions {
    align-items: center !important;
  }
  .sc-trust-row {
    max-width: 440px !important;
    text-align: left !important;
  }
  .sc-hero-art {
    justify-content: center !important;
    min-height: clamp(270px, 45vw, 420px) !important;
    margin-right: 0 !important;
  }
  .sc-hero-art img {
    width: min(920px, 108%) !important;
    max-height: clamp(270px, 42vw, 420px) !important;
    object-position: center !important;
  }
}

@media (max-width: 760px) {
  .sc-hero-copy h1 {
    font-size: clamp(3.55rem, 15vw, 4.7rem) !important;
    max-width: 360px !important;
  }
  .sc-hero-lead {
    font-size: 0.96rem !important;
    max-width: 360px !important;
    margin-top: 18px !important;
  }
  .sc-hero-image-actions {
    width: 254px !important;
    gap: 8px !important;
  }
  .sc-hero-image-btn {
    width: 248px !important;
    height: 56px !important;
  }
  .sc-trust-row {
    grid-template-columns: auto 1fr !important;
    max-width: 340px !important;
    font-size: 0.79rem !important;
  }
  .sc-hero-art {
    min-height: 220px !important;
  }
  .sc-hero-art img {
    width: min(620px, 116%) !important;
    max-height: 250px !important;
  }
}

@media (max-width: 430px) {
  .sc-hero-copy h1 {
    font-size: 3.2rem !important;
  }
  .sc-hero-image-actions {
    width: 235px !important;
  }
  .sc-hero-image-btn {
    width: 230px !important;
    height: 52px !important;
  }
  .sc-hero-art img {
    width: 118% !important;
  }
}

/* =========================================================
   StockChallenges V1.14 hero refinement
   Tightens the gap under the header, cleans up the left copy,
   makes the buttons consistent, and lets the bull/bear art
   fill the hero area with a softer seamless blend.
========================================================= */

.sc-hero-section {
  padding: 12px 0 8px !important;
}

.sc-hero-grid {
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.42fr) !important;
  align-items: center !important;
  gap: clamp(18px, 2.3vw, 34px) !important;
  min-height: clamp(360px, 33vw, 430px) !important;
}

.sc-hero-copy {
  align-self: start !important;
  padding-left: 0 !important;
  margin-left: -2px !important;
  padding-top: 6px !important;
}

.sc-hero-copy h1 {
  margin: 0 !important;
  max-width: 400px !important;
  font-size: clamp(3.85rem, 4.95vw, 5.5rem) !important;
  line-height: 0.97 !important;
  letter-spacing: -0.055em !important;
  font-weight: 890 !important;
  text-wrap: balance !important;
}

.sc-hero-copy h1 span {
  color: #2ceef2 !important;
  text-shadow: 0 0 20px rgba(44, 238, 242, 0.10) !important;
}

.sc-hero-lead {
  max-width: 430px !important;
  margin: 18px 0 14px !important;
  color: #eaf4fb !important;
  font-size: clamp(0.98rem, 1.04vw, 1.08rem) !important;
  line-height: 1.52 !important;
}

.sc-hero-image-actions {
  display: grid !important;
  gap: 8px !important;
  width: 314px !important;
  margin: 4px 0 10px !important;
}

.sc-hero-image-btn {
  width: 314px !important;
  height: 72px !important;
  border-radius: 14px !important;
  background-size: 100% 100% !important;
  filter: drop-shadow(0 0 12px rgba(28, 240, 242, 0.20)) drop-shadow(0 8px 20px rgba(0,0,0,0.26)) !important;
}

.sc-hero-image-btn:hover,
.sc-hero-image-btn:focus-visible {
  transform: translateY(-1px) !important;
  filter: brightness(1.05) saturate(1.03) drop-shadow(0 0 16px rgba(28, 240, 242, 0.28)) drop-shadow(0 10px 22px rgba(0,0,0,0.30)) !important;
}

.sc-trust-row {
  max-width: 405px !important;
  gap: 10px !important;
  font-size: 0.82rem !important;
  line-height: 1.2 !important;
  color: #d9e8f0 !important;
}

.sc-stars {
  letter-spacing: 0.18em !important;
}

.sc-hero-art {
  position: relative !important;
  min-height: clamp(335px, 31vw, 400px) !important;
  height: 100% !important;
  justify-content: stretch !important;
  align-items: stretch !important;
  margin-right: 0 !important;
  overflow: visible !important;
}

.sc-hero-art::before {
  inset: 0 !important;
  background:
    radial-gradient(ellipse at 58% 54%, rgba(33, 226, 234, 0.16), transparent 58%),
    radial-gradient(ellipse at 72% 30%, rgba(18, 140, 185, 0.12), transparent 52%) !important;
  filter: blur(20px) !important;
}

.sc-hero-art img {
  position: absolute !important;
  inset: -8px 0 -6px 0 !important;
  width: 100% !important;
  height: calc(100% + 14px) !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.05) !important;
  filter: none !important;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 56%, rgba(0,0,0,0.96) 66%, rgba(0,0,0,0.78) 76%, transparent 92%) !important;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 56%, rgba(0,0,0,0.96) 66%, rgba(0,0,0,0.78) 76%, transparent 92%) !important;
}

@media (max-width: 1180px) {
  .sc-hero-section {
    padding-top: 14px !important;
  }
  .sc-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    min-height: auto !important;
  }
  .sc-hero-copy {
    text-align: left !important;
    display: block !important;
    margin-left: 0 !important;
    padding-top: 2px !important;
  }
  .sc-hero-copy h1 {
    max-width: 520px !important;
    font-size: clamp(3.9rem, 8vw, 5.2rem) !important;
  }
  .sc-hero-lead {
    max-width: 520px !important;
  }
  .sc-hero-image-actions {
    width: 314px !important;
  }
  .sc-hero-art {
    min-height: clamp(265px, 42vw, 360px) !important;
  }
  .sc-hero-art img {
    position: relative !important;
    inset: 0 !important;
    height: 100% !important;
  }
}

@media (max-width: 760px) {
  .sc-hero-section {
    padding-top: 12px !important;
  }
  .sc-hero-copy h1 {
    max-width: 330px !important;
    font-size: clamp(3.2rem, 14vw, 4.45rem) !important;
    line-height: 0.98 !important;
  }
  .sc-hero-lead {
    max-width: 360px !important;
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
  }
  .sc-hero-image-actions {
    width: 286px !important;
  }
  .sc-hero-image-btn {
    width: 286px !important;
    height: 65px !important;
  }
  .sc-trust-row {
    max-width: 360px !important;
    font-size: 0.78rem !important;
  }
  .sc-hero-art {
    min-height: 230px !important;
  }
}

@media (max-width: 430px) {
  .sc-hero-copy h1 {
    font-size: 3rem !important;
  }
  .sc-hero-image-actions {
    width: 264px !important;
  }
  .sc-hero-image-btn {
    width: 264px !important;
    height: 60px !important;
  }
}

/* =========================================================
   StockChallenges V1.15 hero headline correction only
   Matches the cleaner left hero text reference: less puffy,
   more breathing room between lines, and slightly farther left/top.
   No header, button, search, or right-side art changes in this pass.
========================================================= */
.sc-hero-copy {
  padding-top: 0 !important;
  margin-left: -8px !important;
}

.sc-hero-copy h1 {
  font-size: clamp(3.95rem, 4.75vw, 5.35rem) !important;
  line-height: 1.13 !important;
  letter-spacing: -0.052em !important;
  font-weight: 820 !important;
  max-width: 430px !important;
  margin: 0 !important;
}

.sc-hero-lead {
  margin-top: 20px !important;
}

@media (max-width: 1180px) {
  .sc-hero-copy {
    margin-left: 0 !important;
    padding-top: 0 !important;
  }
  .sc-hero-copy h1 {
    font-size: clamp(3.75rem, 7.7vw, 5.15rem) !important;
    line-height: 1.13 !important;
    letter-spacing: -0.052em !important;
    font-weight: 820 !important;
  }
}

@media (max-width: 760px) {
  .sc-hero-copy h1 {
    font-size: clamp(3.2rem, 13.2vw, 4.25rem) !important;
    line-height: 1.12 !important;
  }
}

@media (max-width: 430px) {
  .sc-hero-copy h1 {
    font-size: 3.05rem !important;
    line-height: 1.12 !important;
  }
}

/* =========================================================
   StockChallenges V1.17 hero art correction only
   Base is v1.15. Fixes the right-side hero artwork so the bull
   is no longer cropped, the image is not over-zoomed, and the
   artwork blends without the hard rectangular box.
========================================================= */

.sc-hero-art {
  min-height: clamp(350px, 31vw, 430px) !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: visible !important;
  margin-right: clamp(-42px, -2.4vw, -18px) !important;
}

.sc-hero-art::before {
  inset: 6% 0 4% 0 !important;
  background:
    radial-gradient(ellipse at 54% 54%, rgba(35, 228, 235, 0.15), transparent 60%),
    radial-gradient(ellipse at 72% 44%, rgba(11, 130, 180, 0.12), transparent 58%) !important;
  filter: blur(22px) !important;
}

.sc-hero-art img {
  position: relative !important;
  inset: auto !important;
  width: min(980px, 112%) !important;
  height: auto !important;
  max-width: none !important;
  max-height: clamp(335px, 30vw, 425px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.22)) !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

@media (max-width: 1180px) {
  .sc-hero-art {
    min-height: clamp(255px, 42vw, 360px) !important;
    margin-right: 0 !important;
  }
  .sc-hero-art img {
    width: min(860px, 106%) !important;
    max-height: clamp(260px, 42vw, 370px) !important;
  }
}

@media (max-width: 760px) {
  .sc-hero-art {
    min-height: 220px !important;
  }
  .sc-hero-art img {
    width: min(620px, 114%) !important;
    max-height: 245px !important;
  }
}

/* =========================================================
   StockChallenges V1.19 hero art layout correction only
   Keeps the v1-18/v1-17 header, copy, buttons, and search intact.
   Repositions and expands the right-side bull/bear artwork so it
   looks closer to the approved reference: larger, sharper, earlier
   on the right side, and no cropped bull.
========================================================= */

.sc-hero-section {
  padding-top: 14px !important;
}

.sc-hero-grid {
  grid-template-columns: minmax(350px, 420px) minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: clamp(12px, 1.4vw, 24px) !important;
  min-height: clamp(390px, 31vw, 455px) !important;
}

.sc-hero-copy {
  align-self: center !important;
}

.sc-hero-art {
  position: relative !important;
  align-self: stretch !important;
  min-height: clamp(390px, 31vw, 455px) !important;
  margin-right: clamp(-42px, -2.5vw, -20px) !important;
  margin-left: clamp(-12px, -0.8vw, 0px) !important;
  overflow: visible !important;
  display: block !important;
}

.sc-hero-art::before {
  content: "" !important;
  position: absolute !important;
  inset: 3% -3% 1% -4% !important;
  background:
    radial-gradient(ellipse at 43% 48%, rgba(30, 228, 235, 0.18), transparent 54%),
    radial-gradient(ellipse at 78% 38%, rgba(5, 113, 171, 0.16), transparent 58%) !important;
  filter: blur(22px) !important;
  opacity: 1 !important;
}

.sc-hero-art img {
  position: absolute !important;
  inset: 0 -30px 0 -8px !important;
  width: calc(100% + 38px) !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.18)) !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

@media (min-width: 1280px) {
  .sc-hero-grid {
    grid-template-columns: 418px minmax(0, 1fr) !important;
  }
  .sc-hero-art img {
    inset-right: -46px !important;
    width: calc(100% + 54px) !important;
  }
}

@media (max-width: 1180px) {
  .sc-hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 12px !important;
  }
  .sc-hero-art {
    min-height: clamp(285px, 40vw, 390px) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .sc-hero-art img {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }
}

@media (max-width: 760px) {
  .sc-hero-art {
    min-height: 230px !important;
  }
}
@media (min-width: 1280px) {
  .sc-hero-art img {
    right: -46px !important;
  }
}

/* =========================================================
   StockChallenges V1.20 approved hero composition
   Rebuilds the above-the-fold hero to match the approved
   reference image: left copy panel plus full bull/bear art on
   the right, with no cropped bull and no over-zoomed pixelation.
========================================================= */

.sc-hero-section {
  padding: 0 !important;
  border-bottom: 1px solid rgba(32, 240, 239, 0.12) !important;
}

.sc-hero-grid {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: clamp(390px, 33.65vw, 646px) minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
  min-height: clamp(520px, 36.2vw, 700px) !important;
}

.sc-hero-copy {
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(38px, 4vw, 70px) clamp(24px, 3vw, 86px) clamp(30px, 3vw, 54px) clamp(42px, 4.45vw, 86px) !important;
  margin: 0 !important;
  background:
    radial-gradient(circle at 78% 38%, rgba(28, 214, 224, 0.08), transparent 54%),
    linear-gradient(90deg, rgba(2, 13, 27, 0.98) 0%, rgba(3, 18, 34, 0.96) 70%, rgba(3, 18, 34, 0.78) 100%) !important;
}

.sc-hero-copy h1 {
  max-width: 420px !important;
  margin: 0 !important;
  font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
  font-size: clamp(4.25rem, 5.35vw, 6rem) !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.066em !important;
  color: #f4f8fb !important;
  text-shadow: 0 8px 20px rgba(0,0,0,0.34) !important;
}

.sc-hero-copy h1 span {
  display: inline-block !important;
  color: #28eff0 !important;
  margin-top: 4px !important;
  text-shadow: 0 8px 22px rgba(0,0,0,0.28), 0 0 18px rgba(40, 239, 240, 0.12) !important;
}

.sc-hero-lead {
  max-width: 500px !important;
  margin: clamp(24px, 2vw, 34px) 0 20px !important;
  color: #f0f8fc !important;
  font-size: clamp(1rem, 1.02vw, 1.15rem) !important;
  line-height: 1.58 !important;
  font-weight: 520 !important;
}

.sc-hero-image-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  width: clamp(318px, 21.5vw, 420px) !important;
  margin: 8px 0 0 !important;
}

.sc-hero-image-btn {
  width: 100% !important;
  height: clamp(68px, 4.55vw, 88px) !important;
  border-radius: 14px !important;
  background-size: 100% 100% !important;
  filter: drop-shadow(0 0 13px rgba(28, 240, 242, 0.22)) drop-shadow(0 8px 20px rgba(0,0,0,0.28)) !important;
}

.sc-trust-row {
  margin-top: 12px !important;
}

.sc-hero-art {
  position: relative !important;
  align-self: stretch !important;
  min-height: inherit !important;
  height: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: block !important;
  background:
    radial-gradient(ellipse at 48% 46%, rgba(24, 213, 225, 0.12), transparent 58%),
    linear-gradient(90deg, rgba(2, 13, 27, 0.25), rgba(2, 11, 22, 0.05) 24%, rgba(2, 11, 22, 0.1) 100%) !important;
}

.sc-hero-art::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse at 42% 52%, rgba(28, 238, 242, 0.13), transparent 56%) !important;
  filter: blur(26px) !important;
  opacity: 1 !important;
  z-index: 0 !important;
}

.sc-hero-art img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: left center !important;
  transform: none !important;
  filter: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  z-index: 1 !important;
}

@media (max-width: 1180px) {
  .sc-hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .sc-hero-copy {
    min-height: auto !important;
    padding: 36px 28px 24px !important;
  }

  .sc-hero-copy h1 {
    max-width: 520px !important;
    font-size: clamp(3.8rem, 8.8vw, 5.35rem) !important;
  }

  .sc-hero-lead {
    max-width: 620px !important;
  }

  .sc-hero-art {
    min-height: clamp(320px, 53vw, 520px) !important;
  }

  .sc-hero-art img {
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (max-width: 760px) {
  .sc-hero-copy {
    padding: 28px 22px 22px !important;
  }

  .sc-hero-copy h1 {
    font-size: clamp(3.05rem, 14vw, 4.35rem) !important;
    line-height: 1 !important;
  }

  .sc-hero-lead {
    font-size: 0.95rem !important;
    line-height: 1.48 !important;
  }

  .sc-hero-image-actions {
    width: min(100%, 314px) !important;
    gap: 9px !important;
  }

  .sc-hero-image-btn {
    height: 65px !important;
  }

  .sc-hero-art {
    min-height: 280px !important;
  }
}

/* =========================================================
   StockChallenges V1.21 hero image fit correction
   Keeps the v1.20 layout, but prevents the right hero artwork
   from cropping the bull. The artwork now uses the approved
   full bull/bear composition and fits inside the right panel.
========================================================= */

.sc-hero-grid {
  grid-template-columns: clamp(386px, 33.65vw, 646px) minmax(0, 1fr) !important;
}

.sc-hero-art {
  overflow: hidden !important;
  background:
    radial-gradient(ellipse at 43% 49%, rgba(27, 229, 236, 0.12), transparent 62%),
    linear-gradient(90deg, rgba(2, 13, 27, 0.08), rgba(2, 11, 22, 0.02) 22%, rgba(2, 11, 22, 0.08) 100%) !important;
}

.sc-hero-art img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  filter: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

@media (min-width: 1181px) {
  .sc-hero-art img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 1180px) {
  .sc-hero-art img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* =========================================================
   StockChallenges V1.22 desktop hero scale correction
   Fixes the oversized hero at 100% desktop view. Reduces the
   left column, text, paragraph, and CTA scale so the full hero
   section fits above the fold and lets the right artwork display
   the full bull/bear composition like the approved reference.
========================================================= */

@media (min-width: 1181px) {
  .sc-hero-section {
    padding: 0 !important;
  }

  .sc-hero-grid {
    grid-template-columns: clamp(380px, 29.65vw, 405px) minmax(0, 1fr) !important;
    min-height: clamp(410px, 31.75vw, 432px) !important;
    height: clamp(410px, 31.75vw, 432px) !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .sc-hero-copy {
    padding: clamp(26px, 2.25vw, 32px) clamp(22px, 2.3vw, 34px) clamp(22px, 2vw, 28px) clamp(52px, 4.1vw, 66px) !important;
    justify-content: flex-start !important;
    background:
      radial-gradient(circle at 82% 39%, rgba(28, 214, 224, 0.07), transparent 56%),
      linear-gradient(90deg, rgba(2, 13, 27, 0.99) 0%, rgba(3, 18, 34, 0.97) 73%, rgba(3, 18, 34, 0.88) 100%) !important;
  }

  .sc-hero-copy h1 {
    max-width: 330px !important;
    font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
    font-size: clamp(3.25rem, 4.05vw, 4.05rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.058em !important;
    font-weight: 880 !important;
    text-shadow: 0 7px 18px rgba(0,0,0,0.34) !important;
  }

  .sc-hero-copy h1 span {
    color: #28eff0 !important;
    margin-top: 2px !important;
  }

  .sc-hero-lead {
    max-width: 345px !important;
    margin: 20px 0 14px !important;
    font-size: clamp(0.82rem, 0.91vw, 0.93rem) !important;
    line-height: 1.46 !important;
    font-weight: 520 !important;
    color: #eff8fc !important;
  }

  .sc-hero-image-actions {
    width: clamp(258px, 20vw, 292px) !important;
    gap: 10px !important;
    margin: 4px 0 0 !important;
  }

  .sc-hero-image-btn {
    width: 100% !important;
    height: clamp(52px, 4.2vw, 62px) !important;
    border-radius: 12px !important;
    background-size: 100% 100% !important;
  }

  .sc-trust-row {
    display: none !important;
  }

  .sc-hero-art {
    min-height: inherit !important;
    height: 100% !important;
    overflow: hidden !important;
    background: #031524 !important;
  }

  .sc-hero-art::before {
    display: none !important;
  }

  .sc-hero-art img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    filter: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

@media (min-width: 1400px) {
  .sc-hero-grid {
    grid-template-columns: 420px minmax(0, 1fr) !important;
    min-height: 450px !important;
    height: 450px !important;
  }

  .sc-hero-copy h1 {
    font-size: 4.18rem !important;
    max-width: 350px !important;
  }

  .sc-hero-lead {
    max-width: 365px !important;
    font-size: 0.96rem !important;
  }

  .sc-hero-image-actions {
    width: 308px !important;
  }

  .sc-hero-image-btn {
    height: 66px !important;
  }
}

/* =========================================================
   StockChallenges V1.23 final hero fit and CTA button repair
   Fixes only what was called out: the hero image no longer
   crops the bull, and both CTA buttons now share the same
   size, shape, blended graphics, and teal highlighted text.
========================================================= */

@media (min-width: 1181px) {
  .sc-hero-grid {
    grid-template-columns: clamp(380px, 29.65vw, 405px) minmax(0, 1fr) !important;
    min-height: clamp(410px, 31.75vw, 432px) !important;
    height: clamp(410px, 31.75vw, 432px) !important;
  }

  .sc-hero-art {
    overflow: hidden !important;
    background:
      radial-gradient(ellipse at 43% 46%, rgba(28, 230, 236, 0.12), transparent 58%),
      linear-gradient(90deg, rgba(2, 13, 27, 0.08), rgba(3, 18, 34, 0.02) 28%, rgba(2, 11, 22, 0.11) 100%) !important;
  }

  .sc-hero-art img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    filter: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .sc-hero-image-actions {
    width: 300px !important;
    gap: 10px !important;
    margin-top: 4px !important;
  }

  .sc-hero-image-btn {
    width: 300px !important;
    height: 68px !important;
    border-radius: 13px !important;
    background-size: 100% 100% !important;
    background-position: center !important;
    filter: drop-shadow(0 0 12px rgba(32, 240, 239, 0.20)) drop-shadow(0 8px 18px rgba(0,0,0,0.28)) !important;
  }
}

@media (max-width: 1180px) {
  .sc-hero-art img {
    object-fit: contain !important;
    object-position: center center !important;
  }

  .sc-hero-image-actions {
    width: min(100%, 312px) !important;
    gap: 10px !important;
  }

  .sc-hero-image-btn {
    width: 100% !important;
    height: 70px !important;
    border-radius: 13px !important;
  }
}

@media (max-width: 760px) {
  .sc-hero-image-actions {
    width: min(100%, 286px) !important;
  }
  .sc-hero-image-btn {
    height: 64px !important;
  }
}


/* =========================================================
   StockChallenges V1.14 hero full-width background update
   Uses the approved bull/bear artwork as a full-width hero background,
   with the left copy and buttons overlaid directly on the image.
========================================================= */
.sc-hero-section {
  position: relative !important;
  overflow: hidden !important;
  padding: 0 !important;
  min-height: clamp(500px, 44vw, 660px) !important;
  display: flex !important;
  align-items: stretch !important;
}

.sc-hero-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: url('../img/hero-bull-bear-blend.png') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  transform: scale(1.01) !important;
}

.sc-hero-section::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg,
      rgba(2, 10, 21, 0.94) 0%,
      rgba(2, 10, 21, 0.88) 20%,
      rgba(2, 10, 21, 0.74) 34%,
      rgba(2, 10, 21, 0.44) 48%,
      rgba(2, 10, 21, 0.12) 66%,
      rgba(2, 10, 21, 0.18) 100%),
    linear-gradient(180deg,
      rgba(3, 15, 27, 0.18) 0%,
      rgba(3, 15, 27, 0.02) 16%,
      rgba(3, 15, 27, 0.12) 100%) !important;
}

.sc-hero-grid {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  min-height: clamp(500px, 44vw, 660px) !important;
  grid-template-columns: minmax(340px, 450px) 1fr !important;
  align-items: center !important;
  gap: 0 !important;
}

.sc-hero-copy {
  position: relative !important;
  z-index: 3 !important;
  align-self: center !important;
  padding: clamp(44px, 5vw, 72px) 0 clamp(38px, 4vw, 54px) 4px !important;
  max-width: 455px !important;
}

.sc-hero-copy h1 {
  font-size: clamp(3.9rem, 5.3vw, 6.15rem) !important;
  line-height: 0.90 !important;
  letter-spacing: -0.078em !important;
  max-width: 430px !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.26) !important;
}

.sc-hero-copy h1 span {
  color: #27f0ef !important;
  text-shadow: 0 0 18px rgba(39, 240, 239, 0.16), 0 8px 20px rgba(0,0,0,0.18) !important;
}

.sc-hero-lead {
  max-width: 430px !important;
  margin: 22px 0 18px !important;
  font-size: clamp(0.98rem, 1.02vw, 1.12rem) !important;
  line-height: 1.52 !important;
  color: #eef6fb !important;
  text-shadow: 0 6px 18px rgba(0,0,0,0.20) !important;
}

.sc-hero-image-actions {
  margin: 8px 0 18px !important;
}

.sc-trust-row {
  max-width: 420px !important;
  text-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
}

.sc-hero-art {
  min-height: 100% !important;
  visibility: hidden !important;
  pointer-events: none !important;
  margin: 0 !important;
}

.sc-hero-art::before,
.sc-hero-art img {
  display: none !important;
}

@media (max-width: 1120px) {
  .sc-hero-section,
  .sc-hero-grid {
    min-height: auto !important;
  }

  .sc-hero-section::before {
    background-position: center top !important;
  }

  .sc-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .sc-hero-copy {
    max-width: 680px !important;
    margin: 0 auto !important;
    padding: 40px 0 32px !important;
    text-align: center !important;
    display: grid !important;
    place-items: center !important;
  }

  .sc-hero-copy h1 {
    max-width: 620px !important;
    font-size: clamp(3.6rem, 10vw, 5.4rem) !important;
  }

  .sc-hero-lead,
  .sc-trust-row {
    max-width: 620px !important;
  }

  .sc-hero-image-actions {
    align-items: center !important;
  }

  .sc-hero-art {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .sc-hero-section::after {
    background:
      linear-gradient(180deg,
        rgba(2, 10, 21, 0.78) 0%,
        rgba(2, 10, 21, 0.62) 42%,
        rgba(2, 10, 21, 0.70) 100%) !important;
  }

  .sc-hero-copy {
    padding: 34px 0 28px !important;
  }

  .sc-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.35rem) !important;
    max-width: 360px !important;
  }

  .sc-hero-lead {
    max-width: 360px !important;
    font-size: 0.95rem !important;
  }
}


/* =========================================================
   StockChallenges V1.28 explicit Join A Challenge button replacement
   Uses a unique file name so browsers cannot keep showing the old cached button.
========================================================= */
.sc-hero-join-btn {
  background-image: url('../img/hero-join-button-v28.png') !important;
}


/* =========================================================
   StockChallenges V1.29 explicit Leaderboards button replacement
   Uses a unique file name so browsers cannot keep showing the old cached Leaderboards button.
========================================================= */
.sc-hero-leaderboards-btn {
  background-image: url('../img/hero-leaderboards-button-v29.png') !important;
}


/* =========================================================
   StockChallenges V1.30 hero fit and lighter overlay refinement
   Makes the full hero fit at 100% desktop view, keeps the buttons
   visible, and lightens the left overlay so the hero art shows
   through behind the copy.
========================================================= */
@media (min-width: 1181px) {
  .sc-hero-section {
    min-height: clamp(410px, 33vw, 470px) !important;
  }

  .sc-hero-section::before {
    background-position: center center !important;
    background-size: cover !important;
    transform: none !important;
  }

  .sc-hero-section::after {
    background:
      linear-gradient(90deg,
        rgba(2, 10, 21, 0.66) 0%,
        rgba(2, 10, 21, 0.56) 16%,
        rgba(2, 10, 21, 0.40) 30%,
        rgba(2, 10, 21, 0.23) 43%,
        rgba(2, 10, 21, 0.10) 58%,
        rgba(2, 10, 21, 0.12) 100%),
      linear-gradient(180deg,
        rgba(3, 15, 27, 0.12) 0%,
        rgba(3, 15, 27, 0.03) 20%,
        rgba(3, 15, 27, 0.10) 100%) !important;
  }

  .sc-hero-grid {
    min-height: clamp(410px, 33vw, 470px) !important;
    grid-template-columns: minmax(300px, 370px) minmax(0, 1fr) !important;
    align-items: center !important;
  }

  .sc-hero-copy {
    max-width: 370px !important;
    padding: 26px 0 20px 6px !important;
  }

  .sc-hero-copy h1 {
    max-width: 330px !important;
    font-size: clamp(3.05rem, 4.15vw, 4.6rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.068em !important;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.22) !important;
  }

  .sc-hero-lead {
    max-width: 330px !important;
    margin: 16px 0 14px !important;
    font-size: clamp(0.86rem, 0.9vw, 0.98rem) !important;
    line-height: 1.42 !important;
  }

  .sc-hero-image-actions {
    width: 300px !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  .sc-hero-image-btn {
    width: 300px !important;
    height: 56px !important;
    border-radius: 12px !important;
  }
}

@media (min-width: 1400px) {
  .sc-hero-section,
  .sc-hero-grid {
    min-height: 490px !important;
  }

  .sc-hero-grid {
    grid-template-columns: 390px minmax(0, 1fr) !important;
  }

  .sc-hero-copy {
    max-width: 390px !important;
  }

  .sc-hero-copy h1 {
    max-width: 345px !important;
    font-size: 4.9rem !important;
  }

  .sc-hero-lead {
    max-width: 345px !important;
    font-size: 1rem !important;
  }

  .sc-hero-image-btn {
    height: 58px !important;
  }
}

/* =========================================================
   StockChallenges V1.31 disciplined desktop hero system
   Rebuilds the approved hero pieces into a cleaner professional
   structure: slimmer header, full-width background art, transparent
   left gradient, tighter content column, controlled button sizing,
   and a soft fade into the next section.
========================================================= */
@media (min-width: 1181px) {
  :root {
    --sc-header: 78px;
  }

  .sc-site-header {
    min-height: 78px !important;
  }

  .sc-header-inner {
    min-height: 78px !important;
    gap: 18px !important;
  }

  .sc-brand img,
  .custom-logo,
  .sc-header-logo {
    max-height: 54px !important;
    width: auto !important;
  }

  .sc-brand,
  .sc-brand-logo {
    width: 220px !important;
    max-width: 220px !important;
  }

  .sc-brand img,
  .sc-brand-logo img {
    max-width: 220px !important;
  }

  .sc-menu {
    gap: clamp(14px, 1.35vw, 24px) !important;
  }

  .sc-menu a {
    min-height: 78px !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .sc-header-actions {
    gap: 10px !important;
  }

  .sc-header-actions .sc-btn,
  .sc-header-image-btn,
  .sc-login-image-btn,
  .sc-signup-image-btn {
    height: 40px !important;
    min-height: 40px !important;
  }

  .sc-search-toggle,
  .sc-header-search-toggle {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }

  .sc-hero-section {
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
    height: clamp(500px, calc(100vh - 92px), 620px) !important;
    min-height: 500px !important;
    max-height: 620px !important;
    display: flex !important;
    align-items: stretch !important;
    background: #031827 !important;
  }

  .sc-hero-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: url('../img/hero-bull-bear-blend.png') !important;
    background-repeat: no-repeat !important;
    background-position: 58% center !important;
    background-size: cover !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: 0 !important;
  }

  .sc-hero-section::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
      linear-gradient(90deg,
        rgba(0, 15, 28, 0.88) 0%,
        rgba(0, 22, 38, 0.70) 55%,
        rgba(0, 22, 38, 0.10) 100%),
      linear-gradient(to bottom,
        transparent calc(100% - 90px),
        #031827 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .sc-hero-grid {
    position: relative !important;
    z-index: 2 !important;
    width: min(var(--sc-shell), calc(100% - 44px)) !important;
    height: 100% !important;
    min-height: 0 !important;
    margin-inline: auto !important;
    display: grid !important;
    grid-template-columns: 360px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 0 !important;
  }

  .sc-hero-copy {
    position: relative !important;
    z-index: 3 !important;
    max-width: 360px !important;
    width: 360px !important;
    align-self: center !important;
    padding: 22px 0 24px 48px !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .sc-hero-copy h1 {
    max-width: 330px !important;
    margin: 0 !important;
    font-family: Inter, Poppins, Montserrat, Arial, sans-serif !important;
    font-size: clamp(52px, 5vw, 68px) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.058em !important;
    font-weight: 880 !important;
    color: #f4f8fb !important;
    text-shadow: 0 7px 18px rgba(0, 0, 0, 0.28) !important;
  }

  .sc-hero-copy h1 span {
    color: #27f0ef !important;
    display: inline-block !important;
    margin-top: 2px !important;
    text-shadow: 0 0 18px rgba(39, 240, 239, 0.18), 0 6px 16px rgba(0, 0, 0, 0.22) !important;
  }

  .sc-hero-lead {
    max-width: 330px !important;
    margin: 18px 0 16px !important;
    font-size: clamp(13px, 0.9vw, 15px) !important;
    line-height: 1.42 !important;
    font-weight: 600 !important;
    color: #eef7fb !important;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.34) !important;
  }

  .sc-hero-image-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 296px !important;
    gap: 12px !important;
    margin: 0 !important;
  }

  .sc-hero-image-btn {
    display: block !important;
    width: 296px !important;
    height: 58px !important;
    min-height: 58px !important;
    border-radius: 12px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 100% 100% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 13px rgba(28, 240, 242, 0.25)) drop-shadow(0 9px 22px rgba(0, 0, 0, 0.32)) !important;
  }

  .sc-trust-row {
    display: none !important;
  }

  .sc-hero-art,
  .sc-hero-art::before,
  .sc-hero-art img {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .sc-hero-grid {
    grid-template-columns: 382px minmax(0, 1fr) !important;
  }

  .sc-hero-copy {
    width: 382px !important;
    max-width: 382px !important;
    padding-left: 48px !important;
  }

  .sc-hero-copy h1 {
    font-size: 68px !important;
  }
}

/* =========================================================
   StockChallenges V1.32 desktop polish refinement
   Keeps the approved v1.31 hero structure, but refines the
   balance: slimmer header, brighter hero, slightly smaller
   headline, cleaner paragraph, more breathing room around
   buttons, and a slightly more right-shifted focal point.
========================================================= */
@media (min-width: 1181px) {
  :root {
    --sc-header: 72px;
  }

  .sc-site-header {
    min-height: 72px !important;
  }

  .sc-header-inner,
  .sc-site-header > .sc-shell.sc-header-inner {
    min-height: 72px !important;
    height: 72px !important;
    gap: 22px !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
  }

  .sc-brand-logo,
  .sc-brand img,
  .custom-logo {
    width: auto !important;
    max-width: 205px !important;
    max-height: 46px !important;
  }

  .sc-menu {
    gap: clamp(12px, 1.45vw, 22px) !important;
  }

  .sc-menu a {
    min-height: 72px !important;
    font-size: 14px !important;
  }

  .sc-header-actions {
    gap: 10px !important;
  }

  .sc-header-login,
  .sc-header-signup {
    height: 40px !important;
  }

  .sc-header-search-toggle {
    width: 40px !important;
    height: 40px !important;
  }

  .sc-hero-section {
    min-height: calc(100vh - 92px) !important;
    max-height: 620px !important;
  }

  .sc-hero-section::before {
    background-position: 60% center !important;
    background-size: cover !important;
    filter: brightness(1.08) saturate(1.02) !important;
  }

  .sc-hero-section::after {
    background:
      linear-gradient(90deg,
        rgba(0, 12, 24, 0.58) 0%,
        rgba(0, 15, 28, 0.54) 18%,
        rgba(0, 18, 32, 0.42) 34%,
        rgba(0, 22, 38, 0.26) 52%,
        rgba(0, 22, 38, 0.10) 72%,
        rgba(0, 22, 38, 0.10) 100%),
      linear-gradient(180deg,
        rgba(3, 15, 27, 0.10) 0%,
        rgba(3, 15, 27, 0.02) 22%,
        rgba(3, 15, 27, 0.10) 100%) !important;
  }

  .sc-hero-grid {
    min-height: calc(100vh - 92px) !important;
    max-height: 620px !important;
    grid-template-columns: minmax(320px, 390px) minmax(0, 1fr) !important;
    align-items: center !important;
  }

  .sc-hero-copy {
    max-width: 390px !important;
    width: 100% !important;
    margin-left: clamp(48px, 7vw, 96px) !important;
    padding: 24px 0 20px 0 !important;
  }

  .sc-hero-copy h1 {
    max-width: 360px !important;
    font-size: clamp(56px, 5.2vw, 72px) !important;
    line-height: 0.9 !important;
    letter-spacing: -2px !important;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.20) !important;
  }

  .sc-hero-lead {
    max-width: 390px !important;
    margin: 18px 0 0 !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.16) !important;
  }

  .sc-hero-image-actions,
  .sc-hero-actions {
    width: 296px !important;
    margin-top: 22px !important;
    gap: 14px !important;
  }

  .sc-hero-image-btn {
    width: 296px !important;
    height: 58px !important;
    object-fit: contain !important;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .sc-hero-copy {
    margin-left: clamp(36px, 5.2vw, 72px) !important;
  }

  .sc-hero-copy h1 {
    max-width: 350px !important;
    font-size: clamp(52px, 4.8vw, 64px) !important;
  }
}

/* =========================================================
   StockChallenges V1.33 hero polish refinement
   Keeps the v1.32 structure. Refines only the finished hero:
   content moves left, background focal point shifts right,
   left reading zone is cleaner, title/buttons are slightly
   smaller, paragraph is sharper, and header is slimmer.
========================================================= */
@media (min-width: 1181px) {
  :root {
    --sc-header: 68px;
  }

  .sc-site-header {
    min-height: 68px !important;
  }

  .sc-header-inner,
  .sc-site-header > .sc-shell.sc-header-inner {
    min-height: 68px !important;
    height: 68px !important;
    gap: 20px !important;
  }

  .sc-brand-logo,
  .sc-brand img,
  .custom-logo {
    width: auto !important;
    max-width: 200px !important;
    max-height: 44px !important;
  }

  .sc-menu {
    gap: clamp(11px, 1.35vw, 20px) !important;
  }

  .sc-menu a {
    min-height: 68px !important;
    font-size: 14px !important;
  }

  .sc-header-login,
  .sc-header-signup {
    height: 38px !important;
  }

  .sc-header-search-toggle {
    width: 38px !important;
    height: 38px !important;
  }

  .sc-hero-section::before {
    background-position: 66% center !important;
    background-size: cover !important;
    filter: brightness(1.08) saturate(1.03) !important;
  }

  .sc-hero-section::after {
    background:
      linear-gradient(90deg,
        rgba(0, 10, 20, 0.92) 0%,
        rgba(0, 16, 28, 0.78) 34%,
        rgba(0, 18, 32, 0.32) 58%,
        rgba(0, 18, 32, 0.05) 100%),
      linear-gradient(180deg,
        rgba(3, 15, 27, 0.08) 0%,
        rgba(3, 15, 27, 0.02) 26%,
        rgba(3, 15, 27, 0.10) 100%) !important;
  }

  .sc-hero-grid {
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr) !important;
  }

  .sc-hero-copy {
    max-width: 430px !important;
    width: 100% !important;
    margin-left: clamp(34px, 4.8vw, 72px) !important;
    padding-top: 22px !important;
    padding-bottom: 18px !important;
  }

  .sc-hero-copy h1 {
    max-width: 370px !important;
    font-size: clamp(56px, 5vw, 68px) !important;
    line-height: 0.9 !important;
    letter-spacing: -2px !important;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24) !important;
  }

  .sc-hero-lead {
    max-width: 390px !important;
    margin-top: 18px !important;
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.88) !important;
  }

  .sc-hero-image-actions,
  .sc-hero-actions {
    width: 292px !important;
    margin-top: 22px !important;
    gap: 12px !important;
  }

  .sc-hero-image-btn {
    width: 292px !important;
    height: 56px !important;
    background-size: 100% 100% !important;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .sc-hero-copy {
    margin-left: clamp(28px, 4vw, 56px) !important;
  }

  .sc-hero-copy h1 {
    font-size: clamp(52px, 4.55vw, 62px) !important;
    max-width: 350px !important;
  }

  .sc-hero-lead {
    max-width: 360px !important;
    font-size: 14px !important;
  }

  .sc-hero-image-actions,
  .sc-hero-actions {
    width: 286px !important;
  }

  .sc-hero-image-btn {
    width: 286px !important;
    height: 54px !important;
  }
}


/* =========================================================
   StockChallenges V1.34 final hero polish
   No redesign. Final refinements only: move content slightly
   left, reduce headline slightly, strengthen the left text
   gradient only, keep background position stable, slim the
   header, and equalize the hero button width.
========================================================= */
@media (min-width: 1181px) {
  :root {
    --sc-header: 64px;
  }

  .sc-site-header {
    min-height: 64px !important;
  }

  .sc-header-inner,
  .sc-site-header > .sc-shell.sc-header-inner {
    min-height: 64px !important;
    height: 64px !important;
    gap: 18px !important;
  }

  .sc-brand-logo,
  .sc-brand img,
  .custom-logo {
    width: auto !important;
    max-width: 190px !important;
    max-height: 40px !important;
  }

  .sc-menu {
    gap: clamp(10px, 1.25vw, 18px) !important;
  }

  .sc-menu a {
    min-height: 64px !important;
    font-size: 13.5px !important;
  }

  .sc-header-login,
  .sc-header-signup {
    height: 36px !important;
  }

  .sc-header-search-toggle {
    width: 36px !important;
    height: 36px !important;
  }

  .sc-hero-section::before {
    background-position: 66% center !important;
    background-size: cover !important;
    filter: brightness(1.08) saturate(1.03) !important;
  }

  .sc-hero-section::after {
    background:
      linear-gradient(90deg,
        rgba(0, 8, 18, 0.94) 0%,
        rgba(0, 12, 24, 0.80) 30%,
        rgba(0, 18, 32, 0.34) 55%,
        rgba(0, 18, 32, 0.05) 100%),
      linear-gradient(180deg,
        rgba(3, 15, 27, 0.07) 0%,
        rgba(3, 15, 27, 0.015) 28%,
        rgba(3, 15, 27, 0.10) 100%) !important;
  }

  .sc-hero-grid {
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr) !important;
  }

  .sc-hero-copy {
    max-width: 430px !important;
    width: 100% !important;
    margin-left: clamp(16px, 3.3vw, 48px) !important;
    padding-top: 20px !important;
    padding-bottom: 18px !important;
  }

  .sc-hero-copy h1 {
    max-width: 360px !important;
    font-size: clamp(54px, 4.8vw, 66px) !important;
    line-height: 0.91 !important;
    letter-spacing: -1.8px !important;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.25) !important;
  }

  .sc-hero-lead {
    max-width: 390px !important;
    margin-top: 18px !important;
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.88) !important;
  }

  .sc-hero-image-actions,
  .sc-hero-actions {
    width: 286px !important;
    margin-top: 22px !important;
    gap: 12px !important;
  }

  .sc-hero-image-btn {
    width: 286px !important;
    height: 72px !important;
    background-size: 100% 100% !important;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .sc-hero-copy {
    margin-left: clamp(8px, 2.4vw, 34px) !important;
  }

  .sc-hero-copy h1 {
    max-width: 350px !important;
    font-size: clamp(50px, 4.3vw, 60px) !important;
  }

  .sc-hero-lead {
    max-width: 360px !important;
    font-size: 14px !important;
  }

  .sc-hero-image-actions,
  .sc-hero-actions {
    width: 282px !important;
  }

  .sc-hero-image-btn {
    width: 282px !important;
    height: 70px !important;
  }
}


/* =========================================================
   StockChallenges V1.35 hero image zone correction
   Separates the hero into two desktop zones:
   left 33% copy area and right 67% bull/bear image area.
   This keeps the image off the text and places it beside the copy.
========================================================= */
@media (min-width: 1181px) {
  .sc-hero-section {
    position: relative !important;
    overflow: hidden !important;
    min-height: 440px !important;
    max-height: 620px !important;
    background: #020d16 !important;
    padding: 0 !important;
  }

  .sc-hero-section::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 67% !important;
    background-image: url('../img/hero-bull-bear-blend.png') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    transform: none !important;
    filter: brightness(1.05) saturate(1.03) !important;
    z-index: 1 !important;
  }

  .sc-hero-section::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
      linear-gradient(
        90deg,
        #020d16 0%,
        #020d16 32%,
        rgba(2, 13, 22, 0.88) 36%,
        rgba(2, 13, 22, 0.35) 43%,
        rgba(2, 13, 22, 0) 50%
      ),
      linear-gradient(
        to bottom,
        rgba(2, 13, 22, 0) 78%,
        rgba(3, 24, 39, 0.88) 100%
      ) !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  .sc-hero-grid {
    position: relative !important;
    z-index: 3 !important;
    min-height: 440px !important;
    max-height: 620px !important;
    grid-template-columns: 33% 67% !important;
    align-items: center !important;
    gap: 0 !important;
  }

  .sc-hero-copy {
    position: relative !important;
    z-index: 4 !important;
    width: 33vw !important;
    max-width: 380px !important;
    margin-left: clamp(48px, 5vw, 72px) !important;
    padding: 30px 0 24px 0 !important;
  }

  .sc-hero-copy h1 {
    max-width: 355px !important;
    font-size: clamp(52px, 4.6vw, 64px) !important;
    line-height: 0.91 !important;
    letter-spacing: -1.8px !important;
  }

  .sc-hero-lead {
    max-width: 360px !important;
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.90) !important;
  }

  .sc-hero-image-actions,
  .sc-hero-actions {
    width: 286px !important;
    margin-top: 22px !important;
    gap: 12px !important;
  }

  .sc-hero-image-btn {
    width: 286px !important;
    height: 70px !important;
  }

  .sc-hero-art {
    display: block !important;
    visibility: hidden !important;
    pointer-events: none !important;
    min-height: 440px !important;
    height: 100% !important;
    margin: 0 !important;
  }

  .sc-hero-art::before,
  .sc-hero-art img {
    display: none !important;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .sc-hero-copy {
    margin-left: clamp(38px, 4.3vw, 58px) !important;
    max-width: 360px !important;
  }

  .sc-hero-copy h1 {
    font-size: clamp(48px, 4.2vw, 58px) !important;
    max-width: 330px !important;
  }

  .sc-hero-lead {
    max-width: 330px !important;
    font-size: 14px !important;
  }
}


/* =========================================================
   StockChallenges V1.36 hero content position adjustment only
   Moves the existing left hero text/button column farther left
   on desktop without changing the hero image, header, buttons,
   background, or overall theme.
========================================================= */
@media (min-width: 1025px) {
  .sc-hero-copy {
    transform: translateX(-72px) !important;
  }
}


/* =========================================================
   StockChallenges V1.37 stats strip alignment correction
   Keeps the hero and theme unchanged. Aligns all four stat cards
   in one centered row below the hero and removes the pricing anchor
   from the grid flow so it cannot push a card into a second row.
========================================================= */
.sc-stat-strip {
  position: relative !important;
}

.sc-stat-strip > .sc-anchor-target {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  grid-column: auto !important;
}

@media (min-width: 1025px) {
  .sc-stat-strip {
    min-height: 220px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(1210px, calc(100% - 44px)) !important;
    margin: 0 auto !important;
    padding: 32px 0 !important;
  }

  .sc-stat-card {
    width: 100% !important;
    min-height: 96px !important;
    margin: 0 !important;
    transform: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    align-self: center !important;
  }
}


/* =========================================================
   StockChallenges V1.38 stats strip spacing correction
   Keeps all four cards aligned from v1.37, but reduces only
   the top and bottom padding below the hero.
========================================================= */
@media (min-width: 1025px) {
  .sc-stat-strip {
    min-height: auto !important;
    padding: 20px 0 !important;
  }
}


/* =========================================================
   StockChallenges V1.39 sticky header visibility fix
   Keeps the entire header visible after anchor/menu clicks,
   especially while logged into WordPress with the admin bar showing.
   No hero, button, card, or section design changes.
========================================================= */
.sc-site-header {
  top: 0 !important;
}

body.admin-bar .sc-site-header {
  top: 32px !important;
}

body.admin-bar .sc-scroll-target,
body.admin-bar .sc-anchor-target {
  scroll-margin-top: calc(var(--sc-header) + 72px) !important;
}

body:not(.admin-bar) .sc-scroll-target,
body:not(.admin-bar) .sc-anchor-target {
  scroll-margin-top: calc(var(--sc-header) + 28px) !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar .sc-site-header {
    top: 46px !important;
  }

  body.admin-bar .sc-scroll-target,
  body.admin-bar .sc-anchor-target {
    scroll-margin-top: calc(var(--sc-header) + 86px) !important;
  }
}

@media screen and (max-width: 600px) {
  body.admin-bar .sc-site-header {
    top: 0 !important;
  }
}
