:root {
  --font-body: "Proxima Nova", "proxima-nova", Arial, sans-serif;
  --font-display: "Roca 2", "Roca", "Proxima Nova", Georgia, serif;
  --ink: #101112;
  --muted: #737b80;
  --paper: #f6fbfc;
  --panel: rgba(255, 255, 255, 0.82);
  --hop: #00d0e2;
  --brand-blue: #426ab7;
  --brand-lime: #bfe900;
  --brand-yellow: #ffd000;
  --brand-peach: #ff9355;
  --brand-orange: #ff5e00;
  --line: rgba(16, 17, 18, 0.08);
  --shadow: 0 22px 70px rgba(16, 17, 18, 0.14);
  --hero-y: 0px;
}

* {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  padding-bottom: 118px;
  overflow-x: hidden;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
  white-space: nowrap;
}

button,
button * {
  text-transform: none !important;
}

main,
section,
article,
form,
label,
div,
nav,
header {
  min-width: 0;
  max-width: 100%;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.auth-screen {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  overflow-y: auto;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  background: var(--hop);
  overscroll-behavior: contain;
}

body.onboarding-open {
  overflow: hidden;
}

.auth-card {
  width: min(100%, 430px);
  max-width: calc(100vw - 32px);
  display: grid;
  gap: 18px;
  margin: auto 0;
  padding: 0;
  color: white;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.auth-card h1 {
  color: white;
  line-height: 0.92;
  font-weight: 650;
  font-size: clamp(56px, 16vw, 86px);
}

.auth-logo {
  width: 156px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 12px 26px rgba(16, 17, 18, 0.14));
}

.auth-status,
.onboarding-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.auth-card label {
  color: white;
  font-weight: 650;
}

.auth-card input {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(16, 17, 18, 0.08);
}

.auth-card select,
.auth-card textarea,
#onboardingScreen input,
#onboardingScreen select,
#onboardingScreen textarea {
  font-size: 16px;
}

.phone-input-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.phone-input-row.phone-mode {
  grid-template-columns: minmax(106px, 0.34fr) 1fr;
}

.phone-input-row.checkbox-mode {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 9px 10px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  cursor: pointer;
}

.phone-input-row.checkbox-mode input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: white;
  cursor: pointer;
}

.onboarding-checkbox-text {
  color: white;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.auth-card .phone-input-row select {
  display: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(16, 17, 18, 0.08);
}

.auth-card .phone-input-row.phone-mode select {
  display: block;
}

.onboarding-choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.onboarding-choice-pills button {
  min-height: 42px;
  padding: 0 14px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  box-shadow: none;
  cursor: pointer;
}

.onboarding-choice-pills button.active {
  color: var(--hop);
  background: white;
  border-color: white;
}

.onboarding-choice-pills.has-error button {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.auth-card .primary-button {
  color: var(--hop);
  background: white;
  box-shadow: 0 18px 38px rgba(16, 17, 18, 0.16);
  font-weight: 700;
  text-transform: none;
}

.auth-card .secondary-button {
  color: var(--hop);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(16, 17, 18, 0.1);
  font-weight: 700;
  text-transform: none;
}

.auth-card .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.auth-tab {
  min-height: 44px;
  color: white;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
}

.auth-tab.active {
  color: var(--hop);
  background: white;
  box-shadow: 0 12px 26px rgba(16, 17, 18, 0.12);
}

.auth-status:empty {
  display: none;
}

.onboarding-card {
  min-height: 430px;
  align-content: center;
  margin: auto 0;
}

#onboardingScreen {
  z-index: 7000;
  place-items: center;
  width: 100vw;
  min-height: 100dvh;
  background: var(--hop);
}

@media (max-width: 480px), (max-height: 760px) {
  .auth-screen {
    place-items: center;
    align-content: center;
  }

  #onboardingScreen {
    place-items: center;
    align-content: center;
  }

  #onboardingScreen .auth-card {
    margin: auto 0;
  }

  .auth-card {
    gap: 12px;
    margin: auto 0;
    padding: 0;
  }

  .auth-card h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .auth-logo {
    width: 108px;
  }

  .auth-card .stack-form {
    gap: 9px;
  }

  .auth-card input {
    min-height: 44px;
    border-radius: 14px;
  }

  .auth-card button {
    min-height: 46px;
  }

  .onboarding-card {
    min-height: 0;
  }
}

.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: max(12px, env(safe-area-inset-top)) 14px 8px;
  background: transparent;
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1), opacity 460ms cubic-bezier(0.22, 1, 0.36, 1), background 320ms ease;
}

.app-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  backdrop-filter: none;
}

