:root {
  --ink: #f7f8fa;
  --white: #ffffff;
  --muted: #b9c0ca;
  --soft: #7b8491;
  --bg: #040506;
  --bg-2: #090c11;
  --charcoal: #101319;
  --panel: #151a22;
  --line: rgba(255, 255, 255, .13);
  --orange: #0f63f6;
  --orange-2: #2d86ff;
  --orange-dark: #06367c;
  --yellow: #ffd21f;
  --green: #48d184;
  --shadow: 0 30px 80px rgba(0, 0, 0, .52);
  --condensed: "Barlow Condensed", Impact, sans-serif;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-hero: clamp(60px, 7.4vw, 116px);
  --type-section: clamp(44px, 4.8vw, 72px);
  --type-story: clamp(30px, 3.2vw, 48px);
  --type-body: clamp(16px, 1.05vw, 18px);
  --type-label: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(15,99,246, .075), transparent 24rem),
    radial-gradient(circle at 86% 4%, rgba(58, 73, 94, .18), transparent 34rem),
    linear-gradient(180deg, #06070a, var(--bg) 44rem);
  font-family: var(--body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 76%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 22px;
  padding: 8px clamp(18px, 4vw, 58px);
  background: rgba(5, 5, 5, .76);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 146px;
  height: 72px;
  display: block;
  background: url("assets/hustle-points-logo-blue-web.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.45));
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}

.nav a,
.nav-menu-toggle {
  transition: color .2s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav-menu-toggle:hover,
.nav-menu-toggle:focus-visible {
  color: var(--white);
}

.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.nav-menu-toggle span {
  color: var(--orange);
  font-size: 15px;
  transition: transform .2s ease;
}

.nav-menu.is-open .nav-menu-toggle span {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 22px);
  left: 50%;
  width: min(430px, calc(100vw - 36px));
  display: none;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(8, 11, 16, .98);
  box-shadow: 0 28px 80px rgba(0,0,0,.58);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 22px;
}

.nav-menu.is-open .nav-dropdown {
  display: grid;
}

@media (min-width: 1161px) and (hover: hover) and (pointer: fine) {
  .nav-menu:hover .nav-dropdown {
    display: grid;
  }
}

.nav-dropdown a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 15px;
  white-space: normal;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown a.is-current {
  background: rgba(255,255,255,.065);
}

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

.nav-dropdown b {
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 19px;
}

.nav-dropdown span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.nav-dropdown strong {
  color: var(--white);
  font-size: 13px;
}

.nav-dropdown small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.nav-dropdown em {
  color: var(--soft);
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-dropdown [aria-disabled="true"] {
  opacity: .72;
}

.nav-cta {
  display: none;
}

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

.header-signin,
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-signin {
  color: var(--muted);
  padding: 0 8px;
}

.header-cta {
  padding: 0 16px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 34px rgba(15,99,246,.25);
}

.header-signin:hover,
.header-signin:focus-visible {
  color: var(--white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
  padding: 106px clamp(20px, 5vw, 74px) 50px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--condensed);
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: var(--type-hero);
  line-height: .82;
  text-wrap: balance;
}

.tagline {
  display: inline-block;
  margin: 20px 0 0;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 690px;
  margin: 20px 0 0;
  color: #d8dde4;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  padding: 0 24px;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 38px rgba(15,99,246,.28);
}

.button-secondary {
  color: #f5eee8;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(20, 26, 35, .92), rgba(10, 13, 18, .92));
}

.hero-media {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-media-stack {
  width: min(100%, 680px);
  display: grid;
  gap: 14px;
}

.media-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(15,99,246,.14), transparent 24rem),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    linear-gradient(180deg, #15171a, #050506 72%);
  box-shadow: var(--shadow);
}

.media-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.28), inset 0 -90px 120px rgba(0,0,0,.22);
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #050506;
  object-fit: contain;
}

.app-download {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(15,99,246,.11), transparent 11rem),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    #0e141d;
  box-shadow: 0 18px 48px rgba(0,0,0,.3);
}

.app-download-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 3px 10px;
}

.app-download-heading h2 {
  color: var(--white);
  font-size: 24px;
  line-height: .9;
}

