:root {
  color-scheme: dark;
  --bg: #020609;
  --panel: rgba(13, 20, 24, 0.86);
  --panel-strong: rgba(19, 28, 33, 0.95);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f8fafc;
  --muted: #a5adb7;
  --dim: #66717d;
  --gold: #ffc425;
  --gold-2: #ff9f1c;
  --green: #5ee082;
  --blue: #55b7ff;
  --violet: #8957ff;
  --pink: #ff5ca8;
  --orange: #ff8442;
  --danger: #ff5f5f;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 196, 37, 0.12), transparent 26rem),
    radial-gradient(circle at 82% 74%, rgba(85, 183, 255, 0.11), transparent 28rem),
    linear-gradient(135deg, #000305 0%, #061116 52%, #020609 100%);
  color: var(--text);
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(255, 196, 37, 0.85);
  outline-offset: 2px;
}

button {
  color: inherit;
}

.stage {
  width: min(1180px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 430px minmax(280px, 1fr);
  gap: 42px;
  align-items: center;
}

.phone {
  width: min(100%, 430px);
  height: 900px;
  max-height: calc(100vh - 56px);
  min-height: 740px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 42px;
  padding: 20px 18px 96px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(9, 16, 20, 0.98), rgba(1, 5, 7, 0.99));
  box-shadow:
    inset 0 0 0 7px #05080a,
    inset 0 0 0 8px rgba(255, 255, 255, 0.18),
    0 28px 90px rgba(0, 0, 0, 0.62);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.app-header,
.top-tabs,
.bottom-nav {
  position: relative;
  z-index: 5;
}

.app-header {
  min-height: 132px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: start;
  padding: 8px 10px 8px;
}

.app-header h1,
.app-header p,
.hero-panel h2,
.onboarding-card h2,
.checkin-hero h2,
.plan-card h2,
.challenge-hero h2,
.desktop-panel h2,
.profile-card h2,
.progress-board h2,
.coach-portal h2,
.integration-panel h2 {
  margin: 0;
}

.app-header h1 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.app-header .eyebrow {
  text-align: center;
  color: var(--gold);
}

.brand-lockup {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  min-width: 0;
  margin-top: -2px;
}

.brand-lockup::before {
  content: none;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: min(180px, 100%);
  height: 84px;
  object-fit: contain;
  object-position: center;
  border: 0;
  box-shadow: none;
  filter: none;
  background: transparent;
}

.brand-lockup h1 {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.icon-button {
  width: 42px;
  height: 42px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-button.ghost {
  opacity: 0;
  pointer-events: none;
}

.icon-button[data-back].is-visible {
  opacity: 1;
  pointer-events: auto;
}

.notification-dot {
  position: absolute;
  right: 10px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.top-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  margin: 0 8px 12px;
}

.top-tab {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 12px 4px 11px;
  font-size: 13px;
  cursor: pointer;
}

.top-tab.is-active {
  color: var(--gold);
  border-color: var(--gold);
}

.screen-stack {
  height: calc(100% - 190px);
  position: relative;
  z-index: 2;
  overflow: hidden auto;
  scrollbar-width: none;
  padding: 0 8px 104px;
}

.screen-stack::-webkit-scrollbar {
  display: none;
}

.screen {
  display: none;
  animation: rise 190ms ease-out;
}

.screen.is-active {
  display: block;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-panel,
.onboarding-card,
.checkin-hero,
.coach-card,
.plan-card,
.macro-card,
.integration-panel,
.timeline,
.challenge-hero,
.community-hero,
.coach-console,
.coach-portal,
.planner-hero,
.progress-board,
.history-panel,
.profile-card,
.subscription-hero,
.identity-choice,
.payment-note,
.release-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(19, 29, 35, 0.92), rgba(5, 10, 13, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-panel {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 8px;
  padding: 11px 12px;
  overflow: hidden;
}

.hero-panel h2 {
  margin-top: 7px;
  font-size: 18px;
  line-height: 1.1;
}

.onboarding-card {
  display: grid;
  gap: 14px;
  margin-top: 0;
  padding: 16px;
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 196, 37, 0.2), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.onboarding-card h2 {
  font-size: 27px;
  line-height: 1.08;
}

.onboarding-card p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.field-label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-label input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  padding: 0 12px;
  text-transform: none;
  font-weight: 700;
}

.checkin-hero {
  margin-top: 0;
  padding: 16px;
  background:
    radial-gradient(circle at 82% 18%, rgba(85, 183, 255, 0.16), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.checkin-hero h2 {
  margin: 8px 0;
  font-size: 25px;
  line-height: 1.1;
}

.checkin-hero p:not(.section-label) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.checkin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.checkin-form label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkin-form input {
  grid-column: 1 / -1;
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  padding: 0 10px;
  font-weight: 800;
}

.checkin-form label span {
  color: var(--gold);
  font-size: 11px;
  text-transform: none;
}

.checkin-form .primary-button,
.save-note {
  grid-column: 1 / -1;
}

.save-note {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 12px;
}

.hero-panel p:last-child {
  color: var(--muted);
  line-height: 1.32;
  margin-bottom: 0;
  font-size: 13px;
}

.athlete-visual {
  min-height: 98px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  background: #05090b;
}

.athlete-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 13, 0.58), transparent 52%),
    linear-gradient(180deg, transparent 54%, rgba(5, 10, 13, 0.72));
  pointer-events: none;
}

.athlete-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 28%;
  display: block;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 9px;
}

.metric-card {
  min-height: 64px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 10px 8px 44px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: var(--accent);
}

.metric-card.violet { --accent: linear-gradient(135deg, var(--violet), transparent); }
.metric-card.green { --accent: linear-gradient(135deg, var(--green), transparent); }
.metric-card.amber { --accent: linear-gradient(135deg, var(--gold), transparent); }
.metric-card.blue { --accent: linear-gradient(135deg, var(--blue), transparent); }

.metric-card p,
.metric-card strong,
.metric-card small,
.metric-icon {
  position: relative;
  z-index: 1;
}

.metric-card p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  font-size: 16px;
}

.metric-card small {
  color: var(--muted);
}

.metric-icon {
  position: absolute;
  left: 13px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.metric-icon::before,
.metric-icon::after,
.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.dumbbell::before,
.dumbbell::after {
  top: 9px;
  width: 9px;
  height: 6px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 0 0 2px currentColor;
}

.dumbbell::before { left: 0; }
.dumbbell::after { right: 0; }
.dumbbell {
  color: var(--violet);
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background: linear-gradient(currentColor, currentColor) center / 14px 3px no-repeat;
}

.flame {
  color: var(--green);
  background: currentColor;
  border-radius: 52% 48% 60% 40%;
  transform: rotate(45deg);
}

.flame::after {
  inset: 8px 7px 4px;
  background: #061116;
  border-radius: 50%;
}

.steps {
  color: var(--gold);
}

.steps::before,
.steps::after {
  width: 10px;
  height: 16px;
  background: currentColor;
  border-radius: 10px 10px 8px 8px;
}

.steps::before { left: 2px; top: 1px; transform: rotate(-20deg); }
.steps::after { right: 2px; bottom: 0; transform: rotate(18deg); }

.heart {
  color: var(--blue);
  transform: rotate(45deg);
  background: currentColor;
}

.heart,
.heart::before,
.heart::after {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.heart::before,
.heart::after {
  background: currentColor;
  border-radius: 50%;
}

.heart::before { left: -9px; top: 0; }
.heart::after { top: -9px; left: 0; }

.fork {
  color: var(--green);
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 0 0 8px 8px;
}

.fork::before {
  left: 9px;
  top: 0;
  width: 4px;
  height: 24px;
  background: currentColor;
}

.pulse {
  color: var(--blue);
  border-bottom: 3px solid currentColor;
}

.pulse::before {
  left: 1px;
  top: 6px;
  width: 22px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: skewX(-24deg);
}

.trophy {
  color: var(--gold);
  border: 3px solid currentColor;
  border-radius: 3px 3px 9px 9px;
}

.trophy::before {
  left: -8px;
  top: 2px;
  width: 7px;
  height: 9px;
  border: 3px solid currentColor;
  border-right: 0;
  border-radius: 7px 0 0 7px;
}

.message {
  color: var(--pink);
  border: 3px solid currentColor;
  border-radius: 8px;
}

.message::after {
  left: 5px;
  bottom: -7px;
  border: 5px solid transparent;
  border-top-color: currentColor;
}

.calendar {
  color: var(--gold);
  border: 3px solid currentColor;
  border-radius: 5px;
}

.calendar::before {
  left: 2px;
  right: 2px;
  top: 6px;
  height: 3px;
  background: currentColor;
}

.calendar::after {
  left: 5px;
  top: -5px;
  width: 3px;
  height: 8px;
  background: currentColor;
  box-shadow: 9px 0 0 currentColor;
}

.daily-focus {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 196, 37, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 196, 37, 0.12), transparent 7rem),
    rgba(255, 255, 255, 0.04);
}

.focus-score {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 196, 37, 0.38);
  background: radial-gradient(circle, rgba(255, 196, 37, 0.14), rgba(0, 0, 0, 0.18));
}

.focus-score strong,
.focus-score span {
  grid-area: 1 / 1;
}

.focus-score strong {
  color: var(--gold);
  font-size: 21px;
  transform: translateY(-7px);
}

.focus-score span {
  color: var(--muted);
  font-size: 10px;
  transform: translateY(14px);
}

.daily-focus h2 {
  margin: 5px 0;
  font-size: 21px;
}

.daily-focus p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.focus-actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
}

