:root {
  --insight-cyan: var(--portal-accent, #19c7df);
  --insight-cyan-soft: color-mix(in srgb, var(--insight-cyan), transparent 78%);
  --insight-green: #36d985;
  --insight-yellow: #f1c94b;
  --insight-slate: #747781;
}

.insights-page .app-shell,
.more-page .app-shell {
  min-width: 0;
}

.insights-heading,
.more-heading {
  max-width: 680px;
}

.insights-heading p,
.more-heading p {
  line-height: 1.65;
}

.insights-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin: 0 0 1rem;
}

.insights-kpis article {
  min-width: 0;
  min-height: 132px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--insight-cyan), transparent 78%);
  border-radius: 18px;
  background: linear-gradient(150deg, color-mix(in srgb, var(--portal-soft, #0c2730), #151517 36%), #121214 72%);
}

.insights-kpis span,
.insights-kpis strong,
.insights-kpis small {
  display: block;
}

.insights-kpis span {
  color: var(--insight-cyan);
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.insights-kpis strong {
  margin: .38rem 0 .2rem;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: clamp(1.65rem, 9vw, 2.55rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -.045em;
}

.insights-kpis small {
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.35;
}

.insight-card {
  min-width: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(150deg, #18181b, #111113 72%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.insight-card-wide {
  width: 100%;
}

.insight-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .7rem;
}

.insight-card-heading h2 {
  margin: .28rem 0 0;
  font-size: clamp(1.22rem, 5vw, 1.65rem);
}

.insight-unit {
  flex: none;
  padding: .32rem .55rem;
  border: 1px solid color-mix(in srgb, var(--insight-cyan), transparent 62%);
  border-radius: 999px;
  color: var(--insight-cyan);
  background: var(--insight-cyan-soft);
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.insight-explainer {
  max-width: 680px;
  margin: 0 0 .8rem;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .55rem;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.chart-legend span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.chart-legend .is-completed { color: var(--insight-green); }
.chart-legend .is-skipped { color: var(--insight-slate); }

.insight-chart-scroll {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-color: #4a4a50 #171719;
}

.insight-chart {
  display: block;
  width: 100%;
  min-width: 680px;
  height: auto;
  overflow: visible;
}

.insight-chart-bars {
  min-width: 650px;
}

.chart-axis {
  stroke: #3b3b42;
  stroke-width: 1;
}

.chart-track {
  fill: #27272c;
}

.chart-bar {
  fill: var(--insight-cyan);
}

.chart-column.is-completed {
  fill: var(--insight-green);
}

.chart-column.is-skipped {
  fill: var(--insight-slate);
}

.chart-area {
  fill: color-mix(in srgb, var(--insight-cyan), transparent 84%);
}

.chart-line {
  fill: none;
  stroke: var(--insight-cyan);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-point {
  fill: #111113;
  stroke: var(--insight-cyan);
  stroke-width: 4;
}

.chart-label,
.chart-value {
  fill: #b9b9c0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .875rem;
  font-weight: 760;
}

.chart-label-small {
  font-size: .6875rem;
}

.chart-value {
  fill: #f5f5f6;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.insights-two-columns {
  display: grid;
  gap: 0;
  min-width: 0;
}

.insight-empty {
  display: grid;
  justify-items: center;
  min-height: 190px;
  padding: 1.4rem 1rem;
  place-content: center;
  border: 1px dashed #414148;
  border-radius: 16px;
  background: #101012;
  text-align: center;
}

.insight-empty > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: .7rem;
  place-items: center;
  border-radius: 14px;
  color: #08171a;
  background: var(--insight-cyan);
  font-size: 1.25rem;
  font-weight: 1000;
}

.insight-empty strong {
  font-size: 1rem;
}

.insight-empty p {
  max-width: 460px;
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}

.insight-data-table {
  margin-top: .7rem;
  border-top: 1px solid #29292e;
}

.insight-data-table summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #bfc0c5;
  font-size: .72rem;
  font-weight: 850;
  cursor: pointer;
}

.insight-data-table > div {
  width: 100%;
  overflow-x: auto;
}

.insight-data-table table {
  width: 100%;
  min-width: 430px;
  border-collapse: collapse;
  color: #d8d8dc;
  font-size: .7rem;
}

.insight-data-table th,
.insight-data-table td {
  padding: .55rem;
  border-bottom: 1px solid #29292e;
  text-align: left;
}

.insight-data-table th {
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.insight-safety-note {
  display: grid;
  gap: .22rem;
  margin-top: .8rem;
  padding: .85rem;
  border: 1px solid #743137;
  border-radius: 14px;
  background: linear-gradient(145deg, #291315, #120e0f);
}

.insight-safety-note strong { color: #ff858b; }
.insight-safety-note span { color: #c7b7b9; font-size: .72rem; line-height: 1.5; }

.activity-heatmap {
  display: grid;
  grid-template-columns: repeat(7, minmax(34px, 1fr));
  gap: .38rem;
  min-width: 0;
}

.heatmap-day {
  display: grid;
  min-width: 0;
  min-height: 48px;
  padding: .35rem .2rem;
  place-items: center;
  border: 1px solid #303036;
  border-radius: 10px;
  color: #75757c;
  background: #161618;
  font-variant-numeric: tabular-nums;
}

.heatmap-day b { font-size: .68rem; }
.heatmap-day small { min-height: .8rem; color: inherit; font-size: .56rem; font-weight: 900; }
.heatmap-day.level-1 { border-color: #155838; color: #a8efc8; background: #113122; }
.heatmap-day.level-2 { border-color: #18794a; color: #d5f9e5; background: #155033; }
.heatmap-day.level-3 { border-color: #24a765; color: #071c11; background: #25a969; }
.heatmap-day.level-4 { border-color: #64ec9f; color: #06150c; background: #4ce58e; box-shadow: 0 0 20px #37ce7b44; }
.heatmap-day.is-skipped { border-color: #55565e; color: #c6c6ca; background: #303036; }

.heatmap-legend {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .7rem;
  color: var(--muted);
  font-size: .62rem;
}

.heatmap-legend i {
  width: 13px;
  height: 13px;
  border: 1px solid #303036;
  border-radius: 4px;
  background: #161618;
}

.heatmap-legend .level-1 { background: #113122; }
.heatmap-legend .level-2 { background: #155033; }
.heatmap-legend .level-3 { background: #25a969; }
.heatmap-legend .level-4 { background: #4ce58e; }
.heatmap-legend .is-skipped { margin-left: .45rem; background: #303036; }

.exercise-trend-grid {
  display: grid;
  gap: .7rem;
  min-width: 0;
}

.exercise-trend-card {
  min-width: 0;
  padding: .85rem;
  overflow: hidden;
  border: 1px solid #303038;
  border-radius: 16px;
  background: #101012;
}

.exercise-trend-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .7rem;
}

.exercise-trend-card header strong,
.exercise-trend-card header small {
  display: block;
}

.exercise-trend-card header strong {
  overflow-wrap: anywhere;
  font-size: .86rem;
}

.exercise-trend-card header small {
  margin-top: .12rem;
  color: var(--muted);
  font-size: .62rem;
}

.exercise-trend-card header > span {
  flex: none;
  padding: .28rem .45rem;
  border-radius: 999px;
  font-size: .63rem;
  font-weight: 950;
}

.exercise-trend-card .is-up { color: #7ce6ad; background: #123c29; }
.exercise-trend-card .is-down { color: #ff9aa0; background: #3b171a; }
.exercise-trend-card .is-flat { color: #d2d2d6; background: #2b2b30; }

.exercise-sparkline {
  display: block;
  width: 100%;
  height: auto;
  margin-top: .5rem;
}

.insights-cta-row {
  display: grid;
  gap: .65rem;
  margin: 1rem 0;
}

.more-page .app-shell {
  --more-focus: #55e0f2;
}

.more-heading {
  margin-bottom: 1rem;
}

.more-heading p {
  max-width: 42rem;
}

.more-page [data-more-tone="settings"] {
  --more-accent: #aeb5c0;
  --more-accent-ink: #39404a;
  --more-soft: #252a31;
}

.more-page [data-more-tone="language"] {
  --more-accent: #9f8cff;
  --more-accent-ink: #5742a5;
  --more-soft: #251f43;
}

.more-page [data-more-tone="notifications"] {
  --more-accent: #ff686f;
  --more-accent-ink: #9f2028;
  --more-soft: #3b1b20;
}

.more-page [data-more-tone="install"] {
  --more-accent: #5daeff;
  --more-accent-ink: #185e9c;
  --more-soft: #172c48;
}

.more-page [data-more-tone="program"] {
  --more-accent: #48d9ed;
  --more-accent-ink: #00687a;
  --more-soft: #102f36;
}

.more-page [data-more-tone="ai"] {
  --more-accent: #d077f5;
  --more-accent-ink: #7c268f;
  --more-soft: #35193f;
}

.more-page [data-more-tone="progress"] {
  --more-accent: #52d49b;
  --more-accent-ink: #16704a;
  --more-soft: #15352a;
}

.more-page [data-more-tone="library"] {
  --more-accent: #75aefb;
  --more-accent-ink: #255c9c;
  --more-soft: #172b43;
}

.more-page [data-more-tone="billing"] {
  --more-accent: #e8b858;
  --more-accent-ink: #6c4d00;
  --more-soft: #3b2c16;
}

.more-page [data-more-tone="wellness"] {
  --more-accent: #5edbc1;
  --more-accent-ink: #106d5b;
  --more-soft: #14352f;
}

.more-page [data-more-tone="journey"] {
  --more-accent: #4fced9;
  --more-accent-ink: #086875;
  --more-soft: #15363a;
}

.more-page [data-more-tone="safety"] {
  --more-accent: #91afd2;
  --more-accent-ink: #3f5f84;
  --more-soft: #1d2b3b;
}

.more-overview {
  margin: 0 0 1.35rem;
}

.more-overview-grid {
  display: grid;
  grid-auto-columns: clamp(132px, 39vw, 164px);
  grid-auto-flow: column;
  gap: .65rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: .1rem .1rem .75rem;
  scroll-padding-inline: .1rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: #59616d #17191c;
  scrollbar-width: thin;
}

.more-overview-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: start;
  gap: .58rem;
  min-width: 0;
  padding: .55rem .55rem .72rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--more-accent), transparent 58%);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--more-accent), transparent 84%), transparent 48%),
    linear-gradient(155deg, #1b1c20, #101114 78%);
  box-shadow: 0 12px 28px #0004;
  color: #f7f8fa;
  scroll-snap-align: start;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.more-overview-card::before {
  position: absolute;
  z-index: 2;
  top: .72rem;
  right: .72rem;
  width: 28px;
  height: 28px;
  border: 1px solid color-mix(in srgb, var(--more-accent), transparent 38%);
  border-radius: 50%;
  background: #080a0dd9;
  box-shadow: 0 6px 16px #0007;
  content: "";
}

.more-overview-card::after {
  position: absolute;
  z-index: 3;
  top: 1.27rem;
  right: 1.28rem;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--more-accent);
  border-right: 2px solid var(--more-accent);
  content: "";
  transform: rotate(45deg);
}

.more-overview-card .more-visual {
  width: 100%;
  border-radius: 14px;
}

.more-overview-card strong {
  display: block;
  min-height: 2.35em;
  padding: 0 .14rem;
  overflow-wrap: normal;
  font-size: .72rem;
  hyphens: none;
  line-height: 1.18;
  word-break: normal;
}

.more-overview-card:active {
  transform: scale(.985);
}

.more-hero,
.more-quick-card,
.more-feature-card,
.more-route-card,
.more-service-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--more-accent), transparent 62%);
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--more-accent), transparent 88%), transparent 44%),
    linear-gradient(150deg, #19191c, #111113 74%);
  box-shadow: 0 14px 36px #0003;
}

.more-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(104px, 29%);
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding: clamp(1rem, 4vw, 1.5rem);
  border-radius: 26px;
  background:
    radial-gradient(circle at 83% 19%, #56606d42, transparent 38%),
    linear-gradient(145deg, #30343b, #17191d 55%, #0d0e10);
  box-shadow: 0 24px 58px #0007;
  color: #f8f9fb;
}

.more-hero::after {
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid #8c97a529;
  border-radius: 50%;
  box-shadow: 0 0 0 2.2rem #8c97a50b, 0 0 0 5rem #8c97a508;
  content: "";
}

.more-hero-copy {
  align-self: center;
  min-width: 0;
}

.more-page .more-hero .card-label {
  color: #b8e8ef;
}

.more-hero h2 {
  max-width: 12ch;
  margin: .35rem 0 .6rem;
  font-size: clamp(1.85rem, 6.8vw, 3.15rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.more-hero-copy > p {
  max-width: 38rem;
  margin: 0;
  color: #c6cad0;
  font-size: .93rem;
  line-height: 1.58;
}

.more-hero-action {
  margin-top: 1rem;
  min-height: 54px;
}

.more-visual {
  align-self: start;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--more-accent), transparent 52%);
  border-radius: 18px;
  aspect-ratio: 1;
  background: #0d1116;
  box-shadow: 0 12px 30px #0006, 0 0 26px color-mix(in srgb, var(--more-accent), transparent 82%);
}

.more-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease, filter .22s ease;
}

.more-hero-visual {
  align-self: center;
  border-radius: 22px;
}

.more-hero-status {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}

.more-hero-status span {
  min-width: 0;
  padding: .65rem .7rem;
  border: 1px solid #87919e42;
  border-radius: 13px;
  background: #0d0f12a8;
}

.more-hero-status small,
.more-hero-status strong {
  display: block;
  overflow-wrap: anywhere;
}

.more-hero-status small {
  color: #aeb4bd;
  font-size: .7rem;
}

.more-hero-status strong {
  margin-top: .16rem;
  color: #f8f9fb;
  font-size: .77rem;
  line-height: 1.25;
}

.more-section {
  margin: 0 0 1.45rem;
  scroll-margin-top: 5.5rem;
}

.more-section-heading {
  max-width: 44rem;
  margin: 0 0 .72rem;
}

.more-section-heading h2 {
  margin: .26rem 0 .32rem;
  font-size: clamp(1.38rem, 5.2vw, 1.95rem);
  line-height: 1.03;
  letter-spacing: -.03em;
}

.more-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.more-quick-grid,
.more-feature-grid,
.more-split-grid,
.more-service-grid {
  display: grid;
  gap: .78rem;
}

.more-quick-card,
.more-feature-card,
.more-route-card,
.more-service-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: minmax(104px, auto) auto;
  gap: .8rem;
  padding: .78rem;
  border-radius: 20px;
}

.more-card-copy {
  align-self: center;
  min-width: 0;
}

.more-card-copy h3 {
  margin: .24rem 0 .38rem;
  overflow-wrap: anywhere;
  font-size: 1.18rem;
  line-height: 1.08;
}

.more-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.48;
}

.more-page [data-more-tone] .card-label {
  color: var(--more-accent);
}

.notification-status {
  display: block;
  margin-top: .48rem;
  color: #8ee8b7;
  font-size: .8rem;
  line-height: 1.4;
}

.more-quick-action,
.more-main-action,
.more-link-list {
  grid-column: 1 / -1;
}

.more-quick-action {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.more-language-card {
  z-index: 4;
  overflow: visible;
}

.more-quick-action > .button,
.more-main-action {
  width: 100%;
  min-height: 50px;
}

.more-action-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.more-page [data-more-tone] .button-secondary {
  border-color: color-mix(in srgb, var(--more-accent), transparent 55%);
  background: color-mix(in srgb, var(--more-soft), #1b1b1e 34%);
  color: #f7f8fa;
}

.more-page [data-more-tone] .button-secondary:hover {
  border-color: color-mix(in srgb, var(--more-accent), transparent 24%);
  background: color-mix(in srgb, var(--more-soft), #27272c 24%);
}

.more-quick-card .ms-lang-menu--more {
  width: auto;
}

.more-quick-card .ms-lang-menu--more .ms-lang-menu__trigger {
  width: 3.25rem;
  height: 3.25rem;
  border-color: color-mix(in srgb, var(--more-accent), transparent 46%);
}

.more-link-card {
  grid-template-rows: auto auto;
}

.more-link-list {
  display: grid;
  overflow: hidden;
  border: 1px solid #303239;
  border-radius: 15px;
  background: #0d0f12;
}

.more-link-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: .72rem;
  min-height: 70px;
  padding: .76rem .82rem;
  border-bottom: 1px solid #303239;
  transition: background .16s ease, box-shadow .16s ease;
}

.more-link-list a:hover {
  background: color-mix(in srgb, var(--more-soft), transparent 46%);
}

.more-link-list a:last-child {
  border-bottom: 0;
}

.more-link-list strong,
.more-link-list small {
  display: block;
}

.more-link-list strong {
  font-size: .9rem;
  line-height: 1.25;
}

.more-link-list small {
  margin-top: .16rem;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.38;
}

.more-link-arrow {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--more-accent), transparent 52%);
  border-radius: 50%;
  place-items: center;
  background: color-mix(in srgb, var(--more-soft), transparent 28%);
}

.more-link-arrow::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--more-accent);
  border-right: 2px solid var(--more-accent);
  content: "";
  transform: translateX(-2px) rotate(45deg);
}

.more-page :is(a, button, summary):focus-visible {
  outline: 3px solid var(--more-focus);
  outline-offset: 3px;
}

.more-link-list a:focus-visible {
  position: relative;
  z-index: 1;
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--more-focus);
}

@media (hover: hover) and (pointer: fine) {
  .more-overview-card:hover {
    border-color: color-mix(in srgb, var(--more-accent), transparent 28%);
    box-shadow: 0 15px 34px #0006, 0 0 24px color-mix(in srgb, var(--more-accent), transparent 84%);
    transform: translateY(-2px);
  }

  .more-overview-card:hover .more-visual img,
  .more-quick-card:hover .more-visual img,
  .more-feature-card:hover .more-visual img,
  .more-route-card:hover .more-visual img,
  .more-service-card:hover .more-visual img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.035);
  }
}

.shark-collection {
  margin: 0 0 1.2rem;
}

.shark-collection-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 34%);
  min-height: 330px;
  overflow: hidden;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--insight-cyan), transparent 48%);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 25%, color-mix(in srgb, var(--insight-cyan), transparent 72%), transparent 36%),
    linear-gradient(145deg, color-mix(in srgb, var(--portal-soft, #0c2730), #151517 20%), #111113 70%);
  box-shadow: 0 26px 70px #0006;
}

.shark-collection-hero > div {
  position: relative;
  z-index: 2;
  align-self: center;
}

.shark-collection-hero h2 {
  max-width: 560px;
  margin: .5rem 0 .65rem;
  font-size: clamp(2.15rem, 7vw, 4.2rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.shark-collection-hero p {
  max-width: 590px;
  margin: 0;
  color: #b9bbc1;
}

.shark-collection-score {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: fit-content;
  margin-top: 1.15rem;
  padding: .65rem .9rem;
  border: 1px solid color-mix(in srgb, var(--insight-cyan), transparent 58%);
  border-radius: 15px;
  background: #08090a80;
}

.shark-collection-score strong {
  color: var(--insight-cyan);
  font-size: 2rem;
  line-height: 1;
}

.shark-collection-score span {
  max-width: 100px;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.shark-collection-hero figure {
  position: relative;
  display: grid;
  align-self: end;
  min-height: 270px;
  margin: 0;
  place-items: end center;
}

.shark-collection-hero figure img {
  position: relative;
  z-index: 2;
  width: min(150%, 390px);
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px #0009);
}

.shark-collection-hero figure i {
  position: absolute;
  right: -18%;
  bottom: 5%;
  width: 140%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--insight-cyan), transparent 58%);
  border-radius: 50%;
  box-shadow: 0 0 0 1.5rem #19c7df0a, 0 0 0 3rem #19c7df05;
}

.shark-collection-nav {
  display: flex;
  gap: .45rem;
  margin: .7rem 0;
  padding: .2rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.shark-collection-nav a {
  flex: none;
  min-height: 40px;
  padding: .65rem .85rem;
  border: 1px solid #34343a;
  border-radius: 999px;
  background: #151517;
  color: #b9bbc1;
  font-size: .69rem;
  font-weight: 850;
}

.shark-collection-nav a:hover,
.shark-collection-nav a:focus-visible {
  border-color: var(--insight-cyan);
  color: white;
}

.shark-category {
  margin-top: .75rem;
  padding: clamp(.85rem, 2.5vw, 1.1rem);
  scroll-margin-top: 1rem;
  border: 1px solid #2c2c31;
  border-radius: 22px;
  background: #121214;
}

.shark-category > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

.shark-category > header h3 {
  margin: .2rem 0 0;
  font-size: 1.35rem;
}

.shark-category > header > strong {
  display: grid;
  min-width: 54px;
  min-height: 38px;
  padding: .4rem;
  border: 1px solid color-mix(in srgb, var(--insight-cyan), transparent 64%);
  border-radius: 12px;
  place-items: center;
  color: var(--insight-cyan);
  background: var(--insight-cyan-soft);
  font-size: .78rem;
}

.shark-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.shark-collectible {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #303035;
  border-radius: 18px;
  background: linear-gradient(155deg, #1a1a1d, #111113);
}

.shark-collectible.is-unlocked {
  border-color: color-mix(in srgb, var(--rarity-color, var(--insight-cyan)), transparent 42%);
  box-shadow: inset 0 1px #ffffff0c, 0 12px 30px #0004;
}

.shark-collectible.rarity-common { --rarity-color: #84d8e2; }
.shark-collectible.rarity-uncommon { --rarity-color: #63df91; }
.shark-collectible.rarity-rare { --rarity-color: #62a9ff; }
.shark-collectible.rarity-epic { --rarity-color: #b276ff; }
.shark-collectible.rarity-legendary { --rarity-color: #f0b744; }
.shark-collectible.rarity-mythic { --rarity-color: #ff626c; }

.shark-collectible-visual {
  position: relative;
  display: grid;
  min-height: 150px;
  overflow: hidden;
  border-bottom: 1px solid #2b2b30;
  place-items: end center;
  background:
    radial-gradient(circle at 50% 72%, color-mix(in srgb, var(--rarity-color, #777), transparent 72%), transparent 48%),
    #101012;
}

.shark-collectible-visual::after {
  position: absolute;
  bottom: 10px;
  width: 72%;
  height: 22px;
  border-radius: 50%;
  background: #0009;
  filter: blur(8px);
  content: "";
}

.shark-collectible-visual img {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 142px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 10px 14px #0008);
  transition: filter .25s ease, transform .25s ease;
}

.shark-collectible.is-unlocked:hover .shark-collectible-visual img {
  transform: translateY(-3px) scale(1.03);
}

.shark-collectible.is-locked .shark-collectible-visual img {
  opacity: .62;
  filter: grayscale(1) saturate(0) brightness(.42) contrast(1.2);
}

.shark-collectible.is-locked .shark-collectible-visual > span {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff24;
  border-radius: 50%;
  place-items: center;
  background: #09090bcc;
  color: #85868e;
  font-size: 1.4rem;
  transform: translate(-50%, -50%);
}

.shark-collectible-visual > b {
  position: absolute;
  z-index: 4;
  top: .55rem;
  left: .55rem;
  padding: .3rem .48rem;
  border: 1px solid #b276ff88;
  border-radius: 999px;
  background: #211631e8;
  color: #d5b5ff;
  font-size: .52rem;
  letter-spacing: .08em;
}

.shark-collectible-copy {
  min-height: 170px;
  padding: .8rem;
}

.shark-rarity {
  color: var(--rarity-color, #999);
  font-size: .54rem;
  font-weight: 1000;
  letter-spacing: .12em;
}

.shark-collectible h4 {
  margin: .22rem 0 .3rem;
  color: #f4f4f6;
  font-size: .93rem;
  line-height: 1.15;
}

.shark-collectible p {
  margin: 0;
  color: #92939b;
  font-size: .68rem;
  line-height: 1.42;
}

.shark-unlocked-label {
  display: inline-flex;
  margin-top: .7rem;
  padding: .28rem .5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rarity-color), transparent 82%);
  color: var(--rarity-color);
  font-size: .55rem;
  letter-spacing: .09em;
}

.shark-lock-progress {
  margin-top: .7rem;
}

.shark-lock-progress > div {
  display: flex;
  justify-content: space-between;
  gap: .4rem;
  margin-bottom: .32rem;
  color: #777982;
  font-size: .58rem;
}

.shark-lock-progress progress {
  display: block;
  width: 100%;
  height: 7px;
  overflow: hidden;
  border: 0;
  border-radius: 99px;
  background: #303035;
  appearance: none;
}

.shark-lock-progress progress::-webkit-progress-bar { background: #303035; }
.shark-lock-progress progress::-webkit-progress-value,
.shark-lock-progress progress::-moz-progress-bar {
  border-radius: inherit;
  background: #686a73;
}

.shark-secret-vault {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .8rem;
  margin-top: .75rem;
  padding: 1rem;
  border: 1px dashed #66527d;
  border-radius: 18px;
  background: linear-gradient(145deg, #1b1523, #121214);
}

.shark-secret-vault > span {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid #8f6cb7;
  border-radius: 16px;
  place-items: center;
  color: #cda4fa;
  background: #291b39;
  font-size: 1.45rem;
  font-weight: 1000;
}

.shark-secret-vault strong,
.shark-secret-vault p {
  display: block;
}

.shark-secret-vault p {
  margin: .18rem 0 0;
  color: #9f96aa;
  font-size: .72rem;
}

.insight-data-table summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--insight-cyan), transparent 58%);
  outline-offset: -3px;
}

@media (min-width: 640px) {
  .insights-kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .insights-kpis article { min-height: 142px; }
  .insights-two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .exercise-trend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insights-cta-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shark-collection-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .more-overview-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-columns: initial;
    grid-auto-flow: row;
    overflow: visible;
    padding-bottom: .1rem;
  }
}

@media (min-width: 820px) {
  .more-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .more-quick-card:last-child {
    grid-column: 1 / -1;
  }

  .more-feature-grid,
  .more-split-grid,
  .more-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .more-quick-card {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: minmax(82px, 1fr) auto;
  }

  .more-quick-card .more-visual {
    width: 72px;
  }
}

@media (min-width: 960px) {
  .shark-collection-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 380px) {
  .insights-kpis { grid-template-columns: 1fr; }
  .activity-heatmap { gap: .25rem; }
  .heatmap-day { min-height: 44px; border-radius: 8px; }
  .insight-card-heading { align-items: flex-start; flex-direction: column; }
  .chart-legend { justify-content: flex-start; }
  .shark-collection-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shark-collection-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .shark-collection-hero figure {
    grid-row: 1;
    min-height: 190px;
    margin: -1rem 0 -1.7rem;
  }
  .shark-collection-hero figure img {
    width: min(74%, 260px);
    max-height: 220px;
  }
  .shark-collection-hero h2 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .insight-chart *,
  .exercise-sparkline * {
    transition: none !important;
    animation: none !important;
  }
}
.progress-check-entry {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: clamp(1rem, 4vw, 2.4rem);
  overflow: hidden;
  margin: 0 0 1.35rem;
  padding: clamp(1.25rem, 4vw, 2.4rem);
  border: 1px solid rgba(86, 207, 219, .35);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 196, 213, .17), transparent 38%),
    linear-gradient(135deg, rgba(16, 26, 28, .98), rgba(14, 14, 16, .98) 58%, rgba(30, 24, 10, .94));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .04);
}
.progress-check-entry::before {
  position: absolute;
  z-index: -1;
  inset: auto auto -90px -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(241, 201, 75, .08);
  content: "";
  filter: blur(8px);
}
.progress-check-entry-copy { align-self: center; }
.progress-check-entry h2 {
  margin: .55rem 0 .8rem;
  color: #f7fafa;
  font-size: clamp(1.75rem, 4.5vw, 3.1rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.progress-check-entry h2 em { color: #6fe0ea; font-style: normal; }
.progress-check-entry p {
  max-width: 720px;
  margin: 0;
  color: #b7c5c8;
  line-height: 1.65;
}
.progress-check-entry-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
  margin: 1.05rem 0 1.25rem;
  color: #d9e5e7;
  font-size: .78rem;
  font-weight: 800;
}
.progress-check-entry-points span { display: inline-flex; gap: .45rem; align-items: center; }
.progress-check-entry-points b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #071011;
  background: #66dce7;
}
.progress-check-entry figure,
.progress-check-entry-visual {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 280px;
  margin: 0;
}
.progress-check-entry figure img,
.progress-check-entry-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .42));
}
.progress-check-entry-glow {
  position: absolute;
  inset: 18% 2% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 222, 234, .28), transparent 68%);
  filter: blur(7px);
}
.progress-check-entry figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  gap: .55rem;
  align-items: center;
  margin-top: -.2rem;
  padding: .48rem .7rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: #dce8ea;
  background: rgba(8, 9, 10, .82);
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.progress-check-entry figcaption i { color: #f1c94b; font-style: normal; }

@media (max-width: 720px) {
  .progress-check-entry { grid-template-columns: 1fr; padding: 1.15rem; border-radius: 24px; }
  .progress-check-entry figure,
  .progress-check-entry-visual { grid-row: 1; min-height: 200px; }
  .progress-check-entry figure img,
  .progress-check-entry-visual img { max-height: 220px; width: min(100%, 300px); }
  .progress-check-entry h2 { font-size: 2.15rem; }
  .progress-check-entry .button { width: 100%; }
}

@media (max-width: 520px) {
  .more-hero {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: .78rem;
    border-radius: 22px;
  }

  .more-hero-copy > p {
    font-size: .88rem;
  }

  .more-hero-action {
    width: 100%;
  }

  .more-hero-status {
    gap: .4rem;
  }

  .more-hero-status span {
    padding: .55rem .5rem;
  }

  .more-quick-card,
  .more-feature-card,
  .more-route-card,
  .more-service-card {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: minmax(96px, auto) auto;
  }

  .more-action-pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .more-hero {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .more-quick-card,
  .more-feature-card,
  .more-route-card,
  .more-service-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .more-overview-card,
  .more-visual img,
  .more-link-list a {
    transition: none !important;
  }
}
