/* Page layout extracted from stats.html to support a strict script CSP. */
:root {
    --bg: #0A0B10;
    --bg-2: #0F1118;
    --panel: #11141C;
    --panel-2: #161A24;
    --line: rgba(217, 173, 64, 0.18);
    --line-soft: rgba(255, 255, 255, 0.06);
    --gold: #D9AD40;
    --gold-soft: rgba(217, 173, 64, 0.12);
    --gold-glow: rgba(217, 173, 64, 0.35);
    --mint: #4DECAD;
    --mint-soft: rgba(77, 236, 173, 0.12);
    --mint-glow: rgba(77, 236, 173, 0.35);
    --text: #E8E6E1;
    --text-dim: rgba(232, 230, 225, 0.55);
    --text-faint: rgba(232, 230, 225, 0.32);
    --grid-opacity: 0.5;
    --pad: 28px;
    --gap: 18px;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
  body {
    font-family: 'Outfit', system-ui, sans-serif;
    font-feature-settings: "ss01" on, "cv11" on;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
  }
  .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: "zero" on; }

  /* Backdrop ambient */
  .bg-grid {
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: var(--grid-opacity);
    mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  }
  .bg-glow {
    position: fixed; pointer-events: none; z-index: 0;
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    top: -300px; right: -200px;
    opacity: 0.25;
    filter: blur(40px);
  }
  .bg-glow-2 {
    position: fixed; pointer-events: none; z-index: 0;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, var(--mint-glow) 0%, transparent 60%);
    bottom: -200px; left: -200px;
    opacity: 0.12;
    filter: blur(60px);
  }

  /* HUD panel - corner-cut hairline border */
  .panel {
    position: relative;
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
    border: 1px solid var(--line);
    padding: var(--pad);
    border-radius: 2px;
  }
  .panel::before, .panel::after {
    content: ''; position: absolute; width: 14px; height: 14px;
    border: 1px solid var(--gold);
    pointer-events: none;
  }
  .panel::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
  .panel::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

  .panel-mint::before, .panel-mint::after { border-color: var(--mint); }

  /* Layout */
  .root { position: relative; z-index: 2; max-width: 1600px; margin: 0 auto; padding: 0 32px 80px; }

  /* Top bar */
  .topbar {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0;
    margin-bottom: 24px;
    background: linear-gradient(180deg, var(--bg) 70%, transparent);
    border-bottom: 1px solid var(--line-soft);
  }
  .brand { display: flex; align-items: center; gap: 14px; }
  .brand-logo {
    width: 44px; height: 44px; border-radius: 4px;
    background: #000;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    overflow: hidden; flex-shrink: 0;
    box-shadow: 0 0 24px var(--gold-glow);
  }
  .brand-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
  .brand-name { font-weight: 900; font-size: 18px; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1; }
  .brand-name span { color: var(--gold); }
  .brand-sub { font-size: 9.5px; color: var(--text-faint); letter-spacing: 0.4em; text-transform: uppercase; margin-top: 4px; }

  .topbar-right { display: flex; align-items: center; gap: 18px; }
  .icon-btn {
    width: 44px; height: 44px; display: grid; place-items: center;
    border: 1px solid var(--line); background: transparent;
    color: var(--text-dim); cursor: pointer; position: relative;
    transition: color .15s, border-color .15s;
    text-decoration: none;
  }
  .icon-btn:hover { color: var(--gold); border-color: var(--gold); }
  .profile-link {
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 40px; padding: 0 12px;
    border: 1px solid var(--line);
    color: var(--gold); text-decoration: none;
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 800;
    transition: color .15s, border-color .15s, background .15s;
  }
  .profile-link:hover { border-color: var(--gold); background: var(--gold-soft); }
  .live-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border: 1px solid var(--mint); border-radius: 999px;
    background: var(--mint-soft);
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mint);
    font-weight: 700;
  }
  .live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--mint);
    box-shadow: 0 0 8px var(--mint-glow);
    animation: pulse 1.6s infinite;
  }
  @keyframes pulse { 0%,100% {opacity:1} 50% {opacity:.4} }
  .nav-links { display: flex; gap: 4px; }
  .nav-link {
    padding: 4px 8px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
    color: var(--text-dim); cursor: pointer; border-radius: 2px;
    text-decoration: none;
    transition: color .2s, background .2s;
    border: 1px solid transparent;
  }
  .nav-link:hover { color: var(--text); }
  .nav-link.active { color: var(--gold); border-color: var(--line); background: var(--gold-soft); }
  .nav-link.shop { color: var(--mint); border: 1px solid rgba(77,236,173,0.45); background: var(--mint-soft); }

  /* HERO STRIP - command bar */
  .hero {
    margin-bottom: var(--gap);
    padding: 36px var(--pad) 32px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px; align-items: end;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 18px;
  }
  .hero-eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--gold);
  }
  .hero-title {
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    text-transform: uppercase;
  }
  .hero-title .gilded {
    color: var(--gold);
    background: linear-gradient(180deg, #F5D77A 0%, #D9AD40 50%, #8E6F23 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-sub {
    font-size: 15px;
    color: var(--text-dim);
    max-width: 520px;
    line-height: 1.55;
    margin: 0;
  }
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    border-left: 1px solid var(--line);
    padding-left: 32px;
  }
  .stat-tile { }
  .stat-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
  .stat-value { font-size: 44px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
  .stat-value.gold { color: var(--gold); }
  .stat-value.mint { color: var(--mint); }
  .stat-meta { font-size: 11px; color: var(--text-dim); margin-top: 6px; }

  /* BENTO GRID */
  .bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(0, auto);
    gap: var(--gap);
  }
  .b-goals    { grid-column: span 7; }
  .b-diet     { grid-column: span 5; }
  .b-quests   { grid-column: span 4; }
  .b-streaks  { grid-column: span 4; }
  .b-allergy  { grid-column: span 4; }
  .b-shop     { grid-column: span 12; }

  /* Panel headers */
  .panel-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
  .panel-title { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; color: var(--text); margin: 0 0 6px; }
  .panel-sub { font-size: 10px; color: var(--text-faint); letter-spacing: 0.2em; text-transform: uppercase; margin: 0; }
  .panel-tag {
    font-size: 9.5px; letter-spacing: 0.25em; text-transform: uppercase;
    padding: 3px 8px; border: 1px solid var(--line);
    color: var(--gold); white-space: nowrap;
  }
  .panel-tag.mint { color: var(--mint); border-color: rgba(77,236,173,0.3); }

  /* GOALS - horizontal ranked bars */
  .goal-list { display: flex; flex-direction: column; gap: 14px; }
  .goal-row { display: grid; grid-template-columns: 24px 1fr auto; gap: 14px; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--line-soft); }
  .goal-row:last-child { border-bottom: 0; }
  .goal-rank { font-size: 11px; color: var(--text-faint); font-weight: 700; }
  .goal-rank.lead { color: var(--gold); }
  .goal-body { display: flex; flex-direction: column; gap: 6px; }
  .goal-meta { display: flex; justify-content: space-between; align-items: baseline; }
  .goal-label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
  .goal-count { font-size: 11px; color: var(--text-dim); }
  .goal-track { position: relative; height: 6px; background: rgba(255,255,255,0.04); border-radius: 1px; overflow: hidden; }
  .goal-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: linear-gradient(90deg, var(--gold) 0%, #F5D77A 100%);
    box-shadow: 0 0 12px var(--gold-glow);
    transition: width 1.4s cubic-bezier(.2,.8,.2,1);
    width: 0;
  }
  .goal-fill.dim { background: rgba(255,255,255,0.18); box-shadow: none; }
  .goal-pct { font-size: 14px; font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums; min-width: 56px; text-align: right; }
  .goal-pct.dim { color: var(--text-dim); }

  /* DIET RING */
  .diet-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: center; }
  .diet-ring-outer {
    position: relative; width: 220px; height: 220px;
    display: grid; place-items: center;
  }
  .diet-ring-outer svg { width: 100%; height: 100%; transform: rotate(-90deg); }
  .diet-ring-track { fill: none; stroke: rgba(255,255,255,0.05); stroke-width: 18; }
  .diet-ring-seg { fill: none; stroke-width: 18; transition: stroke-dasharray 1.4s cubic-bezier(.2,.8,.2,1); }
  .diet-ring-seg.hover { filter: drop-shadow(0 0 8px currentColor); }
  .diet-center {
    position: absolute; inset: 30px; border-radius: 50%;
    background: radial-gradient(circle, var(--bg-2) 60%, transparent 100%);
    display: grid; place-items: center; text-align: center;
  }
  .diet-center-num { font-size: 38px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
  .diet-center-lbl { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-faint); margin-top: 6px; }
  .diet-legend { display: flex; flex-direction: column; gap: 8px; }
  .legend-row { display: grid; grid-template-columns: 10px 1fr auto auto; gap: 12px; align-items: center; padding: 6px 0; cursor: default; }
  .legend-dot { width: 8px; height: 8px; border-radius: 1px; }
  .legend-name { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); }
  .legend-name.dim { color: var(--text-dim); }
  .legend-count { font-size: 11px; color: var(--text-faint); font-variant-numeric: tabular-nums; }
  .legend-pct { font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; min-width: 38px; text-align: right; }

  /* ALLERGIES */
  .allergy-list { display: flex; flex-direction: column; gap: 14px; }
  .allergy-row { }
  .allergy-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
  .allergy-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
  .allergy-pct { font-size: 12px; color: var(--mint); font-weight: 700; font-variant-numeric: tabular-nums; }
  .allergy-track {
    position: relative; height: 4px;
    background: rgba(255,255,255,0.04); overflow: hidden;
  }
  .allergy-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: var(--mint);
    box-shadow: 0 0 8px var(--mint-glow);
    width: 0; transition: width 1.4s cubic-bezier(.2,.8,.2,1);
  }
  .allergy-tick { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.06); }

  /* QUESTS / CHALLENGES big number cards */
  .achv-stack { display: flex; flex-direction: column; gap: 14px; }
  .achv-row {
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line-soft);
  }
  .achv-row:first-child { border-top: 0; padding-top: 0; }
  .achv-label { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
  .achv-num { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
  .achv-num.gold { color: var(--gold); }
  .achv-num.mint { color: var(--mint); }
  .achv-glyph {
    width: 56px; height: 56px; border: 1px solid var(--line);
    display: grid; place-items: center; color: var(--gold);
    border-radius: 2px;
  }
  .achv-glyph svg { width: 26px; height: 26px; }

  /* Streaks panel */
  .streak-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }
  .streak-tile {
    border: 1px solid var(--line-soft);
    padding: 18px;
    background: rgba(255,255,255,0.015);
    position: relative;
    overflow: hidden;
  }
  .streak-tile.lg { grid-column: span 2; }
  .streak-tile-num { font-size: 38px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
  .streak-tile-num.gold { color: var(--gold); }
  .streak-tile-num.mint { color: var(--mint); }
  .streak-tile-lbl { font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-faint); margin-top: 8px; }
  .streak-tile-unit { font-size: 14px; color: var(--text-dim); margin-left: 4px; font-weight: 500; }
  .pulse-bars { display: flex; gap: 3px; align-items: flex-end; height: 28px; margin-top: 12px; }
  .pulse-bar { width: 6px; background: var(--gold); opacity: 0.5; transition: height .3s; }

  /* Shop tease */
  .shop {
    display: grid; grid-template-columns: 1fr auto auto;
    gap: 32px; align-items: center;
    padding: 28px var(--pad);
    background:
      linear-gradient(135deg, rgba(217,173,64,0.06) 0%, transparent 60%),
      linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
    border: 1px solid var(--line);
    position: relative;
  }
  .shop::before, .shop::after {
    content: ''; position: absolute; width: 14px; height: 14px;
    border: 1px solid var(--gold); pointer-events: none;
  }
  .shop::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
  .shop::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
  .shop-title { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 6px; }
  .shop-title .gilded { color: var(--gold); }
  .shop-sub { font-size: 13px; color: var(--text-dim); margin: 0; max-width: 480px; line-height: 1.55; }
  .shop-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    background: var(--gold);
    color: #0A0B10;
    border: none;
    text-decoration: none;
    font-family: inherit;
    font-weight: 800; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
  }
  .shop-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--gold-glow); }
  .shop-eta {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-faint);
    border-left: 1px solid var(--line);
    padding-left: 24px;
  }
  .shop-eta-val { font-size: 16px; font-weight: 700; color: var(--mint); margin-top: 4px; letter-spacing: 0.1em; }

  /* Footer signature */
  .signature a { color: inherit; text-decoration: none; } .signature a:hover { color: var(--gold); } .signature {
    margin-top: 40px;
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-faint);
  }
  .sig-blink::after {
    content: '_'; color: var(--gold);
    animation: blink 1s step-end infinite;
  }
  @keyframes blink { 50% { opacity: 0 } }

  /* Loader */
  .loader-wrap { display: grid; place-items: center; padding: 80px 0; gap: 18px; }
  .loader-spin { width: 32px; height: 32px; border: 2px solid var(--gold-soft); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg) } }
  .loader-txt { font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }

  /* Density modifier */
  body.density-compact { --pad: 20px; --gap: 12px; }
  body.density-spacious { --pad: 36px; --gap: 24px; }

  /* Responsive */
  @media (max-width: 1100px) {
    .b-goals, .b-diet { grid-column: span 12; }
    .b-quests, .b-streaks, .b-allergy { grid-column: span 12; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-stats { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
    .diet-wrap { grid-template-columns: 1fr; }
    .shop { grid-template-columns: 1fr; }
    .shop-eta { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 16px; }
  }

  @media (max-width: 1024px) {
    .topbar { flex-wrap: wrap; gap: 12px 0; }
    .brand { order: 1; flex-shrink: 0; }
    .topbar-right { order: 2; margin-left: auto; gap: 14px; }
    .topbar-right .profile-link { display: none; }
    .nav-links {
      order: 3; flex-basis: 100%; width: 100%;
      flex-wrap: wrap; justify-content: flex-start;
      gap: 4px; padding-top: 12px; border-top: 1px solid var(--line-soft);
    }
    .live-pill { letter-spacing: 0.14em; }
  }

  @media (max-width: 560px) {
    .brand-sub { display: none; }
    .brand-logo { width: 38px; height: 38px; }
    .brand-name { font-size: 16px; }
    .topbar-right { flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
    .icon-btn { width: 44px; height: 44px; }
    .nav-link { padding: 4px 8px; letter-spacing: 0.1em; }
  }

/* Accessibility and CSP hardening additions */
.nav-link[aria-current="page"] { color: var(--gold); border-color: var(--line); background: var(--gold-soft); }
.lang-toggle { background: transparent; font-family: inherit; }
.stat-tile-wide { grid-column: span 2; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.stat-sync-row { display: flex; align-items: baseline; gap: 14px; }
.stat-sync-value { font-size: 22px; }
.stat-sync-status { font-size: 10px; color: var(--mint); letter-spacing: 0.2em; }
.achv-glyph.mint { color: var(--mint); border-color: rgba(77,236,173,0.3); }
.streak-tile-title { margin-top: 0; margin-bottom: 10px; }
.error-panel { padding: 60px; text-align: center; }
.error-title { color: #FF6B6B; letter-spacing: 0.4em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.error-detail { color: var(--text-faint); font-size: 11px; margin-top: 8px; }
.cohort-filter { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; padding: 20px var(--pad); background: rgba(217, 173, 64, 0.02); border: 1px solid var(--line); border-radius: 2px; }
.cohort-filter-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: bold; margin-bottom: 4px; }
.cohort-filter-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 4px; }
.cohort-filter-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); min-width: 80px; }
.cohort-filter-button { background: transparent; color: var(--text-dim); border: 1px solid var(--line); padding: 6px 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; cursor: pointer; transition: color 0.15s, border-color 0.15s, background-color 0.15s; border-radius: 2px; font-family: inherit; }
.cohort-filter-button[aria-pressed="true"] { background: var(--gold-soft); color: var(--gold); border-color: var(--gold); }
.tweaks-mount { display: none; }
.tweaks-panel { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 280px; padding: 18px; background: var(--panel); border: 1px solid var(--gold); color: var(--text); font-family: inherit; box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 24px var(--gold-glow); }
.tweaks-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.tweaks-title { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 800; color: var(--gold); }
.tweaks-close { cursor: pointer; color: var(--text-faint); font-size: 14px; background: transparent; border: 0; font-family: inherit; padding: 0; }
.tweaks-row { margin-bottom: 14px; }
.tweaks-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; display: block; }
.tweaks-segment { display: flex; gap: 4px; }
.tweaks-button { flex: 1; padding: 8px 6px; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-family: inherit; font-weight: 700; background: transparent; color: var(--text-dim); border: 1px solid var(--line); cursor: pointer; }
.tweaks-button[aria-pressed="true"] { background: var(--gold); color: #000; }
.tweaks-range { width: 100%; accent-color: var(--gold); }
.w-0 { width: 0%; }
.w-5 { width: 5%; }
.w-10 { width: 10%; }
.w-15 { width: 15%; }
.w-20 { width: 20%; }
.w-25 { width: 25%; }
.w-30 { width: 30%; }
.w-35 { width: 35%; }
.w-40 { width: 40%; }
.w-45 { width: 45%; }
.w-50 { width: 50%; }
.w-55 { width: 55%; }
.w-60 { width: 60%; }
.w-65 { width: 65%; }
.w-70 { width: 70%; }
.w-75 { width: 75%; }
.w-80 { width: 80%; }
.w-85 { width: 85%; }
.w-90 { width: 90%; }
.w-95 { width: 95%; }
.w-100 { width: 100%; }
.tick-20 { left: 20%; }
.tick-40 { left: 40%; }
.tick-60 { left: 60%; }
.tick-80 { left: 80%; }
.diet-color-0 { background: #D9AD40; box-shadow: 0 0 8px #D9AD40; }
.diet-color-1 { background: #4DECAD; box-shadow: 0 0 8px #4DECAD; }
.diet-color-2 { background: #F5D77A; box-shadow: 0 0 8px #F5D77A; }
.diet-color-3 { background: #7BE0BC; box-shadow: 0 0 8px #7BE0BC; }
.diet-color-4 { background: #B5894A; box-shadow: 0 0 8px #B5894A; }
.diet-color-5 { background: #3FB58A; box-shadow: 0 0 8px #3FB58A; }
.diet-color-6 { background: #E8C264; box-shadow: 0 0 8px #E8C264; }
.diet-color-7 { background: #5FCFA0; box-shadow: 0 0 8px #5FCFA0; }
.text-diet-color-0 { color: #D9AD40; }
.text-diet-color-1 { color: #4DECAD; }
.text-diet-color-2 { color: #F5D77A; }
.text-diet-color-3 { color: #7BE0BC; }
.text-diet-color-4 { color: #B5894A; }
.text-diet-color-5 { color: #3FB58A; }
.text-diet-color-6 { color: #E8C264; }
.text-diet-color-7 { color: #5FCFA0; }
.pulse-bar { height: 0%; background: var(--gold); }
.pulse-bar-0 { opacity: 0.2; }
.pulse-bar-1 { opacity: 0.244; }
.pulse-bar-2 { opacity: 0.289; }
.pulse-bar-3 { opacity: 0.333; }
.pulse-bar-4 { opacity: 0.378; }
.pulse-bar-5 { opacity: 0.422; }
.pulse-bar-6 { opacity: 0.467; }
.pulse-bar-7 { opacity: 0.511; }
.pulse-bar-8 { opacity: 0.556; }
.pulse-bar-9 { opacity: 0.6; }
.pulse-bar-10 { opacity: 0.644; }
.pulse-bar-11 { opacity: 0.689; }
.pulse-bar-12 { opacity: 0.733; }
.pulse-bar-13 { opacity: 0.778; }
.pulse-bar-14 { opacity: 0.822; }
.pulse-bar-15 { opacity: 0.867; }
.pulse-bar-16 { opacity: 0.911; }
.pulse-bar-17 { opacity: 0.956; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}