.focus-actions button {
  min-height: 38px;
  border: 1px solid rgba(255, 196, 37, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 196, 37, 0.08);
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.coach-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
}

.coach-card strong,
.coach-card span {
  display: block;
}

.coach-card span,
.coach-portal li,
.timeline span,
.integration-panel p:not(.section-label) {
  color: var(--muted);
  line-height: 1.45;
}

.orbital-ai {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid #2d65ff;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 3px, transparent 4px),
    radial-gradient(circle, rgba(67, 92, 255, 0.9), transparent 48%),
    conic-gradient(from 80deg, var(--blue), var(--violet), transparent, var(--blue));
  box-shadow: 0 0 28px rgba(75, 96, 255, 0.8);
}

.quick-actions {
  margin-top: 9px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.quick-actions button {
  min-width: 0;
  min-height: 54px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding-top: 10px;
}

.quick-actions .metric-icon {
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
}

.quick-actions b {
  width: 100%;
  margin-top: 17px;
  padding-inline: 1px;
  font-size: 8.5px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.pro-mini {
  position: absolute;
  right: 3px;
  top: 3px;
  z-index: 2;
  border-radius: 999px;
  padding: 1px 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #071015;
  font-size: 7px;
  font-weight: 1000;
}

.upgrade-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 9px;
  border: 1px solid rgba(255, 196, 37, 0.24);
  border-radius: var(--radius);
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 196, 37, 0.11), rgba(255, 255, 255, 0.035));
}