.app-download-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.app-download-heading > span {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: var(--orange-2);
  border: 1px solid rgba(15,99,246,.24);
  border-radius: 999px;
  background: rgba(15,99,246,.07);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.store-option {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(3,5,8,.48);
}

.qr-placeholder {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  color: #0a0d12;
  border: 4px solid white;
  border-radius: 9px;
  background:
    linear-gradient(90deg, #0a0d12 8px, transparent 8px) 7px 7px / 14px 14px no-repeat,
    linear-gradient(#0a0d12 8px, transparent 8px) calc(100% - 7px) 7px / 14px 14px no-repeat,
    white;
  box-shadow: 0 8px 20px rgba(0,0,0,.24);
}

.qr-placeholder strong {
  margin-top: 9px;
  font-family: var(--condensed);
  font-size: 25px;
  line-height: .8;
}

.qr-placeholder small {
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.store-badge-placeholder {
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 12px;
  background: #050608;
}

.store-mark {
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  background: linear-gradient(145deg, #202733, #0c1017);
  font: normal 900 16px/1 var(--body);
}

.store-mark.play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--orange-2);
}

.store-badge-placeholder div {
  min-width: 0;
  display: grid;
}

.store-badge-placeholder small {
  color: #c9ced6;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.store-badge-placeholder strong {
  overflow: hidden;
  color: white;
  font-family: var(--body);
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.field-lines {
  position: absolute;
  inset: 17% -10% auto;
  height: 54%;
  opacity: .24;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.28) 49.5% 50.5%, transparent 50.5%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.14) 0 2px, transparent 2px 58px);
  transform: rotate(-11deg);
}

.video-label {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f5f5f5;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(5, 5, 6, .62);
  backdrop-filter: blur(10px);
}

.video-label span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(15,99,246,.12);
}

.media-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}

.sport-card {
  position: absolute;
  width: 190px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(5, 5, 5, .66);
  backdrop-filter: blur(12px);
}

.sport-card span {
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sport-card strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
  line-height: 1.15;
}

.hockey {
  left: 8%;
  top: 20%;
}

.soccer {
  right: 8%;
  top: 35%;
}

.hoops {
  left: 13%;
  bottom: 24%;
}

.phone-mock {
  position: absolute;
  right: 13%;
  bottom: 16%;
  width: 170px;
  min-height: 278px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: linear-gradient(180deg, #171411, #070707);
  box-shadow: 0 28px 58px rgba(0,0,0,.54), 0 0 0 8px rgba(255,255,255,.03);
}

.phone-top {
  width: 48px;
  height: 5px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}

.phone-mock p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.phone-mock strong {
  display: block;
  margin-top: 12px;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 82px;
  line-height: .8;
}

.mini-progress {
  height: 9px;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  overflow: hidden;
}

.mini-progress span {
  display: block;
  width: 57%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.phone-mock small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 850;
}

.conversation-chip {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translateX(-50%);
  padding: 10px 15px;
  border-radius: 999px;
  color: white;
  background: rgba(15,99,246,.92);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.section-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.conversation {
  padding: clamp(58px, 5.5vw, 82px) clamp(20px, 7vw, 96px);
  background:
    linear-gradient(180deg, transparent, rgba(15,99,246,.035)),
    var(--bg);
}

.conversation-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
}

.conversation-copy {
  min-width: 0;
}

.conversation h2 {
  max-width: 940px;
  margin-top: 16px;
  font-size: var(--type-section);
  line-height: .94;
  text-wrap: balance;
}

.conversation-lines {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin-top: 30px;
}

.conversation-lines p {
  margin: 0;
  color: #ded8d1;
  font-size: clamp(23px, 2.4vw, 36px);
  line-height: 1.1;
  font-weight: 900;
  text-wrap: balance;
}

.conversation-lines span,
.conversation-close {
  color: var(--orange-2);
}

.conversation-close {
  margin: 32px 0 0;
  font-family: var(--condensed);
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

.conversation-product {
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conversation-product img {
  display: block;
  width: min(100%, 554px);
  height: auto;
  object-fit: contain;
}

.how {
  padding: clamp(62px, 5vw, 80px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(15,99,246,.14), transparent 25rem),
    linear-gradient(180deg, #090909, #050505);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: var(--type-section);
  line-height: .92;
}

.section-heading p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 800;
}

.story-steps {
  position: relative;
  display: grid;
  gap: clamp(28px, 2.1vw, 32px);
  max-width: 1240px;
  margin: 0 auto;
}

.story-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(15,99,246,.7), transparent);
  transform: translateX(-50%);
}

.story-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.story-step::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(15,99,246,.13);
  transform: translate(-50%, -50%);
}

.story-step.flip .step-copy {
  order: 2;
}

.step-copy {
  padding: clamp(4px, 1vw, 12px);
}