.app-header.header-hidden {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

body.page-showcase .app-header.header-hidden,
body.page-showcase .app-header {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.hop-logo-img {
  display: block;
  width: 74px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 10px 22px rgba(16, 17, 18, 0.18));
}

body:not(.page-home) .hop-logo-img {
  filter: drop-shadow(0 10px 22px rgba(0, 208, 226, 0.16));
}

.brand-mark {
  display: block;
  min-width: 74px;
}

.top-profile {
  min-width: 0;
  width: fit-content;
  max-width: min(360px, 100%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 10px 5px 5px;
  color: white;
  cursor: pointer;
  justify-content: start;
  border-radius: 999px;
}

body:not(.page-home) .top-profile {
  color: #101112;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 17, 18, 0.08);
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.profile-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white !important;
  background: var(--hop);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(16, 17, 18, 0.12);
}

.top-profile strong,
.top-profile small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-profile strong {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  line-height: 1.05;
}

.top-profile small {
  max-width: 140px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

body:not(.page-home) .top-profile small {
  color: var(--muted);
}

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

.header-icon-button,
.settings-chip {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(16, 17, 18, 0.12);
}

body:not(.page-home) .header-icon-button,
body:not(.page-home) .settings-chip {
  color: var(--hop);
  background: white;
  border-color: rgba(0, 208, 226, 0.22);
  box-shadow: 0 12px 28px rgba(0, 208, 226, 0.14);
}

.alert-count {
  position: absolute;
  right: -2px;
  top: -4px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.wallet-chip {
  min-width: 66px;
  min-height: 38px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 6px 10px;
  color: var(--hop);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
}

body:not(.page-home) .wallet-chip {
  color: white;
  background: var(--hop);
  border-color: transparent;
}

.wallet-mark {
  width: 23px;
  height: 23px;
  display: block;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wallet-chip .wallet-mark {
  margin-left: -1px;
}

.wallet-chip strong {
  font-size: 14px;
  line-height: 1;
}

.settings-chip span,
.settings-chip span::before,
.settings-chip span::after {
  display: block;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

.settings-chip span {
  position: relative;
}

.settings-chip span::before,
.settings-chip span::after {
  content: "";
  position: absolute;
  top: 0;
}

.settings-chip span::before {
  left: -8px;
}

.settings-chip span::after {
  right: -8px;
}

.account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 14px;
  width: 174px;
  display: grid;
  gap: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(16, 17, 18, 0.18);
}

.account-menu button,
.account-menu a {
  min-height: 42px;
  padding: 0 12px;
  color: #101112;
  background: transparent;
  border: 0;
  border-radius: 12px;
  font-weight: 750;
  text-align: left;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.account-menu button:hover,
.account-menu button:focus-visible,
.account-menu a:hover,
.account-menu a:focus-visible {
  background: rgba(0, 208, 226, 0.12);
}

.app-feed {
  width: min(100% - 22px, 1120px);
  max-width: 100%;
  margin: 0 auto;
}

body.page-home .app-feed {
  width: 100%;
  max-width: none;
}

body.page-home .home-section:not(.hero-screen) {
  width: min(100% - 22px, 1120px);
  margin-inline: auto;
}

body:not(.page-home) .app-feed {
  padding-top: calc(78px + env(safe-area-inset-top));
}

body.page-showcase .app-feed {
  padding-top: calc(58px + env(safe-area-inset-top));
}

body.page-earnings .app-header,
body.page-earnings .bottom-nav {
  display: none;
}

body.page-earnings .app-feed {
  width: 100%;
  padding-top: 0;
}

.screen {
  width: 100%;
  min-height: calc(100svh - 86px);
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 10px 0 18px;
  scroll-margin-top: 70px;
}

body.page-showcase #showcase {
  min-height: auto;
  align-content: start;
  padding-top: 0;
  scroll-margin-top: 0;
}

.app-feed > .screen {
  display: none;
}

body.page-home .home-section,
body.page-wallet #wallet,
body.page-submit #submit,
body.page-referrals #referrals,
body.page-verify #verify,
body.page-actions #actions,
body.page-profile #profile,
body.page-settings #settings,
body.page-campus #campus,
body.page-leaderboard #leaderboard,
body.page-library #library,
body.page-showcase #showcase,
body.page-earnings #earnings {
  display: grid;
}

.hero-screen {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  min-height: 100dvh;
  height: 100dvh;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 0;
}

.compact-screen {
  min-height: auto;
}

.home-feed-preview {
  min-height: auto;
  align-content: start;
  padding-top: 18px;
}

body.page-home .home-feed-preview {
  scroll-margin-top: 92px;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  background:
    linear-gradient(160deg, #00d0e2 0%, #0fd8e8 48%, #00bdd0 100%);
  box-shadow: inset 0 -120px 120px rgba(16, 17, 18, 0.1);
  transform: scale(1);
  transform-origin: top center;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), border-radius 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, border-radius;
}

body.hero-scrolled .hero-media {
  transform: scale(0.93);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-overlay {
  width: 100%;
  display: grid;
  align-content: end;
  box-sizing: border-box;
  height: 100dvh;
  min-height: 100svh;
  padding: 118px 18px 92px;
  color: white;
}

.hero-kicker {
  width: fit-content;
  margin: 0;
  padding: 8px 11px;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(16, 17, 18, 0.08);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--hop);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0;
  text-transform: lowercase;
}

h1 {
  max-width: 780px;
  font-size: clamp(52px, 17vw, 92px);
  line-height: 0.9;
}

.hero-overlay h1 {
  max-width: 620px;
  color: white;
  text-transform: none;
  text-shadow: 0 20px 44px rgba(16, 17, 18, 0.14);
}

h2 {
  font-size: clamp(34px, 10vw, 56px);
  line-height: 0.94;
}

#currentStudentName,
#profileHubName,
#studentProfileName {
  font-family: var(--font-body);
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

.hero-overlay p:last-of-type {
  max-width: 360px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.drop-countdown {
  width: min(100%, 540px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.drop-countdown span {
  min-height: 104px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 10px 8px;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(16, 17, 18, 0.12);
}

.drop-countdown strong {
  display: block;
  min-width: 2ch;
  font-size: 42px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.drop-countdown small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.countdown-title {
  margin: 18px 0 0;
  color: white;
  font-size: 22px;
  line-height: 1;
  text-transform: lowercase;
}

.drop-date {
  max-width: 540px !important;
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  text-transform: uppercase;
}

.hero-mission-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-mission {
  position: relative;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "label label"
    "title title"
    "meta meta";
  align-content: center;
  gap: 5px;
  padding: 15px 16px;
  color: white;
  text-align: left;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(16, 17, 18, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-mission::after {
  content: none;
}

.hero-mission:active {
  transform: scale(0.98);
}

.hero-mission span {
  grid-area: label;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-mission strong {
  grid-area: title;
  font-family: var(--font-display);
  font-size: 31px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
}

.hero-mission small {
  grid-area: meta;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 520px) {
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .app-feed {
    width: min(100% - 16px, 1120px);
  }

  .screen:not(.hero-screen) {
    min-height: auto;
    align-content: start;
    padding-block: 14px;
  }

  .app-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 7px;
    padding: max(10px, env(safe-area-inset-top)) 12px 8px;
  }

  .brand-mark {
    min-width: 54px;
  }

  .hop-logo-img {
    width: 54px;
  }

  .top-profile {
    min-width: 0;
    min-height: 38px;
    padding: 5px 8px 5px 5px;
    justify-content: start;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(14px);
  }

  .profile-avatar {
    width: 32px;
    height: 32px;
  }

  .top-profile strong {
    max-width: 98px;
    font-size: 12px;
  }

  .top-profile small {
    max-width: 98px;
    font-size: 10px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-icon-button,
  .settings-chip {
    width: 36px;
    height: 36px;
  }

  .wallet-chip {
    min-width: 56px;
    min-height: 36px;
    padding-inline: 8px;
  }

  .wallet-chip .wallet-mark {
    display: block;
    width: 21px;
    height: 21px;
  }

  .hero-overlay {
    align-content: center;
    padding: 92px 14px 88px;
  }

  .hero-overlay h1 {
    max-width: 340px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-overlay p:last-of-type {
    max-width: 280px;
    font-size: 16px;
  }

  .hero-mission-grid {
    margin-top: 16px;
  }

  .hero-mission {
    min-height: 68px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .hero-mission strong {
    font-size: 25px;
  }

  .hero-mission small {
    font-size: 12px;
  }

  .split-heading {
    align-items: stretch;
    flex-direction: column;
    text-align: left;
  }

  .split-heading .section-heading,
  .split-heading h2,
  .split-heading .eyebrow {
    text-align: left;
  }

  .actions-screen .section-heading {
    justify-items: start;
  }

  .action-tools {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-action-button {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
  }

  .profile-hub-card,
  .social-connect-card,
  .identity-card,
  .follow-panel,
  .submit-card,
  .referral-card,
  .verification-panel,
  .wallet-card,
  .glass-form,
  .library-intro,
  .content-library-card,
  .leader-card,
  .notification-card,
  .past-action-card {
    border-radius: 20px;
  }

  .identity-card {
    align-items: flex-start;
  }

  .identity-card h2 {
    font-size: clamp(32px, 12vw, 44px);
  }

  .follow-actions {
    grid-template-columns: 1fr;
  }

  .follow-actions a {
    border-radius: 14px;
  }

  .phone-input-row.phone-mode {
    grid-template-columns: minmax(94px, 0.38fr) minmax(0, 1fr);
  }

  .auth-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .auth-actions .primary-button,
  .auth-actions .secondary-button {
    min-width: 0;
    padding-inline: 12px;
  }

  .profile-hub-stats,
  .stats-row,
  .engagement-fields,
  .form-row {
    grid-template-columns: 1fr;
  }

  .notification-card,
  .past-action-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .notification-card small,
  .past-action-side {
    justify-self: start;
  }

  .past-action-side {
    width: 100%;
    min-width: 0;
    justify-items: start;
  }

  .leader-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .leader-score {
    grid-column: 2;
    text-align: left;
  }

  .instagram-feed-grid,
  .feed-section-grid {
    grid-template-columns: 1fr;
  }

  .social-sync-button {
    width: 100%;
    justify-self: stretch;
  }

  .home-referral-card {
    align-items: stretch;
    flex-direction: column;
  }

  .home-referral-card a {
    width: 100%;
  }

  .feed-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .feed-heading .social-sync-button {
    width: auto;
    min-width: 0;
    justify-self: end;
    padding-inline: 12px;
  }

  .feed-action-row {
    flex-wrap: wrap;
  }

  .feed-action-row small {
    width: 100%;
    margin-left: 0;
  }

  .bottom-nav {
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  }

  .bottom-nav a {
    min-height: 54px;
    border-radius: 12px;
  }

  .nav-icon {
    width: 22px;
    height: 22px;
  }
}

.hero-mission.connector {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.hero-mission.creator {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.hero-mission.amplifier {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
  max-width: 220px;
}

.auth-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.hero-actions a,
.primary-button,
.secondary-button,
.sso-button,
.bucket-tab,
.social-sync-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.hero-actions a:first-child,
.primary-button,
.social-sync-button {
  color: white;
  background: var(--hop);
}

.hero-actions a:first-child {
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.hero-actions a:last-child,
.secondary-button {
  color: #101112;
  background: white;
}

.hero-actions a:only-child {
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.hero-submit {
  box-shadow: 0 16px 34px rgba(0, 208, 226, 0.34);
}

.identity-card,
.needs-action-card,
.signin-panel,
.follow-panel,
.home-leaderboard-card,
.submit-card,
.referral-card,
.wallet-card,
.glass-form,
.verification-panel,
.leader-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 44px rgba(16, 17, 18, 0.08);
  backdrop-filter: blur(18px);
}

.needs-action-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(16, 17, 18, 0.1);
  backdrop-filter: none;
}

.home-account-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 17, 18, 0.08);
}

.home-account-summary h2 {
  color: #101112;
}

.home-account-summary span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.home-recent-heading a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: white;
  background: var(--hop);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.home-recent-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 17, 18, 0.08);
}

.home-recent-heading h2 {
  color: #101112;
}

.home-recent-list {
  display: grid;
  gap: 8px;
}

.home-recent-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 17, 18, 0.08);
  cursor: pointer;
}

.home-recent-item strong,
.home-recent-item small {
  display: block;
}

.home-recent-item strong {
  color: #101112;
  font-size: 14px;
  line-height: 1.15;
}

.home-recent-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.home-leaderboard-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(16, 17, 18, 0.1);
}

.home-leaderboard-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.home-leaderboard-heading h2 {
  color: #101112;
}

.leaderboard-switcher {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  background: rgba(0, 208, 226, 0.09);
  border-radius: 15px;
}

.leaderboard-switcher button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--hop);
  background: transparent;
  border: 0;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 950;
}

.leaderboard-switcher button.active {
  color: white;
  background: var(--hop);
}

.home-leaderboard-list {
  display: grid;
  gap: 8px;
}

.home-leader-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(16, 17, 18, 0.08);
}

.home-leader-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.home-leader-row > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--hop);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 950;
}

.home-leader-row strong,
.home-leader-row small {
  display: block;
}

.home-leader-row strong {
  color: #101112;
  font-size: 14px;
  line-height: 1.12;
}

.home-leader-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.home-leader-row > div:last-child {
  text-align: right;
}

.needs-action-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.needs-action-top h2 {
  color: #101112;
}

.needs-action-top > span {
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--hop);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 950;
}

.needs-action-card.is-clear .needs-action-top > span {
  color: var(--hop);
  background: rgba(0, 208, 226, 0.12);
}

.needs-action-list {
  display: grid;
  gap: 8px;
}

.needs-action-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 0;
}

.needs-action-item strong,
.needs-action-item span {
  display: block;
}

.needs-action-item strong {
  color: #101112;
  font-size: 15px;
}

.needs-action-item span {
  margin-top: 3px;
  color: rgba(16, 17, 18, 0.62);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.needs-action-item button {
  min-height: 38px;
  padding: 0 12px;
  color: white;
  background: var(--hop);
  border: 0;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 950;
}

.actions-screen {
  min-height: auto;
}

.actions-screen .section-heading,
.actions-screen .section-heading > div {
  width: 100%;
  justify-items: start;
  text-align: left;
}

.actions-screen .section-heading h2,
.actions-screen .section-heading .eyebrow {
  text-align: left;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.action-tools {
  display: flex;
  gap: 8px;
}

.profile-hub-card {
  display: grid;
  justify-items: stretch;
  gap: 16px;
  padding: 16px;
  color: #101112;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.home-referral-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: #101112;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.home-referral-card h2,
.home-referral-card p {
  margin: 0;
}

.home-referral-card h2 {
  font-size: clamp(28px, 8vw, 42px);
  line-height: 0.92;
}

.home-referral-card p:not(.eyebrow) {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.home-referral-card a {
  min-height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: white;
  background: var(--hop);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.campus-calendar-card,
.wallet-application-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: #101112;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.campus-calendar-card h2,
.campus-calendar-card h3,
.campus-calendar-card p,
.wallet-application-card h2,
.wallet-application-card p {
  margin: 0;
}

.campus-calendar-card h2,
.wallet-application-card h2 {
  font-size: clamp(28px, 8vw, 42px);
  line-height: 0.92;
}

.campus-calendar-card p,
.wallet-application-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.wallet-application-card a {
  flex: 0 0 auto;
  text-decoration: none;
}

.home-headlines-section {
  display: grid;
  gap: 14px;
}

.home-headlines-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.headline-card {
  min-height: 172px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
  color: #101112;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
  scroll-snap-align: start;
}

.headline-card.pinned {
  border-color: rgba(24, 107, 77, 0.28);
  box-shadow: 0 18px 42px rgba(24, 107, 77, 0.14);
}

.headline-card.urgent {
  border-color: rgba(16, 17, 18, 0.28);
}

.headline-card.important {
  border-color: rgba(223, 47, 74, 0.28);
}

.headline-card span {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: white;
  background: var(--hop);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.headline-card.urgent span {
  background: #101112;
}

.headline-card.important span {
  background: #df2f4a;
}

.headline-card strong {
  display: block;
  font-size: 21px;
  line-height: 1;
}

.headline-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.34;
}

.headline-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.headline-card-footer small {
  color: rgba(16, 17, 18, 0.55);
  font-size: 11px;
  font-weight: 900;
}

.headline-card-footer a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: white;
  background: #101112;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.headline-card.empty,
.headline-card.loading {
  min-height: 132px;
}

.social-connect-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  color: #101112;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.social-connect-card h3,
.social-connect-card p {
  margin: 0;
}

.social-connect-card h3 {
  font-size: 22px;
  line-height: 1;
}

.social-connect-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.integration-list {
  display: grid;
  gap: 8px;
}

.integration-card {
  padding: 12px;
  background: #f7f7f5;
  border: 1px solid rgba(16, 17, 18, 0.06);
  border-radius: 16px;
}

.integration-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.integration-card strong,
.integration-card small {
  display: block;
}

.integration-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.connect-button {
  min-height: 36px;
  padding: 0 12px;
  color: white;
  background: var(--hop);
  border: 0;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 950;
}

.connect-button.connected {
  color: var(--hop);
  background: white;
  border: 1px solid rgba(0, 208, 226, 0.28);
}

.profile-hub-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
}

.profile-avatar.large {
  width: 48px;
  height: 48px;
  box-shadow: none;
}

.profile-hub-main .profile-avatar.large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0;
  line-height: 1;
  text-align: center;
}

.profile-hub-main strong,
.profile-hub-main span,
.profile-hub-stats strong {
  display: block;
}

.profile-hub-main strong {
  font-size: 18px;
  line-height: 1.1;
}

.profile-hub-main span,
.profile-hub-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.profile-hub-stats {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.profile-hub-stats span {
  padding: 12px;
  background: rgba(0, 208, 226, 0.1);
  border-radius: 16px;
}

.profile-hub-stats strong {
  color: #101112;
  font-size: 20px;
}

.student-profile-screen {
  display: grid;
  gap: 14px;
}

.student-profile-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(16, 17, 18, 0.08);
}

.student-profile-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.student-profile-main h2 {
  margin: 0;
  color: #101112;
  font-family: "proxima-nova", "Proxima Nova", system-ui, sans-serif;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
}

.student-profile-main span,
.student-profile-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.student-profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.student-profile-stats span {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(0, 208, 226, 0.08);
  border-radius: 18px;
  text-transform: uppercase;
}

.student-profile-stats strong {
  color: #101112;
  font-size: 22px;
  line-height: 1;
}

.student-profile-create {
  width: 100%;
  min-height: 48px;
  border-radius: 17px;
}

.settings-screen {
  align-content: start;
}

.settings-card,
.settings-form {
  padding: 18px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(16, 17, 18, 0.08);
}

.settings-profile-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.settings-profile-row strong,
.settings-card h3,
.settings-form h3 {
  margin: 0;
  color: #101112;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1;
}

#settingsName {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 850;
  text-transform: none;
}

.settings-profile-row span,
.settings-card p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.settings-info-grid {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.settings-info-grid span {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(0, 208, 226, 0.08);
  border-radius: 16px;
}

.settings-info-grid strong {
  font-size: 11px;
  text-transform: uppercase;
}

.settings-info-grid small {
  color: var(--muted);
  font-weight: 800;
}

.install-settings-card {
  display: grid;
  gap: 14px;
}

.settings-terms-card {
  display: grid;
  gap: 14px;
}

.settings-terms-scrollbox {
  max-height: min(48svh, 460px);
  background: rgba(0, 208, 226, 0.04);
  border-color: rgba(0, 208, 226, 0.18);
}

.install-steps {
  display: grid;
  gap: 8px;
}

.install-steps span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(0, 208, 226, 0.08);
  border-radius: 16px;
}

.install-steps strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--hop);
  border-radius: 12px;
  font-size: 14px;
}

.install-steps small {
  color: #101112;
  font-size: 13px;
  font-weight: 850;
}

.install-settings-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.danger-zone {
  border-color: rgba(255, 94, 0, 0.24);
}

.danger-zone h3 {
  color: #ff5e00;
}

.delete-account-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.danger-button,
.danger-confirm {
  width: 100%;
}

.danger-button {
  color: #ff5e00;
  background: white;
  border: 2px solid #ff5e00;
}

.danger-confirm {
  background: #ff5e00;
}

.settings-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.coming-soon-pill {
  min-height: 34px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #101112;
  background: var(--brand-yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: none;
  pointer-events: none;
  box-shadow: 0 12px 24px rgba(255, 208, 0, 0.22);
}

.profile-content-heading {
  margin-top: 4px;
}

.student-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  overflow: hidden;
  border-radius: 20px;
  background: white;
}

.student-content-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #f7f7f5;
  border: 0;
  cursor: pointer;
}

.student-content-tile div,
.student-content-tile video {
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

.student-content-tile span {
  position: absolute;
  right: 6px;
  bottom: 6px;
  max-width: calc(100% - 12px);
  overflow: hidden;
  padding: 4px 6px;
  color: white;
  background: rgba(16, 17, 18, 0.58);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.student-content-tile .feed-countdown-pill {
  position: absolute;
  right: 6px;
  top: 6px;
  max-width: calc(100% - 12px);
  padding: 5px 7px;
  color: white !important;
  background: rgba(0, 208, 226, 0.92);
  border-color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.student-content-grid .empty-state {
  grid-column: 1 / -1;
  margin: 0;
}

.student-content-grid .feed-loading-card {
  grid-column: 1 / -1;
}

.profile-feed-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  background: rgba(0, 208, 226, 0.1);
  border: 1px solid rgba(0, 208, 226, 0.16);
  border-radius: 18px;
}

.profile-feed-tabs button {
  min-height: 38px;
  color: var(--hop);
  background: transparent;
  border: 0;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-feed-tabs button.active {
  color: white;
  background: var(--hop);
}

.student-content-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: white;
  background: var(--brand-blue);
  font-size: 36px;
  font-weight: 950;
}

.profile-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.profile-tab {
  min-height: 38px;
  color: var(--hop);
  background: transparent;
  border: 0;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-tab.active {
  color: #101112;
  background: white;
  box-shadow: 0 8px 20px rgba(16, 17, 18, 0.08);
}

.mini-action-button {
  box-sizing: border-box;
  min-height: 40px;
  min-width: 112px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--hop);
  background: white;
  border: 1px solid rgba(0, 208, 226, 0.18);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16, 17, 18, 0.08);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.mini-action-button .refresh-icon {
  width: 17px;
  height: 17px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.mini-action-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.refresh-action-button {
  appearance: none;
}

.notification-list,
.past-action-list {
  display: grid;
  gap: 10px;
}

.wallet-mini-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: white;
  background: var(--hop);
  border-radius: 22px;
}

.wallet-mini-card span,
.wallet-mini-card strong,
.wallet-mini-card small,
.wallet-mini-card a {
  display: block;
}

.wallet-mini-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-mini-card strong {
  font-size: 28px;
  line-height: 1;
}

.wallet-mini-card small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.wallet-mini-card a {
  grid-column: 2;
  grid-row: 1 / span 3;
  color: white;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.submission-confirmation {
  display: grid;
  gap: 3px;
  padding: 12px 13px;
  color: #101112;
  background: rgba(191, 233, 0, 0.24);
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 18px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.submission-confirmation small {
  color: rgba(16, 17, 18, 0.62);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.submission-confirmation strong {
  font-size: 14px;
}

.submission-confirmation.error {
  background: rgba(255, 94, 0, 0.16);
}

.submission-confirmation.pending {
  background: rgba(0, 208, 226, 0.16);
}

.submission-confirmation.processing {
  background: rgba(0, 208, 226, 0.2);
}

.upload-progress {
  height: 6px;
  margin-top: 7px;
  overflow: hidden;
  background: rgba(16, 17, 18, 0.08);
  border-radius: 999px;
}

.upload-progress span {
  display: block;
  width: 48%;
  height: 100%;
  background: var(--hop);
  border-radius: inherit;
  animation: upload-pulse 1.05s ease-in-out infinite;
}

@keyframes upload-pulse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(220%);
  }
}

.primary-button.is-loading {
  opacity: 0.78;
}

.primary-button:disabled,
.secondary-button:disabled {
  cursor: progress;
}

.notification-card,
.past-action-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  color: #101112;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.past-action-preview,
.past-action-icon {
  width: 58px;
  height: 58px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 16px;
  flex: 0 0 auto;
}

.past-action-preview {
  background: #eef7f8;
}

.past-action-preview.hop-action-placeholder {
  background: var(--hop);
}

.past-action-preview img,
.past-action-preview video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.past-action-icon {
  color: white;
  font-weight: 950;
  text-transform: uppercase;
}

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

.bucket-pill,
.status-pill {
  display: inline-block;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bucket-pill {
  width: fit-content;
  max-width: min(140px, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.status-pill {
  padding: 7px 10px;
  color: #101112;
  background: rgba(16, 17, 18, 0.06);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.notification-card strong,
.notification-card span,
.notification-card small,
.past-action-main strong,
.past-action-main em,
.past-action-main small,
.past-action-side small {
  display: block;
}

.notification-card strong,
.past-action-main strong {
  font-size: 15px;
  line-height: 1.15;
}

.notification-card span,
.past-action-main em,
.past-action-main small,
.past-action-side small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.notification-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.notification-card.unread {
  border-color: rgba(0, 208, 226, 0.36);
  box-shadow: 0 16px 38px rgba(0, 208, 226, 0.13);
}

.notification-side {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.notification-side button {
  min-height: 34px;
  padding: 0 12px;
  color: white;
  background: var(--hop);
  border: 0;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 950;
}

.past-action-main {
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 4px;
}

.past-action-main strong,
.past-action-main em,
.past-action-main small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.past-action-main em {
  font-style: normal;
}

.past-action-card {
  position: relative;
  cursor: pointer;
}

.past-action-card:focus-visible {
  outline: 3px solid rgba(0, 208, 226, 0.42);
  outline-offset: 3px;
}

.activity-detail-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 18px;
}

.activity-detail-status strong {
  color: #101112;
  font-size: 18px;
}

.activity-detail-summary {
  padding: 14px;
  color: var(--muted);
  background: rgba(0, 208, 226, 0.09);
  border-radius: 18px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.activity-detail-preview {
  overflow: hidden;
  background: #101112;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.1);
}

.activity-detail-preview img,
.activity-detail-preview video {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
}

.analytics-source-preview {
  overflow: hidden;
  max-width: 132px;
  background: #101112;
  border-radius: 18px;
}

.analytics-source-preview img,
.analytics-source-preview video {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
}

.activity-detail-list {
  display: grid;
  gap: 10px;
}

.activity-calendar-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.07);
}

.activity-calendar-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--hop);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 208, 226, 0.22);
}

.activity-calendar-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-calendar-card small,
.activity-calendar-card strong,
.activity-calendar-card em {
  display: block;
}

.activity-calendar-card small {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.activity-calendar-card strong {
  margin-top: 2px;
  font-size: 20px;
  line-height: 1.1;
}

.activity-calendar-card em {
  margin-top: 3px;
  color: var(--hop);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.activity-detail-list article,
.activity-detail-files {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 14px;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 18px;
}

.activity-detail-list span,
.activity-detail-files span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.activity-detail-list strong,
.activity-detail-files strong {
  color: #101112;
  font-size: 14px;
  line-height: 1.35;
}

.connect-event-rail {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.connect-event-rail-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px;
}

.connect-event-rail-heading strong {
  color: #101112;
  font-size: 15px;
  font-weight: 950;
}

.connect-event-rail-heading span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.connect-event-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 82%);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 8px;
  scrollbar-width: none;
}

.connect-event-scroll::-webkit-scrollbar {
  display: none;
}

.connect-event-card {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  scroll-snap-align: start;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(16, 17, 18, 0.08);
}

.connect-event-date {
  width: 48px;
  height: 52px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  color: white;
  background: var(--hop);
  border-radius: 14px;
}

.connect-event-date strong,
.connect-event-date em {
  color: white;
  font-style: normal;
  line-height: 1;
}

.connect-event-date strong {
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.connect-event-date em {
  font-size: 20px;
  font-weight: 950;
}

.connect-event-card div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.connect-event-card div strong,
.connect-event-card div small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.connect-event-card div strong {
  color: #101112;
  font-size: 13px;
  font-weight: 950;
}

.connect-event-card div small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.connect-event-card button {
  min-height: 36px;
  padding: 0 12px;
  color: white;
  background: var(--hop);
  border: 0;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 950;
}

.activity-qr-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 16px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(16, 17, 18, 0.08);
}

.activity-qr-card img {
  width: min(220px, 80vw);
  height: min(220px, 80vw);
  border-radius: 16px;
}

.activity-qr-card strong {
  color: #101112;
  font-size: 18px;
}

.activity-qr-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.activity-detail-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--hop);
  border: 0;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.activity-qr-button {
  width: 100%;
}

.calendar-menu {
  position: relative;
  display: grid;
  gap: 10px;
}

.calendar-menu summary {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--hop);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 950;
  list-style: none;
  cursor: pointer;
}

.calendar-menu summary::-webkit-details-marker {
  display: none;
}

.calendar-menu div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.calendar-menu a,
.calendar-menu button {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  color: var(--hop);
  background: rgba(0, 208, 226, 0.08);
  border: 1px solid rgba(0, 208, 226, 0.2);
  border-radius: 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.lead-bonus-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 18px;
}

.lead-bonus-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--hop);
  font-size: 12px;
  font-weight: 950;
  list-style: none;
  cursor: pointer;
}

