/*
 * Hustle Points royal-blue brand layer.
 * Shared by every public marketing page.
 */

body.blue-brand {
  --hp-bg-main: #030816;
  --hp-bg-surface: #071a36;
  --hp-bg-elevated: #0b2448;
  --hp-blue-primary: #0f63f6;
  --hp-blue-secondary: #1557ba;
  --hp-blue-bright: #2d86ff;
  --hp-blue-muted: #78b3ff;
  --hp-text-primary: #f7f9fc;
  --hp-text-secondary: #dce5f2;
  --hp-text-muted: #aebbd0;
  --hp-border-subtle: rgba(126, 177, 255, .24);
  --hp-border-active: rgba(71, 149, 255, .68);
  --hp-gold-highlight: #f4ca45;
  --brand-night: #030816;
  --brand-navy: #071a36;
  --brand-navy-2: #0b2448;
  --brand-blue: #0f63f6;
  --brand-blue-bright: #2d86ff;
  --brand-blue-soft: #78b3ff;
  --brand-gold: #f4ca45;
  --brand-white: #f7f9fc;
  --brand-muted: #aebbd0;
  --brand-line: rgba(126, 177, 255, .24);
  --brand-panel: rgba(9, 29, 59, .76);
  --brand-panel-strong: rgba(8, 24, 49, .94);
  --brand-shadow: 0 24px 70px rgba(0, 5, 18, .5);
  --brand-blue-glow: 0 18px 50px rgba(15, 99, 246, .22);
  --brand-radius: 8px;

  /* Compatibility aliases for the existing page styles. */
  --ink: var(--brand-white);
  --white: #ffffff;
  --muted: var(--brand-muted);
  --soft: #7586a1;
  --bg: var(--brand-night);
  --bg-2: #050d1c;
  --charcoal: #091426;
  --panel: #0c1c34;
  --line: var(--brand-line);
  --orange: var(--brand-blue);
  --orange-2: var(--brand-blue-bright);
  --orange-dark: #06367c;
  /* Legacy alias: routine emphasis is blue; earned values opt in to gold. */
  --yellow: var(--brand-blue-soft);
  --shadow: var(--brand-shadow);

  color: var(--brand-white);
  background:
    linear-gradient(135deg, rgba(15, 99, 246, .07), transparent 32rem),
    linear-gradient(180deg, #030713, #02050d 48rem, #040a15);
}

body.blue-brand::before {
  opacity: .14;
  background-image:
    linear-gradient(rgba(84, 144, 234, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 144, 234, .07) 1px, transparent 1px);
  background-size: 64px 64px;
}

body.blue-brand :focus-visible {
  outline: 2px solid var(--brand-blue-bright);
  outline-offset: 4px;
}

body.blue-brand .site-header {
  min-height: 82px;
  border-bottom-color: rgba(114, 169, 255, .18);
  background: rgba(2, 7, 18, .84);
  box-shadow: 0 12px 32px rgba(0, 4, 14, .24);
}

body.blue-brand .brand-logo {
  width: 150px;
  height: 66px;
  background: url("assets/hustle-points-logo-blue-web.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 24px rgba(0, 22, 68, .55));
}

body.blue-brand .nav {
  color: var(--brand-white);
}

body.blue-brand .nav a:hover,
body.blue-brand .nav a:focus-visible,
body.blue-brand .nav-menu-toggle:hover,
body.blue-brand .nav-menu-toggle:focus-visible {
  color: var(--brand-blue-soft);
}

body.blue-brand .nav-menu-toggle span,
body.blue-brand .nav-dropdown b {
  color: var(--brand-blue-bright);
}

body.blue-brand .nav-dropdown {
  border-color: rgba(106, 163, 250, .26);
  border-radius: var(--brand-radius);
  background: rgba(4, 14, 31, .98);
  box-shadow: 0 28px 70px rgba(0, 5, 18, .64);
}

body.blue-brand .nav-dropdown a {
  border-radius: 5px;
}

body.blue-brand .nav-dropdown a:hover,
body.blue-brand .nav-dropdown a:focus-visible,
body.blue-brand .nav-dropdown a.is-current {
  background: rgba(34, 111, 232, .14);
}

body.blue-brand .nav-dropdown a.is-current {
  box-shadow: inset 3px 0 var(--brand-blue-bright);
}

body.blue-brand .nav-dropdown a:hover strong,
body.blue-brand .nav-dropdown a:focus-visible strong,
body.blue-brand .nav-dropdown a.is-current strong {
  color: var(--brand-blue-soft);
}

body.blue-brand .header-cta,
body.blue-brand .button-primary,
body.blue-brand .nav-cta {
  border: 1px solid rgba(135, 188, 255, .5);
  border-radius: 6px;
  color: white;
  background: linear-gradient(135deg, #0c53cf, var(--brand-blue-bright));
  box-shadow: var(--brand-blue-glow);
}

body.blue-brand .header-cta:hover,
body.blue-brand .header-cta:focus-visible,
body.blue-brand .button-primary:hover,
body.blue-brand .button-primary:focus-visible {
  background: linear-gradient(135deg, #176fee, #4a9bff);
  box-shadow: 0 20px 58px rgba(15, 99, 246, .34);
}

body.blue-brand .button-secondary {
  border-color: rgba(139, 179, 236, .28);
  border-radius: 6px;
  color: var(--brand-white);
  background: rgba(8, 24, 49, .74);
}

body.blue-brand .section-kicker,
body.blue-brand .detail-kicker,
body.blue-brand .effort-kicker,
body.blue-brand .gs-kicker,
body.blue-brand .explainer-kicker {
  color: var(--brand-blue-bright);
}

body.blue-brand .footer {
  border-top: 1px solid rgba(105, 160, 245, .2);
  background: #020611;
}

body.blue-brand .footer img {
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(15, 99, 246, .28));
}

body.blue-brand .footer a:hover,
body.blue-brand .footer a:focus-visible {
  color: var(--brand-blue-soft);
}

/* Homepage: blue-led first impression and a connected four-card workflow. */
.home-blue .hero {
  background:
    linear-gradient(112deg, rgba(3, 8, 22, .22), rgba(9, 35, 73, .16)),
    transparent;
}

.home-blue .tagline,
.home-blue .conversation-lines span,
.home-blue .conversation-close {
  color: var(--brand-blue-bright);
}

.home-blue .media-stage,
.home-blue .app-download {
  border-color: rgba(104, 164, 255, .3);
  border-radius: var(--brand-radius);
  background:
    linear-gradient(145deg, rgba(25, 77, 151, .18), rgba(4, 12, 27, .34)),
    #07101f;
  box-shadow: 0 30px 80px rgba(0, 4, 16, .55), 0 0 42px rgba(15, 99, 246, .1);
}

.home-blue .video-label {
  border-color: rgba(99, 160, 255, .34);
  background: rgba(4, 17, 38, .82);
}

.home-blue .video-label span {
  background: var(--brand-blue-bright);
  box-shadow: 0 0 0 7px rgba(45, 134, 255, .12);
}

.home-blue .app-download-heading > span {
  color: var(--brand-blue-soft);
  border-color: rgba(92, 157, 255, .3);
  background: rgba(25, 92, 194, .13);
}

.home-blue .conversation {
  background:
    linear-gradient(90deg, rgba(11, 36, 72, .72), rgba(3, 10, 24, .92)),
    #050b17;
}

.home-blue .conversation-product img {
  filter: drop-shadow(0 36px 64px rgba(0, 8, 28, .62));
}

.home-blue .conversation-product {
  width: 100%;
  max-width: 406px;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 2vw, 26px);
}

.home-blue .conversation-product img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.home-blue .how {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(100, 158, 246, .16);
  background:
    linear-gradient(145deg, rgba(13, 48, 96, .3), transparent 38%),
    #030916;
}

.home-blue .how::after {
  content: "";
  position: absolute;
  inset: auto 5vw 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 151, 255, .7), transparent);
}