.upgrade-strip strong {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.25;
}

.upgrade-strip button,
.plan-card-ui button {
  min-height: 38px;
  border: 1px solid rgba(255, 196, 37, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 196, 37, 0.08);
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.plan-pill,
.pro-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-pill.pro,
.pro-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #071015;
}

.plan-card {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.02)),
    radial-gradient(circle at 84% 28%, rgba(255, 196, 37, 0.18), transparent 5rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.92), rgba(5, 10, 13, 0.9));
}

.plan-card h2 {
  margin-top: 8px;
  font-size: 24px;
}

.plan-card span,
.workout-meta,
.meal span,
.challenge-card span,
.release-card p,
.profile-card p {
  color: var(--muted);
}

.primary-button {
  min-height: 43px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #091014;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255, 196, 37, 0.18);
}

.training-progress {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.training-progress div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.training-progress strong {
  color: var(--gold);
  font-size: 22px;
}

.training-progress span {
  color: var(--muted);
  font-size: 12px;
}

.workout-list,
.meal-list,
.challenge-list,
.settings-list,
.release-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.workout,
.meal,
.challenge-card,
.health-card,
.settings-list button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.workout {
  min-height: 78px;
  display: grid;
  grid-template-columns: 58px 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 10px;
}

.workout.is-complete {
  border-color: rgba(94, 224, 130, 0.34);
  background: rgba(94, 224, 130, 0.055);
}

.thumb {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.16) 20% 24%, transparent 26%),
    radial-gradient(circle at 52% 22%, #8d5635 0 12px, transparent 13px),
    linear-gradient(160deg, #151b1f, #07090a);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.workout strong,
.meal strong,
.challenge-card strong {
  display: block;
}

.done-indicator {
  width: 27px;
  height: 27px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.done-indicator.is-done {
  border-color: var(--green);
  background: radial-gradient(circle, var(--green) 0 4px, transparent 5px);
}

.macro-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.ring {
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #10171b 0 52%, transparent 53%),
    conic-gradient(var(--gold) 0 28%, var(--orange) 28% 49%, var(--blue) 49% 77%, var(--green) 77% 92%, rgba(255, 255, 255, 0.16) 92% 100%);
}

.ring strong,
.ring span {
  grid-area: 1 / 1;
}

.ring strong {
  font-size: 25px;
  transform: translateY(-7px);
}

.ring span {
  color: var(--muted);
  font-size: 11px;
  transform: translateY(17px);
}

.macro-bars {
  display: grid;
  gap: 7px;
}

.macro-bars label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

meter {
  width: 100%;
  height: 7px;
}

.meal {
  min-height: 70px;
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
}

.meal-photo {
  width: 66px;
  height: 50px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 34% 45%, var(--green) 0 10px, transparent 11px),
    radial-gradient(circle at 64% 52%, var(--orange) 0 14px, transparent 15px),
    radial-gradient(circle at 46% 32%, #f5d98e 0 11px, transparent 12px),
    #182126;
}

.meal em {
  font-style: normal;
  color: #fff;
}

.nutrition-lab {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 196, 37, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 196, 37, 0.14), transparent 7rem),
    rgba(255, 255, 255, 0.04);
}

.nutrition-lab h2 {
  margin: 6px 0;
  font-size: 22px;
}

.nutrition-lab p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.nutrition-result {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.nutrition-result strong {
  color: var(--gold);
  font-size: 22px;
}

.nutrition-result span {
  color: var(--muted);
  font-size: 12px;
}

.dual-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.dual-actions button,
.chat-input button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.health-card {
  min-height: 95px;
  padding: 12px;
}

.health-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.health-card strong {
  display: block;
  margin: 8px 0 3px;
  font-size: 22px;
}

.health-card small {
  color: var(--accent-color, var(--gold));
}

.integration-panel,
.timeline,
.challenge-hero,
.community-hero,
.coach-console,
.coach-portal,
.planner-hero,
.progress-board,
.history-panel,
.profile-card,
.subscription-hero,
.identity-choice,
.payment-note,
.release-card {
  margin-top: 12px;
  padding: 16px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.brand-row span,
.desktop-features span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #dce3ea;
  font-size: 12px;
}

.wearable-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.wearable-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.wearable-card.is-connected {
  border-color: rgba(94, 224, 130, 0.42);
  background:
    radial-gradient(circle at 90% 14%, rgba(94, 224, 130, 0.12), transparent 6rem),
    rgba(255, 255, 255, 0.04);
}

.wearable-card strong,
.wearable-card span {
  display: block;
}

.wearable-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.wearable-card small {
  justify-self: end;
  color: var(--green);
  font-weight: 900;
}

.wearable-card button {
  grid-column: 1 / -1;
  min-height: 38px;
  border: 1px solid rgba(255, 196, 37, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 196, 37, 0.08);
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline div {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.timeline div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.timeline .lab-list {
  border-bottom: 0;
  padding-bottom: 0;
}

.lab-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.lab-item.needs-review {
  border-color: rgba(255, 132, 66, 0.38);
  background: rgba(255, 132, 66, 0.075);
}

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

.lab-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.lab-item em {
  border-radius: 999px;
  padding: 5px 7px;
  background: rgba(94, 224, 130, 0.12);
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.lab-item.needs-review em {
  background: rgba(255, 132, 66, 0.14);
  color: var(--orange);
}

.challenge-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 196, 37, 0.24), transparent 8rem),
    linear-gradient(150deg, rgba(24, 29, 33, 0.96), rgba(6, 10, 12, 0.94));
}

.challenge-hero h2,
.community-hero h2 {
  margin-top: 8px;
  font-size: 26px;
}

.challenge-hero p:not(.section-label),
.community-hero p:not(.section-label) {
  color: var(--muted);
  line-height: 1.45;
}

.community-hero {
  margin-top: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(85, 183, 255, 0.16), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.chat-room-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.chat-room {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.chat-room > span {
  grid-column: 1 / -1;
}

.chat-room strong,
.chat-room p {
  display: block;
  margin: 0;
}

.chat-room strong {
  font-size: 17px;
}

.chat-room p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.4;
}

.chat-room button {
  min-height: 38px;
  border: 1px solid rgba(255, 196, 37, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 196, 37, 0.08);
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.chat-room.pro-chat {
  border-color: rgba(255, 196, 37, 0.28);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 196, 37, 0.12), transparent 7rem),
    rgba(255, 255, 255, 0.04);
}

.chat-room.is-locked {
  opacity: 0.78;
}

.chat-room.is-locked::after {
  content: "Abo erforderlich";
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.chat-room button:disabled {
  opacity: 0.72;
  cursor: default;
}

.community-console {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.chat-console-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.chat-console-head h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.chat-console-head > span {
  border: 1px solid rgba(85, 183, 255, 0.28);
  border-radius: 999px;
  padding: 6px 8px;
  color: var(--blue);
  background: rgba(85, 183, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.community-messages {
  display: grid;
  gap: 8px;
}

.community-messages p {
  margin: 0;
  padding: 11px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #dce3ea;
  line-height: 1.42;
}

.community-messages strong {
  color: var(--gold);
}

.challenge-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  cursor: pointer;
}

.challenge-card.is-active {
  border-color: rgba(255, 196, 37, 0.58);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 196, 37, 0.14), transparent 6rem),
    rgba(255, 255, 255, 0.05);
}

.challenge-score {
  color: var(--gold);
  font-weight: 900;
}

.challenge-detail {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
}

.challenge-ring {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 196, 37, 0.34);
  background:
    radial-gradient(circle at center, rgba(5, 10, 13, 0.94) 50%, transparent 52%),
    conic-gradient(var(--gold), var(--orange), var(--blue), rgba(255, 255, 255, 0.08));
  color: var(--gold);
  font-weight: 1000;
}

.challenge-detail h2 {
  margin: 5px 0;
  font-size: 22px;
}

.challenge-detail p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

.challenge-form {
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 8px;
}

.challenge-form label {
  min-width: 0;
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.challenge-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  padding: 0 12px;
}

.challenge-form button {
  align-self: end;
  min-height: 44px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ff9f1a);
  color: #071015;
  cursor: pointer;
}

.coach-console {
  display: grid;
  gap: 12px;
}

.coach-portal {
  display: grid;
  gap: 12px;
}

.portal-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.portal-tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.portal-tabs button.is-selected {
  border-color: rgba(255, 196, 37, 0.58);
  color: var(--gold);
  background: rgba(255, 196, 37, 0.1);
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.portal-stats article {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.portal-stats strong,
.portal-stats span {
  display: block;
}

.portal-stats strong {
  color: var(--gold);
  font-size: 22px;
}

.portal-stats span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.portal-panel {
  display: grid;
  gap: 8px;
}

.plan-release-card {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(255, 196, 37, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 196, 37, 0.12), transparent 6rem),
    rgba(255, 255, 255, 0.035);
}

.plan-release-card h3 {
  margin: 2px 0 0;
  font-size: 16px;
  line-height: 1.2;
}

.plan-release-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.plan-release-row strong,
.plan-release-row span {
  display: block;
}

.plan-release-row strong {
  font-size: 14px;
}

.plan-release-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.plan-release-row button {
  min-height: 34px;
  border: 1px solid rgba(255, 196, 37, 0.34);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 196, 37, 0.1);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.plan-release-row.is-released {
  border-color: rgba(94, 224, 130, 0.38);
  background: rgba(94, 224, 130, 0.07);
}

.plan-release-row.is-released button {
  border-color: rgba(94, 224, 130, 0.44);
  background: rgba(94, 224, 130, 0.12);
  color: var(--green);
}

.portal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.portal-row strong,
.portal-row span {
  display: block;
}

.portal-row strong {
  font-size: 15px;
}

.portal-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.portal-row em {
  border-radius: 999px;
  padding: 5px 7px;
  background: rgba(94, 224, 130, 0.12);
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.portal-row em.needs-review {
  background: rgba(255, 132, 66, 0.14);
  color: var(--orange);
}

.qr-share-card {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid rgba(255, 196, 37, 0.22);
  border-radius: var(--radius);
  padding: 12px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 196, 37, 0.14), transparent 7rem),
    rgba(255, 255, 255, 0.035);
}

.qr-share-card h2 {
  margin: 4px 0 6px;
  font-size: 18px;
}

.qr-share-card p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.qr-preview {
  width: 168px;
  min-height: 168px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
}

.qr-preview svg {
  width: 100%;
  height: auto;
  display: block;
}

.qr-share-card a {
  color: var(--gold);
  font-weight: 800;
}

.secondary-button {
  min-height: 44px;
  border: 1px solid rgba(255, 196, 37, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 196, 37, 0.08);
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.report-download {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(94, 224, 130, 0.35);
  border-radius: var(--radius);
  background: rgba(94, 224, 130, 0.1);
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.report-download[hidden] {
  display: none;
}

.coach-avatar,
.profile-avatar {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from 45deg, var(--blue), var(--violet), var(--gold), var(--blue));
  color: #03070a;
  font-weight: 1000;
}

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

.message-list p {
  margin: 0;
  padding: 11px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #dce3ea;
  line-height: 1.42;
}

.message-list p.is-user {
  margin-left: 28px;
  background: rgba(255, 196, 37, 0.1);
  border: 1px solid rgba(255, 196, 37, 0.18);
}

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

.chat-input input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  padding: 0 12px;
}

.coach-portal ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.planner-hero {
  margin-top: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 196, 37, 0.22), transparent 7rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.planner-hero h2 {
  margin: 8px 0;
  font-size: 25px;
}

.planner-hero p:not(.section-label) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.planner-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.planner-summary article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.planner-summary strong,
.planner-summary span {
  display: block;
}

.planner-summary strong {
  font-size: 23px;
  color: var(--gold);
}

.planner-summary span {
  color: var(--muted);
  font-size: 11px;
}

.planner-section {
  margin-top: 14px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.section-heading button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  cursor: pointer;
}

.planner-form {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.planner-form[hidden] {
  display: none;
}

.planner-form input {
  min-width: 0;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  padding: 0 10px;
  font-weight: 700;
}

.planner-form input:nth-child(2),
.planner-form input:nth-child(3),
.planner-form button {
  grid-column: 1 / -1;
}

.planner-form button {
  min-height: 38px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #071015;
  font-weight: 900;
  cursor: pointer;
}

.medicine-list,
.appointment-list {
  display: grid;
  gap: 8px;
}

.medicine-item,
.appointment-item {
  min-height: 70px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 10px;
}

.medicine-item time,
.appointment-item time {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.medicine-item strong,
.appointment-item strong,
.medicine-item span,
.appointment-item span {
  display: block;
}

.medicine-item span,
.appointment-item span {
  color: var(--muted);
  font-size: 12px;
}

.medicine-item b,
.appointment-item em {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 8px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  white-space: nowrap;
}

.medicine-item b.is-taken {
  border-color: rgba(94, 224, 130, 0.45);
  color: var(--green);
}

.medicine-item b {
  cursor: pointer;
}

.chart {
  height: 200px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: repeating-linear-gradient(to top, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 38px);
}

.chart span {
  position: relative;
  height: var(--h);
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--gold), var(--orange));
}

.chart span em {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  white-space: nowrap;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.before-after div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
}

.before-after strong,
.before-after span {
  display: block;
}

.before-after span {
  color: var(--muted);
  font-size: 12px;
}

.history-panel {
  margin-top: 12px;
  padding: 16px;
}

.photo-progress {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 196, 37, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 196, 37, 0.12), transparent 7rem),
    rgba(255, 255, 255, 0.035);
}