.lead-bonus-card summary::-webkit-details-marker {
  display: none;
}

.lead-bonus-card summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--hop);
  border-radius: 8px;
}

.lead-bonus-card[open] summary::after {
  content: "-";
}

.lead-bonus-card div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lead-bonus-card article {
  display: grid;
  gap: 5px;
  padding: 10px;
  background: rgba(0, 208, 226, 0.08);
  border: 1px solid rgba(0, 208, 226, 0.16);
  border-radius: 14px;
}

.lead-bonus-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-bonus-card strong {
  color: var(--hop);
  font-size: 13px;
  font-weight: 950;
}

.past-action-side {
  display: grid;
  justify-items: end;
  gap: 7px;
  width: min(34vw, 128px);
  min-width: 96px;
}

.analytics-ready-button {
  min-height: 34px;
  padding: 0 11px;
  color: white;
  background: var(--hop);
  border: 0;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.analytics-ready-button:disabled {
  color: rgba(16, 17, 18, 0.58);
  background: #e7e7e2;
  cursor: not-allowed;
}

.identity-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.follow-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
}

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

.follow-actions a,
.follow-actions button {
  min-height: 46px;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 0 8px;
  color: #101112;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  font-family: inherit;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.follow-actions a.logged,
.follow-actions button.logged {
  color: white;
  background: var(--hop);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(0, 208, 226, 0.26);
}

.follow-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.install-prompt {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(86px + env(safe-area-inset-bottom));
  z-index: 95;
  display: grid;
  gap: 6px;
  padding: 18px 48px 18px 18px;
  color: white;
  background: var(--hop);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 74, 82, 0.24);
}