.step-number {
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 26px;
  font-weight: 900;
}

.step-copy h3 {
  margin-top: 8px;
  font-size: var(--type-story);
  line-height: .92;
}

.step-copy p,
.step-copy blockquote {
  color: #d7d0c8;
  font-size: var(--type-body);
  line-height: 1.48;
}

.step-copy p {
  margin: 13px 0 0;
}

.step-copy blockquote {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  background: rgba(15,99,246,.09);
  font-weight: 750;
}

.supporting,
.habit-line {
  color: white !important;
  font-weight: 950;
}

.habit-line {
  color: var(--orange-2) !important;
  font-family: var(--condensed);
  font-size: clamp(27px, 2.4vw, 38px) !important;
  line-height: .98 !important;
  text-transform: uppercase;
}

.human-placeholder,
.conversation-visual,
.log-visual,
.growth-visual {
  min-height: 270px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    var(--charcoal);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.human-placeholder {
  display: grid;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0,0,0,.76)),
    radial-gradient(circle at 32% 28%, rgba(15,99,246,.28), transparent 12rem),
    linear-gradient(135deg, #211711, #090909);
}

.human-placeholder::before {
  content: "";
  width: min(60%, 280px);
  aspect-ratio: 1.25 / 1;
  align-self: start;
  justify-self: center;
  border-radius: 999px 999px 38px 38px;
  background:
    radial-gradient(circle at 38% 26%, rgba(255,255,255,.95) 0 5%, transparent 5.3%),
    radial-gradient(circle at 63% 30%, rgba(255,255,255,.85) 0 4.3%, transparent 4.6%),
    linear-gradient(135deg, rgba(15,99,246,.72), rgba(45,134,255,.2));
  opacity: .82;
  filter: blur(.2px);
}

.human-placeholder span,
.conversation-visual > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.human-placeholder strong {
  max-width: 460px;
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.05;
}

.conversation-visual {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: clamp(20px, 2.4vw, 32px);
}

.bubble {
  max-width: 78%;
  padding: 14px 17px;
  border-radius: 22px;
  color: #f5eee8;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 850;
  line-height: 1.35;
}

.bubble.parent {
  justify-self: start;
  background: rgba(15,99,246,.18);
  border: 1px solid rgba(15,99,246,.34);
}

.bubble.athlete {
  justify-self: end;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
}

.conversation-visual > span {
  justify-self: center;
  margin-top: 10px;
}

.log-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.08fr;
  align-items: center;
  gap: 12px;
  padding: clamp(16px, 2vw, 26px);
}

.log-visual div {
  min-height: 108px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.05);
}

.log-visual span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.log-visual strong {
  color: white;
  font-family: var(--condensed);
  font-size: clamp(48px, 4vw, 64px);
  line-height: .82;
}

.log-visual b {
  color: var(--orange-2);
  font-size: 26px;
}

.log-visual .points strong {
  color: var(--yellow);
}

.growth-visual {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(18px, 2vw, 28px);
}

.balance,
.reward-progress,
.badge-pill {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  padding: 14px 16px;
}

.balance {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.balance span,
.reward-progress span {
  color: var(--muted);
  font-weight: 950;
}

.balance strong {
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 58px;
  line-height: .8;
}

.reward-progress div {
  height: 12px;
  margin: 14px 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.reward-progress i {
  display: block;
  width: 57%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.reward-progress small {
  color: var(--yellow);
  font-weight: 950;
}

.badge-pill {
  color: var(--green);
  font-weight: 950;
}

/* How It Works: one connected, four-stage process. */
.how {
  padding-top: clamp(52px, 4vw, 68px);
  padding-bottom: clamp(52px, 4vw, 68px);
  scroll-margin-top: 88px;
}

.how .section-heading {
  margin-bottom: clamp(24px, 2.2vw, 32px);
}

.process-flow {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.1vw, 18px);
  max-width: 1500px;
  margin: 0 auto;
}

.process-flow::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 42px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, rgba(15,99,246,.16), var(--orange), var(--yellow));
  box-shadow: 0 0 24px rgba(15,99,246,.24);
}

.process-step {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 1.25vw, 20px);
  overflow: visible;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    #0e1218;
  box-shadow: 0 20px 52px rgba(0,0,0,.3);
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, var(--orange), rgba(15,99,246,0));
}

.process-step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  z-index: 3;
  top: 31px;
  right: clamp(-20px, -1.2vw, -13px);
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--yellow);
  border: 1px solid rgba(45,134,255,.3);
  border-radius: 50%;
  background: #0a0d11;
  box-shadow: 0 0 18px rgba(15,99,246,.25);
  font-size: 18px;
  font-weight: 950;
}