.home-blue .how .section-heading {
  max-width: 1500px;
  margin-inline: auto;
}

.home-blue .how .section-heading > p:last-child {
  color: #b9c7da;
}

.home-blue .process-flow {
  gap: clamp(12px, 1.35vw, 20px);
}

.home-blue .process-flow::before {
  top: 42px;
  background: linear-gradient(90deg, rgba(45, 134, 255, .08), var(--brand-blue), var(--brand-blue-bright));
  box-shadow: 0 0 28px rgba(15, 99, 246, .28);
}

.home-blue .process-step {
  min-height: 500px;
  padding: clamp(18px, 1.5vw, 24px);
  border-color: rgba(116, 174, 255, .22);
  border-radius: var(--brand-radius);
  background:
    linear-gradient(155deg, rgba(31, 91, 175, .18), rgba(5, 16, 35, .5) 46%),
    rgba(7, 20, 41, .92);
  box-shadow: 0 24px 60px rgba(0, 5, 20, .42);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-blue .process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(71, 147, 255, .55);
  box-shadow: 0 28px 68px rgba(0, 7, 27, .54), 0 0 38px rgba(15, 99, 246, .1);
}

.home-blue .process-step::before {
  width: 4px;
  border-radius: var(--brand-radius) 0 0 var(--brand-radius);
  background: linear-gradient(180deg, var(--brand-blue-bright), rgba(45, 134, 255, 0));
}