.install-prompt.hidden {
  display: none;
}

.install-prompt strong {
  font-size: 16px;
  font-weight: 850;
}

.install-prompt span {
  font-size: 14px;
  line-height: 1.35;
}

.install-prompt-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 10px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.onboarding-follow {
  display: grid;
  gap: 10px;
}

.media-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.media-consent input {
  width: 22px;
  min-height: 22px;
  margin-top: 1px;
  accent-color: white;
}

.terms-consent-panel {
  display: grid;
  gap: 10px;
}

.terms-scrollbox {
  max-height: min(28svh, 220px);
  overflow: auto;
  padding: 12px;
  color: #101112;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  box-shadow: inset 0 -20px 28px rgba(16, 17, 18, 0.04);
  -webkit-overflow-scrolling: touch;
}

.terms-scrollbox pre {
  margin: 0;
  white-space: pre-wrap;
  color: #101112;
  font-family: proxima-nova, Arial, sans-serif;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.36;
}

.terms-checkbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
  user-select: none;
}

.terms-checkbox input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  flex: 0 0 16px;
  accent-color: white;
  cursor: pointer;
}

.auth-card .onboarding-follow .follow-note {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.identity-card span,
.session-card span,
.leader-card span,
.mini-list span,
.showcase-card span,
.instagram-post-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.session-dot {
  width: 14px;
  height: 14px;
  background: var(--hop);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0, 208, 226, 0.16);
}

.signin-panel,
.submit-card,
.referral-card,
.verification-panel {
  padding: 18px;
}

.panel-heading,
.section-heading {
  margin-bottom: 14px;
}

.sso-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.sso-button {
  justify-content: flex-start;
  gap: 8px;
  color: #101112;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.sso-button span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: white;
  background: #101112;
  border-radius: 50%;
  font-size: 12px;
}

.sso-button.active {
  background: rgba(0, 208, 226, 0.18);
  outline: 2px solid rgba(0, 208, 226, 0.36);
}

.session-card {
  margin-top: 10px;
  padding: 12px;
  background: rgba(0, 208, 226, 0.12);
  border-radius: 18px;
}

.quiet-label,
label {
  display: grid;
  gap: 7px;
  color: #25292b;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: none;
}

textarea {
  resize: vertical;
  line-height: 1.4;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 208, 226, 0.3);
}

.wallet-screen {
  min-height: auto;
}

.wallet-card {
  padding: 22px;
  color: white;
  background: #101112;
}

.wallet-card span,
.wallet-card small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-card strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(56px, 18vw, 92px);
  line-height: 0.9;
}

.wallet-pending-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.wallet-pending-line span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.wallet-pending-line strong {
  margin: 0;
  color: white;
  font-size: 18px;
  line-height: 1;
}

.reward-progress {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.wallet-earnings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.wallet-earnings-grid article {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.wallet-earnings-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.wallet-earnings-grid strong {
  margin: 0;
  color: white;
  font-size: 18px;
  line-height: 1;
}

.wallet-rules-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 16px;
  color: var(--hop);
  background: white;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

#payoutForm {
  width: 100%;
  align-self: stretch;
}

#payoutForm label,
#payoutForm input,
#payoutForm select,
#payoutForm button {
  width: 100%;
  min-width: 0;
}

.earnings-screen {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  margin-left: calc(50% - 50vw);
  padding: calc(34px + env(safe-area-inset-top)) 18px calc(34px + env(safe-area-inset-bottom));
  color: white;
  background: var(--hop);
  scroll-margin-top: 0;
}

.earnings-close {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top));
  right: 18px;
  z-index: 80;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  box-shadow: 0 18px 38px rgba(16, 17, 18, 0.14);
}

.earnings-close::before,
.earnings-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.earnings-close::before {
  transform: rotate(45deg);
}

.earnings-close::after {
  transform: rotate(-45deg);
}

.earnings-shell {
  width: min(100%, 860px);
  display: grid;
  gap: 16px;
  margin: 0 auto;
}

.earnings-hero {
  display: grid;
  gap: 10px;
  padding-top: 12px;
}

.earnings-screen .eyebrow,
.earnings-hero h2,
.earnings-hero p {
  color: white;
}

.earnings-hero h2 {
  max-width: 420px;
  font-size: clamp(54px, 17vw, 92px);
  line-height: 0.9;
  text-transform: none;
}

.earnings-hero p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.earnings-grid,
.earnings-steps {
  display: grid;
  gap: 10px;
}

.earnings-grid article,
.earnings-note,
.earnings-steps article {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(16, 17, 18, 0.12);
}

.earnings-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.earnings-mini-table {
  width: 100%;
  margin-top: 6px;
  border-collapse: collapse;
}

.earnings-mini-table td {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  vertical-align: top;
}

.earnings-mini-table td:last-child {
  padding-left: 10px;
  text-align: right;
  font-weight: 950;
}

.earnings-mini-table tr:last-child td {
  border-bottom: 0;
}