.photo-progress .section-heading button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 196, 37, 0.32);
  border-radius: 50%;
  background: rgba(255, 196, 37, 0.08);
  color: var(--gold);
  cursor: pointer;
}

.photo-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.photo-slot {
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.body-silhouette {
  width: 72px;
  height: 104px;
  border-radius: 34px 34px 20px 20px;
  background:
    radial-gradient(circle at 50% 12%, #b6794b 0 13px, transparent 14px),
    linear-gradient(90deg, transparent calc(50% - var(--shoulder) * 0.18px), rgba(255, 196, 37, 0.42) 0 calc(50% + var(--shoulder) * 0.18px), transparent 0),
    linear-gradient(90deg, transparent calc(50% - var(--waist) * 0.14px), rgba(94, 224, 130, 0.34) 0 calc(50% + var(--waist) * 0.14px), transparent 0),
    linear-gradient(180deg, #161f24, #07090a);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-slot strong,
.photo-slot span {
  display: block;
}

.photo-slot span,
.photo-analysis span {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.photo-analysis {
  display: grid;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.photo-analysis strong {
  color: var(--gold);
}

.goals-hero,
.goal-summary {
  margin-top: 12px;
  padding: 16px;
}

.goals-hero {
  background:
    radial-gradient(circle at 85% 18%, rgba(94, 224, 130, 0.16), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.goals-hero h2 {
  margin: 8px 0;
  font-size: 24px;
}

.goals-hero p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.goal-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.goal-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

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

.goal-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.goal-item b {
  color: var(--green);
}

.goal-item meter {
  grid-column: 1 / -1;
}

.goal-summary {
  display: grid;
  gap: 4px;
  text-align: center;
}

.goal-summary strong {
  color: var(--gold);
  font-size: 34px;
}

.goal-summary span {
  color: var(--muted);
  line-height: 1.35;
}

.history-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.history-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.history-item time {
  grid-row: span 2;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

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

.history-item span {
  color: var(--muted);
  font-size: 12px;
}

.profile-card {
  text-align: center;
}

.profile-card .profile-avatar {
  margin: 0 auto 12px;
}

.subscription-mini {
  display: grid;
  gap: 4px;
  width: 100%;
  margin: 2px 0 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 196, 37, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 196, 37, 0.12), rgba(255, 255, 255, 0.035));
}

.subscription-mini span {
  color: var(--gold);
  font-weight: 800;
}

.subscription-mini small {
  color: var(--muted);
}

.profile-form {
  display: grid;
  gap: 10px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(255, 196, 37, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.profile-form label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 8px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-form input {
  grid-column: 1 / -1;
  width: 100%;
}

.profile-form label:has(span) input {
  grid-column: 1;
}

.profile-form label span {
  align-self: end;
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.save-note {
  min-height: 16px;
  margin: 0;
  color: var(--success);
  font-size: 12px;
}

.save-note.is-error {
  color: var(--danger);
}

.settings-list button {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
}

.settings-list span {
  color: var(--muted);
  font-size: 12px;
}

.privacy-hero,
.consent-audit {
  margin-top: 12px;
  padding: 16px;
}

.privacy-hero {
  background:
    radial-gradient(circle at 85% 18%, rgba(85, 183, 255, 0.16), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.privacy-hero h2,
.consent-audit h2 {
  margin: 8px 0;
  font-size: 24px;
}

.privacy-hero p:not(.section-label),
.consent-audit p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.consent-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.consent-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.consent-item.is-enabled {
  border-color: rgba(94, 224, 130, 0.36);
  background:
    radial-gradient(circle at 90% 14%, rgba(94, 224, 130, 0.1), transparent 6rem),
    rgba(255, 255, 255, 0.04);
}

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

.consent-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.consent-item button {
  min-width: 58px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.consent-item.is-enabled button {
  border-color: rgba(94, 224, 130, 0.48);
  background: rgba(94, 224, 130, 0.12);
  color: var(--green);
}

.partner-hero,
.affiliate-note {
  margin-top: 12px;
  padding: 16px;
}

.partner-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 92, 168, 0.16), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.partner-hero h2,
.affiliate-note h2 {
  margin: 8px 0;
  font-size: 24px;
}

.partner-hero p:not(.section-label),
.affiliate-note p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.partner-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.partner-tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.partner-tabs button.is-selected {
  border-color: rgba(255, 92, 168, 0.48);
  color: #ff7fbb;
  background: rgba(255, 92, 168, 0.1);
}

.partner-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.partner-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.partner-card.is-saved {
  border-color: rgba(255, 92, 168, 0.4);
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 92, 168, 0.12), transparent 6rem),
    rgba(255, 255, 255, 0.04);
}

.partner-card > span {
  justify-self: start;
  border: 1px solid rgba(255, 92, 168, 0.32);
  border-radius: 999px;
  padding: 6px 8px;
  color: #ff7fbb;
  font-size: 11px;
  font-weight: 900;
}

.partner-card strong,
.partner-card p {
  display: block;
  margin: 0;
}

.partner-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.partner-card button {
  grid-column: 1 / -1;
  min-height: 38px;
  border: 1px solid rgba(255, 92, 168, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 92, 168, 0.08);
  color: #ff7fbb;
  font-weight: 900;
  cursor: pointer;
}

.events-hero,
.event-player {
  margin-top: 12px;
  padding: 16px;
}

.events-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(137, 87, 255, 0.18), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.events-hero h2,
.event-player h2 {
  margin: 8px 0;
  font-size: 24px;
}

.events-hero p:not(.section-label),
.event-player p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.event-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.event-tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.event-tabs button.is-selected {
  border-color: rgba(137, 87, 255, 0.56);
  color: #b99cff;
  background: rgba(137, 87, 255, 0.12);
}

.event-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.event-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.event-card.is-booked {
  border-color: rgba(137, 87, 255, 0.46);
  background:
    radial-gradient(circle at 90% 14%, rgba(137, 87, 255, 0.14), transparent 6rem),
    rgba(255, 255, 255, 0.04);
}

.event-card > span {
  color: #b99cff;
  font-size: 12px;
  font-weight: 900;
}

.event-card strong,
.event-card p {
  display: block;
  margin: 0;
}

.event-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.event-card button {
  grid-column: 1 / -1;
  min-height: 38px;
  border: 1px solid rgba(137, 87, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(137, 87, 255, 0.1);
  color: #b99cff;
  font-weight: 900;
  cursor: pointer;
}

.event-player {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
}

.video-frame {
  width: 96px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(137, 87, 255, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(137, 87, 255, 0.34), transparent 2.4rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18));
  color: #d8ccff;
}

.international-hero,
.region-card,
.translation-card {
  margin-top: 12px;
  padding: 16px;
}

.international-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(85, 183, 255, 0.16), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.international-hero h2,
.region-card h2,
.translation-card h2 {
  margin: 8px 0;
  font-size: 24px;
}

.international-hero p:not(.section-label),
.region-card p:not(.section-label),
.translation-card p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.locale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.locale-option {
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  padding: 10px;
}

.locale-option.is-selected {
  border-color: rgba(85, 183, 255, 0.52);
  background: rgba(85, 183, 255, 0.1);
}

.locale-option strong,
.locale-option span {
  display: block;
}

.locale-option strong {
  color: var(--blue);
}

.locale-option span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.translation-card {
  display: grid;
  gap: 12px;
}

.translation-card button {
  min-height: 42px;
  border: 1px solid rgba(85, 183, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(85, 183, 255, 0.09);
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.notification-hero,
.notification-settings {
  margin-top: 12px;
  padding: 16px;
}

.notification-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 196, 37, 0.17), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.notification-hero h2 {
  margin: 8px 0;
  font-size: 24px;
}

.notification-hero p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.notification-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.notification-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.notification-item > span {
  border: 1px solid rgba(255, 196, 37, 0.32);
  border-radius: 999px;
  padding: 6px 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.notification-item strong,
.notification-item p {
  display: block;
  margin: 0;
}

.notification-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.notification-item button {
  grid-column: 1 / -1;
  min-height: 36px;
  border: 1px solid rgba(255, 196, 37, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 196, 37, 0.08);
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.reminder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.reminder-grid button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.reminder-grid button.is-active {
  border-color: rgba(94, 224, 130, 0.4);
  background: rgba(94, 224, 130, 0.1);
  color: var(--green);
}

.subscription-hero {
  margin-top: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 196, 37, 0.22), transparent 8rem),
    linear-gradient(150deg, rgba(19, 29, 35, 0.96), rgba(5, 10, 13, 0.94));
}

.subscription-hero h2 {
  margin: 8px 0;
  font-size: 26px;
}

.subscription-hero p:not(.section-label) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.identity-choice {
  display: grid;
  gap: 12px;
}

.identity-choice.compact {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  margin-top: 0;
}

.identity-choice h2 {
  margin: 0;
  font-size: 22px;
}

.identity-lock-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.identity-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.identity-option {
  position: relative;
  min-width: 0;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.identity-option:has(input:checked) {
  border-color: rgba(255, 196, 37, 0.55);
  background: linear-gradient(145deg, rgba(255, 196, 37, 0.14), rgba(255, 255, 255, 0.04));
}

.identity-option:has(input:disabled) {
  cursor: default;
}

.identity-option:has(input:disabled:not(:checked)) {
  opacity: 0.46;
}

.identity-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.identity-option:has(input:focus-visible) {
  outline: 2px solid rgba(255, 196, 37, 0.85);
  outline-offset: 2px;
}

.identity-copy,
.identity-copy strong,
.identity-copy span {
  display: block;
}

.identity-copy strong {
  color: var(--gold);
}

.identity-copy span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.plan-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.billing-card {
  display: grid;
  gap: 12px;
}

.billing-card h2 {
  margin: 6px 0 0;
  font-size: 22px;
}

.billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.billing-toggle button,
.payment-options button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
}

.billing-toggle button {
  min-height: 42px;
  font-weight: 800;
}

.billing-toggle button.is-selected,
.payment-options button.is-selected {
  border-color: rgba(255, 196, 37, 0.62);
  background: linear-gradient(145deg, rgba(255, 196, 37, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 196, 37, 0.08);
}

.payment-options {
  display: grid;
  gap: 8px;
}

.payment-options button {
  min-height: 62px;
  padding: 10px 12px;
  text-align: left;
}

.payment-options strong,
.payment-options span {
  display: block;
}

.payment-options strong {
  color: var(--gold);
  margin-bottom: 4px;
}

.payment-options span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.subscription-summary-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 196, 37, 0.24);
  border-radius: var(--radius);
  padding: 14px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 196, 37, 0.16), transparent 7rem),
    linear-gradient(145deg, rgba(15, 23, 27, 0.96), rgba(5, 10, 13, 0.94));
}

.subscription-summary-card h2 {
  margin: 6px 0 6px;
  font-size: 22px;
}

.subscription-summary-card p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

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

.subscription-summary-grid span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.035);
}

.subscription-summary-grid strong {
  color: var(--text);
  font-size: 13px;
  text-transform: none;
}

.subscription-manage-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.subscription-manage-card h2 {
  margin: 6px 0;
  font-size: 20px;
}

.subscription-manage-card p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

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

.subscription-manage-grid span {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.18);
}

.subscription-manage-grid strong {
  color: var(--text);
  font-size: 13px;
  text-transform: none;
}

.subscription-manage-card .secondary-button:disabled {
  opacity: 0.48;
  cursor: default;
}

.plan-card-ui {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.plan-card-ui.pro-plan {
  border-color: rgba(255, 196, 37, 0.38);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 196, 37, 0.18), transparent 7rem),
    rgba(255, 255, 255, 0.045);
}

.plan-card-ui h2 {
  margin: 10px 0 6px;
  font-size: 24px;
}

.plan-card-ui p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.plan-card-ui ul {
  margin: 12px 0;
  padding-left: 18px;
  color: #dce3ea;
}

.plan-card-ui li {
  margin: 5px 0;
}

.plan-card-ui .primary-button {
  width: 100%;
  color: #071015;
}

.plan-card-ui .primary-button:disabled {
  opacity: 0.72;
  cursor: default;
}

.payment-note {
  display: grid;
  gap: 10px;
}

.payment-note div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-note span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  color: #dce3ea;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.roadmap-hero {
  margin-top: 12px;
  padding: 16px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 196, 37, 0.18), transparent 8rem),
    linear-gradient(150deg, rgba(17, 26, 30, 0.96), rgba(5, 10, 13, 0.94));
}

.roadmap-hero h2 {
  margin: 8px 0;
  font-size: 24px;
}

.roadmap-hero p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.roadmap-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.roadmap-progress article {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.roadmap-progress strong {
  color: var(--gold);
  font-size: 20px;
}

.roadmap-progress span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.release-card {
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.release-card h2 {
  margin: 6px 0 8px;
}

.release-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.release-meta span {
  border: 1px solid rgba(255, 196, 37, 0.24);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 196, 37, 0.08);
}

.release-meter {
  position: relative;
  height: 28px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.release-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.release-meter b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.release-card .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.release-card .chips span {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 6px 8px;
  color: #e7edf4;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.04);
}

.bottom-nav {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
  height: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 10, 13, 0.78), rgba(3, 7, 9, 0.96));
  backdrop-filter: blur(18px);
}

.bottom-nav button {
  height: 58px;
  border: 0;
  background: transparent;
  color: var(--muted);
  display: grid;
  gap: 2px;
  justify-items: center;
  align-content: center;
  cursor: pointer;
}

.bottom-nav button.is-active {
  color: var(--gold);
}

.bottom-nav .add-button {
  width: 50px;
  height: 50px;
  place-self: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #071015;
  box-shadow: 0 12px 30px rgba(255, 196, 37, 0.25);
}

.bottom-nav small {
  font-size: 10px;
}

.icon {
  width: 23px;
  height: 23px;
  position: relative;
  display: inline-block;
}

.home::before {
  inset: 8px 4px 3px;
  border: 2px solid currentColor;
  border-top: 0;
}

.home::after {
  left: 4px;
  top: 3px;
  width: 15px;
  height: 15px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.group::before,
.group::after {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.group::before {
  left: 7px;
  top: 2px;
  width: 9px;
  height: 9px;
}

.group::after {
  left: 3px;
  bottom: 2px;
  width: 17px;
  height: 9px;
  border-radius: 12px 12px 4px 4px;
}

.plus::before,
.plus::after {
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.plus::after {
  width: 2px;
  height: 16px;
}

.bars::before {
  left: 3px;
  bottom: 3px;
  width: 3px;
  height: 8px;
  background: currentColor;
  box-shadow: 7px -5px 0 currentColor, 14px -12px 0 currentColor;
}

.user::before {
  left: 7px;
  top: 2px;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.user::after {
  left: 4px;
  bottom: 2px;
  width: 15px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 3px 3px;
}

.bell::before {
  left: 6px;
  top: 4px;
  width: 11px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 5px 5px;
}

.bell::after {
  left: 9px;
  bottom: 2px;
  width: 6px;
  height: 2px;
  background: currentColor;
}

.chevron-left::before {
  left: 8px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.scan::before {
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 4px;
  clip-path: polygon(0 0, 36% 0, 36% 14%, 14% 14%, 14% 36%, 0 36%, 0 0, 100% 0, 100% 36%, 86% 36%, 86% 14%, 64% 14%, 64% 0, 100% 0, 100% 100%, 64% 100%, 64% 86%, 86% 86%, 86% 64%, 100% 64%, 100% 100%, 0 100%, 0 64%, 14% 64%, 14% 86%, 36% 86%, 36% 100%, 0 100%);
}

.camera::before {
  left: 3px;
  top: 7px;
  width: 18px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.camera::after {
  left: 9px;
  top: 11px;
  width: 5px;
  height: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.play::before {
  left: 8px;
  top: 5px;
  border: 7px solid transparent;
  border-left: 12px solid currentColor;
}

.send::before {
  left: 4px;
  top: 3px;
  border: 8px solid transparent;
  border-left: 15px solid currentColor;
  transform: rotate(-12deg);
}

.desktop-panel {
  max-width: 590px;
}

.desktop-panel h2 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.desktop-panel p:not(.eyebrow) {
  color: #c5ced8;
  font-size: 18px;
  line-height: 1.6;
}

.desktop-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

@media (max-width: 860px) {
  .stage {
    display: block;
    padding: 0;
  }

  .desktop-panel {
    display: none;
  }

  .phone {
    width: 100%;
    height: 100dvh;
    max-height: none;
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding-inline: 10px;
    box-shadow: none;
  }

  .phone::before {
    display: none;
  }

  .screen-stack {
    padding-inline: 2px;
  }

  .bottom-nav {
    left: 10px;
    right: 10px;
    bottom: 8px;
  }
}

@media (max-width: 420px) {
  .hero-panel,
  .macro-card {
    grid-template-columns: 1fr;
  }

  .athlete-visual {
    min-height: 120px;
  }

  .meal {
    grid-template-columns: 54px 1fr;
  }

  .meal em {
    grid-column: 2;
  }
}