.home-blue .process-step:not(:last-child)::after {
  color: white;
  border-color: rgba(88, 153, 251, .42);
  background: #071b38;
  box-shadow: 0 0 20px rgba(15, 99, 246, .32);
}

.home-blue .process-heading > span {
  color: var(--brand-gold);
  border: 1px solid rgba(244, 202, 69, .42);
  background: #07162d;
  box-shadow: 0 10px 24px rgba(0, 5, 18, .36);
}

.home-blue .process-heading h3 {
  color: white;
}

.home-blue .process-copy {
  color: #dce5f2;
}

.home-blue .process-emphasis,
.home-blue .idea-visual span,
.home-blue .mini-bubble span {
  color: var(--brand-blue-soft);
}

.home-blue .idea-visual div,
.home-blue .mini-bubble,
.home-blue .compact-log div,
.home-blue .total-points,
.home-blue .mini-reward {
  border-color: rgba(105, 163, 251, .2);
  border-radius: 6px;
  background: rgba(18, 50, 94, .34);
}

.home-blue .idea-visual div:first-child,
.home-blue .mini-bubble.parent {
  border-color: rgba(76, 149, 255, .42);
  background: rgba(23, 94, 200, .18);
}

.home-blue .compact-log b {
  color: var(--brand-blue-soft);
}

.home-blue .compact-log .points strong,
.home-blue .total-points strong,
.home-blue .mini-reward small {
  color: var(--brand-gold);
}

.home-blue .mini-reward i {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-bright));
}

.home-blue .mission,
.home-blue .season {
  border-color: rgba(100, 158, 246, .14);
}

.home-blue .mission {
  background:
    linear-gradient(125deg, rgba(10, 43, 91, .32), transparent 46%),
    #030816;
}

.home-blue .mission::before {
  border-color: rgba(56, 136, 255, .3);
}