.earnings-bonus-slot:empty {
  display: none;
}

.earnings-bonus-details {
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.earnings-bonus-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.earnings-bonus-details summary::-webkit-details-marker {
  display: none;
}

.earnings-bonus-details summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--hop);
  background: white;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
}

.earnings-bonus-details[open] summary::after {
  content: "-";
}

.earnings-bonus-details div {
  display: grid;
  gap: 6px;
  padding: 0 0 8px;
}

.earnings-bonus-details article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.earnings-bonus-details article:last-child {
  border-bottom: 0;
}

.earnings-bonus-details article span,
.earnings-bonus-details article strong {
  width: auto;
  padding: 0;
  color: white;
  background: transparent;
  border-radius: 0;
  font-size: 12px;
  text-transform: none;
}

.earnings-bonus-details article strong {
  flex-shrink: 0;
  font-weight: 950;
  text-align: right;
}

.earnings-grid span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--hop);
  background: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.earnings-grid strong,
.earnings-note strong {
  color: white;
  font-size: 20px;
  font-weight: 950;
}

.earnings-grid strong em {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-family: var(--font-body);
  font-size: 28px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: none;
}

.earnings-grid p,
.earnings-grid small,
.earnings-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.earnings-grid small {
  color: white;
  font-weight: 950;
}

.earnings-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.earnings-steps article {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.earnings-steps strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--hop);
  background: white;
  border-radius: 12px;
  font-size: 15px;
}

.earnings-steps span {
  color: white;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.earnings-note {
  display: grid;
  gap: 10px;
  padding: 17px;
}

.earnings-note a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hop);
  background: white;
  border-radius: 16px;
  font-weight: 950;
  text-decoration: none;
}

.progress {
  height: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--hop);
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stats-row article {
  padding: 15px;
  background: white;
  border-radius: 24px;
}

.stats-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.stats-row strong {
  display: block;
  margin-top: 5px;
  font-size: 28px;
}

.glass-form,
.stack-form {
  display: grid;
  gap: 12px;
}

#submissionForm.creator-mode > label:first-of-type {
  order: 3;
  gap: 7px;
  padding: 12px;
  background: rgba(0, 208, 226, 0.06);
  border: 1px solid rgba(0, 208, 226, 0.14);
  border-radius: 18px 18px 0 0;
}

#submissionForm.creator-mode > label:first-of-type input {
  min-height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 950;
}

#submissionForm.creator-mode #creatorFileField {
  order: 1;
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0;
  color: #101112;
  text-align: center;
}

#submissionForm.creator-mode #creatorFileInput {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

#submissionForm.creator-mode.has-creator-files #creatorFileField {
  order: 1;
  display: grid;
}

#submissionForm.creator-mode.has-creator-files #creatorFileField .creator-upload-trigger {
  display: none;
}

#submissionForm.creator-mode #creatorPreview {
  order: 2;
}

#submissionForm.creator-mode #creatorDescriptionField {
  order: 4;
  gap: 0;
  margin-top: -12px;
  padding: 0;
  background: rgba(0, 208, 226, 0.06);
  border: 1px solid rgba(0, 208, 226, 0.14);
  border-top: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 0 0 18px 18px;
}

#submissionForm.creator-mode #creatorDescriptionField > span {
  padding: 12px 12px 0;
  color: #101112;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}

#actionTitleLabel {
  color: #101112;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}

#submissionForm.creator-mode #creatorDescriptionField > .creator-location-row {
  margin: 9px 12px 0;
  padding: 8px 10px;
}

#submissionForm.creator-mode #creatorDescriptionInput {
  display: none;
}

#submissionForm.creator-mode #contentFields {
  order: 0;
  display: block;
}

.creator-platform-field {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.auth-loading-screen {
  z-index: 120;
}

.auth-loading-card {
  place-items: center;
  text-align: center;
}

.auth-loading-card .feed-loading-spinner {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.28);
  border-top-color: white;
}

.creator-platform-field legend {
  margin-bottom: 2px;
  color: #101112;
  font-size: 13px;
  font-weight: 950;
}

.creator-platform-field select {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.creator-platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.creator-platform-tile {
  min-height: 38px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(16, 17, 18, 0.05);
  white-space: nowrap;
}

.creator-platform-tile span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--hop);
  background: rgba(0, 208, 226, 0.1);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.creator-platform-tile strong {
  font-size: 12px;
  font-weight: 950;
  line-height: 1.05;
}

.creator-platform-tile.active {
  color: white;
  background: var(--hop);
  border-color: var(--hop);
  box-shadow: 0 16px 32px rgba(0, 208, 226, 0.25);
}

.creator-platform-tile.active span {
  color: var(--hop);
  background: white;
}

.creator-upload-trigger {
  min-height: 172px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 20px;
  color: #101112;
  background: rgba(0, 208, 226, 0.08);
  border: 1px dashed rgba(0, 208, 226, 0.42);
  border-radius: 24px;
  text-align: center;
  cursor: pointer;
}

.creator-upload-trigger span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--hop);
  border-radius: 22px;
  font-size: 42px;
  font-weight: 650;
  line-height: 1;
  box-shadow: 0 16px 32px rgba(0, 208, 226, 0.26);
}

.creator-upload-trigger strong {
  color: #101112;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.creator-upload-trigger small {
  max-width: 250px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.creator-link-toggle {
  width: fit-content;
  justify-self: center;
  padding: 0;
  color: var(--hop);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 950;
}

.creator-link-panel {
  display: grid;
  gap: 7px;
  padding: 12px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 18px;
  text-align: left;
}

.creator-link-panel label {
  color: #101112;
  font-size: 13px;
  font-weight: 950;
}

.creator-open-link {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  color: white;
  background: var(--hop);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.creator-location-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 14px;
  text-align: left;
}

.creator-location-toggle {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 0 12px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16, 17, 18, 0.08);
}

.creator-location-inline {
  max-width: min(100%, 360px);
  cursor: text;
}

.creator-location-toggle span {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 2px solid var(--hop);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
}

.creator-location-toggle span::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--hop);
  border-radius: 50%;
}

.creator-location-toggle strong,
.creator-location-toggle input {
  color: var(--hop);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.creator-location-toggle input {
  width: min(220px, 52vw);
  min-height: 34px;
  padding: 0;
  color: #101112;
  background: transparent;
  border: 0;
  outline: 0;
}

.creator-location-toggle input::placeholder {
  color: var(--hop);
  opacity: 0.78;
}

.creator-location-row > span {
  color: var(--hop);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-location-row input {
  min-height: 34px;
  width: 100%;
  padding: 0;
  color: #101112;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  outline: none;
}

#submissionForm.creator-mode #missionDateRow {
  order: 6;
}

#submissionForm.creator-mode #submitActionButton {
  order: 20;
}

#submissionForm.creator-mode #submissionConfirmation {
  order: 21;
}

.creator-preview {
  overflow: visible;
  color: #101112;
}

.creator-preview-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 92%);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.creator-preview-strip::-webkit-scrollbar {
  display: none;
}

.creator-preview-item {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
  scroll-snap-align: start;
}

.creator-remove-media {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  min-height: 34px;
  padding: 0 12px;
  color: #101112;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(16, 17, 18, 0.12);
}

.creator-add-more {
  aspect-ratio: 3 / 4;
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: var(--hop);
  background: rgba(0, 208, 226, 0.08);
  border: 1px dashed rgba(0, 208, 226, 0.42);
  border-radius: 24px;
  scroll-snap-align: start;
}

.creator-add-more span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--hop);
  border-radius: 21px;
  font-size: 38px;
  line-height: 1;
}

.creator-add-more strong {
  font-size: 14px;
  text-transform: uppercase;
}

.creator-preview-media {
  aspect-ratio: 3 / 4;
  min-height: 0;
  display: grid;
  place-items: center;
  background: #f7f7f5;
}

.creator-preview-media img,
.creator-preview-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.creator-preview-file {
  display: grid;
  gap: 6px;
  padding: 22px;
  color: white;
  text-align: center;
}

.creator-preview-meta {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
}

.creator-preview-meta strong,
.creator-preview-meta span {
  display: block;
}

.creator-preview-meta strong {
  font-size: 14px;
}

.creator-preview-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.caption-preview {
  min-height: 104px;
  overflow-y: auto;
  padding: 11px 12px;
  color: #101112;
  background: transparent;
  border: 0;
  border-radius: 0 0 18px 18px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  outline: none;
  white-space: pre-wrap;
}

.caption-preview:empty::before {
  content: attr(data-placeholder);
  color: var(--muted);
}

.caption-hashtag,
.caption-mention {
  color: var(--hop);
  font-weight: 950;
}

.glass-form {
  padding: 16px;
}

.mission-strip {
  display: grid;
  gap: 10px;
}

.mission-card {
  min-height: 128px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 18px;
  text-align: left;
  color: #101112;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(16, 17, 18, 0.12);
}