.process-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.process-heading > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #080808;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  box-shadow: 0 10px 24px rgba(15,99,246,.24);
  font-family: var(--condensed);
  font-size: 21px;
  font-weight: 900;
}

.process-heading h3 {
  padding-top: 2px;
  font-size: clamp(30px, 2.25vw, 38px);
  line-height: .86;
}

.process-copy,
.process-note {
  color: #d7dce3;
  font-size: clamp(14px, .95vw, 16px);
  line-height: 1.42;
}

.process-copy {
  margin: 16px 0 0;
}

.process-note {
  margin: 8px 0 0;
  color: var(--muted);
}

.process-emphasis {
  margin: 12px 0 0;
  color: var(--orange-2);
  font-family: var(--condensed);
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
}

.idea-visual,
.compact-conversation,
.compact-log,
.compact-growth {
  margin-top: auto;
  padding-top: 14px;
}

.idea-visual {
  display: grid;
  gap: 8px;
}

.idea-visual div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
}

.idea-visual div:first-child {
  border-color: rgba(15,99,246,.28);
  background: rgba(15,99,246,.09);
}

.idea-visual span,
.mini-bubble span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.idea-visual p {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.compact-conversation {
  display: grid;
  gap: 8px;
}

.mini-bubble {
  padding: 9px 11px;
  color: #edf0f4;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.3;
}

.mini-bubble span {
  display: block;
  margin-bottom: 4px;
}

.mini-bubble.parent {
  border-color: rgba(15,99,246,.3);
  background: rgba(15,99,246,.09);
}

.compact-log {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.08fr;
  align-items: center;
  gap: 5px;
}

.compact-log div {
  min-width: 0;
  min-height: 72px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 7px 4px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
  background: rgba(255,255,255,.05);
}

.compact-log span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .05em;
  text-align: center;
  text-transform: uppercase;
}

.compact-log strong {
  font-family: var(--condensed);
  font-size: 36px;
  line-height: .78;
}

.compact-log b {
  color: var(--orange-2);
  font-size: 13px;
}

.compact-log .points strong {
  color: var(--yellow);
}

.compact-growth {
  display: grid;
  gap: 7px;
}

.total-points,
.mini-reward,
.mini-badge {
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  background: rgba(255,255,255,.05);
}