.home-blue .season {
  background:
    linear-gradient(135deg, rgba(13, 58, 123, .18), transparent 38%),
    linear-gradient(180deg, #030817, #060d1a 52%, #020611);
}

.home-blue .season-toggle {
  border: 1px solid rgba(135, 188, 255, .48);
  border-radius: 6px;
  background: linear-gradient(135deg, #0c53cf, var(--brand-blue-bright));
  box-shadow: var(--brand-blue-glow);
}

.home-blue .season-paths::before {
  background: linear-gradient(180deg, transparent, rgba(45, 134, 255, .72), rgba(244, 202, 69, .42), transparent);
}

.home-blue .season-moment::before {
  background: var(--brand-blue-bright);
  box-shadow: 0 0 0 9px rgba(45, 134, 255, .14);
}

.home-blue .moment-heading {
  border-color: rgba(102, 162, 250, .22);
  border-radius: var(--brand-radius);
  background: rgba(3, 12, 28, .92);
}

.home-blue .moment-heading span {
  color: var(--brand-blue-bright);
}

.home-blue .path-card {
  border-color: rgba(107, 166, 252, .2);
  border-radius: var(--brand-radius);
  background:
    linear-gradient(145deg, rgba(25, 77, 151, .13), rgba(4, 16, 35, .32)),
    #07162e;
}

.home-blue .path-card.max {
  border-color: rgba(74, 151, 255, .5);
  background:
    linear-gradient(145deg, rgba(28, 89, 177, .2), rgba(4, 17, 38, .34)),
    #081a35;
}

@media (max-width: 1160px) {
  body.blue-brand .brand-logo {
    width: 58px;
    height: 56px;
    background-image: url("assets/hustle-points-shield-blue-web.png");
  }
}

@media (max-width: 720px) {
  body.blue-brand .site-header {
    min-height: 72px;
  }

  body.blue-brand .brand-logo {
    width: 58px;
    height: 54px;
    background-image: url("assets/hustle-points-shield-blue-web.png");
  }

  .home-blue .process-step {
    min-height: auto;
  }
}

/* Shared educational-page primitives. */
body.blue-brand.explainer-page {
  --explainer-card-radius: var(--brand-radius);
}

body.blue-brand .explainer-hero-title span,
body.blue-brand .explainer-section-title span {
  color: var(--brand-blue-bright);
}

body.blue-brand .section-reveal {
  border-color: rgba(108, 165, 252, .14);
}

/* Getting Started: a compact 2x2 onboarding sequence. */
.getting-started-page.blue-brand {
  background: var(--brand-night);
}

.getting-started-page.blue-brand .gs-hero {
  padding: 112px clamp(20px, 6vw, 92px) 54px;
  border-bottom-color: rgba(100, 159, 250, .18);
  background:
    linear-gradient(115deg, rgba(16, 72, 160, .3), rgba(4, 15, 35, .72) 52%, rgba(2, 7, 18, .96)),
    #061327;
}

.getting-started-page.blue-brand .gs-hero h1 span {
  color: var(--brand-blue-bright);
}

.getting-started-page.blue-brand .gs-kicker span {
  color: #7789a6;
}

.getting-started-page.blue-brand .gs-journey {
  padding-top: clamp(42px, 4vw, 62px);
  background:
    linear-gradient(145deg, rgba(16, 60, 123, .14), transparent 42%),
    linear-gradient(180deg, #030916, #050d1b 54%, #020611);
}

.getting-started-page.blue-brand .gs-journey-heading {
  margin-bottom: 24px;
}

.getting-started-page.blue-brand .gs-flow::before {
  display: none;
}

.getting-started-page.blue-brand .gs-step-set {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.getting-started-page.blue-brand .gs-step {
  display: block;
  min-width: 0;
}

.getting-started-page.blue-brand .gs-step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  color: var(--brand-blue-soft);
  border: 1px solid rgba(108, 168, 255, .44);
  border-radius: 6px;
  background: rgba(4, 17, 40, .92);
  box-shadow: 0 12px 28px rgba(0, 5, 18, .34);
  font-size: 20px;
}

.getting-started-page.blue-brand .gs-step-card {
  height: 100%;
  min-height: 324px;
  grid-template-columns: minmax(128px, .52fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  padding: 70px clamp(20px, 2.2vw, 30px) 24px;
  border-color: rgba(112, 171, 255, .24);
  border-radius: var(--brand-radius);
  background:
    linear-gradient(145deg, rgba(27, 91, 183, .18), rgba(6, 21, 45, .2) 48%),
    rgba(7, 23, 48, .9);
  box-shadow: 0 24px 64px rgba(0, 5, 18, .4);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.getting-started-page.blue-brand .gs-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(73, 151, 255, .58);
  box-shadow: 0 28px 70px rgba(0, 5, 22, .52), 0 0 34px rgba(15, 99, 246, .1);
}

.getting-started-page.blue-brand .gs-step-symbol {
  display: none;
}

.getting-started-page.blue-brand .gs-step-copy > p,
.getting-started-page.blue-brand .gs-step-copy > blockquote {
  color: #dce5f2;
}

.getting-started-page.blue-brand .gs-step-copy > blockquote {
  border-left-color: var(--brand-blue-bright);
}

.getting-started-page.blue-brand .gs-step-copy .gs-question {
  max-width: none;
  border-color: rgba(91, 155, 255, .3);
  border-left-color: var(--brand-blue-bright);
  border-radius: 6px;
  color: white;
  background: rgba(8, 33, 71, .84);
}

.getting-started-page.blue-brand .mini-onboarding {
  border-color: rgba(120, 174, 255, .27);
  border-radius: var(--brand-radius);
  background: linear-gradient(155deg, #0b2247, #030a18);
  box-shadow: 0 18px 36px rgba(0, 5, 20, .48);
}

.getting-started-page.blue-brand .mini-onboarding small {
  color: var(--brand-blue-soft);
}

.getting-started-page.blue-brand .mini-onboarding > i,
.getting-started-page.blue-brand .mini-onboarding > b:last-child,
.getting-started-page.blue-brand .team-code-placeholder b {
  background: linear-gradient(135deg, #0c53cf, var(--brand-blue-bright));
}

.getting-started-page.blue-brand .mini-onboarding > b,
.getting-started-page.blue-brand .mini-onboarding label i {
  background: #102b54;
}

.getting-started-page.blue-brand .mini-onboarding > span em {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-bright));
}

.getting-started-page.blue-brand .gs-real-app {
  border: 1px solid rgba(102, 163, 255, .34);
  border-radius: var(--brand-radius);
  box-shadow: 0 22px 45px rgba(0, 4, 18, .56), 0 0 30px rgba(15, 99, 246, .11);
}

.getting-started-page.blue-brand .gs-real-app img {
  width: 148px;
  height: 296px;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
  transform: none;
}

.getting-started-page.blue-brand .gs-real-label {
  color: var(--brand-blue-soft);
}

.getting-started-page.blue-brand .gs-talk-log span {
  border: 1px solid rgba(105, 165, 255, .18);
  border-radius: 6px;
  background: #102d59;
}

.getting-started-page.blue-brand .gs-talk-log i {
  color: var(--brand-blue-bright);
}

.getting-started-page.blue-brand .gs-finish {
  margin-left: 0;
  border: 1px solid rgba(102, 162, 255, .28);
  border-top: 3px solid var(--brand-blue-bright);
  border-radius: var(--brand-radius);
  background: linear-gradient(100deg, rgba(13, 51, 103, .78), rgba(5, 18, 40, .94));
  box-shadow: 0 22px 58px rgba(0, 5, 18, .35);
}

.getting-started-page.blue-brand .gs-finish p {
  color: var(--brand-blue-soft);
}

.getting-started-page.blue-brand .gs-team {
  background: #030817;
}

.getting-started-page.blue-brand .gs-team-inner {
  border-color: rgba(108, 168, 255, .25);
  border-radius: var(--brand-radius);
  background: linear-gradient(105deg, rgba(11, 39, 80, .94), rgba(7, 20, 43, .96));
  box-shadow: 0 22px 58px rgba(0, 4, 16, .28);
}

.getting-started-page.blue-brand .gs-team-icon {
  border-color: rgba(86, 157, 255, .62);
  border-radius: var(--brand-radius);
  color: var(--brand-blue-soft);
}

.getting-started-page.blue-brand .team-code-placeholder {
  border: 1px solid rgba(98, 158, 247, .2);
  border-radius: var(--brand-radius);
  background: #05142b;
}

.getting-started-page.blue-brand .gs-next {
  background: linear-gradient(100deg, #07162f, #0d3268);
}

.getting-started-page.blue-brand .gs-next a {
  border-radius: 6px;
}

.getting-started-page.blue-brand .gs-next a:first-child {
  border-color: rgba(133, 187, 255, .45);
  background: linear-gradient(135deg, #0c53cf, var(--brand-blue-bright));
  box-shadow: var(--brand-blue-glow);
}

/* Why Effort Matters: comparison and accumulation led by cool blue. */
.why-effort-page.blue-brand {
  background:
    linear-gradient(145deg, rgba(16, 67, 143, .13), transparent 36rem),
    var(--brand-night);
}

.why-effort-page.blue-brand .effort-opening {
  border-bottom-color: rgba(105, 164, 252, .16);
  background:
    linear-gradient(128deg, rgba(12, 59, 132, .38), rgba(5, 20, 44, .66) 48%, rgba(2, 7, 18, .98)),
    #061329;
}

.why-effort-page.blue-brand .effort-opening h1 span,
.why-effort-page.blue-brand .effort-opening h2 span,
.why-effort-page.blue-brand .effort-section h2 span,
.why-effort-page.blue-brand .effort-close h2 span,
.why-effort-page.blue-brand .opportunity-statement strong,
.why-effort-page.blue-brand .effort-takeaway strong,
.why-effort-page.blue-brand .rep-takeaway strong,
.why-effort-page.blue-brand .season-statement strong,
.why-effort-page.blue-brand .performance-takeaway strong {
  color: var(--brand-blue-bright);
}

.why-effort-page.blue-brand .effort-section {
  border-bottom-color: rgba(102, 160, 247, .13);
}

.why-effort-page.blue-brand .athlete-compare article,
.why-effort-page.blue-brand .rep-examples,
.why-effort-page.blue-brand .input-output,
.why-effort-page.blue-brand .max-shift article {
  border-color: rgba(108, 168, 255, .22);
  border-radius: var(--brand-radius);
  background:
    linear-gradient(145deg, rgba(30, 91, 175, .15), rgba(5, 18, 39, .34)),
    rgba(8, 27, 56, .91);
  box-shadow: 0 20px 52px rgba(0, 5, 18, .34);
}

.why-effort-page.blue-brand .athlete-compare article.is-active {
  border-color: rgba(71, 149, 255, .68);
  box-shadow: 0 20px 56px rgba(0, 5, 20, .4), 0 0 30px rgba(15, 99, 246, .11);
}

.why-effort-page.blue-brand .athlete-compare span,
.why-effort-page.blue-brand .max-shift span,
.why-effort-page.blue-brand .input-output span {
  color: var(--brand-blue-soft);
}

.why-effort-page.blue-brand .athlete-compare li::before,
.why-effort-page.blue-brand .effort-facet-grid b::before {
  background: var(--brand-blue-bright);
}

.why-effort-page.blue-brand .effort-takeaway,
.why-effort-page.blue-brand .rep-takeaway,
.why-effort-page.blue-brand .practice-takeaway,
.why-effort-page.blue-brand .performance-takeaway,
.why-effort-page.blue-brand .season-statement {
  border-top-color: var(--brand-blue);
}

.why-effort-page.blue-brand .season-section,
.why-effort-page.blue-brand .rep-section,
.why-effort-page.blue-brand .real-days-section,
.why-effort-page.blue-brand .meaning-section,
.why-effort-page.blue-brand .performance-section {
  background:
    linear-gradient(135deg, rgba(19, 67, 139, .12), transparent 42%),
    #030916;
}

.why-effort-page.blue-brand .season-graphic {
  border-color: rgba(104, 165, 255, .28);
  border-radius: var(--brand-radius);
  background:
    linear-gradient(145deg, rgba(28, 85, 164, .16), rgba(4, 17, 38, .4)),
    #071a36;
  box-shadow: 0 26px 64px rgba(0, 5, 20, .42);
}

.why-effort-page.blue-brand .season-dots {
  border-color: rgba(117, 174, 255, .15);
  border-radius: 6px;
  background-color: rgba(2, 10, 24, .55);
}

.why-effort-page.blue-brand .season-dots.modest {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.34) 0 3.3px, transparent 3.8px),
    radial-gradient(circle, rgba(45,134,255,.62) 0 3.2px, transparent 3.7px),
    radial-gradient(circle, rgba(120,179,255,.5) 0 3px, transparent 3.5px);
}

.why-effort-page.blue-brand .season-dots.engaged {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.42) 0 3.3px, transparent 3.8px),
    radial-gradient(circle, rgba(45,134,255,.92) 0 3.4px, transparent 3.9px),
    radial-gradient(circle, rgba(244,202,69,.72) 0 3.2px, transparent 3.7px);
}

.why-effort-page.blue-brand .season-legend span:nth-child(2) i {
  background: var(--brand-blue-bright);
}

.why-effort-page.blue-brand .rep-examples p {
  border-left-color: rgba(75, 150, 255, .78);
}

.why-effort-page.blue-brand .effort-facet-grid article,
.why-effort-page.blue-brand .day-cards article {
  border-color: rgba(105, 164, 252, .19);
  border-radius: var(--brand-radius);
  background: linear-gradient(155deg, rgba(19, 63, 128, .5), rgba(5, 18, 40, .88));
}

.why-effort-page.blue-brand .performance-grid > div:first-child > strong,
.why-effort-page.blue-brand .day-cards span {
  color: var(--brand-blue-soft);
}

.why-effort-page.blue-brand .input-output > i,
.why-effort-page.blue-brand .max-shift i {
  color: var(--brand-blue-bright);
}

.why-effort-page.blue-brand .input-output div:last-child b {
  background: rgba(45, 134, 255, .16);
}

.why-effort-page.blue-brand .reflection-path {
  border-color: rgba(94, 158, 255, .3);
  border-radius: 6px;
  background: rgba(7, 27, 57, .82);
}

.why-effort-page.blue-brand .reflection-path i {
  background: linear-gradient(90deg, rgba(45, 134, 255, .28), var(--brand-blue-bright));
}

.why-effort-page.blue-brand .effort-close {
  background: linear-gradient(110deg, #07172f, #020713 70%);
}

.why-effort-page.blue-brand .close-grid a {
  color: var(--brand-blue-soft);
}

/* Hustle Points Over Time: app-led hero and restrained metric highlights. */
.over-time-blue {
  background:
    linear-gradient(145deg, rgba(17, 69, 145, .12), transparent 36rem),
    var(--brand-night);
}

.over-time-blue .time-hero {
  min-height: min(700px, 84svh);
  border-bottom-color: rgba(106, 166, 255, .16);
  background:
    linear-gradient(124deg, rgba(13, 59, 132, .35), rgba(4, 18, 40, .6) 50%, rgba(2, 7, 18, .98)),
    #061329;
}

.over-time-blue .time-hero h1 span,
.over-time-blue .story-statement strong,
.over-time-blue .growth-statement strong {
  color: var(--brand-blue-bright);
}

.over-time-blue .time-scroll-link span {
  border-color: rgba(76, 150, 255, .52);
  color: var(--brand-blue-bright);
}

.over-time-blue .history-visual {
  min-height: 540px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(109, 169, 255, .3);
  border-radius: var(--brand-radius);
  background:
    linear-gradient(155deg, rgba(30, 94, 186, .2), rgba(3, 13, 30, .24)),
    rgba(7, 24, 50, .88);
  box-shadow: 0 34px 84px rgba(0, 4, 18, .55), 0 0 42px rgba(15, 99, 246, .11);
}

.over-time-blue .history-glow {
  display: none;
}

.over-time-blue .history-visual img {
  height: min(63svh, 610px);
  filter: drop-shadow(0 30px 46px rgba(0, 5, 20, .62));
}

.over-time-blue .time-section {
  border-bottom-color: rgba(104, 162, 250, .13);
}

.over-time-blue .season-adds,
.over-time-blue .practice-section,
.over-time-blue .patterns-section,
.over-time-blue .growth-section,
.over-time-blue .intention-section {
  background:
    linear-gradient(140deg, rgba(16, 61, 127, .11), transparent 46%),
    #030916;
}

.over-time-blue .season-record,
.over-time-blue .practice-focus,
.over-time-blue .pattern-responses p,
.over-time-blue .reflection-dialogue p,
.over-time-blue .intention-shift div {
  border-color: rgba(108, 168, 255, .22);
  border-radius: var(--brand-radius);
  background:
    linear-gradient(145deg, rgba(27, 84, 164, .15), rgba(5, 18, 39, .38)),
    rgba(8, 27, 56, .9);
  box-shadow: 0 20px 52px rgba(0, 5, 18, .3);
}

.over-time-blue .story-statement,
.over-time-blue .growth-statement {
  border-top-color: var(--brand-blue);
}

.over-time-blue .filter-reference b {
  background: #112e5a;
}

.over-time-blue .filter-reference .is-emphasized {
  background: linear-gradient(135deg, #0c53cf, var(--brand-blue-bright));
  box-shadow: 0 16px 34px rgba(15, 99, 246, .25);
}

.over-time-blue .practice-emphasis {
  color: var(--brand-blue-soft);
}

.over-time-blue .pattern-question blockquote {
  border-left-color: var(--brand-blue-bright);
  border-radius: 0 var(--brand-radius) var(--brand-radius) 0;
  background: rgba(13, 43, 87, .56);
}

.over-time-blue .pattern-responses span,
.over-time-blue .reflection-dialogue span,
.over-time-blue .intention-shift span,
.over-time-blue .question-framework i,
.over-time-blue .intention-shift > i {
  color: var(--brand-blue-bright);
}

.over-time-blue .reflection-dialogue p:nth-child(2),
.over-time-blue .intention-shift div:last-child {
  border-color: rgba(74, 151, 255, .52);
  background: linear-gradient(145deg, rgba(19, 76, 164, .32), rgba(7, 26, 57, .9));
}

.over-time-blue .next-topic {
  background: linear-gradient(100deg, #081a37, #0d3979);
}

.over-time-blue .next-topic a {
  border: 1px solid rgba(137, 189, 255, .48);
  border-radius: 6px;
  background: linear-gradient(135deg, #0c53cf, var(--brand-blue-bright));
  box-shadow: var(--brand-blue-glow);
}

@media (max-width: 1050px) {
  .getting-started-page.blue-brand .gs-step-set {
    grid-template-columns: 1fr;
  }

  .getting-started-page.blue-brand .gs-step-card {
    min-height: 260px;
  }

  .over-time-blue .history-visual {
    width: min(100%, 560px);
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .getting-started-page.blue-brand .gs-hero {
    padding: 96px 18px 38px;
  }

  .getting-started-page.blue-brand .gs-step-card {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 72px 18px 20px;
  }

  .getting-started-page.blue-brand .gs-step-copy {
    order: -1;
  }

  .getting-started-page.blue-brand .gs-finish {
    margin-left: 0;
  }

  .why-effort-page.blue-brand .athlete-compare article,
  .why-effort-page.blue-brand .rep-examples,
  .why-effort-page.blue-brand .input-output,
  .why-effort-page.blue-brand .max-shift article,
  .why-effort-page.blue-brand .season-graphic {
    border-radius: var(--brand-radius);
  }

  .over-time-blue .time-hero {
    min-height: auto;
  }

  .over-time-blue .history-visual {
    padding: 14px;
  }

  .over-time-blue .history-visual img {
    height: auto;
  }
}

/* Final public-site palette: colors only on the remaining explainer pages. */
.rewards-page.blue-brand,
.extend-page.blue-brand,
.story-page.blue-brand,
.associations-page.blue-brand {
  background: var(--brand-night);
}

.rewards-page.blue-brand {
  --yellow: var(--brand-gold);
}

.rewards-page.blue-brand .reward-hero {
  border-bottom-color: var(--brand-line);
  background:
    radial-gradient(circle at 77% 40%, rgba(45, 134, 255, .15), transparent 27rem),
    linear-gradient(180deg, #0a1d3d, #030816);
}

.rewards-page.blue-brand .rewards-product-visual img {
  width: min(100%, 300px);
  height: min(72svh, 680px);
  max-width: 100%;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(108, 168, 255, .36);
  border-radius: 14px;
  box-shadow: var(--brand-blue-glow);
}

.rewards-page.blue-brand .reward-takeaway,
.rewards-page.blue-brand .hustle-card > span,
.rewards-page.blue-brand .hustle-card blockquote,
.rewards-page.blue-brand .badge-intro strong,
.rewards-page.blue-brand .recognition-summary > p strong {
  color: var(--brand-blue-soft);
}

.rewards-page.blue-brand .next-reward-card {
  border-color: var(--brand-blue-bright);
  background: linear-gradient(145deg, #143261, #081a35);
}

.rewards-page.blue-brand .reward-progress-track i {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-bright));
}

.rewards-page.blue-brand .badge-grid article,
.rewards-page.blue-brand .milestone-concepts article,
.rewards-page.blue-brand .comparison-card,
.rewards-page.blue-brand .recognition-summary,
.rewards-page.blue-brand .reward-examples {
  border-color: var(--brand-line);
}

.rewards-page.blue-brand .badge-grid article,
.rewards-page.blue-brand .milestone-concepts article {
  background: linear-gradient(145deg, #102b54, #071629);
}

.rewards-page.blue-brand .future-label {
  color: var(--brand-blue-soft);
  background: rgba(45, 134, 255, .1);
}

.rewards-page.blue-brand .summary-types span {
  color: var(--brand-blue-bright);
}

.extend-page.blue-brand .extend-opening,
.associations-page.blue-brand .association-opening {
  background:
    radial-gradient(circle at 74% 24%, rgba(45, 134, 255, .12), transparent 24rem),
    linear-gradient(180deg, #0a1d3b, #030816 76%);
}

.extend-page.blue-brand .habit-flow i,
.extend-page.blue-brand .notice-path i {
  background: linear-gradient(90deg, #0f63f6, #78b3ff);
}

.extend-page.blue-brand .moments-section,
.extend-page.blue-brand .habit-section,
.associations-page.blue-brand .privacy-section,
.associations-page.blue-brand .setup-flow {
  background:
    linear-gradient(145deg, rgba(20, 70, 142, .12), transparent 44%),
    #030916;
}

.extend-page.blue-brand .habit-grid,
.extend-page.blue-brand .control-cards article,
.extend-page.blue-brand .conversation-list article,
.associations-page.blue-brand .function-list article,
.associations-page.blue-brand .detail-shot,
.associations-page.blue-brand .privacy-compare article,
.associations-page.blue-brand .setup-flow li {
  border-color: var(--brand-line);
  background: linear-gradient(145deg, #10274b, #071629);
}

.story-page.blue-brand .story-opening {
  background: linear-gradient(145deg, #102e60, #061326 48%, #030816 85%);
}

.story-page.blue-brand .story-region {
  border-bottom-color: rgba(108, 168, 255, .16);
}

.story-page.blue-brand .sooner-section h2,
.story-page.blue-brand .move-command,
.story-page.blue-brand .origin-pullquote strong {
  color: var(--brand-blue-soft);
}

.story-page.blue-brand .photo-placeholder,
.story-page.blue-brand .idea-progression,
.story-page.blue-brand .personal-close {
  border-color: var(--brand-line);
}

.associations-page.blue-brand .shot-window,
.associations-page.blue-brand .association-cta {
  border-color: var(--brand-line);
}

.associations-page.blue-brand .shot-window {
  background: #081a36;
  box-shadow: 0 24px 58px rgba(0, 7, 25, .4);
}

@media (max-width: 720px) {
  .home-blue .conversation-product img {
    height: auto;
  }

  .rewards-page.blue-brand .rewards-product-visual img {
    width: min(100%, 300px);
    height: min(68svh, 600px);
  }
}