.mission-card span {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.mission-card strong {
  font-family: var(--font-display);
  font-size: 38px;
  font-style: italic;
  line-height: 0.9;
}

.mission-card small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-card-stats {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.mission-card-stats i {
  width: 100%;
  height: 4px;
  display: block;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
}

.mission-card-stats b {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.coming-soon {
  cursor: default;
}

.hero-mission.coming-soon,
.mission-card.coming-soon,
.bucket-tab.coming-soon {
  opacity: 0.66;
  box-shadow: none;
}

.bucket-tab.coming-soon {
  color: #101112;
  background: var(--brand-yellow);
  opacity: 1;
}

.connector {
  color: white;
  background: var(--brand-blue);
}

.connector span {
  color: white;
}

.creator {
  color: white;
  background: var(--hop);
}

.creator span {
  color: white;
}

.amplifier {
  background: var(--brand-orange);
  color: white;
}

.amplifier span {
  color: white;
}

.mission-card:hover,
.mission-card:focus-visible {
  transform: translateY(-2px);
}

.mission-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.submit-card {
  position: relative;
}

.form-close {
  display: none;
}

body.mission-open {
  overflow: hidden;
}

body.notifications-open {
  overflow: hidden;
}

body.activity-detail-open {
  overflow: hidden;
}

body.post-detail-open {
  overflow: hidden;
}

body.event-qr-open {
  overflow: hidden;
}

body.mission-open .app-header,
body.mission-open .bottom-nav {
  opacity: 0;
  pointer-events: none;
}

body.mission-open .submit-card {
  position: fixed;
  inset: 0;
  z-index: 60;
  width: 100%;
  max-width: 100vw;
  min-height: 100dvh;
  max-height: 100dvh;
  display: grid;
  align-content: start;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 74px 16px 28px;
  background: var(--paper);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.mission-open .submit-card form,
body.mission-open .submit-card label,
body.mission-open .submit-card input,
body.mission-open .submit-card textarea,
body.mission-open .submit-card select,
body.mission-open .submit-card fieldset {
  max-width: 100%;
  min-width: 0;
}

body.mission-open .submit-card::before {
  content: "mission";
  position: fixed;
  top: 18px;
  left: 18px;
  color: var(--hop);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

body.mission-open .form-close {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 70;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: white;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(16, 17, 18, 0.14);
}

body.mission-open .form-close::before,
body.mission-open .form-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #101112;
  border-radius: 999px;
}

body.mission-open .form-close::before {
  transform: rotate(45deg);
}

body.mission-open .form-close::after {
  transform: rotate(-45deg);
}

.notification-overlay,
.activity-detail-overlay,
.post-detail-overlay,
.event-qr-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: stretch;
  padding: 0;
  background: var(--paper);
}

.notification-overlay-panel,
.activity-detail-panel,
.post-detail-panel {
  width: 100%;
  min-height: 100dvh;
  max-height: 100dvh;
  display: grid;
  align-content: start;
  gap: 18px;
  overflow-y: auto;
  padding: max(74px, calc(env(safe-area-inset-top) + 64px)) 18px max(28px, env(safe-area-inset-bottom));
  background: var(--paper);
  border-radius: 0;
  box-shadow: none;
}

.event-qr-overlay {
  z-index: 96;
  color: white;
  background: var(--hop);
}

.event-qr-panel {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 22px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: max(72px, calc(env(safe-area-inset-top) + 62px)) 18px max(34px, env(safe-area-inset-bottom));
  text-align: left;
}

.event-qr-panel::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.28) 48%, transparent 58%);
  animation: hopShimmer 3.8s ease-in-out infinite;
  pointer-events: none;
}

.referral-shimmer {
  position: absolute;
  inset: -30%;
  display: block;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.26) 48%, transparent 58%);
  animation: hopShimmer 3.8s ease-in-out infinite;
  pointer-events: none;
}

.event-qr-copy,
.event-qr-code {
  position: relative;
  z-index: 1;
}

.event-qr-copy {
  width: min(100%, 560px);
  justify-self: center;
  text-align: left;
}

.event-qr-copy p {
  margin: 0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.event-qr-copy h2 {
  max-width: 760px;
  margin: 8px 0;
  color: white;
  font-size: clamp(58px, 15vw, 110px);
  line-height: 0.88;
}

.event-qr-copy span {
  display: block;
  font-weight: 800;
}

.event-qr-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.event-qr-details strong {
  padding: 8px 10px;
  color: #101112;
  background: white;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 950;
}

.event-qr-lead-summary {
  width: 100%;
  display: grid;
  gap: 8px;
}

.event-qr-lead-summary span {
  display: grid;
  gap: 3px;
  padding: 10px;
  color: #101112;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.event-qr-lead-summary strong {
  color: var(--hop);
  font-size: 18px;
  line-height: 1;
}

.event-qr-lead-summary .coming-soon-pill {
  justify-self: center;
  margin-top: 4px;
}

.event-qr-refresh-button {
  min-height: 44px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--hop);
  background: white;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(16, 17, 18, 0.1);
  font-size: 13px;
  font-weight: 950;
}

.event-qr-refresh-button .refresh-icon {
  width: 17px;
  height: 17px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.event-qr-refresh-button:disabled {
  opacity: 0.68;
}

.event-qr-code {
  width: min(100%, 360px);
  box-sizing: border-box;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 16px;
  color: #101112;
  background: white;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(16, 17, 18, 0.22);
}

.event-qr-code img {
  width: 100%;
  max-width: 300px;
  display: block;
  border-radius: 18px;
}

.event-qr-code strong {
  color: var(--hop);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.event-qr-tracking-card {
  width: min(100%, 360px);
  box-sizing: border-box;
  display: grid;
  gap: 10px;
  padding: 12px;
  color: #101112;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(16, 17, 18, 0.14);
}

.event-qr-tracking-card .lead-bonus-card {
  width: 100%;
  padding: 12px;
  text-align: left;
  background: rgba(0, 208, 226, 0.08);
}

@media (max-width: 520px) {
  .event-qr-copy h2 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .lead-bonus-card div {
    grid-template-columns: 1fr;
  }
}

@keyframes hopShimmer {
  0% {
    transform: translateX(-45%);
  }
  55%,
  100% {
    transform: translateX(45%);
  }
}

.activity-detail-panel {
  gap: 16px;
}

.post-detail-overlay {
  background: #101112;
}

.post-detail-panel {
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  padding: max(62px, calc(env(safe-area-inset-top) + 54px)) 0 0;
  color: white;
  background: #101112;
}

.post-detail-media {
  min-height: 55dvh;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.post-detail-media::-webkit-scrollbar {
  display: none;
}

.post-detail-frame {
  min-width: 100%;
  display: grid;
  place-items: center;
  background: #101112;
  scroll-snap-align: start;
}

.post-detail-frame img,
.post-detail-frame video {
  width: 100%;
  max-height: 72dvh;
  display: block;
  object-fit: contain;
}

.post-detail-info {
  display: grid;
  gap: 13px;
  padding: 16px 16px max(22px, env(safe-area-inset-bottom));
  color: #101112;
  background: white;
  border-radius: 28px 28px 0 0;
}

.post-detail-info h2 {
  color: #101112;
  font-size: clamp(28px, 9vw, 44px);
}

.post-detail-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
}

.post-detail-profile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0;
  color: #101112;
  background: transparent;
  border: 0;
  text-align: left;
}

.post-detail-profile strong,
.post-detail-profile small {
  display: block;
}

.post-detail-profile small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.notification-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.clear-notifications-button {
  min-height: 38px;
  align-self: start;
  padding: 0 13px;
  color: white;
  background: var(--hop);
  border: 0;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 950;
}

.notification-close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 95;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: white;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.18);
}

.notification-close::before,
.notification-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #101112;
  border-radius: 999px;
}

.notification-close::before {
  transform: rotate(45deg);
}

.notification-close::after {
  transform: rotate(-45deg);
}

body.mission-open .stack-form,
body.mission-open .bucket-tabs,
body.mission-open .amplify-mission-feed {
  width: min(100%, 640px);
  margin-left: auto;
  margin-right: auto;
}

.bucket-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  padding: 5px;
  margin-bottom: 14px;
  background: white;
  box-shadow: 0 12px 30px rgba(16, 17, 18, 0.08);
  border-radius: 999px;
}

.mission-ideas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.mission-ideas-note {
  margin: 0 auto 10px;
  max-width: 520px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.mission-reward-copy {
  margin: -2px 0 12px;
  color: var(--hop);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.mission-ideas::-webkit-scrollbar {
  display: none;
}

.mission-ideas button {
  min-height: 58px;
  padding: 12px;
  color: #101112;
  text-align: left;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(16, 17, 18, 0.07);
  font-size: 13px;
  font-weight: 950;
}

.bucket-tab {
  min-height: 42px;
  color: var(--hop);
  background: white;
}

.bucket-tab.active {
  color: white;
  background: var(--hop);
}

.referral-screen {
  position: relative;
  width: 100vw;
  max-width: none;
  min-height: 100dvh;
  margin-left: calc(50% - 50vw);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--hop);
}

body.page-referrals .app-header,
body.page-referrals .bottom-nav {
  opacity: 0;
  pointer-events: none;
}

body.page-referrals .app-feed {
  width: 100%;
  padding-top: 0;
}

.referral-card {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: max(58px, calc(env(safe-area-inset-top) + 44px)) 20px max(18px, env(safe-area-inset-bottom));
  color: white;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
}

.referral-card .eyebrow,
.referral-card h2 {
  color: white;
}

.referral-card h2 {
  margin: 0;
  font-size: clamp(46px, 14vw, 74px);
  line-height: 0.88;
}

.referral-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.referral-toggle {
  width: 100%;
  display: grid;
  gap: 2px;
  color: var(--hop) !important;
  background: white !important;
  box-shadow: none !important;
  text-transform: none;
}

.referral-toggle span {
  color: rgba(16, 17, 18, 0.55);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.referral-toggle:disabled {
  opacity: 0.95;
  cursor: default;
}

.referral-qr-card {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 6px 0;
  padding: 14px;
  color: #101112;
  background: white;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(16, 17, 18, 0.24);
}

.referral-qr-card::before {
  display: none;
}

.referral-close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: white;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(16, 17, 18, 0.18);
}

.referral-close::before,
.referral-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #101112;
  border-radius: 999px;
}

.referral-close::before {
  transform: rotate(45deg);
}

.referral-close::after {
  transform: rotate(-45deg);
}

.referral-qr-card img {
  width: min(214px, 66vw);
  height: min(214px, 66vw);
  padding: 10px;
  background: #f7f7f5;
  border-radius: 20px;
}

.referral-qr-card span {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.referral-qr-card strong {
  font-size: 24px;
  letter-spacing: 0;
}

.referral-qr-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: white;
  background: var(--hop);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.referral-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

body.referral-form-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 139;
  background: rgba(0, 208, 226, 0.94);
}

body.referral-form-open .referral-card {
  z-index: 150;
}

#referralForm {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 151;
  width: min(calc(100vw - 28px), 480px);
  max-height: min(620px, calc(100dvh - max(28px, env(safe-area-inset-top) + env(safe-area-inset-bottom))));
  display: grid;
  gap: 12px;
  align-content: start;
  margin: auto;
  padding: 52px 18px 18px;
  color: #101112 !important;
  background: #ffffff !important;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(16, 17, 18, 0.24);
  transform: translate(-50%, -50%);
  overflow-y: auto;
}

#referralForm.hidden {
  display: none !important;
}