.total-points {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.total-points span,
.mini-reward span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.total-points strong {
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 42px;
  line-height: .72;
}

.mini-reward > div {
  height: 7px;
  margin: 7px 0 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

.mini-reward i {
  display: block;
  width: 57%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.mini-reward small {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 950;
}

.mini-badge {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.mission {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 4.5vw, 70px) clamp(20px, 6vw, 88px);
  background:
    radial-gradient(circle at 82% 26%, rgba(45, 61, 86, .2), transparent 24rem),
    linear-gradient(180deg, #040506, #090c11 58%, #040506);
}

.mission::before {
  content: "";
  position: absolute;
  inset: 10% -10% auto auto;
  width: min(46vw, 620px);
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(15,99,246,.22);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-35deg);
  opacity: .65;
}

.mission-inner {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
  align-items: end;
  gap: clamp(32px, 5vw, 68px);
  margin-top: 16px;
}

.mission-control {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mission h2 {
  color: var(--orange);
  font-size: clamp(64px, 6.2vw, 88px);
  line-height: .8;
}

.mission-copy {
  padding-bottom: clamp(4px, 2vw, 22px);
}

.mission-copy p {
  margin: 0;
  color: #dce1e8;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.48;
}

.mission-copy p + p {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
}

.mission-statement {
  color: var(--white) !important;
  font-weight: 900;
}

.mission-arrow {
  width: min(560px, 82vw);
  height: 52px;
  margin-top: clamp(24px, 2vw, 32px);
}

.mission-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.season {
  padding: clamp(68px, 7vw, 104px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 5%, rgba(15,99,246,.08), transparent 26rem),
    radial-gradient(circle at 92% 22%, rgba(54, 72, 102, .2), transparent 32rem),
    linear-gradient(180deg, #050608, #080b10 48%, #040506);
}

.season-intro {
  max-width: 1180px;
  margin: 0 auto;
}

.season-intro h2 {
  max-width: 1080px;
  margin-top: 16px;
  font-size: var(--type-section);
  line-height: .9;
  text-wrap: balance;
}

.season-opening {
  max-width: 720px;
  margin-top: 24px;
}

.season-opening p,
.season-opening blockquote {
  margin: 0;
  color: #dce1e8;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.4;
  font-weight: 800;
}

.season-opening p + p,
.season-opening blockquote + p {
  margin-top: 10px;
}

.season-opening blockquote {
  display: inline-block;
  color: var(--yellow);
  font-family: var(--condensed);
  margin-top: 12px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: .95;
  text-transform: uppercase;
}

.season-hook {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(340px, 1fr);
  align-items: end;
  gap: clamp(26px, 5vw, 70px);
  margin-top: clamp(28px, 3.5vw, 48px);
  padding-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.season-hook p {
  display: grid;
  gap: 6px;
  margin: 0;
}

.season-hook strong {
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: .95;
  text-transform: uppercase;
}

.season-hook h3 {
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: .9;
  text-wrap: balance;
}

.season-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 38px rgba(15,99,246,.24);
  font: 950 14px/1 var(--body);
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

.season-toggle i {
  font-style: normal;
  font-size: 20px;
  transition: transform .25s ease;
}

.season-toggle.is-expanded i {
  transform: rotate(180deg);
}

.season-story {
  margin-top: clamp(54px, 6vw, 84px);
}

.season-story[hidden] {
  display: none;
}

.season-paths {
  position: relative;
  display: grid;
  gap: clamp(28px, 3vw, 44px);
  max-width: 1240px;
  margin: 0 auto;
}

.season-paths::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 20px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(15,99,246,.65), rgba(45,134,255,.45), transparent);
  transform: translateX(-50%);
}

.season-moment {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-top: 78px;
}

.season-moment::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(15,99,246,.13);
  transform: translateX(-50%);
}

.moment-heading {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: min(640px, 92vw);
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(5, 7, 10, .88);
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.moment-heading span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.moment-heading h3 {
  margin-top: 4px;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: .92;
}

.moment-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.path-card {
  min-height: 0;
  padding: clamp(18px, 1.8vw, 26px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    #111721;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.path-card.austin {
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015)),
    #101318;
}

.path-card.max {
  border-color: rgba(15,99,246,.32);
  background:
    radial-gradient(circle at 88% 16%, rgba(54, 72, 102, .18), transparent 14rem),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    #111923;
}

.path-label {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.max .path-label {
  color: var(--yellow);
}

.path-card p,
.path-card blockquote {
  margin: 0;
  color: #dbe1e8;
  font-size: clamp(15.5px, 1vw, 17px);
  line-height: 1.48;
}

.path-card p + p,
.path-card p + blockquote,
.path-card blockquote + p {
  margin-top: 10px;
}

.path-card blockquote {
  color: var(--white);
  padding: 12px 15px;
  border-left: 4px solid rgba(255,255,255,.3);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  font-weight: 900;
}

.max blockquote {
  border-left-color: var(--orange);
  background: rgba(13, 20, 30, .84);
}

.season-close {
  max-width: 1040px;
  margin: clamp(54px, 6vw, 84px) auto 0;
  text-align: center;
}

.season-close p {
  margin: 0;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 900;
  line-height: .88;
  text-transform: uppercase;
}

.season-close h3 {
  margin-top: 20px;
  color: var(--white);
  font-size: clamp(40px, 4.8vw, 70px);
  line-height: .9;
  text-wrap: balance;
}

.season-close .scoreboard-note {
  max-width: 680px;
  margin: 20px auto 0;
  color: #dce1e8;
  font-family: var(--body);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 800;
  line-height: 1.45;
  text-transform: none;
}

.season-close strong {
  display: block;
  margin-top: 24px;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 900;
  line-height: .84;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.08);
  background: #030303;
}

.footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.footer div div {
  display: grid;
  gap: 4px;
}

.footer strong {
  color: white;
}

.footer p {
  max-width: 560px;
  margin: 0;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    min-height: 78px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.055);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: white;
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(9,9,9,.96);
    max-height: calc(100svh - 96px);
    overflow-y: auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 10px;
  }

  .nav-menu {
    display: block;
  }

  .nav-menu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    margin-top: 7px;
    transform: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding: 11px;
  }

  .nav-cta {
    display: block;
  }

  .nav-signin {
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 4px;
    padding-top: 14px !important;
  }

  .header-actions {
    justify-self: end;
  }

  .header-signin {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media-stack {
    width: min(100%, 760px);
  }

  .media-stage {
    max-width: 760px;
  }

  .story-steps::before,
  .story-step::after {
    display: none;
  }

  .story-step,
  .story-step.flip {
    grid-template-columns: 1fr;
  }

  .story-step.flip .step-copy {
    order: initial;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .season-paths::before,
  .season-moment::before {
    display: none;
  }

  .season-moment {
    grid-template-columns: 1fr 1fr;
    padding-top: 94px;
  }

  .moment-heading {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .conversation-inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 42px);
  }

  .conversation-product img {
    width: min(100%, 520px);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 9px 16px;
    gap: 10px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    display: block;
    background: url("assets/hustle-points-shield-header.jpg") center / contain no-repeat;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding: 88px 18px 52px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 74px);
  }

  .tagline {
    font-size: clamp(31px, 10vw, 44px);
    margin-top: 16px;
  }

  .hero-lede {
    font-size: 17px;
    margin-top: 18px;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .media-stage {
    aspect-ratio: 16 / 9;
    border-radius: 22px;
  }

  .sport-card {
    width: 155px;
  }

  .hockey {
    left: 6%;
    top: 17%;
  }

  .soccer {
    right: 5%;
    top: 33%;
  }

  .hoops {
    left: 7%;
    bottom: 27%;
  }

  .phone-mock {
    right: 6%;
    bottom: 12%;
    width: 146px;
    min-height: 240px;
  }

  .conversation-chip {
    top: 59%;
    max-width: calc(100% - 36px);
    white-space: normal;
    text-align: center;
  }

  .conversation,
  .how,
  .mission,
  .season {
    padding-left: 18px;
    padding-right: 18px;
  }

  .conversation,
  .how,
  .mission {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .season {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .conversation-lines {
    margin-top: 24px;
  }

  .human-placeholder,
  .conversation-visual,
  .log-visual,
  .growth-visual {
    min-height: 240px;
    border-radius: 24px;
  }

  .log-visual {
    grid-template-columns: 1fr;
  }

  .log-visual b {
    transform: rotate(90deg);
    justify-self: center;
  }

  .footer {
    display: grid;
  }

  .mission-grid {
    gap: 30px;
  }

  .mission h2 {
    font-size: clamp(54px, 14vw, 64px);
  }

  .mission-arrow {
    height: 48px;
    margin-top: 28px;
  }

  .app-download {
    padding: 10px;
    border-radius: 18px;
  }

  .app-download-heading {
    align-items: flex-start;
  }

  .app-download-heading h2 {
    font-size: 22px;
  }

  .app-download-heading > span {
    max-width: 132px;
    text-align: center;
  }

  .store-option {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    padding: 8px;
  }

  .qr-placeholder {
    width: 54px;
    border-width: 3px;
  }

  .qr-placeholder strong {
    font-size: 20px;
  }

  .store-badge-placeholder {
    width: 100%;
    min-height: 50px;
    gap: 7px;
    padding: 7px;
  }

  .store-mark {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .store-mark.play::before {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 11px;
  }

  .store-badge-placeholder strong {
    font-size: 12px;
  }

  .season-intro h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .season-opening blockquote {
    font-size: clamp(30px, 9vw, 40px);
  }

  .season-hook {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .season-toggle {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }

  .season-paths {
    gap: 30px;
  }

  .season-moment {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 0;
  }

  .moment-heading {
    position: static;
    width: auto;
    padding: 11px 14px;
    transform: none;
  }

  .path-card {
    border-radius: 24px;
    padding: 18px;
  }

  .path-label {
    margin-bottom: 14px;
  }

  .season-close {
    text-align: left;
  }

  .season-close .scoreboard-note {
    margin-left: 0;
  }
}

@media (max-width: 1199px) and (min-width: 721px) {
  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .process-flow::before,
  .process-step::after {
    display: none !important;
  }

  .process-step {
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .how .section-heading {
    margin-bottom: 24px;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-flow::before {
    top: 22px;
    bottom: 22px;
    left: 21px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, rgba(15,99,246,.16), var(--orange), var(--yellow));
  }

  .process-step {
    padding: 16px;
    border-radius: 20px;
  }

  .process-step:not(:last-child)::after {
    content: "\2193";
    top: auto;
    right: auto;
    bottom: -30px;
    left: 50%;
    width: 26px;
    height: 26px;
    transform: translateX(-50%);
  }

  .process-heading h3 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .process-copy,
  .process-note {
    font-size: 15px;
  }

  .process-emphasis {
    font-size: 25px;
  }

  .compact-log {
    gap: 6px;
  }
}