#referralForm::before {
  content: "invite a friend";
  display: block;
  color: #101112;
  font-family: var(--font-display);
  font-size: clamp(34px, 10vw, 54px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
}

#referralForm > label,
#referralForm > .referral-actions,
#referralForm > .submission-confirmation {
  width: 100%;
}

#referralForm > label {
  display: grid;
  gap: 8px;
  color: #101112;
}

#referralForm input,
#referralForm textarea {
  color: #101112;
  background: #f7f7f5;
  border-color: rgba(16, 17, 18, 0.08);
}

#referralForm .referral-actions {
  grid-template-columns: minmax(0, 1fr);
}

#referralForm .secondary-button {
  color: var(--hop);
  background: white;
}

#referralForm .referral-form-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  background: #f7f7f5;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 14px;
}

#referralForm .referral-form-close::before,
#referralForm .referral-form-close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: #101112;
  border-radius: 999px;
}

#referralForm .referral-form-close::before {
  transform: rotate(45deg);
}

#referralForm .referral-form-close::after {
  transform: rotate(-45deg);
}

.form-row,
.engagement-fields {
  display: grid;
  gap: 10px;
}

.connect-event-type-field {
  display: grid;
  gap: 10px;
}

.amplify-feed-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 14px;
  color: white;
  background: var(--brand-orange);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.amplify-explainer {
  display: grid;
  gap: 5px;
  padding: 14px;
  color: #101112;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.amplify-explainer strong,
.amplify-explainer span {
  display: block;
}

.amplify-explainer strong {
  font-size: 16px;
  font-weight: 950;
}

.amplify-explainer span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.amplify-explainer.inline {
  box-shadow: none;
}

.amplify-mission-feed {
  display: grid;
  gap: 12px;
}

.amplify-mission-grid {
  display: grid;
  gap: 14px;
}

.amplify-mission-grid .feed-section {
  padding: 0;
}

.amplify-mission-grid .showcase-card {
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.connect-event-type-field > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.connect-event-type-field select {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.connect-event-options button {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  color: #101112;
  text-align: left;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 18px;
}

.connect-event-options button.active {
  color: white;
  background: var(--brand-blue);
}

.connect-event-options strong {
  font-size: 13px;
  line-height: 1.05;
}

.connect-event-options small {
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  opacity: 0.72;
}

body.mission-open #missionDateRow.connect-time-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 10px;
  align-items: end;
}

body.mission-open #missionDateRow.connect-time-row #actionDateField {
  grid-column: 1 / -1;
}

body.mission-open #missionDateRow.connect-time-row #eventStartTimeField,
body.mission-open #missionDateRow.connect-time-row #eventEndTimeField {
  min-width: 0;
  padding: 2px 10px;
}

.submit-card .form-row:has(#eventStartTimeField.hidden) {
  grid-template-columns: 1fr;
}

#missionDateRow,
#actionDateField {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.submit-card .form-row label,
.submit-card .form-row input,
.submit-card .form-row select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.analytics-proof-form {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px 16px 16px;
  color: #101112;
  background: white;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 22px;
}

.activity-detail-submitted {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: #101112;
  background: rgba(0, 208, 226, 0.1);
  border: 1px solid rgba(0, 208, 226, 0.2);
  border-radius: 18px;
}

.activity-detail-submitted span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.activity-detail-submitted strong {
  color: #101112;
  font-size: 15px;
}

.analytics-proof-form h3 {
  margin: 0;
  color: #101112;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
}

.analytics-proof-form .analytics-countdown-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 11px;
  color: #101112;
  background: rgba(0, 208, 226, 0.1);
  border: 1px solid rgba(0, 208, 226, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.analytics-proof-form .analytics-countdown-pill span {
  color: var(--hop);
  font-size: 14px;
  line-height: 1;
}

.analytics-proof-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.analytics-detected {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(0, 208, 226, 0.08);
  border: 1px solid rgba(0, 208, 226, 0.18);
  border-radius: 18px;
}

.analytics-screenshot-preview {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: #101112;
  border-radius: 18px;
}

.analytics-screenshot-preview span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.analytics-screenshot-preview img {
  width: 100%;
  max-height: 360px;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

.analytics-detected strong,
.analytics-detected span {
  display: block;
}

.analytics-detected strong {
  color: #101112;
  font-size: 13px;
  font-weight: 950;
}

.analytics-metric-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.analytics-metric-picker button {
  min-height: 74px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 3px;
  padding: 10px;
  color: var(--hop);
  background: white;
  border: 1px solid rgba(0, 208, 226, 0.22);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 950;
  text-align: left;
}

.analytics-metric-picker button.active {
  color: white;
  background: var(--hop);
}

.analytics-metric-picker small,
.analytics-metric-picker strong,
.analytics-metric-picker em {
  display: block;
}

.analytics-metric-picker small {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: currentColor;
  background: rgba(0, 208, 226, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.analytics-metric-picker button.active small {
  background: rgba(255, 255, 255, 0.22);
}

.analytics-metric-picker strong {
  font-size: 16px;
}

.analytics-metric-picker em {
  color: inherit;
  font-size: 18px;
  font-style: normal;
  line-height: 1;
}

.analytics-number-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.analytics-number-chips button {
  min-height: 46px;
  padding: 0 15px;
  color: var(--hop);
  background: white;
  border: 1px solid rgba(0, 208, 226, 0.22);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 950;
}

.analytics-number-chips button.used {
  color: white;
  background: var(--hop);
}

.engagement-fields input.analytics-target-field {
  border-color: var(--hop);
  box-shadow: 0 0 0 3px rgba(0, 208, 226, 0.16);
}

.analytics-proof-form input,
.analytics-proof-form button {
  font-size: 16px;
}

.analytics-points-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: #101112;
  background: rgba(0, 208, 226, 0.08);
  border: 1px solid rgba(0, 208, 226, 0.2);
  border-radius: 18px;
  text-align: center;
}

.analytics-points-card span,
.analytics-points-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.analytics-points-card strong {
  color: var(--hop);
  font-size: 36px;
  font-weight: 950;
  line-height: 0.95;
}

.analytics-points-card.has-points {
  background: rgba(191, 233, 0, 0.16);
  border-color: rgba(191, 233, 0, 0.38);
}

#actionDate {
  inline-size: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.engagement-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.leaderboard-panel {
  min-height: auto;
}

.leaderboard-list,
.mini-list {
  display: grid;
  gap: 10px;
}

.leader-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
}

.leader-card.current {
  background: rgba(0, 208, 226, 0.16);
}

.leader-rank {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--hop);
  color: white;
  border-radius: 50%;
  font-weight: 950;
}

.leader-score {
  text-align: right;
}

.library-screen {
  min-height: auto;
}

.library-intro {
  display: grid;
  gap: 5px;
  padding: 16px;
  color: #101112;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.library-intro strong,
.library-intro span {
  display: block;
}

.library-intro span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.content-library-grid {
  display: grid;
  gap: 18px;
}

.library-section {
  display: grid;
  gap: 10px;
}

.library-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: white;
}

.library-section-heading strong {
  font-size: 20px;
  line-height: 1;
  text-transform: lowercase;
}

.library-section-heading span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.library-section-grid {
  display: grid;
  gap: 12px;
}

.content-library-card {
  overflow: hidden;
  color: #101112;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.library-thumb {
  min-height: 176px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 208, 226, 0.92), rgba(66, 106, 183, 0.86)),
    var(--hop);
  background-position: center;
  background-size: cover;
}

.library-thumb span {
  padding: 7px 10px;
  background: rgba(16, 17, 18, 0.38);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.library-card-body {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.library-card-body small,
.library-card-body strong,
.library-card-body span {
  display: block;
}

.library-card-body small {
  color: var(--hop);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.library-card-body strong {
  font-size: 20px;
  line-height: 1.05;
}

.library-card-body p,
.library-card-body span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.library-card-body a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: white;
  background: var(--hop);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.library-card-body button {
  min-height: 42px;
  color: var(--hop);
  background: rgba(0, 208, 226, 0.12);
  border: 1px solid rgba(0, 208, 226, 0.24);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.library-coming-soon .library-thumb {
  min-height: 132px;
  background:
    linear-gradient(135deg, rgba(0, 208, 226, 0.92), rgba(66, 106, 183, 0.86)),
    var(--hop);
}

.showcase {
  color: #101112;
  background: transparent;
  border-radius: 0;
  padding: 14px 0 18px;
}

.showcase .screen {
  color: #101112;
}

.social-sync-button {
  width: auto;
  min-width: 124px;
  min-height: 44px;
  justify-self: end;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 14px;
  color: var(--hop);
  background: white;
  border: 1px solid rgba(0, 208, 226, 0.18);
  border-radius: 14px;
  font-size: 12px;
  text-transform: none;
  box-shadow: 0 14px 30px rgba(16, 17, 18, 0.08);
}

.feed-refresh-label {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.social-sync-button .refresh-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  color: currentColor;
}

.social-sync-button .refresh-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2.2px solid currentColor;
  border-left-color: rgba(0, 208, 226, 0.18);
  border-radius: 50%;
}

.social-sync-button .refresh-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 7px;
  height: 7px;
  border-top: 2.2px solid currentColor;
  border-right: 2.2px solid currentColor;
  transform: rotate(28deg);
  transform-origin: center;
}

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

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

.social-feed-status {
  margin-bottom: 14px;
}

.feed-hashtag-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 0 14px;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.feed-hashtag-filters::-webkit-scrollbar {
  display: none;
}

.feed-hashtag-filters button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  color: var(--hop);
  background: white;
  border: 1px solid rgba(0, 208, 226, 0.2);
  border-radius: 13px;
  font-size: 12px;
  font-weight: 950;
}

.feed-hashtag-filters button.active {
  color: white;
  background: var(--hop);
}

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

.feed-heading-compact {
  justify-content: end;
  grid-template-columns: auto;
  min-height: 0;
  margin-bottom: 6px;
}

.feed-heading .social-sync-button {
  margin-bottom: 0;
}

.instagram-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.instagram-feed-header span,
.instagram-feed-header a {
  color: var(--hop);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.instagram-feed-grid,
.showcase-grid {
  display: grid;
  gap: 14px;
}

.feed-view-all {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0 13px;
  color: white;
  background: var(--hop);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.home-feed-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 44%);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-feed-strip::-webkit-scrollbar {
  display: none;
}

.home-feed-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: 0;
  background: #f7f7f5;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(16, 17, 18, 0.08);
  cursor: pointer;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-feed-card div,
.home-feed-card video {
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

.home-feed-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  overflow: hidden;
  padding: 7px 9px;
  color: white;
  background: rgba(16, 17, 18, 0.52);
  border-radius: 13px;
  font-size: 12px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-section {
  display: grid;
  gap: 10px;
}

.feed-loading-card {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  color: var(--hop);
  background: white;
  border: 1px solid rgba(0, 208, 226, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
  text-align: center;
}

.feed-loading-card strong {
  color: #101112;
  font-size: 14px;
  font-weight: 900;
}

.feed-loading-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(0, 208, 226, 0.18);
  border-top-color: var(--hop);
  border-radius: 50%;
  animation: spin 850ms linear infinite;
}

.feed-section-heading {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feed-section-heading strong,
.feed-section-heading span {
  display: block;
}

.feed-section-heading strong {
  color: #101112;
  font-size: 18px;
  line-height: 1.1;
}

.feed-section-heading span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.feed-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 10px;
}

.social-feed-section {
  min-height: 76svh;
}

.social-feed-scroll {
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: auto;
  gap: 18px;
  overflow: visible;
  padding-right: 2px;
  scroll-snap-type: none;
}

.social-feed-scroll .feed-card {
  scroll-snap-align: start;
  border-radius: 26px;
}

.social-feed-scroll .feed-card-image,
.social-feed-scroll .feed-card-video,
.social-feed-scroll .feed-media-frame {
  aspect-ratio: 3 / 4;
  min-height: 0;
}

.social-feed-scroll .showcase-card p {
  -webkit-line-clamp: 5;
}

.showcase-card {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
  color: #101112;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16, 17, 18, 0.08);
}

.feed-post-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  cursor: pointer;
}

.feed-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white !important;
  background: var(--hop);
  border-radius: 15px;
  font-size: 13px !important;
  font-weight: 950 !important;
}

.feed-post-header strong,
.feed-post-header small {
  display: block;
}

.feed-post-header strong {
  color: #101112;
  font-size: 14px;
  line-height: 1.05;
}

.feed-post-header small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.feed-media-strip {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  background: #f7f7f5;
}

.feed-media-wrap {
  position: relative;
}

.feed-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  display: flex;
  gap: 5px;
  padding: 5px 7px;
  background: rgba(16, 17, 18, 0.34);
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
}

.feed-carousel-dots span {
  width: 6px;
  height: 6px;
  display: block;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.feed-carousel-dots span.active {
  width: 14px;
  background: white;
}

.feed-media-strip::-webkit-scrollbar {
  display: none;
}

.feed-media-frame {
  width: 100%;
  min-width: 100%;
  min-height: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.app-video-player {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: block;
  background: #101112;
}

.app-video-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #101112;
}

.feed-card-video,
.feed-card-video video {
  aspect-ratio: 3 / 4;
}

.feed-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.feed-card-video {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  display: block;
  background: #f7f7f5;
}

.feed-card-body {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 13px;
}

.showcase-card span,
.showcase-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.feed-post-date {
  margin-top: 1px;
  opacity: 0.72;
}

.showcase-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.05;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.32;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.feed-tags span {
  color: var(--hop);
  font-size: 12px;
  font-weight: 950;
}

.feed-status-label {
  width: fit-content;
  padding: 6px 9px;
  color: var(--hop) !important;
  background: rgba(0, 208, 226, 0.1);
  border-radius: 12px;
  font-size: 11px !important;
  font-weight: 950 !important;
  text-transform: uppercase;
}

.feed-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.feed-action-row button,
.feed-action-row a {
  min-width: 94px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--hop);
  border: 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 208, 226, 0.18);
}

.feed-countdown-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: var(--hop) !important;
  background: rgba(0, 208, 226, 0.14);
  border: 1px solid rgba(0, 208, 226, 0.26);
  border-radius: 999px;
  font-weight: 950;
}

.feed-countdown-pill::before {
  content: "◷";
  font-size: 13px;
  line-height: 1;
}

.timer-corner-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: calc(100% - 20px);
  overflow: hidden;
  padding: 7px 9px;
  color: white !important;
  background: rgba(0, 208, 226, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(16, 17, 18, 0.16);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timer-corner-pill::before {
  content: "◷";
  font-size: 13px;
  line-height: 1;
}

.student-content-tile .timer-corner-pill {
  top: 6px;
  right: 6px;
  padding: 5px 7px;
  font-size: 9px;
}

.feed-action-row small {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.submission-toast {
  position: fixed;
  left: 50%;
  bottom: calc(104px + env(safe-area-inset-bottom));
  z-index: 120;
  width: min(calc(100vw - 28px), 430px);
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: white;
  background: #101112;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(16, 17, 18, 0.26);
  transform: translateX(-50%);
}

.submission-toast strong,
.submission-toast span {
  display: block;
}

.submission-toast strong {
  font-size: 14px;
  font-weight: 950;
}

.submission-toast span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 17, 18, 0.06);
  border-width: 1px 0 0;
  border-radius: 22px 22px 0 0;
  backdrop-filter: blur(18px);
  box-shadow: 0 -12px 34px rgba(16, 17, 18, 0.12);
}

.bottom-nav a {
  min-width: 0;
  min-height: 56px;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 5px;
  color: var(--hop);
  border-radius: 14px;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.bottom-nav strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.bottom-nav a:hover,
.bottom-nav a:focus-visible,
.bottom-nav a.is-active {
  color: #101112;
  background: rgba(0, 208, 226, 0.12);
}

.bottom-nav a.is-active .nav-icon {
  transform: translateY(-1px);
}

.bottom-nav a[data-nav="wallet"] {
  color: var(--hop);
  background: transparent;
  box-shadow: none;
}

.bottom-nav a[data-nav="wallet"].is-active {
  color: #101112;
  background: rgba(0, 208, 226, 0.1);
}

.nav-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}

.website-logo-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--hop);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 208, 226, 0.24);
}

.website-logo-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.bottom-nav a[data-nav="website"] {
  color: var(--hop);
}

.bottom-nav a[data-nav="website"]:hover .website-logo-icon,
.bottom-nav a[data-nav="website"]:focus-visible .website-logo-icon {
  transform: translateY(-1px);
}

.nav-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 760px) {
  body {
    padding-bottom: 104px;
  }

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

  .app-feed {
    width: min(100% - 44px, 1120px);
    margin-inline: auto;
  }

  body.page-home .app-feed {
    width: 100%;
    max-width: none;
  }

  body.page-home .home-section:not(.hero-screen) {
    width: min(100% - 44px, 1120px);
  }

  .screen {
    max-width: 960px;
    margin-inline: auto;
  }

  .screen.hero-screen,
  .screen.referral-screen {
    max-width: none;
  }

  .top-profile {
    grid-column: 3;
    justify-self: end;
    max-width: 320px;
  }

  .header-actions {
    grid-column: 4;
  }

  .bottom-nav {
    left: 50%;
    right: auto;
    bottom: 18px;
    width: min(520px, calc(100% - 48px));
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 8px;
    border-width: 1px;
    border-radius: 26px;
    transform: translateX(-50%);
    box-shadow: 0 18px 48px rgba(16, 17, 18, 0.16);
  }

  .bottom-nav a {
    min-height: 54px;
  }

  .hero-screen {
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    min-height: 100dvh;
    height: 100dvh;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-inline-start: -50vw;
    margin-inline-end: -50vw;
  }

  .hero-media {
    height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
  }

  body.hero-scrolled .hero-media {
    transform: none;
    border-radius: 0;
    box-shadow: inset 0 -120px 120px rgba(16, 17, 18, 0.1);
  }

  .hero-overlay {
    width: min(100% - 72px, 1120px);
    height: 100dvh;
    min-height: 100dvh;
    margin: 0 auto;
    padding: 126px 0 92px;
  }

  .hero-overlay h1 {
    max-width: 720px;
    font-size: clamp(82px, 8vw, 124px);
  }

  .hero-mission-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 980px;
    gap: 14px;
  }

  .hero-mission {
    min-height: 156px;
    align-content: end;
    padding: 22px;
  }

  .compact-screen,
  .wallet-screen {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    align-items: start;
  }

  .mission-strip,
  .instagram-feed-grid,
  .feed-section-grid,
  .library-section-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.mission-open .submit-card {
    padding-top: 92px;
  }

  .engagement-fields {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .showcase-card {
    min-height: 360px;
  }

  .event-qr-panel {
    align-content: center;
    grid-template-columns: minmax(0, 440px);
    justify-content: center;
    padding-inline: 32px;
  }

  .event-qr-copy,
  .event-qr-code,
  .event-qr-tracking-card {
    width: min(100%, 440px);
  }

  .event-qr-copy h2 {
    font-size: 74px;
  }

  .referral-card {
    width: min(100%, 520px);
    justify-items: start;
    text-align: left;
  }

  .referral-qr-card {
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  input,
  select,
  textarea,
  button,
  [contenteditable="true"],
  input[type="file"]::file-selector-button,
  .caption-preview,
  .analytics-proof-form input,
  .analytics-proof-form button,
  .submit-card input,
  .submit-card select,
  .submit-card textarea,
  .auth-card input,
  .auth-card select,
  .auth-card textarea,
  .glass-form input,
  .glass-form select,
  .glass-form textarea {
    font-size: 16px !important;
  }

  .past-action-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .past-action-preview,
  .past-action-icon {
    width: 54px;
    height: 54px;
  }

  .past-action-side {
    grid-column: 2;
    justify-items: start;
  }

  body.mission-open .submit-card .form-row,
  body.mission-open #missionDateRow {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.mission-open #missionDateRow.connect-time-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 24px;
    row-gap: 12px;
  }

  body.mission-open #missionDateRow.connect-time-row #eventStartTimeField,
  body.mission-open #missionDateRow.connect-time-row #eventEndTimeField {
    padding-inline: 10px;
  }

  body.mission-open #missionDateRow.connect-time-row #actionDateField {
    grid-column: 1 / -1;
  }

  body.mission-open #actionDateField,
  body.mission-open #actionDate {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
