:root {
  --ink: #172331;
  --muted: #6a7582;
  --soft: #eef6f8;
  --paper: #ffffff;
  --line: #dce8ee;
  --green: #9df24b;
  --blue: #1687c8;
  --orange: #ff8a3d;
  --dark: #123a62;
  --navy: #123a62;
  --sky: #78c3dc;
  --radius: 8px;
  --shadow: 0 14px 34px rgba(18, 58, 98, 0.1);
  --sl-bg: #ffffff;
  --sl-surface: #f7f8fa;
  --sl-text: #111111;
  --sl-text-secondary: #666666;
  --sl-border: #e5e7ea;
  --sl-primary: #009a4e;
  --sl-accent-yellow: #ffc107;
  --sl-accent-aqua: #00c2d1;
  --sl-success: #22c55e;
  --sl-alert: #ff8a00;
  --sl-radius-xs: 4px;
  --sl-radius-sm: 8px;
  --sl-radius-md: 12px;
  --sl-radius-lg: 16px;
  --sl-radius-xl: 20px;
  --sl-shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.06);
  --sl-shadow-md: 0 4px 12px rgba(17, 17, 17, 0.08);
  --sl-shadow-lg: 0 12px 28px rgba(17, 17, 17, 0.12);
  --cta-primary-bg: linear-gradient(135deg, var(--sl-primary), #0c77ae);
  --cta-primary-color: #ffffff;
  --cta-primary-border: transparent;
  --cta-primary-height: 40px;
  --cta-primary-font-size: 0.8rem;
  --cta-primary-font-weight: 900;
  --cta-secondary-bg: #ffffff;
  --cta-secondary-color: var(--sl-primary);
  --cta-secondary-border: #dfe4e8;
  --cta-secondary-height: 34px;
  --cta-secondary-font-size: 0.72rem;
  --cta-secondary-font-weight: 800;
  --cta-like-bg: #ffffff;
  --cta-like-color: #ff3b30;
  --cta-like-border: #ffd7d5;
  --cta-liked-bg: #fff5f4;
  --cta-liked-color: #ff3b30;
  --cta-liked-border: rgba(255, 59, 48, 0.2);
  --cta-row-gap: 10px;
  --cta-row-radius: 999px;
  --cta-row-columns: 1fr auto;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef8fb 0, #f7fbfc 210px, #f7f9fa 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
}

body[data-page="maintenance"] {
  min-height: 100vh;
  color: var(--sl-text);
  background: #ffffff;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(0, 154, 78, 0.42);
  outline-offset: 3px;
  border-radius: var(--sl-radius-sm);
}

img {
  max-width: 100%;
  display: block;
}

main,
section,
article,
div,
form,
nav {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(18, 58, 98, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #0a7fb7);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 24px rgba(18, 58, 98, 0.18);
  font-size: 0.72rem;
  line-height: 1;
}

.nav {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 10px;
  border-radius: 7px;
  color: #343434;
}

.nav a:hover,
.nav a.active {
  background: #ecece6;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(18, 58, 98, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(18, 58, 98, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(18, 58, 98, 0.12);
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), #0a84bd);
  color: #fff;
}

.btn.dark {
  background: #172331;
  color: #fff;
  box-shadow: 0 12px 24px rgba(23, 35, 49, 0.16);
}

.btn.ghost {
  border-color: var(--line);
  box-shadow: none;
  background: #f7fbfd;
  font-weight: 800;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.cta-row {
  display: grid;
  gap: var(--cta-row-gap);
  grid-template-columns: var(--cta-row-columns);
}

.cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--cta-base-height, var(--cta-primary-height));
  border: 1px solid var(--cta-border-color, var(--cta-secondary-border));
  border-radius: var(--cta-row-radius);
  background: var(--cta-bg-color, var(--cta-secondary-bg));
  color: var(--cta-text-color, var(--cta-secondary-color));
  font-size: var(--cta-font-size, var(--cta-secondary-font-size));
  font-weight: var(--cta-font-weight, var(--cta-secondary-font-weight));
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.cta-action:hover,
.cta-action:focus-visible {
  filter: brightness(1.03);
}

.cta-action:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.cta-action:disabled:hover,
.cta-action:disabled:focus-visible {
  filter: none;
}

.cta-action.cta-primary {
  --cta-base-height: var(--cta-primary-height);
  --cta-bg-color: var(--cta-primary-bg);
  --cta-border-color: var(--cta-primary-border);
  --cta-text-color: var(--cta-primary-color);
  --cta-font-size: var(--cta-primary-font-size);
  --cta-font-weight: var(--cta-primary-font-weight);
}

.cta-action.cta-secondary {
  --cta-base-height: var(--cta-secondary-height);
  --cta-bg-color: var(--cta-secondary-bg);
  --cta-border-color: var(--cta-secondary-border);
  --cta-text-color: var(--cta-secondary-color);
  --cta-font-size: var(--cta-secondary-font-size);
  --cta-font-weight: var(--cta-secondary-font-weight);
}

.cta-action.cta-like {
  --cta-base-height: var(--cta-like-height, 34px);
  --cta-bg-color: var(--cta-like-bg);
  --cta-border-color: var(--cta-like-border);
  --cta-text-color: var(--cta-like-color);
  --cta-font-size: var(--cta-like-font-size, 0.72rem);
  --cta-font-weight: var(--cta-like-font-weight, 850);
}

.cta-action.cta-liked,
.cta-action.cta-like.cta-liked {
  --cta-bg-color: var(--cta-liked-bg);
  --cta-border-color: var(--cta-liked-border);
  --cta-text-color: var(--cta-liked-color);
}

.cta-priority-home {
  --cta-row-columns: minmax(0, 1fr) minmax(0, 1fr);
  --cta-row-gap: 8px;
  --cta-primary-height: 42px;
  --cta-primary-font-size: 0.85rem;
  --cta-primary-font-weight: 850;
  --cta-secondary-height: 36px;
  --cta-secondary-font-size: 0.78rem;
  --cta-secondary-font-weight: 850;
  --cta-secondary-color: #0d5cb0;
  --cta-secondary-border: rgba(15, 73, 255, 0.24);
}

.cta-priority-timeline,
.cta-priority-log-detail {
  --cta-row-columns: minmax(0, 1fr) auto;
  --cta-row-gap: 10px;
  --cta-like-height: 34px;
  --cta-like-font-size: 0.72rem;
  --cta-like-font-weight: 850;
  --cta-secondary-height: 34px;
  --cta-secondary-font-size: 0.72rem;
  --cta-secondary-font-weight: 800;
  --cta-secondary-color: #111820;
  --cta-secondary-border: #dfe4e8;
}

.cta-priority-profile {
  --cta-row-columns: minmax(0, 1fr);
  --cta-row-gap: 6px;
  --cta-primary-height: 32px;
  --cta-primary-font-size: 0.72rem;
  --cta-primary-font-weight: 950;
  --cta-secondary-height: 32px;
  --cta-secondary-font-size: 0.72rem;
  --cta-secondary-font-weight: 950;
  --cta-secondary-border: rgba(223, 228, 232, 0.96);
}

.cta-action.cta-primary:hover,
.cta-action.cta-primary:focus-visible,
.cta-action.cta-secondary:hover,
.cta-action.cta-secondary:focus-visible {
  transform: none;
}

.main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 30px;
  align-items: stretch;
  min-height: calc(100vh - 118px);
  max-height: 760px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #3d3d3d;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
  line-height: 1.35;
}

.lead {
  max-width: 660px;
  color: #3f4244;
  font-size: 1.08rem;
  font-weight: 650;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(18, 58, 98, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 80% 20%, rgba(167, 255, 63, 0.42), transparent 30%),
    linear-gradient(135deg, #252525, #111);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 46% -10% -14%;
  background: #d8d8d1;
  transform: skewY(-8deg);
  border-top: 1px solid rgba(17, 17, 17, 0.2);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  left: 12%;
  bottom: 10%;
  border: 1px solid rgba(17, 17, 17, 0.24);
  background:
    linear-gradient(90deg, transparent 49%, rgba(0, 0, 0, 0.12) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(0, 0, 0, 0.12) 50%, transparent 51%),
    #f5f5ed;
  transform: perspective(500px) rotateX(62deg) rotateZ(-20deg);
}

.skater-card {
  position: absolute;
  top: 32px;
  right: 28px;
  width: min(300px, calc(100% - 56px));
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(18, 58, 98, 0.16);
  background: #fff;
  box-shadow: 0 18px 36px rgba(18, 58, 98, 0.16);
}

.skater-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.skater-line:last-child {
  border-bottom: 0;
}

.skate-shape {
  position: absolute;
  left: 18%;
  bottom: 25%;
  width: 330px;
  max-width: 62%;
  height: 78px;
  border-radius: 999px;
  background: var(--orange);
  border: 3px solid #111;
  transform: rotate(-16deg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.skate-shape::before,
.skate-shape::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  bottom: -28px;
  border-radius: 999px;
  background: #111;
  border: 7px solid #5f6265;
}

.skate-shape::before {
  left: 54px;
}

.skate-shape::after {
  right: 54px;
}

.section {
  padding: 58px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.card {
  padding: 20px;
}

.panel {
  padding: 24px;
  box-shadow: 0 16px 36px rgba(18, 58, 98, 0.07);
}

.feature-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 58, 98, 0.12);
  border-radius: 12px;
  background: #e7f7ff;
  color: var(--navy);
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(18, 58, 98, 0.08);
}

.muted {
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7fbfd);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.05;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.page-title {
  padding: 24px 0 18px;
}

.page-title h1 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.app-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
}

.side a {
  padding: 11px 12px;
  border-radius: 999px;
  color: #343434;
  font-weight: 800;
}

.side a.active,
.side a:hover {
  background: #e7f7ff;
  color: var(--navy);
}

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

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

.search {
  width: min(100%, 420px);
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font: inherit;
}

.park-list,
.log-list,
.friend-list,
.timeline {
  display: grid;
  gap: 12px;
}

.park-item,
.log-item,
.friend-item,
.timeline-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 58, 98, 0.05);
}

.park-item {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #edf6fa;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
}

.tag.green {
  background: #e7ffd2;
  color: #234600;
}

.tag.blue {
  background: #dff0ff;
  color: #064a82;
}

.tag.orange {
  background: #ffe6d6;
  color: #7a3000;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.86rem;
  font-weight: 900;
}

.field small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.readonly-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbfc;
}

.readonly-field strong {
  min-width: 0;
  color: var(--navy);
  overflow-wrap: anywhere;
}

.readonly-field span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.media-edit-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7fbfd;
}

.media-edit-preview strong {
  display: block;
  margin-bottom: 4px;
}

.media-edit-preview input,
.field input[type="file"] {
  width: 100%;
  margin-top: 10px;
  color: var(--muted);
}

.cover-upload-preview {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(9, 55, 83, 0.08), rgba(9, 55, 83, 0.18)),
    linear-gradient(145deg, #88cce0 0%, #dfeef4 45%, #9ed3e5 46%, #6bb8d2 100%);
  background-position: center;
  background-size: cover;
}

.notice {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #d6eabf;
  background: #f0ffe2;
  color: #2d4b16;
  font-weight: 800;
}

.map,
.leaflet-map {
  min-height: 260px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.map {
  background:
    linear-gradient(90deg, transparent 31px, rgba(0, 0, 0, 0.07) 32px),
    linear-gradient(0deg, transparent 31px, rgba(0, 0, 0, 0.07) 32px),
    #e8ebe3;
  background-size: 64px 64px;
}

.leaflet-map {
  z-index: 1;
  background: #e8ebe3;
}

.leaflet-container {
  font: inherit;
}

.map-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.map-note strong {
  color: var(--ink);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px 999px 999px 0;
  border: 2px solid #111;
  background: var(--orange);
  transform: rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: #fff;
}

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

.day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #efefe9;
  color: #565a5d;
  font-weight: 850;
}

.day.done {
  background: var(--green);
  color: #111;
  border: 2px solid #111;
}

.profile-hero {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.avatar {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 2px solid #111;
  background: var(--green);
  color: #111;
  font-size: 2.4rem;
  font-weight: 950;
  box-shadow: 5px 5px 0 #111;
}

.footer {
  border-top: 1px solid var(--line);
  background: #202020;
  color: #fff;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  color: #e8e8e8;
  margin-left: 14px;
  font-weight: 750;
}

.bottom-nav {
  display: none;
}

@media (max-width: 900px) {
  .nav,
  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 24px 0 4px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .grid.three,
  .grid.two,
  .stat-row,
  .app-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .side {
    position: static;
    display: flex;
    overflow: auto;
    padding-bottom: 4px;
  }

  .side a {
    white-space: nowrap;
  }

  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
  }

  .bottom-nav a {
    min-height: 62px;
    display: grid;
    place-items: center;
    color: #333;
    font-size: 0.72rem;
    font-weight: 900;
  }

  .bottom-nav a.active {
    background: #e7ffd2;
  }

  .park-item {
    grid-template-columns: 1fr;
  }

  .profile-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-list-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .page-list-row.head {
    display: none;
  }

  .main,
  .header-inner,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .skater-card {
    right: 14px;
    top: 16px;
    width: calc(100% - 28px);
  }

  .section-head,
  .toolbar,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* App-like visual direction inspired by the reference screens */
:root {
  --ink: #26313a;
  --muted: #66737d;
  --soft: #eef5f8;
  --paper: #ffffff;
  --line: #dce6eb;
  --green: #0c77ae;
  --blue: #78c3dc;
  --orange: #f3bf24;
  --dark: #113a61;
  --radius: 14px;
  --shadow: 0 6px 18px rgba(30, 72, 98, 0.08);
}

body {
  background: #dfeaf0;
  color: var(--ink);
}

.site-header,
.main,
.footer {
  width: min(100%, 430px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid #d6e3ea;
  background: #78c3dc;
  box-shadow: none;
}

.header-inner {
  width: 100%;
  min-height: auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.brand {
  min-height: 58px;
  justify-content: center;
  color: #ffffff;
  background: #78c3dc;
  font-size: 1.28rem;
  font-weight: 950;
  font-style: italic;
}

.brand-mark {
  display: none;
}

.nav {
  display: none;
  width: 100%;
  overflow-x: auto;
  gap: 0;
  padding: 8px 8px 7px;
  background: #fff;
  border-bottom: 1px solid #d8e1e7;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  min-width: 80px;
  padding: 30px 6px 4px;
  position: relative;
  border-radius: 0;
  color: #1d5a84;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.2;
}

.nav a::before {
  content: "▧";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  color: #1d5a84;
  font-size: 1.38rem;
  line-height: 1;
}

.nav a[data-nav="checkin"]::before { content: "⌖"; }
.nav a[data-nav="timeline"]::before { content: "▤"; }
.nav a[data-nav="parks"]::before { content: "⌕"; }
.nav a[data-nav="profile"]::before { content: "◎"; }

.nav a:hover,
.nav a.active {
  background: #edf5f8;
}

.header-actions {
  display: none;
}

.main {
  width: min(100%, 430px);
  padding: 0 0 96px;
  background: #ffffff;
  min-height: 100vh;
}

body[data-page="settings"] .main {
  overflow-x: hidden;
}

.page-title,
.section,
.content-stack,
.app-layout,
.grid,
.stat-row {
  padding-inline: 18px;
}

.page-title {
  padding-top: 28px;
  padding-bottom: 16px;
}

.eyebrow {
  margin-bottom: 8px;
  color: #1e638f;
  font-size: 0.72rem;
  font-weight: 950;
}

h1 {
  margin-bottom: 10px;
  color: #2b3035;
  font-size: clamp(1.55rem, 7vw, 2.2rem);
  line-height: 1.08;
  font-weight: 950;
}

h2 {
  color: #2b3035;
  font-size: 1.24rem;
  line-height: 1.2;
  font-weight: 950;
}

h3 {
  color: #2d3237;
  font-size: 1rem;
  font-weight: 950;
}

.lead {
  color: #5f6b73;
  font-size: 0.96rem;
  font-weight: 750;
}

.hero {
  min-height: auto;
  max-height: none;
  display: block;
  padding: 0 18px 28px;
  background: #78c3dc;
}

.hero-copy {
  padding: 30px 0 12px;
  color: #fff;
}

.hero-copy h1,
.hero-copy .eyebrow,
.hero-copy .lead {
  color: #fff;
}

.hero-copy h1 {
  font-size: 2.25rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-visual {
  min-height: 240px;
  border: 0;
  border-radius: 18px;
  background: #0c83bf;
  box-shadow: none;
}

.hero-visual::before {
  inset: auto 0 0;
  height: 42%;
  background: rgba(255, 255, 255, 0.22);
  border: 0;
  transform: skewY(-7deg);
}

.hero-visual::after,
.skate-shape {
  display: none;
}

.skater-card {
  top: 20px;
  right: 18px;
  left: 18px;
  width: auto;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.skater-line {
  color: #2b3035;
}

.section {
  padding-top: 30px;
}

.section-head {
  display: block;
  margin-bottom: 14px;
}

.section-head p {
  max-width: none;
  font-size: 0.9rem;
}

.grid.three,
.grid.two,
.stat-row,
.app-layout,
.form-grid {
  grid-template-columns: 1fr;
}

.grid,
.content-stack {
  gap: 14px;
}

.card,
.panel,
.stat,
.park-item,
.log-item,
.friend-item,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(18, 58, 98, 0.08);
}

.panel {
  padding: 18px;
}

.card {
  padding: 16px;
}

.feature-card {
  min-height: 132px;
}

.icon-box {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #0c77ae;
  box-shadow: none;
}

.stat-row {
  gap: 10px;
}

.stat {
  min-height: 110px;
  display: grid;
  align-content: center;
  padding: 16px;
}

.stat strong {
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 950;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.btn {
  min-height: 44px;
  border: 1px solid rgba(18, 58, 98, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(18, 58, 98, 0.08);
  color: var(--navy);
  background: #fff;
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), #0a84bd);
  color: #fff;
}

.btn.ghost {
  border-color: var(--line);
  color: var(--navy);
  background: #f7fbfd;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(18, 58, 98, 0.12);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.tags {
  gap: 8px;
}

.tag {
  min-height: 30px;
  border-radius: 999px;
  background: #eaf3f7;
  color: #26313a;
  font-size: 0.78rem;
}

.tag.green {
  background: #d9f0f8;
  color: #0b5d89;
}

.tag.blue {
  background: #e6f0f5;
  color: #214f70;
}

.tag.orange {
  background: #fff2c7;
  color: #775700;
}

.side {
  position: static;
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 0 18px 4px;
  scrollbar-width: none;
}

.side::-webkit-scrollbar {
  display: none;
}

.side a {
  white-space: nowrap;
  border-radius: 999px;
  background: #edf5f8;
  color: #1d5a84;
}

.side a.active,
.side a:hover {
  background: #0c77ae;
  color: #fff;
}

.app-layout {
  display: grid;
  gap: 14px;
  padding-inline: 0;
}

.app-layout > .content-stack {
  padding-inline: 18px;
}

.park-item {
  display: grid;
  grid-template-columns: 1fr;
}

.toolbar {
  align-items: flex-start;
}

.search,
.field input,
.field select,
.field textarea {
  border-radius: 12px;
  border-color: #dce6eb;
  background: #f8fbfc;
}

.notice {
  border: 0;
  border-radius: 14px;
  background: #d9f0f8;
  color: #174e73;
}

.notice.error {
  background: #ffecec;
  color: #8c2222;
}

.leaflet-map,
.map {
  min-height: 230px;
  border-radius: 14px;
}

.profile-cover {
  position: relative;
  height: 188px;
  margin-bottom: 62px;
  background:
    linear-gradient(180deg, rgba(9, 55, 83, 0.08), rgba(9, 55, 83, 0.18)),
    linear-gradient(145deg, #88cce0 0%, #dfeef4 45%, #9ed3e5 46%, #6bb8d2 100%);
  background-position: center;
  background-size: cover;
  overflow: visible;
}

.profile-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(22deg, transparent 0 42%, rgba(255, 255, 255, 0.55) 43% 45%, transparent 46%),
    linear-gradient(-18deg, transparent 0 48%, rgba(255, 255, 255, 0.52) 49% 51%, transparent 52%),
    linear-gradient(8deg, transparent 0 58%, rgba(255, 255, 255, 0.38) 59% 60%, transparent 61%);
}

.cover-avatar {
  position: absolute;
  left: 24px;
  bottom: -54px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #103e68, #0c77ae);
  font-size: 2rem;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(28, 72, 98, 0.22);
}

.inline-avatar {
  position: static;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  font-size: 1.4rem;
}

.avatar-photo {
  overflow: hidden;
}

.avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
}

.badge-medal {
  min-width: 86px;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(145deg, #d9a52d, #fff2bb);
  color: #583b00;
  border: 2px solid rgba(88, 59, 0, 0.18);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  line-height: 1.25;
}

a.badge-medal {
  color: #583b00;
}

.badge-medal.silver {
  background: linear-gradient(145deg, #aeb6bd, #f4f7f8);
  color: #3f4850;
}

.badge-medal.bronze {
  background: linear-gradient(145deg, #b98b70, #f4ddd0);
  color: #62351f;
}

.badge-medal.blue {
  background: linear-gradient(145deg, #0c77ae, #d9f0f8);
  color: #073c5d;
}

a.badge-medal.silver {
  color: #3f4850;
}

a.badge-medal.bronze {
  color: #62351f;
}

a.badge-medal.blue {
  color: #073c5d;
}

.badge-medal.locked {
  filter: grayscale(1);
  opacity: 0.48;
}

.badge-list {
  display: grid;
  gap: 12px;
}

.badge-list.compact .badge-card:nth-child(n + 4) {
  display: none;
}

.badge-card {
  display: grid;
  grid-template-columns: minmax(82px, 96px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.badge-card.locked {
  background: #f7fafb;
}

.badge-card .badge-medal {
  min-width: 88px;
  min-height: 62px;
}

.profile-summary {
  background: linear-gradient(180deg, #fff, #f2fbff);
}

.summary-grid {
  display: grid;
  gap: 10px;
}

.summary-item {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.summary-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.summary-item strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.summary-item small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.directory-row {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f7fcff);
  color: var(--ink);
  text-decoration: none;
}

.directory-row span {
  color: #0c6da0;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.directory-row strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}

.directory-row em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.directory-row code {
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 8px;
  background: #e8f6ff;
  color: #0b5780;
  font-size: 0.76rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.directory-row small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.6;
}

body[data-page="access"] .bottom-nav,
body[data-page="guest"] .bottom-nav {
  display: none;
}

body[data-page="guest"] {
  background: #f4f6f7;
  color: #111820;
}

body[data-page="guest"] .site-header {
  display: none;
}

.guest-v2.main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 42px;
  overflow: hidden;
  background: #f4f6f7;
}

.guest-v2-hero {
  position: relative;
  display: grid;
  min-height: 540px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background: #111820;
}

.guest-v2-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 32, 0.18) 0%, rgba(17, 24, 32, 0.08) 34%, rgba(244, 246, 247, 0.98) 83%, #f4f6f7 100%),
    url("/assets/profile/profile-cover-default.jpg") center / cover no-repeat;
}

.guest-v2-hero-body {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  gap: 14px;
  padding: 220px 14px 20px;
}

.guest-v2-hero-body .eyebrow {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
}

.guest-v2-hero-body h1 {
  margin: 0;
  color: #111820;
  font-size: 1.82rem;
  font-weight: 950;
  line-height: 1.15;
}

.guest-v2-hero-body p:not(.eyebrow) {
  margin: 0;
  color: #333b44;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.65;
}

.guest-v2-search {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 6px 7px 6px 14px;
  border: 1px solid #ebeff2;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
}

.guest-v2-search > span {
  width: 17px;
  height: 17px;
  background: #59636c;
  mask: url("/assets/icons/linear/search-normal.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/search-normal.svg") center / contain no-repeat;
}

.guest-v2-search input {
  min-width: 0;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111820;
  font-size: 0.84rem;
  font-weight: 700;
}

.guest-v2-search input:focus {
  outline: none;
}

.guest-v2-search a {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

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

.guest-v2-actions .btn {
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.guest-v2-stack {
  gap: 14px;
  padding: 14px;
}

.guest-v2-panel {
  padding: 16px 14px;
  border: 1px solid #ebeff2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

.guest-v2-panel .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.guest-v2-panel .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.35;
}

.guest-v2-section-icon,
.guest-v2-feature-icon {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.guest-v2-section-icon {
  width: 17px;
  height: 17px;
  color: var(--sl-primary);
}

.guest-v2-section-icon.is-pref {
  --icon: url("/assets/icons/bold/location.svg");
}

.guest-v2-section-icon.is-map {
  --icon: url("/assets/icons/bold/map.svg");
}

.guest-v2-section-icon.is-new {
  --icon: url("/assets/icons/bold/cup.svg");
}

.guest-v2-section-icon.is-log {
  --icon: url("/assets/icons/bold/document-text.svg");
}

.guest-v2-section-icon.is-privacy {
  --icon: url("/assets/icons/bold/shield-tick.svg");
}

.guest-v2-section-icon.is-terms {
  --icon: url("/assets/icons/bold/clipboard.svg");
}

.guest-v2-section-icon.is-about {
  --icon: url("/assets/icons/bold/info-circle.svg");
}

.guest-v2-section-icon.is-member {
  --icon: url("/assets/icons/bold/user-add.svg");
}

.guest-v2-pref-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.guest-v2-pref-pills {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.guest-v2-pref-pills::-webkit-scrollbar {
  display: none;
}

.guest-v2-pref-pills a {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 70px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 154, 78, 0.35);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.guest-v2-region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guest-v2-region-grid a {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 14px;
  gap: 9px;
  align-items: center;
  min-height: 78px;
  padding: 10px 9px;
  border: 1px solid #ebeff2;
  border-radius: 12px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(17, 17, 17, 0.035);
}

.guest-v2-region-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.guest-v2-region-grid span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.guest-v2-region-grid strong {
  color: #111820;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
}

.guest-v2-region-grid small {
  color: #333b44;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.guest-v2-region-grid em {
  width: 14px;
  height: 14px;
  background: #111820;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

.guest-v2-open-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guest-v2-open-grid a {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 116px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #ebeff2;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0 48%, rgba(255, 255, 255, 0.56) 100%),
    var(--image) right bottom / cover no-repeat;
  color: #111820;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(17, 17, 17, 0.04);
}

.guest-v2-open-grid a > span {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 6px;
  background: #ff8a00;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1;
}

.guest-v2-open-grid strong {
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.45;
}

.guest-v2-open-grid small {
  margin-top: auto;
  font-size: 0.86rem;
  font-weight: 900;
}

.guest-v2-member-preview {
  display: grid;
  gap: 14px;
}

.guest-v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guest-v2-feature-grid article {
  display: grid;
  gap: 7px;
  min-height: 124px;
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 12px;
  background: #fff;
}

.guest-v2-feature-icon {
  width: 22px;
  height: 22px;
  color: var(--sl-primary);
}

.guest-v2-feature-icon.is-checkin {
  --icon: url("/assets/icons/bold/location.svg");
}

.guest-v2-feature-icon.is-badge {
  --icon: url("/assets/icons/bold/cup.svg");
}

.guest-v2-feature-icon.is-friend {
  --icon: url("/assets/icons/bold/user.svg");
}

.guest-v2-feature-icon.is-log {
  --icon: url("/assets/icons/bold/calendar.svg");
}

.guest-v2-feature-grid strong {
  color: #111820;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
}

.guest-v2-feature-grid p {
  margin: 0;
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.45;
}

.guest-v2-badge-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.guest-v2-badge-strip span {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
}

.guest-v2-badge-strip img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.guest-v2-badge-strip small {
  color: #111820;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.guest-v2-cta {
  display: grid;
  gap: 12px;
  padding: 20px 16px;
  border: 1px solid rgba(255, 193, 7, 0.5);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 193, 7, 0.24) 0 20px, transparent 21px),
    linear-gradient(135deg, #fffaf0, #fff);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

.guest-v2-cta .eyebrow {
  margin: 0;
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
}

.guest-v2-cta h2 {
  margin: 0;
  color: #111820;
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1.35;
}

.guest-v2-cta p {
  margin: 0;
  color: #59636c;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.6;
}

.guest-static-v2 {
  overflow: visible;
}

.guest-static-hero {
  display: grid;
  gap: 14px;
  padding: 18px 14px 4px;
}

.guest-static-back {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid #e3e9ed;
  border-radius: 999px;
  background: #fff;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.04);
}

.guest-static-back::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-circle-left.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-left.svg") center / contain no-repeat;
}

.guest-static-title {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 14px;
  border: 1px solid #ebeff2;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 154, 78, 0.12) 0 34px, transparent 35px),
    #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

.guest-static-title-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 154, 78, 0.1);
  color: var(--sl-primary);
}

.guest-static-title-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.guest-static-title-icon.is-privacy {
  --icon: url("/assets/icons/bold/shield-tick.svg");
}

.guest-static-title-icon.is-terms {
  --icon: url("/assets/icons/bold/clipboard.svg");
}

.guest-static-title-icon.is-about {
  --icon: url("/assets/icons/bold/info-circle.svg");
}

.guest-static-title-icon.is-faq {
  --icon: url("/assets/icons/bold/message-question.svg");
}

.guest-static-title .eyebrow {
  margin: 0 0 5px;
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.guest-static-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.2;
}

.guest-static-title p:not(.eyebrow) {
  margin: 8px 0 0;
  color: #59636c;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.65;
}

.guest-static-updated {
  margin: 0;
  padding: 0 4px;
  color: #7a838b;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: right;
}

.guest-static-summary {
  display: grid;
  gap: 10px;
}

.guest-static-summary article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 13px;
  background: #fff;
}

.guest-static-summary-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0, 154, 78, 0.1);
  color: var(--sl-primary);
}

.guest-static-summary-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.guest-static-summary-icon.is-location {
  --icon: url("/assets/icons/bold/location.svg");
}

.guest-static-summary-icon.is-lock {
  --icon: url("/assets/icons/bold/lock.svg");
}

.guest-static-summary-icon.is-shield {
  --icon: url("/assets/icons/bold/shield-security.svg");
}

.guest-static-summary-icon.is-safety {
  --icon: url("/assets/icons/bold/shield-tick.svg");
}

.guest-static-summary-icon.is-note {
  --icon: url("/assets/icons/bold/note.svg");
}

.guest-static-summary-icon.is-heart {
  --icon: url("/assets/icons/bold/heart.svg");
}

.guest-static-summary strong {
  display: block;
  color: #111820;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

.guest-static-summary p {
  grid-column: 2;
  margin: -2px 0 0;
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

.guest-static-quick {
  background:
    radial-gradient(circle at 94% 14%, rgba(0, 154, 78, 0.12) 0 30px, transparent 31px),
    #fff;
}

.guest-static-quick ul,
.guest-static-policy-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guest-static-quick li,
.guest-static-policy-list li {
  position: relative;
  padding-left: 16px;
  color: #59636c;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.6;
}

.guest-static-quick li::before,
.guest-static-policy-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sl-primary);
  transform: translateY(-50%);
}

.guest-static-policy-list {
  display: grid;
  gap: 12px;
}

.guest-static-policy-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  padding: 0 0 13px;
  border-bottom: 1px solid #edf1f3;
}

.guest-static-policy-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.guest-static-policy-list article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f2f6f4;
  color: var(--sl-primary);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.guest-static-policy-list h2 {
  margin: 0 0 8px;
  color: #111820;
  font-size: 0.96rem;
  font-weight: 950;
  line-height: 1.35;
}

.guest-static-v2 .guest-v2-cta {
  margin: 0;
}

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

.faq-v2-stack {
  gap: 14px;
}

.faq-v2-title {
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 154, 78, 0.12) 0 38px, transparent 39px),
    radial-gradient(circle at 16% 100%, rgba(255, 193, 7, 0.16) 0 34px, transparent 35px),
    #fff;
}

.faq-v2-link-grid {
  display: grid;
  gap: 10px;
}

.faq-v2-link-grid a {
  display: grid;
  gap: 4px;
  padding: 12px 36px 12px 12px;
  border: 1px solid #ebeff2;
  border-radius: 13px;
  background: #fff;
  color: #111820;
  text-decoration: none;
  position: relative;
}

.faq-v2-link-grid a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 18px;
  height: 18px;
  background: #8b949c;
  transform: translateY(-50%);
  mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
}

.faq-v2-link-grid strong {
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

.faq-v2-link-grid small {
  color: #68727b;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}

.faq-v2-panel .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.faq-v2-section-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--sl-primary);
  background: currentColor;
  mask: url("/assets/icons/bold/message-question.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/message-question.svg") center / contain no-repeat;
}

.faq-v2-list {
  display: grid;
  gap: 9px;
}

.faq-v2-list details {
  overflow: hidden;
  border: 1px solid #ebeff2;
  border-radius: 13px;
  background: #fff;
}

.faq-v2-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 12px;
  color: #111820;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.faq-v2-list summary::-webkit-details-marker {
  display: none;
}

.faq-v2-list summary::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #8b949c;
  transition: transform 0.18s ease;
  mask: url("/assets/icons/linear/arrow-down-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-down-2.svg") center / contain no-repeat;
}

.faq-v2-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-v2-list p {
  margin: 0;
  padding: 0 12px 13px;
  color: #59636c;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.7;
}

.faq-v2-cta {
  margin: 0;
}

.guest-member-v2 {
  overflow: hidden;
}

.guest-member-hero {
  display: grid;
  gap: 14px;
  padding: 18px 14px 4px;
}

.guest-member-hero-card {
  display: grid;
  gap: 12px;
  padding: 20px 16px;
  border: 1px solid rgba(0, 154, 78, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 154, 78, 0.16) 0 42px, transparent 43px),
    radial-gradient(circle at 12% 86%, rgba(255, 193, 7, 0.2) 0 28px, transparent 29px),
    #fff;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.07);
}

.guest-member-hero-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--sl-primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 154, 78, 0.2);
}

.guest-member-hero-icon::before {
  content: "";
  width: 31px;
  height: 31px;
  background: currentColor;
  mask: url("/assets/icons/bold/user-add.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/user-add.svg") center / contain no-repeat;
}

.guest-member-hero-icon.is-mail::before {
  mask-image: url("/assets/icons/bold/sms.svg");
  -webkit-mask-image: url("/assets/icons/bold/sms.svg");
}

.guest-member-hero-icon.is-mail-sent::before {
  mask-image: url("/assets/icons/bold/tick-circle.svg");
  -webkit-mask-image: url("/assets/icons/bold/tick-circle.svg");
}

.guest-member-hero-icon.is-profile::before {
  mask-image: url("/assets/icons/bold/user-tick.svg");
  -webkit-mask-image: url("/assets/icons/bold/user-tick.svg");
}

.guest-member-hero-icon.is-complete::before {
  mask-image: url("/assets/icons/bold/cup.svg");
  -webkit-mask-image: url("/assets/icons/bold/cup.svg");
}

.guest-member-hero-card .eyebrow {
  margin: 0;
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.guest-member-hero-card h1 {
  margin: 0;
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.2;
}

.guest-member-hero-card p:not(.eyebrow) {
  margin: 0;
  color: #59636c;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.65;
}

.guest-member-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guest-member-feature-grid article {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(17, 17, 17, 0.035);
}

.guest-member-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 154, 78, 0.1);
  color: var(--sl-primary);
}

.guest-member-feature-icon::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  margin: 5.5px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.guest-member-feature-icon.is-checkin {
  --icon: url("/assets/icons/bold/location-tick.svg");
}

.guest-member-feature-icon.is-log {
  --icon: url("/assets/icons/bold/calendar-tick.svg");
}

.guest-member-feature-icon.is-badge {
  --icon: url("/assets/icons/bold/cup.svg");
}

.guest-member-feature-icon.is-friend {
  --icon: url("/assets/icons/bold/profile-2user.svg");
}

.guest-member-feature-grid strong {
  color: #111820;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.25;
}

.guest-member-feature-grid p {
  margin: 0;
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.5;
}

.guest-member-step-list {
  display: grid;
  gap: 10px;
}

.guest-member-step-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 13px;
  background: #fff;
}

.guest-member-step-list article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
}

.guest-member-step-list strong {
  display: block;
  color: #111820;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

.guest-member-step-list p {
  margin: 4px 0 0;
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

.guest-signup-v2 .guest-v2-stack {
  padding-top: 12px;
}

.guest-signup-hero-card strong {
  color: #111820;
  font-weight: 900;
}

.guest-signup-form {
  display: grid;
  gap: 11px;
}

.guest-signup-form label {
  color: #111820;
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.35;
}

.guest-signup-form input,
.guest-signup-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #dfe4e8;
  border-radius: 13px;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: inset 0 1px 2px rgba(17, 24, 32, 0.035);
}

.guest-signup-form input:focus,
.guest-signup-form select:focus {
  border-color: rgba(0, 154, 78, 0.65);
  outline: 3px solid rgba(0, 154, 78, 0.12);
}

.guest-signup-form > p {
  margin: -2px 0 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.55;
}

.guest-signup-form .btn {
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.guest-signup-input {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid #dfe4e8;
  border-radius: 13px;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(17, 24, 32, 0.035);
}

.guest-signup-input:focus-within {
  border-color: rgba(0, 154, 78, 0.65);
  outline: 3px solid rgba(0, 154, 78, 0.12);
}

.guest-signup-input span {
  width: 18px;
  height: 18px;
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/sms.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/sms.svg") center / contain no-repeat;
}

.guest-signup-input input {
  min-height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.guest-signup-input input:focus {
  outline: none;
}

.guest-signup-flow {
  display: grid;
  gap: 10px;
}

.guest-signup-flow article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 13px;
  background: #fff;
}

.guest-signup-flow article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef4f1;
  color: var(--sl-primary);
  font-size: 0.8rem;
  font-weight: 950;
  line-height: 1;
}

.guest-signup-flow article.is-current {
  border-color: rgba(0, 154, 78, 0.28);
  background: linear-gradient(135deg, #f4fbf7, #fff);
}

.guest-signup-flow article.is-current > span {
  background: var(--sl-primary);
  color: #fff;
}

.guest-signup-flow strong,
.guest-signup-benefits strong {
  display: block;
  color: #111820;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

.guest-signup-flow p,
.guest-signup-benefits p {
  margin: 4px 0 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.5;
}

.guest-signup-benefits {
  display: grid;
  gap: 10px;
}

.guest-signup-benefits article {
  position: relative;
  padding: 12px 12px 12px 36px;
  border: 1px solid #ebeff2;
  border-radius: 13px;
  background: #fff;
}

.guest-signup-benefits article::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 13px;
  width: 15px;
  height: 15px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
}

.guest-signup-mail-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #ebeff2;
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 154, 78, 0.12) 0 30px, transparent 31px),
    #fff;
}

.guest-signup-mail-card p {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 700;
}

.guest-signup-mail-card strong {
  color: #111820;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.35;
}

.guest-signup-mail-card .btn {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.guest-signup-mail-card small {
  color: #7a838b;
  font-size: 0.72rem;
  font-weight: 600;
}

.guest-signup-readonly {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border-radius: 13px;
  background: #f4f6f7;
}

.guest-signup-readonly span {
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 750;
}

.guest-signup-readonly strong {
  color: #111820;
  font-size: 0.84rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.guest-signup-readonly.is-user-code {
  border: 1px solid rgba(0, 154, 78, 0.16);
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 154, 78, 0.12) 0 24px, transparent 25px),
    #f7fbf8;
}

.guest-signup-readonly.is-user-code strong {
  color: #111820;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1;
}

.guest-signup-readonly p {
  margin: 2px 0 0;
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
}

.guest-signup-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 11px 12px;
  border: 1px solid #ebeff2;
  border-radius: 13px;
  background: #fff;
}

.guest-signup-check input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--sl-primary);
  box-shadow: none;
}

.guest-signup-check span {
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.55;
}

.guest-signup-check a {
  color: var(--sl-primary);
  font-weight: 850;
  text-decoration: none;
}

.guest-signup-next-list {
  display: grid;
  gap: 10px;
}

.guest-signup-next-list a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 16px;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 14px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(17, 17, 17, 0.035);
}

.guest-signup-next-list a > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0, 154, 78, 0.1);
  color: var(--sl-primary);
}

.guest-signup-next-list a > span::before {
  content: "";
  width: 19px;
  height: 19px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.guest-signup-next-list .is-profile {
  --icon: url("/assets/icons/bold/user-tick.svg");
}

.guest-signup-next-list .is-checkin {
  --icon: url("/assets/icons/bold/location-tick.svg");
}

.guest-signup-next-list .is-park {
  --icon: url("/assets/icons/bold/map.svg");
}

.guest-signup-next-list strong {
  color: #111820;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

.guest-signup-next-list p {
  margin: 4px 0 0;
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.45;
}

.guest-signup-next-list em {
  width: 16px;
  height: 16px;
  background: #111820;
  mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
}

.guest-signup-id-card {
  display: grid;
  gap: 4px;
  width: fit-content;
  min-width: 150px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 154, 78, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
}

.guest-signup-id-card span {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
}

.guest-signup-id-card strong {
  color: #111820;
  font-size: 1.1rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}


.member-lock {
  min-height: calc(100svh - 96px);
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 42px 18px;
  text-align: center;
}

.member-lock-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: linear-gradient(160deg, #123a62, #0a84bd);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(18, 58, 98, 0.18);
}

.member-lock h1 {
  max-width: 560px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(1.55rem, 7vw, 2.4rem);
  line-height: 1.28;
}

.member-lock .lead {
  max-width: 520px;
  margin: 0 auto;
}

.lock-actions {
  justify-content: center;
  margin-top: 10px;
}

.lock-actions .btn {
  min-width: min(100%, 220px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.access-group {
  border-left: 5px solid #0c77ae;
}

.access-group.member {
  border-left-color: #0c77ae;
}

.access-group.shared {
  border-left-color: #d8a629;
}

.access-group.guest {
  border-left-color: #6a93a8;
}

.guest-app-visual {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #78c3dc, #0d77ac);
}

.guest-phone {
  width: min(100%, 320px);
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(18, 58, 98, 0.2);
}

.guest-phone-head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.guest-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(150deg, var(--navy), #0c83bf);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 950;
}

.guest-phone-head strong,
.guest-phone-head span {
  display: block;
}

.guest-phone-head strong {
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.guest-phone-head span {
  color: #2b3035;
  font-size: 1.9rem;
  font-weight: 950;
  line-height: 1.1;
}

.guest-stat-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.guest-stat-mini span {
  display: grid;
  gap: 3px;
  min-height: 70px;
  padding: 12px;
  border-radius: 16px;
  background: #eef8fb;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.guest-stat-mini strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.guest-now-strip {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: #f6fafc;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 950;
}

.guest-now-strip div {
  display: flex;
  gap: 8px;
}

.guest-now-strip i {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(150deg, #d7edf5, #0c83bf);
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(18, 58, 98, 0.12);
}

.guest-log-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.guest-log-card small,
.guest-log-card span {
  color: var(--muted);
  font-weight: 800;
}

.guest-log-card strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.guest-feature-list {
  display: grid;
  gap: 12px;
}

.guest-feature-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(18, 58, 98, 0.08);
}

.guest-feature-item > span,
.guest-flow strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e7f7ff;
  color: var(--navy);
  font-weight: 950;
}

.guest-feature-item h3,
.guest-feature-item p,
.guest-flow h3,
.guest-flow p {
  margin-bottom: 0;
}

.guest-feature-item p,
.guest-flow p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.7;
}

.guest-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guest-flow article,
.guest-split-panel,
.guest-cta-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 58, 98, 0.08);
}

.guest-split-panel {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 1fr) auto;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #ffffff, #eef9fd);
}

.guest-split-panel h2,
.guest-cta-panel h2 {
  margin-bottom: 4px;
}

.guest-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guest-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #e7f7ff;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.guest-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guest-link-grid a {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 16px 34px 16px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  box-shadow: 0 14px 34px rgba(18, 58, 98, 0.08);
}

.guest-link-grid a::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 16px;
  color: #8ba1ad;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.guest-link-grid strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.guest-link-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.6;
}

.guest-cta-panel {
  text-align: center;
  background: linear-gradient(135deg, #f8fcfe, #e7f7ff);
}

.guest-cta-panel .muted {
  max-width: 620px;
  margin-inline: auto;
}

.guest-cta-panel .hero-actions {
  justify-content: center;
}

.version-note {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 154, 78, 0.22);
  border-radius: var(--sl-radius-lg);
  background: linear-gradient(135deg, #f7fbfd, #eef8f2);
}

.version-note h1 {
  margin: 0;
  color: var(--sl-text);
  font-size: 1.35rem;
  line-height: 1.25;
}

.version-note p:not(.eyebrow) {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.7;
}

.version-note .btn {
  justify-self: start;
}

.ds-page {
  display: grid;
  gap: 18px;
}

.ds-section {
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.ds-section h2 {
  margin-bottom: 0;
}

.ds-note {
  padding: 12px 14px;
  border-radius: var(--sl-radius-md);
  background: #eef8f2;
  color: #0d6f3c;
  font-size: 0.88rem;
  font-weight: 850;
}

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

.ds-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ds-token-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: var(--sl-shadow-sm);
}

.ds-color-swatch {
  height: 74px;
  border-radius: var(--sl-radius-md);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.ds-token-card strong,
.ds-type-sample strong {
  color: var(--sl-text);
}

.ds-token-card code,
.ds-type-sample code {
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.ds-type-sample {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.ds-type-sample:last-child {
  border-bottom: 0;
}

.ds-display {
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.08;
}

.ds-heading {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1.2;
}

.ds-body {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.ds-label {
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.5;
}

.ds-caption {
  color: var(--sl-text-secondary);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
}

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

.ds-space-bar {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cfeede, #78c3dc);
}

.sl-card {
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: var(--sl-shadow-md);
}

.sl-card-pad {
  padding: 16px;
}

.sl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid var(--sl-border);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font-weight: 900;
  line-height: 1.2;
}

.sl-btn.primary {
  border-color: transparent;
  background: var(--sl-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.2);
}

.sl-btn.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--sl-primary);
  box-shadow: none;
}

.sl-btn.disabled {
  background: #f0f0f0;
  color: #a8a8a8;
  pointer-events: none;
}

.sl-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid var(--sl-border);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-text);
  font-size: 0.82rem;
  font-weight: 850;
}

.sl-chip.active {
  border-color: rgba(0, 154, 78, 0.45);
  background: #eef8f2;
  color: var(--sl-primary);
}

.sl-chip.alert {
  border-color: transparent;
  background: var(--sl-alert);
  color: #fff;
}

.sl-list-row {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 10px 0;
  border-bottom: 1px solid var(--sl-border);
}

.sl-list-row:last-child {
  border-bottom: 0;
}

.sl-list-row i {
  color: var(--sl-primary);
  font-style: normal;
  font-weight: 950;
}

.sl-list-row strong {
  color: var(--sl-text);
}

.sl-list-row span {
  color: var(--sl-text-secondary);
  font-size: 0.86rem;
  font-weight: 800;
}

.sl-thumb-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  min-height: 72px;
}

.sl-thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--sl-radius-md);
  background: linear-gradient(135deg, #cdeaf3, #0c83bf);
}

.sl-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9ecef;
}

.sl-progress span {
  display: block;
  height: 100%;
  width: 30%;
  border-radius: inherit;
  background: var(--sl-primary);
}

.ds-component-preview {
  display: grid;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
}

.ds-component-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ds-icon-size-row {
  display: grid;
  grid-template-columns: 44px 52px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.ds-icon-size-row span,
.ds-icon-card span,
.ds-mini-nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sl-primary);
  font-weight: 950;
  line-height: 1;
}

.ds-icon-mask,
.ds-inline-icon,
.ds-heading-icon {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.ds-icon-mask {
  width: 24px;
  height: 24px;
  color: var(--sl-primary);
}

.ds-inline-icon {
  width: 13px;
  height: 13px;
  color: var(--sl-primary);
  vertical-align: -2px;
}

.ds-inline-icon.is-heart {
  color: #ff3b30;
}

.ds-heading-icon {
  width: 17px;
  height: 17px;
  color: var(--sl-primary);
}

.ds-icon-size-row span {
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  background: #eef8f2;
}

.ds-icon-size-row .ds-icon-mask {
  min-width: 0;
  min-height: 0;
  border-radius: 0;
  background: currentColor;
}

.ds-icon-size-row p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.82rem;
  font-weight: 750;
}

.ds-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ds-icon-card {
  display: grid;
  gap: 7px;
  justify-items: center;
  min-height: 74px;
  padding: 10px 6px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-md);
  background: var(--sl-surface);
}

.ds-icon-card span {
  width: 28px;
  height: 28px;
  font-size: 1.2rem;
}

.ds-icon-card small {
  color: var(--sl-text-secondary);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.ds-icon-card em {
  color: var(--sl-text-secondary);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.ds-mini-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  align-items: center;
  min-height: 64px;
  padding: 8px 10px;
  border: 1px solid var(--sl-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sl-shadow-md);
}

.ds-mini-nav span {
  flex-direction: column;
  gap: 4px;
  min-height: 44px;
  color: #6b747c;
  font-size: 1rem;
}

.ds-mini-nav span.active {
  color: var(--sl-primary);
}

.ds-mini-nav .ds-icon-mask {
  color: currentColor;
}

.ds-mini-nav small {
  font-size: 0.62rem;
  font-weight: 750;
  line-height: 1;
}

.ds-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ds-check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--sl-text-secondary);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.65;
}

.ds-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sl-primary);
}

.sl-field {
  display: grid;
  gap: 7px;
}

.sl-field span {
  color: var(--sl-text);
  font-size: 0.86rem;
  font-weight: 900;
}

.sl-field input,
.sl-field select,
.sl-search input {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-md);
  background: #fff;
  color: var(--sl-text);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
}

.sl-field.active input {
  border-color: rgba(0, 154, 78, 0.62);
  box-shadow: 0 0 0 3px rgba(0, 154, 78, 0.11);
}

.sl-field.error input {
  border-color: #ef4444;
  background: #fff7f7;
}

.sl-field small {
  color: var(--sl-text-secondary);
  font-size: 0.76rem;
  font-weight: 750;
}

.sl-field.error small {
  color: #d33737;
}

.sl-search {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--sl-border);
  border-radius: 999px;
  background: #fff;
}

.sl-search span {
  color: var(--sl-text-secondary);
  font-weight: 950;
}

.sl-search input {
  min-height: auto;
  padding: 10px 4px;
  border: 0;
  border-radius: 0;
}

.sl-search-results {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-md);
  background: #fff;
}

.sl-search-results a {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--sl-border);
  color: var(--sl-text);
}

.sl-search-results a:last-child {
  border-bottom: 0;
}

.sl-search-results span {
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 750;
}

.sl-choice-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 44px;
}

.sl-checkbox,
.sl-radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: auto;
  border: 2px solid var(--sl-border);
  background: #fff;
}

.sl-checkbox {
  border-radius: 7px;
}

.sl-radio {
  border-radius: 999px;
}

.sl-checkbox.checked,
.sl-radio.checked {
  border-color: var(--sl-primary);
  background: var(--sl-primary);
}

.sl-checkbox.checked::before {
  content: "✓";
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
}

.sl-radio.checked::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: inherit;
  background: #fff;
}

.sl-toggle {
  position: relative;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: #d5dce1;
}

.sl-toggle i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: inherit;
  background: #fff;
  box-shadow: var(--sl-shadow-sm);
}

.sl-toggle.on {
  background: var(--sl-primary);
}

.sl-toggle.on i {
  left: 21px;
}

.sl-toast {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 330px);
  min-height: 44px;
  margin-inline: auto;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: var(--sl-shadow-lg);
}

.sl-toast.success {
  background: var(--sl-primary);
}

.sl-toast.error {
  background: #ef4444;
}

.sl-banner {
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  border-radius: var(--sl-radius-md);
  border: 1px solid transparent;
}

.sl-banner strong {
  color: var(--sl-text);
}

.sl-banner span {
  color: var(--sl-text-secondary);
  font-size: 0.82rem;
  font-weight: 750;
}

.sl-banner.success {
  background: #eef8f2;
  border-color: rgba(0, 154, 78, 0.22);
}

.sl-banner.warning {
  background: #fff8e8;
  border-color: rgba(255, 138, 0, 0.26);
}

.sl-banner.error {
  background: #fff1f1;
  border-color: rgba(239, 68, 68, 0.26);
}

.sl-modal-preview {
  display: grid;
  place-items: center;
  min-height: 200px;
  padding: 20px;
  border-radius: var(--sl-radius-lg);
  background: rgba(17, 24, 39, 0.58);
}

.sl-modal-card {
  display: grid;
  gap: 10px;
  width: min(100%, 280px);
  padding: 18px;
  border-radius: var(--sl-radius-lg);
  background: #fff;
  text-align: center;
}

.sl-modal-card p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.86rem;
  font-weight: 750;
}

.sl-bottom-sheet-preview {
  display: grid;
  gap: 10px;
  align-content: end;
  min-height: 230px;
  padding: 14px;
  border-radius: var(--sl-radius-lg);
  background: linear-gradient(180deg, #e9eef2, #cbd6dd);
}

.sl-bottom-sheet-preview > div {
  width: 46px;
  height: 5px;
  margin: 0 auto 2px;
  border-radius: 999px;
  background: #cbd5dc;
}

.sl-bottom-sheet-preview strong,
.sl-bottom-sheet-preview span {
  display: block;
  padding: 12px 14px;
  border-radius: var(--sl-radius-md);
  background: #fff;
  color: var(--sl-text);
  font-weight: 900;
}

.sl-skeleton {
  height: 18px;
  width: 74%;
  border-radius: 999px;
  background: linear-gradient(90deg, #eef2f4, #dde6eb, #eef2f4);
}

.sl-skeleton.wide {
  width: 100%;
  height: 74px;
  border-radius: var(--sl-radius-md);
}

.sl-skeleton.short {
  width: 42%;
}

.sl-empty-state {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 22px 12px;
  text-align: center;
}

.sl-empty-state span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--sl-primary);
  font-size: 1.35rem;
  font-weight: 950;
}

.sl-empty-state p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.6;
}

.detail-list.compact > div {
  grid-template-columns: 76px minmax(0, 1fr);
}

.ds-page-template-list {
  display: grid;
  gap: 10px;
}

.ds-page-template-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: var(--sl-shadow-sm);
}

.ds-page-template-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.ds-page-template-card strong {
  color: var(--sl-text);
  font-size: 1.05rem;
  font-weight: 950;
}

.ds-page-template-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 900;
}

.ds-page-template-card p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.65;
}

.ds-rule-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ds-rule-cards article {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: var(--sl-shadow-sm);
}

.ds-rule-cards strong {
  color: var(--sl-text);
  font-size: 0.9rem;
  font-weight: 950;
}

.ds-rule-cards p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.65;
}

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

.ds-decision-list article {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-md);
  background: linear-gradient(180deg, #fff, #fbfcfd);
}

.ds-decision-list span {
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.45;
}

.ds-decision-list p {
  margin: 0;
  color: var(--sl-text);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.65;
}

.ds-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ds-principle-grid article {
  display: grid;
  gap: 7px;
  min-height: 122px;
  padding: 14px;
  border: 1px solid rgba(0, 154, 78, 0.14);
  border-radius: var(--sl-radius-lg);
  background:
    radial-gradient(circle at 92% 18%, rgba(0, 154, 78, 0.08) 0 18px, transparent 19px),
    #fff;
}

.ds-principle-grid strong {
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

.ds-principle-grid p {
  margin: 0;
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.65;
}

.ds-type-rule-table {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.ds-type-rule-table article {
  display: grid;
  grid-template-columns: 104px 76px 56px 90px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-md);
  background: #fff;
}

.ds-type-rule-table span {
  color: #111820;
  font-size: 0.82rem;
  font-weight: 900;
}

.ds-type-rule-table code,
.ds-type-rule-table b,
.ds-type-rule-table em {
  color: #59636c;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 650;
}

.ds-type-rule-table p {
  margin: 0;
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.5;
}

.ds-section-decision-list {
  display: grid;
  gap: 8px;
}

.ds-section-decision-list article {
  display: grid;
  grid-template-columns: 116px 150px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-md);
  background: #fff;
}

.ds-section-decision-list span {
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.45;
}

.ds-section-decision-list strong {
  color: #111820;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.45;
}

.ds-section-decision-list p {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.55;
}

.ds-section-decision-list code,
.ds-decision-list code {
  display: block;
  margin: 0 0 4px;
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ds-link-rule-list,
.ds-asset-rule-list {
  display: grid;
  gap: 8px;
}

.ds-link-rule-list article,
.ds-asset-rule-list article {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-md);
  background: #fff;
}

.ds-asset-rule-list article {
  grid-template-columns: 150px minmax(0, 1fr);
}

.ds-link-rule-list span,
.ds-asset-rule-list strong {
  color: var(--sl-text);
  font-size: 0.82rem;
  font-weight: 900;
}

.ds-link-rule-list code,
.ds-asset-rule-list code {
  color: var(--sl-primary);
  font-size: 0.74rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.ds-link-rule-list p,
.ds-asset-rule-list p {
  grid-column: 2;
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.55;
}

.ds-page-order-list,
.ds-active-nav-table,
.ds-component-spec-table,
.ds-implementation-checklist {
  display: grid;
  gap: 10px;
}

.ds-page-order-list article,
.ds-active-nav-table article,
.ds-component-spec-table article,
.ds-implementation-checklist article {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: var(--sl-shadow-sm);
}

.ds-page-order-list span,
.ds-component-spec-table span {
  color: var(--sl-primary);
  font-size: 0.74rem;
  font-weight: 950;
}

.ds-page-order-list strong,
.ds-active-nav-table strong,
.ds-implementation-checklist strong {
  color: var(--sl-text);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.45;
}

.ds-page-order-list p,
.ds-active-nav-table p,
.ds-component-spec-table p,
.ds-implementation-checklist p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.65;
}

.ds-active-nav-table article {
  grid-template-columns: minmax(0, 1.15fr) 88px;
  gap: 5px 10px;
  align-items: center;
}

.ds-active-nav-table code {
  min-width: 0;
  color: var(--sl-primary);
  font-size: 0.7rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.ds-active-nav-table strong {
  justify-self: end;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--sl-primary);
  font-size: 0.72rem;
}

.ds-active-nav-table p {
  grid-column: 1 / -1;
}

.ds-component-spec-table article {
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 6px 10px;
}

.ds-component-spec-table span {
  grid-row: 1 / span 2;
}

.ds-component-spec-table code {
  min-width: 0;
  color: var(--sl-text);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ds-component-spec-table p {
  grid-column: 2;
}

.ds-implementation-checklist article {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
}

.ds-implementation-checklist > article > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 950;
}

.ds-implementation-checklist div {
  display: grid;
  gap: 4px;
}

.ds-priority-list {
  display: grid;
  gap: 12px;
}

.ds-priority-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sl-border);
}

.ds-priority-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ds-priority-list span {
  color: var(--sl-primary);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ds-priority-list strong {
  color: var(--sl-text);
}

.ds-priority-list p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.55;
}

.ds-phone-frame {
  display: grid;
  gap: 10px;
  width: min(100%, 260px);
  margin-inline: auto;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: 26px;
  background: linear-gradient(180deg, #fbfdfe, #edf6f9);
  box-shadow: var(--sl-shadow-md);
}

.ds-phone-top {
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #cdeaf3, #78c3dc);
}

.ds-phone-card {
  height: 82px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
}

.ds-phone-card.short {
  height: 48px;
}

.ds-phone-frame .sl-btn {
  width: 100%;
}

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

.ds-stat-grid div {
  display: grid;
  gap: 3px;
  justify-items: center;
  min-height: 96px;
  padding: 12px 6px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: var(--sl-surface);
  text-align: center;
}

.ds-stat-grid span,
.ds-stat-grid small {
  color: var(--sl-text-secondary);
  font-size: 0.68rem;
  font-weight: 850;
}

.ds-stat-grid strong {
  color: var(--sl-text);
  font-size: 1.8rem;
  font-weight: 950;
  line-height: 1.05;
}

.ds-goal-preview {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 54px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 193, 7, 0.82);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 25%, rgba(255, 193, 7, 0.45) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 20%, rgba(255, 193, 7, 0.7) 0 3px, transparent 4px),
    #fffdf5;
}

.ds-goal-preview img {
  width: 42px;
  transform: rotate(-8deg);
}

.ds-goal-preview div {
  display: grid;
  gap: 2px;
}

.ds-goal-preview span {
  color: var(--sl-text-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.1;
}

.ds-goal-preview strong {
  color: var(--sl-text);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
}

.ds-goal-preview i {
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e4e6;
  box-shadow: inset 0 1px 2px rgba(17, 17, 17, 0.12);
}

.ds-goal-preview b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #079957, #15bd71);
}

.ds-goal-preview em {
  color: var(--sl-text);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.ds-ribbon-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ds-ribbon {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 10px 3px 8px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 50%, 100% 100%, 0 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.ds-ribbon.is-blue {
  background: linear-gradient(180deg, #2596d8, #0b76b7);
}

.ds-ribbon.is-yellow {
  background: linear-gradient(180deg, #ffc21a, #ff9e00);
}

.ds-see-all-sample {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-self: start;
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 850;
}

.ds-see-all-sample::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
}

.ds-summary-card-sample {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 24, 32, 0.05);
}

.ds-summary-card-sample i {
  width: 18px;
  height: 18px;
  background: var(--sl-primary);
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.ds-summary-card-sample span {
  display: grid;
  gap: 2px;
}

.ds-summary-card-sample small {
  color: var(--sl-text-secondary);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
}

.ds-summary-card-sample strong {
  color: var(--sl-text);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
}

.ds-summary-card-sample em {
  margin-left: 2px;
  color: var(--sl-text);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 650;
}

.ds-checkin-preview {
  display: grid;
  gap: 10px;
}

.ds-checkin-preview strong {
  color: var(--sl-text);
  font-size: 0.82rem;
  font-weight: 900;
}

.ds-checkin-preview div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ds-checkin-preview span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 8px;
  border: 1px solid var(--sl-border);
  border-radius: 12px;
  background: #fff;
  color: var(--sl-text);
  font-size: 0.74rem;
  font-weight: 750;
  text-align: center;
}

.ds-checkin-preview span.active {
  border-color: rgba(0, 154, 78, 0.42);
  background: #eef8f2;
  color: var(--sl-primary);
  font-weight: 850;
}

.ds-checkin-preview textarea {
  min-height: 72px;
  padding: 11px 12px;
  border: 1px solid var(--sl-border);
  border-radius: 13px;
  background: #fff;
  color: var(--sl-text);
  font: inherit;
  font-size: 0.78rem;
  line-height: 1.55;
  resize: none;
}

.ds-scroll-sample {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.ds-scroll-sample span {
  display: grid;
  flex: 0 0 126px;
  place-items: end start;
  min-height: 96px;
  padding: 12px;
  border-radius: var(--sl-radius-lg);
  background: linear-gradient(135deg, #eef8f2, #d8edf5);
  color: var(--sl-text);
  font-weight: 950;
  scroll-snap-align: start;
}

.ds-park-scroll-sample span {
  position: relative;
  align-content: start;
  place-items: start;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--sl-text);
  font-weight: 700;
}

.ds-park-scroll-sample span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.18);
}

.ds-park-scroll-sample .is-visited::before,
.ds-park-scroll-sample .is-favorite::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: var(--sl-success);
  mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
}

.ds-park-scroll-sample .is-favorite::before {
  background: #ff3b30;
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

.ds-park-scroll-sample img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.ds-park-scroll-sample b {
  margin-top: 6px;
  color: var(--sl-text);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
}

.ds-park-scroll-sample small {
  color: var(--sl-text-secondary);
  font-size: 0.66rem;
  font-weight: 600;
}

.ds-friend-now-sample {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ds-friend-now-sample span {
  position: relative;
  display: grid;
  flex: 0 0 54px;
  gap: 4px;
  justify-items: center;
  color: var(--sl-text);
}

.ds-friend-now-sample i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #28c07f, #118b65);
  color: #fff;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
}

.ds-friend-now-sample .is-you i {
  outline: 3px solid var(--sl-primary);
  outline-offset: 2px;
}

.ds-friend-now-sample b {
  position: absolute;
  top: 40px;
  right: 1px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--sl-success);
}

.ds-friend-now-sample strong,
.ds-friend-now-sample small {
  max-width: 64px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-friend-now-sample strong {
  font-size: 0.68rem;
  font-weight: 850;
}

.ds-friend-now-sample small {
  color: var(--sl-text-secondary);
  font-size: 0.62rem;
  font-weight: 600;
}

.ds-user-row,
.ds-park-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
}

.ds-user-row > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #123a62, #0a84bd);
  color: #fff;
  font-weight: 950;
}

.ds-user-row div,
.ds-park-row div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.ds-user-row strong,
.ds-park-row strong {
  overflow: hidden;
  color: var(--sl-text);
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-user-row small,
.ds-park-row small {
  overflow: hidden;
  color: var(--sl-text-secondary);
  font-size: 0.76rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-user-row button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--sl-primary);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.ds-park-row {
  grid-template-columns: 76px minmax(0, 1fr);
}

.ds-park-row > span {
  display: block;
  width: 76px;
  aspect-ratio: 4 / 3;
  border-radius: var(--sl-radius-md);
  background: linear-gradient(135deg, #cdeaf3, #0c83bf);
}

.ds-region-grid-sample {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ds-region-grid-sample a {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 12px;
  gap: 8px;
  align-items: center;
  min-height: 70px;
  padding: 10px 8px;
  border: 1px solid var(--sl-border);
  border-radius: 14px;
  background: #fff;
  color: inherit;
  box-shadow: 0 4px 14px rgba(17, 24, 32, 0.045);
}

.ds-region-grid-sample a::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #111820;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

.ds-region-grid-sample img {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.ds-region-grid-sample strong,
.ds-region-grid-sample small {
  grid-column: 2;
  min-width: 0;
}

.ds-region-grid-sample strong {
  color: var(--sl-text);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
}

.ds-region-grid-sample small {
  color: var(--sl-text-secondary);
  font-size: 0.68rem;
  font-weight: 650;
}

.ds-open-card-sample {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ds-open-card-sample a {
  display: grid;
  gap: 6px;
  min-height: 96px;
  align-content: start;
  padding: 9px;
  border: 1px solid var(--sl-border);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 54%, rgba(255, 255, 255, 0.42)),
    var(--image) right bottom / 82px auto no-repeat,
    #fff;
  color: inherit;
  box-shadow: 0 4px 14px rgba(17, 24, 32, 0.045);
}

.ds-open-card-sample span {
  width: fit-content;
  padding: 3px 6px;
  border-radius: 5px;
  background: var(--sl-alert);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
}

.ds-open-card-sample strong {
  color: var(--sl-text);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.38;
}

.ds-open-card-sample small {
  margin-top: auto;
  color: var(--sl-text);
  font-size: 0.72rem;
  font-weight: 850;
}

.ds-profile-sample {
  overflow: hidden;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}

.ds-profile-cover {
  position: relative;
  height: 116px;
  overflow: hidden;
  background: #dff7ff;
}

.ds-profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-profile-cover::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 70px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92));
}

.ds-profile-cover span {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 16px;
  color: #ffad00;
  font-size: 1.1rem;
  font-weight: 950;
  line-height: 0.95;
  transform: rotate(-8deg);
}

.ds-profile-body {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 0 14px 10px;
}

.ds-profile-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  border: 4px solid #fff;
  border-radius: 999px;
  outline: 3px solid var(--sl-primary);
  background: #0b0d10;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.18);
}

.ds-profile-body div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ds-profile-body strong {
  overflow: hidden;
  color: var(--sl-text);
  font-size: 1.25rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-profile-body small {
  color: var(--sl-text-secondary);
  font-size: 0.7rem;
  font-weight: 700;
}

.ds-profile-body a {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border: 1px solid rgba(0, 154, 78, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 900;
}

.ds-profile-body button {
  display: grid;
  place-items: center;
  width: 34px;
  min-height: 34px;
  padding: 0;
  border: 1px solid var(--sl-border);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font: inherit;
  font-weight: 900;
}

.ds-park-detail-sample {
  overflow: hidden;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}

.ds-park-detail-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e7f0f3;
}

.ds-park-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-park-detail-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.92) 70%, #fff 100%);
}

.ds-park-detail-cover a {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(235, 239, 242, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sl-text);
  box-shadow: 0 8px 18px rgba(17, 24, 32, 0.12);
}

.ds-park-detail-cover em {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 154, 78, 0.94);
  color: #fff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.ds-park-detail-head {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 5px;
  margin: -34px 12px 0;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.1);
}

.ds-park-detail-type {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 154, 78, 0.1);
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 850;
}

.ds-park-detail-head strong {
  color: var(--sl-text);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.28;
}

.ds-park-detail-head small {
  color: var(--sl-text-secondary);
  font-size: 0.75rem;
  font-weight: 650;
}

.ds-park-detail-head div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.ds-park-detail-head div a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 154, 78, 0.22);
  border-radius: 12px;
  background: #fff;
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 850;
}

.ds-park-detail-head div a:last-child {
  border-color: var(--sl-primary);
  background: var(--sl-primary);
  color: #fff;
}

.ds-park-detail-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 12px;
  overflow: hidden;
  border: 1px solid var(--sl-border);
  border-radius: 14px;
  background: #fff;
}

.ds-park-detail-summary span {
  display: grid;
  gap: 3px;
  justify-items: center;
  min-width: 0;
  min-height: 72px;
  padding: 12px 6px;
  text-align: center;
}

.ds-park-detail-summary span + span {
  border-left: 1px solid var(--sl-border);
}

.ds-park-detail-summary b {
  color: var(--sl-text);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.ds-park-detail-summary small {
  color: var(--sl-text-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

.ds-profile-badge-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin: 0 12px 12px;
  padding: 10px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-md);
}

.ds-component-preview > .ds-profile-badge-strip {
  margin: 0;
}

.ds-profile-badge-strip span {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: var(--sl-text);
  font-size: 0.62rem;
  font-weight: 850;
}

.ds-profile-badge-strip img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(17, 17, 17, 0.13));
}

.ds-profile-badge-strip small {
  color: var(--sl-text);
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.ds-log-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
}

.ds-log-card > img {
  width: 78px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.ds-log-card > div:first-child {
  display: grid;
  gap: 3px;
}

.ds-log-card strong {
  color: var(--sl-text);
  font-weight: 950;
}

.ds-log-card span,
.ds-log-card p,
.ds-log-card small {
  color: var(--sl-text-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.6;
}

.ds-log-card span {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 7px;
  align-items: center;
}

.ds-log-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ds-log-card > div:last-child {
  display: grid;
  gap: 2px;
}

.ds-log-card a {
  color: var(--sl-primary);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.ds-badge-grid div {
  position: relative;
  display: grid;
  gap: 5px;
  justify-items: center;
  min-height: 146px;
  padding: 14px 10px;
  border: 1px solid rgba(255, 193, 7, 0.32);
  border-radius: var(--sl-radius-lg);
  background: linear-gradient(180deg, #fff8dd, #fff);
  text-align: center;
}

.ds-badge-grid div.locked {
  border-color: var(--sl-border);
  background: var(--sl-surface);
  opacity: 0.72;
}

.ds-badge-grid span {
  display: none;
}

.ds-badge-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(17, 17, 17, 0.14));
}

.ds-badge-grid strong {
  color: var(--sl-text);
  font-weight: 950;
}

.ds-badge-grid small {
  color: var(--sl-text-secondary);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.45;
}

.ds-badge-grid em {
  margin-top: auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.ds-info-table,
.ds-data-rule-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
}

.ds-info-table div,
.ds-data-rule-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--sl-border);
}

.ds-info-table div:last-child,
.ds-data-rule-list div:last-child {
  border-bottom: 0;
}

.ds-info-table span,
.ds-data-rule-list span {
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 850;
}

.ds-info-table strong,
.ds-data-rule-list strong {
  min-width: 0;
  color: var(--sl-text);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.ds-responsive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ds-responsive-grid article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
}

.ds-responsive-grid strong {
  color: var(--sl-primary);
  font-size: 1.1rem;
  font-weight: 950;
}

.ds-responsive-grid p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.6;
}

.ds-interaction-list {
  display: grid;
  gap: 10px;
}

.ds-interaction-list article {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: var(--sl-shadow-sm);
}

.ds-interaction-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 950;
}

.ds-interaction-list p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.65;
}

.ds-motion-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ds-motion-grid article {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
}

.ds-motion-grid strong {
  color: var(--sl-text);
  font-weight: 950;
}

.ds-motion-grid span {
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 950;
}

.ds-motion-grid p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.6;
}

.ds-nav-rule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ds-nav-rule-grid article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
}

.ds-nav-rule-grid strong {
  color: var(--sl-primary);
  font-size: 0.96rem;
  font-weight: 950;
}

.ds-nav-rule-grid p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.6;
}

.ds-flow-sample {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: linear-gradient(135deg, #f7fbfd, #eef8f2);
}

.ds-flow-sample span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--sl-text);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: var(--sl-shadow-sm);
}

.ds-flow-sample i {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--sl-primary);
}

.ds-split-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ds-split-rules div {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: var(--sl-shadow-sm);
}

.ds-split-rules span {
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 950;
}

.ds-split-rules strong {
  color: var(--sl-text-secondary);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.65;
}

.ds-quality-list {
  display: grid;
  gap: 10px;
}

.ds-quality-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
}

.ds-quality-list > article > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--sl-primary);
  font-weight: 950;
}

.ds-quality-list div {
  display: grid;
  gap: 4px;
}

.ds-quality-list strong {
  color: var(--sl-text);
  font-weight: 950;
}

.ds-quality-list p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.65;
}

.ds-state-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ds-state-grid article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  background: #fff;
}

.ds-state-grid strong {
  color: var(--sl-primary);
  font-weight: 950;
}

.ds-state-grid p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.6;
}

.ds-do-card,
.ds-dont-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: var(--sl-radius-lg);
  background: #fff;
  box-shadow: var(--sl-shadow-sm);
}

.ds-do-card {
  border: 1px solid rgba(0, 154, 78, 0.28);
}

.ds-dont-card {
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.ds-do-card h3,
.ds-dont-card h3 {
  margin: 0;
  font-size: 1rem;
}

.ds-do-card h3 {
  color: var(--sl-primary);
}

.ds-dont-card h3 {
  color: #d33737;
}

.profile-v3-appbar {
  position: relative;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 10px 22px 4px;
  border-bottom: 0;
  background: #fff;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
}

.profile-v3-appbar > i {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 94px;
  height: 28px;
  border-radius: 999px;
  background: #030303;
  transform: translateX(-50%);
}

.profile-v3-appbar div {
  display: inline-flex;
  gap: 4px;
  align-items: end;
}

.profile-v3-appbar b {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: #111820;
}

.profile-v3-appbar b:nth-child(1) {
  height: 8px;
}

.profile-v3-appbar b:nth-child(2) {
  height: 11px;
}

.profile-v3-appbar b:nth-child(3) {
  width: 18px;
  height: 10px;
  border: 1.8px solid #111820;
  background: transparent;
}

.profile-v2-hero {
  position: relative;
  padding-bottom: 6px;
  background: #fff;
}

.profile-v2-cover {
  position: relative;
  height: 236px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 201, 40, 0.78), transparent 0 8%, transparent 9%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.76)),
    linear-gradient(145deg, #dff7ff 0%, #f8fdff 33%, #22bfd1 34%, #ffffff 52%, #ffc928 100%);
  background-position: center;
  background-size: cover;
}

.profile-v2-cover::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.88));
}

.profile-v2-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(24deg, transparent 0 34%, rgba(255, 255, 255, 0.72) 35% 39%, transparent 40%),
    linear-gradient(-18deg, transparent 0 50%, rgba(255, 255, 255, 0.62) 51% 54%, transparent 55%),
    linear-gradient(150deg, rgba(10, 163, 95, 0.16), transparent 36%);
}

.profile-v3-hero-skater {
  position: absolute;
  left: 50%;
  bottom: -4px;
  z-index: 1;
  width: min(112%, 690px);
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 24px rgba(18, 58, 98, 0.12));
  pointer-events: none;
}

.profile-v3-cover-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(42%, 210px);
  margin-left: auto;
  padding: 34px 22px 0 0;
  color: #123a62;
  text-align: right;
}

.profile-v3-cover-copy span {
  color: #f2a900;
  font-size: 1.62rem;
  font-weight: 950;
  line-height: 1;
  transform: rotate(-8deg);
  transform-origin: right center;
}

.profile-v3-cover-copy strong {
  color: rgba(18, 58, 98, 0.82);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.45;
}

.profile-v2-card {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  margin: -78px 16px 0;
  padding: 0 14px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

.profile-v2-avatar {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  border: 4px solid #fff;
  border-radius: 999px;
  outline: 4px solid #0aa35f;
  background: radial-gradient(circle at 50% 38%, #111820, #103e68);
  color: #fff;
  font-size: 1.56rem;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(18, 58, 98, 0.22);
  overflow: hidden;
}

.profile-v2-title {
  min-width: 0;
}

.profile-v3-name-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 2px;
}

.profile-v3-name-row h1 {
  margin: 0;
  overflow: hidden;
  font-size: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-v3-name-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e8f8ef;
  color: #00884c;
  font-size: 0.72rem;
  font-weight: 950;
}

.profile-v3-id-text {
  margin: 0;
  color: #333b44;
  font-size: 0.82rem;
  font-weight: 850;
}

.profile-v2-id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #d6e4ec;
  border-radius: 999px;
  background: #f7fbfd;
  color: #4f5d66;
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-v2-id span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-v2-id small {
  flex: 0 0 auto;
  color: #0c5e8f;
  font-size: 0.68rem;
  font-weight: 950;
}

.profile-v2-edit {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 15px;
  border: 1px solid #e2e9ee;
  border-radius: 12px;
  background: #fff;
  color: #123a62;
  font-size: 0.84rem;
  font-weight: 950;
}

.profile-v2-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #edf1f4;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 58, 98, 0.07);
}

.profile-v2-stats > * {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 70px;
  padding: 10px 8px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: inherit;
  text-align: center;
}

.profile-v2-stats > * + * {
  border-left: 1px solid #edf1f4;
}

.profile-v2-stats strong {
  color: #111820;
  font-size: 1.62rem;
  font-weight: 950;
  line-height: 1;
}

.profile-v2-stats span {
  color: #333b44;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.25;
}

.profile-v3-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-v3-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid rgba(214, 227, 234, 0.9);
  border-radius: 13px;
  background: #fff;
  color: #00884c;
  font-size: 0.84rem;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 10px 22px rgba(18, 58, 98, 0.07);
}

.profile-v3-hero-actions a::before {
  content: "⌁";
  color: #0aa35f;
  font-weight: 950;
}

.profile-v3-medal-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.profile-v3-medal-list a {
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  color: #111820;
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
}

.profile-v3-medal-list i {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 50px;
  clip-path: polygon(25% 2%, 75% 2%, 100% 50%, 75% 98%, 25% 98%, 0 50%);
  background: linear-gradient(145deg, #00884c, #20b36f);
  color: #fff;
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(10, 163, 95, 0.18);
}

.profile-v3-medal-list a:nth-child(2) i {
  background: linear-gradient(145deg, #0aa35f, #0d7e4b);
}

.profile-v3-medal-list a:nth-child(3) i {
  background: linear-gradient(145deg, #ff6258, #ff8a4c);
}

.profile-v3-medal-list a:nth-child(4) i {
  background: linear-gradient(145deg, #0c83bf, #2563eb);
}

.profile-v2-stack {
  padding: 0 16px 96px;
  gap: 12px;
}

.profile-v3-goal {
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 190, 31, 0.58);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 22%, rgba(255, 201, 40, 0.34), transparent 0 12%, transparent 13%),
    radial-gradient(circle at 80% 78%, rgba(10, 163, 95, 0.12), transparent 0 18%, transparent 19%),
    linear-gradient(135deg, #fffaf0, #fff);
}

.profile-v3-goal-inner {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: inherit;
}

.profile-v3-goal-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 4px solid #ffc928;
  border-radius: 24px;
  background: linear-gradient(145deg, #00884c, #0aa35f);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(10, 163, 95, 0.2);
  transform: rotate(-7deg);
}

.profile-v3-info-card {
  display: grid;
  gap: 0;
  padding-block: 4px;
}

.profile-v3-info-card a,
.profile-v3-info-card div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid #edf1f4;
  color: inherit;
}

.profile-v3-info-card a:last-child,
.profile-v3-info-card div:last-child {
  border-bottom: 0;
}

.profile-v3-info-card span {
  position: relative;
  padding-left: 24px;
  color: #333b44;
  font-size: 0.86rem;
  font-weight: 850;
}

.profile-v3-info-card span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: #0aa35f;
  transform: translateY(-50%);
}

.profile-v3-info-card strong {
  min-width: 0;
  color: #111820;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.profile-v3-goal-inner p,
.profile-v3-goal-inner strong,
.profile-v3-goal-inner small {
  display: block;
}

.profile-v3-goal-inner p {
  margin: 0 0 2px;
  color: #6f7780;
  font-size: 0.78rem;
  font-weight: 950;
}

.profile-v3-goal-inner strong {
  color: #111820;
  font-size: 1.18rem;
  font-weight: 950;
}

.profile-v3-goal-inner small {
  margin-top: 4px;
  color: #333b44;
  font-size: 0.84rem;
  font-weight: 850;
}

.profile-v3-goal-inner i {
  display: block;
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee8d4;
}

.profile-v3-goal-inner b {
  display: block;
  width: 52%;
  height: 100%;
  border-radius: inherit;
  background: #0aa35f;
}

.profile-v2-badges {
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.profile-v2-badge-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 3px;
  scrollbar-width: none;
}

.profile-v2-badge-list::-webkit-scrollbar {
  display: none;
}

.profile-v2-next {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 193, 7, 0.28);
  border-radius: 16px;
  background: #fff;
}

.profile-v2-next div:first-child {
  display: grid;
  gap: 3px;
}

.profile-v2-next span {
  color: #8a6a00;
  font-size: 0.74rem;
  font-weight: 950;
}

.profile-v2-next strong {
  color: #2b3035;
  font-size: 1rem;
  font-weight: 950;
}

.profile-v2-next small {
  color: #6f7780;
  font-weight: 800;
}

.profile-v2-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0e8cc;
}

.profile-v2-progress i {
  display: block;
  width: 52%;
  height: 100%;
  border-radius: inherit;
  background: #ffc107;
}

.profile-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.profile-v2-tags span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7fb;
  color: #61717b;
  font-size: 0.82rem;
  font-weight: 850;
}

.profile-v2-tags strong {
  color: #123a62;
  font-weight: 950;
}

.profile-v2-summary {
  background: #fff;
}

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

.profile-v2-summary-grid div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 8px;
  align-items: end;
  min-height: 86px;
  padding: 12px;
  border: 1px solid #dce8ee;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fbfdfe);
  color: inherit;
}

.profile-v2-summary-grid span,
.profile-v2-log span,
.profile-v2-log small,
.profile-v2-park-card span {
  color: #6f7780;
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-v2-summary-grid strong,
.profile-v2-log strong,
.profile-v2-park-card strong {
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.profile-v2-summary-grid small {
  color: #333b44;
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-v2-log-scroll,
.profile-v2-park-scroll {
  display: grid;
  gap: 0;
  overflow: visible;
  padding-bottom: 0;
}

.profile-v2-log-scroll::-webkit-scrollbar,
.profile-v2-park-scroll::-webkit-scrollbar {
  display: none;
}

.profile-v2-log,
.profile-v2-park-card {
  display: grid;
  max-width: none;
  background: #fff;
  color: inherit;
  box-shadow: none;
}

.profile-v2-log {
  grid-template-columns: 106px minmax(0, 1fr) 16px;
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #edf1f4;
  border-radius: 0;
}

.profile-v2-log::after {
  content: "›";
  color: #111820;
  font-size: 1.6rem;
  font-weight: 300;
}

.profile-v2-log:last-child {
  border-bottom: 0;
}

.profile-v2-log img,
.profile-v2-park-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 11px;
  background: #eef7fb;
}

.profile-v3-favorite-park-thumb {
  position: relative;
  display: block;
}

.profile-v3-visited-park-thumb {
  position: relative;
  display: block;
}

.profile-v3-favorite-park-thumb i {
  position: absolute;
  top: 6px;
  left: 6px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 9px rgba(17, 17, 17, 0.16);
}

.profile-v3-favorite-park-thumb i::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #ff3d33;
  mask: url("/assets/icons/bold/heart.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/heart.svg") center / contain no-repeat;
}

.profile-v3-visited-park-thumb i {
  position: absolute;
  top: 6px;
  left: 6px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 9px rgba(17, 17, 17, 0.16);
}

.profile-v3-visited-park-thumb i::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
}

.profile-v2-log div {
  display: grid;
  gap: 7px;
  padding: 2px 2px 0;
}

.profile-v2-log small {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef8f2;
  color: #0d6f3c;
  font-size: 0.7rem;
}

.profile-v2-park-card {
  min-height: auto;
}

.profile-v2-park-scroll {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.profile-v2-park-card {
  gap: 6px;
  align-content: start;
  padding: 0;
  border: 0;
}

.profile-v2-park-card strong {
  display: -webkit-box;
  min-height: 2.6em;
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.profile-v2-park-card span {
  font-size: 0.72rem;
}

.profile-v3-visited-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.profile-v3-visited-grid a {
  display: grid;
  gap: 6px;
  color: inherit;
  text-align: left;
}

.profile-v3-visited-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 13px;
}

.profile-v3-visited-grid strong {
  display: -webkit-box;
  min-height: 2.6em;
  overflow: hidden;
  color: #111820;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.profile-v3-visited-grid span {
  color: #6f7780;
  font-size: 0.7rem;
  font-weight: 850;
}

.profile-v3-add-card {
  justify-content: center;
}

.profile-v3-add-card i {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1.4px dashed #cbd6dd;
  border-radius: 13px;
  color: #6f7780;
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
}

.profile-v3-link-list {
  display: grid;
  gap: 0;
  padding-block: 4px;
}

.profile-v3-link-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid #edf1f4;
  color: #111820;
  font-weight: 900;
}

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

.profile-v3-link-list strong {
  color: #111820;
  font-size: 1.5rem;
  font-weight: 300;
}

.profile-v3-section-icon.is-gear {
  --icon: url("/assets/icons/bold/setting-2.svg");
  color: #16a36a;
}

.profile-v3-gear-panel {
  display: grid;
  gap: 12px;
  margin-top: -2px;
}

.profile-v3-gear-setup-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 193, 7, 0.46);
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 193, 7, 0.25) 0 9px, transparent 10px),
    #fffdf5;
  color: inherit;
  text-decoration: none;
}

.profile-v3-gear-setup-card img {
  width: 82px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 5px rgba(17, 17, 17, 0.16));
  transform: rotate(-8deg);
}

.profile-v3-gear-setup-card span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.profile-v3-gear-setup-card small {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.35;
}

.profile-v3-gear-setup-card strong {
  overflow: hidden;
  color: #111820;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-v3-gear-setup-card em {
  overflow: hidden;
  color: #59636c;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-v2-rank-list,
.profile-v2-gear-list {
  display: grid;
  gap: 10px;
}

.profile-v2-rank-list a,
.profile-v2-gear-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(220, 232, 238, 0.9);
  color: inherit;
}

.profile-v2-rank-list a:last-child,
.profile-v2-gear-list div:last-child {
  border-bottom: 0;
}

.profile-v2-rank-list span,
.profile-v2-gear-list span {
  min-width: 0;
  overflow: hidden;
  color: #2b3035;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-v2-rank-list strong,
.profile-v2-gear-list strong {
  min-width: 0;
  color: #123a62;
  font-weight: 950;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: right;
}

.profile-v2-gear-list div.is-note {
  grid-template-columns: 1fr;
  gap: 5px;
  align-items: start;
}

.profile-v2-gear-list div.is-note strong {
  color: #28333b;
  font-weight: 750;
  text-align: left;
}

@media (max-width: 720px) {
  .ds-grid,
  .ds-grid.three,
  .ds-state-grid,
  .ds-responsive-grid,
  .ds-motion-grid,
  .ds-nav-rule-grid,
  .ds-rule-cards,
  .ds-principle-grid,
  .ds-split-rules {
    grid-template-columns: 1fr;
  }

  .ds-interaction-list article {
    grid-template-columns: 1fr;
  }

  .ds-info-table div,
  .ds-data-rule-list div,
  .ds-decision-list article,
  .ds-type-rule-table article,
  .ds-section-decision-list article,
  .ds-link-rule-list article,
  .ds-asset-rule-list article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ds-link-rule-list p,
  .ds-asset-rule-list p {
    grid-column: auto;
  }
}

.profile-hero {
  grid-template-columns: 1fr;
}

.avatar {
  display: none;
}

.bottom-nav {
  left: 50%;
  right: auto;
  width: min(100%, 430px);
  transform: translateX(-50%);
  display: grid;
  border-top: 1px solid rgba(214, 227, 234, 0.7);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -18px 34px rgba(18, 58, 98, 0.09);
  backdrop-filter: blur(18px);
}

.bottom-nav a {
  color: #b7c2c9;
  min-width: 0;
  padding-inline: 2px;
  text-align: center;
  font-size: clamp(0.62rem, 2.7vw, 0.72rem);
  line-height: 1.15;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.bottom-nav a.active {
  color: #123a62;
  background: #e7f7ff;
  border-radius: 999px;
  margin: 8px;
  min-height: 46px;
}

.bottom-nav .bottom-checkin {
  position: relative;
  margin-top: -22px;
  min-height: 76px;
  border-radius: 999px;
  background: linear-gradient(160deg, #123a62, #0a84bd);
  color: #fff;
  box-shadow: 0 -4px 18px rgba(18, 58, 98, 0.16);
  font-size: clamp(0.58rem, 2.5vw, 0.68rem);
}

.bottom-nav .bottom-checkin::before {
  content: "⌖";
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto -6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0d4e78;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(18, 58, 98, 0.16);
}

.footer {
  background: #0f3152;
}

.footer-inner {
  width: 100%;
  padding-inline: 18px;
}

.home-profile {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 46px;
  gap: 14px;
  align-items: center;
  padding: 24px 18px 8px;
  background: #78c3dc;
  color: #fff;
}

.home-profile h1,
.home-profile .lead,
.home-profile .eyebrow {
  color: #fff;
}

.id-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.profile-id-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 8px;
  padding: 9px 12px;
  border: 1px solid #d6e4ec;
  border-radius: 999px;
  background: #f7fbfd;
  color: #4f5d66;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

.profile-id-link span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-id-link small {
  flex: 0 0 auto;
  color: #0c5e8f;
  font-size: 0.76rem;
  font-weight: 900;
}

.home-avatar,
.small-avatar {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #103e68, #0c77ae);
  font-weight: 950;
  overflow: hidden;
}

.home-avatar {
  width: 82px;
  height: 82px;
  border: 4px solid #fff;
  font-size: 1.45rem;
}

.notification-bell {
  position: relative;
  align-self: start;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(18, 58, 98, 0.16);
}

.notification-bell svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notification-bell span {
  position: absolute;
  top: -4px;
  right: -3px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: #ffcf4a;
  color: #0f3152;
  font-size: 0.68rem;
  font-weight: 950;
  box-shadow: 0 0 0 3px #78c3dc;
}

.small-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: cover;
}

.avatar-link {
  display: inline-block;
  overflow: hidden;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.avatar-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 58, 98, 0.16);
}

.home-stack {
  padding-top: 18px;
}

.inline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.inline-head > * {
  min-width: 0;
}

.checkin-count {
  background: #0c77ae;
  color: #fff;
}

.checkin-count .eyebrow,
.checkin-count h2 {
  color: #fff;
}

.big-count {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.big-count strong {
  font-size: 4.4rem;
  line-height: 1;
}

.big-count span {
  font-weight: 950;
}

.home-metrics {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 10px;
}

.home-metric {
  position: relative;
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.home-metric:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 12px 24px rgba(5, 53, 86, 0.16);
}

.home-metric.primary {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.58);
}

.home-metric strong {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 950;
}

.home-metric.primary strong {
  font-size: 4.2rem;
}

.home-metric span {
  font-size: 0.82rem;
  font-weight: 950;
}

.segmented-links {
  display: inline-flex;
  gap: 6px;
  margin-top: 18px;
  padding: 5px;
  border-radius: 999px;
  background: #eaf4f8;
}

.segmented-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 900;
}

.segmented-links a.active {
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 58, 98, 0.1);
}

.h-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.h-scroll::-webkit-scrollbar {
  display: none;
}

.mini-card,
.friend-chip,
.pref-card {
  position: relative;
  flex: 0 0 190px;
  max-width: calc(100vw - 72px);
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f6fbfd);
  box-shadow: 0 12px 26px rgba(18, 58, 98, 0.07);
}

.mini-card span,
.friend-chip span,
.friend-chip small,
.pref-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.friend-chip small {
  font-size: 0.76rem;
}

.mini-card strong,
.friend-chip strong,
.pref-card strong,
.timeline-card h2,
.park-item h3,
.log-item h3,
.friend-item h3,
.badge-card h3 {
  overflow-wrap: anywhere;
  word-break: normal;
}

.friend-chip {
  flex-basis: 132px;
  justify-items: center;
  text-align: center;
}

.friend-link-card {
  position: relative;
  padding-right: 42px;
  color: inherit;
  background: linear-gradient(180deg, #fff, #f6fbfd);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.friend-link-card::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa8b1;
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1;
}

.friend-link-card:hover {
  transform: translateY(-1px);
  border-color: #c7e9f8;
  box-shadow: 0 16px 30px rgba(18, 58, 98, 0.12);
}

.friend-link-card .toolbar {
  align-items: center;
  justify-content: flex-start;
}

.friend-link-card .tag {
  margin-left: auto;
}

.notification-list {
  display: grid;
  gap: 0;
}

.notification-item {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(220, 232, 238, 0.9);
  color: inherit;
}

.notification-item:last-child {
  border-bottom: 0;
}

.notification-item.unread::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateY(-50%);
}

.notification-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e7f7ff;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

.notification-item strong,
.notification-item small {
  display: block;
  min-width: 0;
}

.notification-item strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.notification-item small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.notification-item em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.share-backdrop {
  display: none;
}

.share-sheet {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 28px 18px 18px;
  background: linear-gradient(180deg, #fff, #f4fbff);
  text-align: center;
  overflow: visible;
}

.share-avatar {
  position: static;
  width: 68px;
  height: 68px;
  transform: none;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #103e68, #0c77ae);
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(28, 72, 98, 0.16);
}

.share-sheet h2 {
  max-width: 100%;
  margin: -4px 0 4px;
  color: var(--navy);
  font-size: clamp(1.28rem, 4.6vw, 1.65rem);
  line-height: 1.25;
}

.qr-frame {
  width: min(100%, 360px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(18, 58, 98, 0.06);
}

.large-qr {
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
}

.mock-qr {
  width: min(100%, 210px);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 0;
  padding: 10px;
  border-radius: 0;
  border: 0;
  background: #fff;
}

.mock-qr span {
  aspect-ratio: 1;
  background: #fff;
}

.mock-qr span.on {
  background: #050505;
}

.profile-share-qr {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.share-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.65;
}

.share-actions {
  display: grid;
  gap: 10px;
  width: 100%;
}

.share-action {
  display: grid;
  gap: 5px;
  min-height: 68px;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  align-content: center;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(18, 58, 98, 0.05);
}

.share-action strong,
.share-action span {
  min-width: 0;
}

.share-action strong {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.25;
}

.share-action span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.share-close {
  justify-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 0;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #f7fbfd;
  text-decoration: none;
  font-weight: 900;
}

.share-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 18, 28, 0.5);
}

.share-dialog-backdrop[hidden] {
  display: none;
}

.share-dialog {
  width: min(100%, 420px);
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.share-dialog p {
  margin: 0;
  padding: 34px 24px;
  color: #252b31;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.share-dialog-footer {
  display: flex;
  justify-content: flex-end;
  padding: 12px 18px;
  border-top: 1px solid #dde3e8;
}

.share-dialog-ok {
  min-width: 104px;
  min-height: 44px;
  border: 1px solid #d2d8dd;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.timeline-feed {
  display: grid;
  gap: 14px;
  padding: 14px 18px 96px;
}

.timeline-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(18, 58, 98, 0.07);
}

.timeline-card h2 {
  margin-bottom: 0;
  font-size: 1.24rem;
}

.timeline-user-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.timeline-user-head > div {
  min-width: 0;
}

.timeline-user-head .eyebrow {
  margin-bottom: 5px;
}

.timeline-user-head .eyebrow a {
  color: inherit;
}

.timeline-user-name {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.timeline-user-name > a:first-child {
  color: var(--navy);
  font-weight: 950;
  text-decoration: none;
}

.profile-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fbfd;
  color: #0c5e8f !important;
  font-size: 0.7rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.timeline-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.favorite-form {
  display: grid;
  gap: 16px;
}

.favorite-choice {
  cursor: pointer;
}

.spot-type-grid {
  display: grid;
  gap: 12px;
}

.spot-type-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(18, 58, 98, 0.05);
}

.spot-type-card strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.spot-type-card small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.compact-link {
  margin: 10px 0 0;
  font-size: 0.82rem;
  font-weight: 850;
}

.compact-link a {
  color: #0c5e8f;
}

.guide-panel {
  display: grid;
  gap: 12px;
}

.guide-panel h2 {
  margin-bottom: 0;
}

.guide-panel p {
  margin: 0;
  color: var(--ink);
  line-height: 1.8;
}

.guide-panel .muted {
  color: var(--muted);
}

.guide-list {
  display: grid;
  gap: 10px;
  margin: 2px 0;
}

.guide-list div {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.guide-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.guide-list strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.inline-form {
  display: inline-flex;
  margin: 0;
}

.favorite-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.favorite-toast,
.like-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 80;
  width: min(calc(100% - 32px), 360px);
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(9, 55, 83, 0.94);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 36px rgba(9, 55, 83, 0.22);
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 10px));
  animation: favoriteToast 2.8s ease forwards;
}

.like-toast {
  background: rgba(12, 119, 174, 0.95);
  animation-name: likeToast;
}

@keyframes favoriteToast {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px));
  }
  14%,
  72% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 8px));
  }
}

@keyframes likeToast {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 12px)) scale(0.94);
  }
  12% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
  24%,
  72% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 8px)) scale(0.98);
  }
}

.favorite-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.favorite-check input {
  width: 18px;
  height: 18px;
  accent-color: #0c77ae;
}

.favorite-actions {
  position: sticky;
  bottom: 88px;
  z-index: 3;
  padding-top: 10px;
  background: rgba(255, 255, 255, 0.94);
}

.tag-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7f7ff;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.like-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.like-button:disabled,
.like-button.liked {
  cursor: default;
  background: #e7f7ff;
  border-color: #c7e9f8;
  color: #0c77ae;
  opacity: 0.9;
}

.friend-log-hero {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, #e8f8ff, #fff);
}

.friend-log-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.friend-log-head h2,
.friend-log-park h2 {
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.friend-log-park {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.friend-log-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: #f5fafc;
  color: var(--ink);
  font-weight: 800;
}

.now-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: #eaf8fc;
}

.checkout-bottom {
  position: sticky;
  bottom: 88px;
  z-index: 3;
  padding-top: 8px;
  background: #fff;
}

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

.park-text-links {
  display: grid;
  gap: 0;
}

.park-text-links + .btn {
  margin-top: 16px;
}

.park-text-link,
.park-text-links > a {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 14px 22px 14px 0;
  border-bottom: 1px solid rgba(220, 232, 238, 0.9);
  color: inherit;
}

.park-text-link::after,
.park-text-links > a::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa8b1;
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
}

.park-text-link:last-child,
.park-text-links > a:last-child {
  border-bottom: 0;
}

.park-text-link strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.park-text-link span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.list-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  background: #fff;
}

.list-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.list-summary strong {
  font-size: 1.6rem;
  color: var(--navy);
}

.list-summary span {
  color: var(--muted);
  font-weight: 800;
}

.priority-page-section {
  display: grid;
  gap: 14px;
}

.page-list-priority-lead {
  margin: 0;
  color: #59636c;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.65;
}

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

.priority-page-card {
  position: relative;
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 148px;
  padding: 14px;
  border: 1px solid rgba(0, 157, 91, 0.16);
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.055);
}

.priority-page-card::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 16px;
  height: 16px;
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/arrow-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right.svg") center / contain no-repeat;
}

.priority-page-card span {
  width: fit-content;
  min-width: 32px;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--sl-primary);
  background: rgba(0, 157, 91, 0.08);
  font-size: 0.76rem;
  font-weight: 850;
}

.priority-page-card strong {
  padding-right: 20px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.priority-page-card em {
  color: #4f5d66;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 560;
  line-height: 1.55;
}

.priority-page-card code {
  align-self: end;
  color: #0b6b49;
  font-size: 0.72rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.page-list-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-list-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.2fr) minmax(200px, 1.3fr) minmax(220px, 1.5fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.page-list-row:first-child {
  border-top: 0;
}

.page-list-row.head {
  background: #f2f7fb;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.page-list-row strong,
.page-list-row span,
.page-list-row a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.page-list-row a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.page-list-accordion {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.055);
  overflow: hidden;
}

.page-list-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.page-list-accordion summary::-webkit-details-marker {
  display: none;
}

.page-list-accordion summary::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/arrow-down.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-down.svg") center / contain no-repeat;
  transition: transform 0.18s ease;
}

.page-list-accordion[open] summary::after {
  transform: rotate(180deg);
}

.page-list-accordion summary span {
  font-size: 0.94rem;
  font-weight: 900;
}

.page-list-accordion summary strong {
  margin-left: auto;
  color: var(--sl-primary);
  font-size: 0.82rem;
  font-weight: 850;
}

.page-list-accordion > p {
  margin: -4px 16px 14px;
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 550;
  line-height: 1.55;
}

.page-list-accordion .page-list-table {
  margin: 0 14px 14px;
}

.page-list-empty {
  margin: 0;
  color: #59636c;
  font-size: 0.82rem;
  font-weight: 650;
}

.system-spec-filter {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(0, 154, 78, 0.18);
  border-radius: 14px;
  background: #f6fbf8;
}

.system-spec-filter p {
  margin: 0;
  color: #59636c;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.55;
}

.system-spec-filter .btn {
  justify-self: start;
}

.system-spec-hide-resolved :where(.is-resolved, .system-spec-resolved-section) {
  display: none;
}

.park-submissions-v2 {
  gap: 14px;
}

.park-submissions-v2-overview,
.park-submissions-v2-panel,
.park-submissions-v2-mail,
.park-submissions-v2-flow,
.park-submissions-v2-admin-pages {
  border-radius: 18px;
}

.park-submissions-v2-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.park-submissions-v2-stats article {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 13px 14px;
  border: 1px solid var(--sl-border);
  border-radius: 14px;
  background: #fff;
}

.park-submissions-v2-stats span {
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.park-submissions-v2-stats strong {
  color: var(--sl-text);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.park-submissions-v2-stats p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.74rem;
  font-weight: 550;
  line-height: 1.45;
}

.park-submissions-v2-actions,
.park-submissions-v2-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.park-submissions-v2-filters {
  display: flex;
  gap: 8px;
  margin: 0 -4px 12px;
  padding: 0 4px 2px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.park-submissions-v2-filters button,
.park-submissions-v2-card-actions button {
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid var(--sl-border);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.park-submissions-v2-filters button.active,
.park-submissions-v2-card-actions button:first-child {
  border-color: rgba(0, 154, 78, 0.35);
  background: rgba(0, 154, 78, 0.08);
  color: var(--sl-primary);
}

.park-submissions-v2-list {
  display: grid;
  gap: 10px;
}

.park-submissions-v2-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--sl-border);
  border-radius: 16px;
  background: #fff;
}

.park-submissions-v2-check {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
}

.park-submissions-v2-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--sl-primary);
}

.park-submissions-v2-check span {
  writing-mode: vertical-rl;
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.park-submissions-v2-body {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.park-submissions-v2-card-head {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
}

.park-submissions-v2-card-head strong {
  display: block;
  color: var(--sl-text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.45;
}

.park-submissions-v2-card-head p,
.park-submissions-v2-summary,
.park-submissions-v2-card dl {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 550;
  line-height: 1.55;
}

.park-submissions-v2-status {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff5df;
  color: #f08300;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
}

.park-submissions-v2-card dl {
  display: grid;
  gap: 4px;
}

.park-submissions-v2-card dl div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 8px;
}

.park-submissions-v2-card dt {
  color: var(--sl-text);
  font-weight: 800;
}

.park-submissions-v2-card dd {
  margin: 0;
}

.park-submissions-v2-mail-box {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(0, 154, 78, 0.18);
  border-radius: 16px;
  background: #f7fbf9;
}

.park-submissions-v2-mail-box img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(98%) saturate(777%) hue-rotate(125deg) brightness(91%) contrast(101%);
}

.park-submissions-v2-mail-box strong {
  display: block;
  color: var(--sl-text);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.45;
}

.park-submissions-v2-mail-box p {
  margin: 5px 0 0;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 550;
  line-height: 1.6;
}

.park-submissions-v2-flow-list,
.park-submissions-v2-admin-list {
  display: grid;
  gap: 10px;
}

.park-submissions-v2-flow-list article {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--sl-border);
  border-radius: 16px;
  background: #fff;
}

.park-submissions-v2-flow-list a {
  justify-self: start;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(0, 154, 78, 0.28);
  border-radius: 999px;
  background: rgba(0, 154, 78, 0.07);
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 850;
}

.park-submissions-v2-flow-list p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.65;
}

.park-submissions-v2-flow-list p strong {
  margin-right: 8px;
  color: var(--sl-text);
  font-weight: 900;
}

.park-submissions-v2-admin-list {
  grid-template-columns: 1fr;
}

.park-submissions-v2-admin-list a {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 12px 36px 12px 13px;
  border: 1px solid var(--sl-border);
  border-radius: 14px;
  background: #fff;
}

.park-submissions-v2-admin-list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
}

.park-submissions-v2-admin-list span {
  color: var(--sl-text);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.park-submissions-v2-admin-list p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.5;
}

.pref-card {
  min-height: 86px;
  flex-basis: auto;
}

.pref-card:hover,
.park-item:hover {
  border-color: #b7dce9;
  box-shadow: 0 16px 30px rgba(18, 58, 98, 0.1);
}

.rank-list,
.detail-list,
.official-links {
  display: grid;
  gap: 10px;
}

.rank-item,
.detail-list div,
.official-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(220, 232, 238, 0.9);
}

a.rank-item,
a.official-link {
  padding-right: 22px;
}

a.rank-item::after,
a.official-link::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
}

.rank-item span,
.rank-item strong,
.detail-list span,
.detail-list strong,
.official-link span,
.official-link strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.rank-item:last-child,
.detail-list div:last-child,
.official-link:last-child {
  border-bottom: 0;
}

.rank-item strong,
.detail-list strong,
.official-link strong {
  color: #123a62;
}

.detail-list span,
.official-link span {
  color: var(--muted);
  font-weight: 850;
}

.detail-sublist {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  width: min(100%, 230px);
  margin: 0;
}

.detail-sublist dt,
.detail-sublist dd {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
}

.detail-sublist dt {
  color: var(--muted);
  font-weight: 850;
}

.detail-sublist dd {
  color: #123a62;
  font-weight: 950;
  text-align: right;
  overflow-wrap: anywhere;
}

.official-link.disabled {
  opacity: 0.55;
}

.subtle-link-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 0 2px 8px;
}

.subtle-link-row a {
  color: #9aa8b1;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.data-updated {
  margin: 12px 0 0;
  color: #9aa8b1;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
}

.compact-select {
  max-width: 150px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfc;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.log-mini {
  flex-basis: 168px;
}

.log-mini em,
.compact-log em {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #edf4f7;
  color: #607481;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
}

.compact-log-list {
  display: grid;
  gap: 10px;
}

.compact-log {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px 12px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.compact-log::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
}

.compact-log:last-child {
  border-bottom: 0;
}

.compact-log span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.compact-log strong {
  overflow-wrap: anywhere;
}

.compact-log small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef2;
  margin: 8px 0;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #0c77ae;
}

.mini-map {
  margin-bottom: 14px;
}

@media (min-width: 901px) {
  .nav {
    display: flex;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    overflow: visible;
    justify-content: center;
  }

  .nav a {
    min-width: auto;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 0.86rem;
  }

  .nav a::before {
    display: none;
  }

  .bottom-nav {
    display: none;
  }

  .header-inner {
    min-height: 62px;
    grid-template-columns: auto 1fr;
    padding: 0 18px;
  }

  .brand {
    min-height: 62px;
    justify-content: flex-start;
    background: transparent;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.86);
  }

  .main,
  .site-header,
  .footer {
    width: min(100%, 960px);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .bottom-nav {
    display: grid;
  }
}

@media (max-width: 560px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .main,
  .header-inner,
  .footer-inner {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .page-title,
  .section,
  .content-stack,
  .app-layout,
  .grid,
  .stat-row {
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
  }

  .app-layout > .content-stack {
    padding-inline: 14px;
  }

  .panel {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    overflow-wrap: anywhere;
  }

  .section-head,
  .toolbar,
  .footer-inner {
    flex-direction: column;
  }

  .friend-link-card .toolbar {
    flex-direction: row;
    align-items: center;
  }

  .friend-link-card .toolbar > div {
    min-width: 0;
    flex: 1;
  }

  .friend-link-card .tag {
    flex: 0 0 auto;
    margin-left: 0;
    white-space: nowrap;
  }

  .btn {
    max-width: 100%;
    width: auto;
    white-space: normal;
  }

  .bottom-nav {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    transform: none;
  }

  .home-profile {
    grid-template-columns: 70px minmax(0, 1fr) 42px;
    padding-inline: 14px;
    width: 100%;
    max-width: 100%;
  }

  .home-avatar {
    width: 68px;
    height: 68px;
  }

  .notification-item {
    grid-template-columns: 1fr auto;
  }

  .notification-icon {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .share-avatar {
    width: 62px;
    height: 62px;
    font-size: 1.16rem;
  }

  .share-sheet {
    padding: 22px 14px 16px;
  }

  .qr-frame {
    width: min(100%, 320px);
    padding: 10px;
  }

  .share-sheet .mock-qr {
    width: 100%;
    max-width: 280px;
    gap: 0;
    padding: 8px;
  }

  .share-help {
    font-size: 0.88rem;
  }

  .share-actions {
    gap: 10px;
  }

  .share-action {
    min-height: 64px;
    padding: 11px 12px;
  }

  .share-action strong {
    font-size: 0.98rem;
  }

  .share-action span {
    font-size: 0.78rem;
  }

  .badge-card {
    grid-template-columns: 1fr;
  }

  .badge-card .badge-medal {
    width: 100%;
    min-width: 0;
  }

  .pref-grid {
    grid-template-columns: 1fr;
  }

  .timeline-actions,
  .filter-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .profile-v2-card {
    margin: -72px 14px 0;
    padding: 0 0 14px;
  }

  .profile-v3-appbar {
    min-height: 44px;
    padding: 10px 18px 4px;
  }

  .profile-v2-cover {
    height: 226px;
  }

  .profile-v3-cover-copy {
    width: min(45%, 190px);
    padding-top: 26px;
    padding-right: 16px;
  }

  .profile-v3-cover-copy span {
    font-size: 1.34rem;
  }

  .profile-v3-cover-copy strong {
    font-size: 0.74rem;
  }

  .profile-v2-head {
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
  }

  .profile-v2-avatar {
    width: 92px;
    height: 92px;
    outline-width: 3px;
  }

  .profile-v3-name-row h1 {
    font-size: 1.78rem;
  }

  .profile-v2-edit {
    min-height: 34px;
    padding-inline: 11px;
  }

  .profile-v2-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-v2-stats > * {
    min-height: 78px;
  }

  .profile-v3-hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-v3-goal-inner {
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 14px;
  }

  .profile-v3-goal-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 0.62rem;
  }

  .toolbar,
  .inline-head,
  .friend-log-head,
  .compact-log,
  .rank-item,
  .detail-list div,
  .official-link {
    max-width: 100%;
    min-width: 0;
  }

  .toolbar > *,
  .inline-head > *,
  .friend-log-head > *,
  .compact-log > *,
  .rank-item > *,
  .detail-list div > *,
  .official-link > * {
    min-width: 0;
  }

  .h-scroll {
    max-width: 100%;
    margin-inline: 0;
  }

  .filter-row .btn,
  .timeline-actions .btn,
  .like-button,
  .check-pill {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .guest-flow,
  .guest-link-grid,
  .guest-split-panel {
    grid-template-columns: 1fr;
  }

  .guest-split-panel > .btn {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .guest-app-visual {
    padding: 16px;
  }

  .guest-phone {
    width: 100%;
    border-radius: 20px;
  }

  .guest-feature-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }

  .guest-flow article,
  .guest-split-panel,
  .guest-cta-panel,
  .guest-link-grid a {
    padding: 14px;
  }

  .guest-cta-panel .hero-actions,
  .guest-split-panel > .btn {
    width: 100%;
  }
}

body[data-page="profile"] {
  background: #f4f6f7;
  font-size: 108%;
  color: #111820;
}

body[data-page="profile"] .site-header {
  display: none;
}

body[data-page="profile"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

body[data-page="profile"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="profile"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 11px;
  align-items: center;
  text-align: left;
}

body[data-page="profile"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.35;
  text-align: left;
}

body[data-page="profile"] .profile-v3-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="profile"] .profile-v3-section-icon.is-history {
  mask-image: url("/assets/icons/bold/calendar.svg");
  -webkit-mask-image: url("/assets/icons/bold/calendar.svg");
}

body[data-page="profile"] .profile-v3-section-icon.is-summary {
  mask-image: url("/assets/icons/bold/chart.svg");
  -webkit-mask-image: url("/assets/icons/bold/chart.svg");
}

body[data-page="profile"] .profile-v3-section-icon.is-visited {
  mask-image: url("/assets/icons/bold/location-tick.svg");
  -webkit-mask-image: url("/assets/icons/bold/location-tick.svg");
}

body[data-page="profile"] .profile-v3-section-icon.is-favorite {
  background: #ff3d33;
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

body[data-page="profile"] .profile-v3-section-icon.is-style {
  mask-image: url("/assets/icons/bold/status.svg");
  -webkit-mask-image: url("/assets/icons/bold/status.svg");
}

body[data-page="profile"] .compact-select {
  min-height: 28px;
  padding: 3px 20px 3px 7px;
  border-color: transparent;
  background-color: transparent;
  color: var(--sl-primary);
  font-size: 0.76rem;
  font-weight: 950;
}

body[data-page="profile"] .profile-v3-appbar {
  position: sticky;
  top: 0;
  min-height: 38px;
  padding: 7px 19px 2px;
  background: rgba(255, 255, 255, 0.96);
}

body[data-page="profile"] .profile-v3-appbar > i {
  top: 6px;
  width: 90px;
  height: 26px;
}

body[data-page="profile"] .profile-v2-hero {
  padding-bottom: 0;
}

body[data-page="profile"] .profile-v2-cover {
  position: relative;
  height: 224px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #e9f8fb;
}

body[data-page="profile"] .profile-v2-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 116px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82) 62%, #fff 100%);
  pointer-events: none;
}

body[data-page="profile"] .profile-v3-hero-skater {
  inset: 0 auto auto 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: translateX(-50%);
}

body[data-page="profile"] .profile-v3-cover-copy {
  display: none;
}

body[data-page="profile"] .profile-v3-cover-copy span {
  color: #ffb400;
  font-size: 1.45rem;
  line-height: 0.9;
}

body[data-page="profile"] .profile-v3-cover-copy strong {
  display: none;
}

body[data-page="profile"] .profile-v2-card {
  position: relative;
  gap: 12px;
  margin: -66px 12px 0;
  padding: 0 0 15px;
}

body[data-page="profile"] .profile-v2-head {
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 8px;
  align-items: end;
}

body[data-page="profile"] .profile-v2-avatar {
  width: 80px;
  height: 80px;
  border-width: 4px;
  outline: 3px solid var(--sl-primary);
  background: #0b0d10;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.22);
}

body[data-page="profile"] .profile-v3-name-row {
  margin-bottom: 0;
}

body[data-page="profile"] .profile-v3-name-row h1 {
  color: #111820;
  font-size: 1.56rem;
  line-height: 1.02;
}

body[data-page="profile"] .profile-v3-name-row span {
  display: none;
}

body[data-page="profile"] .profile-v3-id-text {
  color: #4f5a64;
  font-size: 0.7rem;
  line-height: 1.2;
}

body[data-page="profile"] .profile-v3-id-button {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  margin-top: 7px;
  padding: 5px 12px;
  border: 1px solid rgba(10, 163, 95, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 5px 13px rgba(17, 17, 17, 0.08);
}

body[data-page="profile"] .profile-v3-id-button::before {
  content: "";
  width: 15px;
  height: 15px;
  background: currentColor;
  mask: url("/assets/icons/linear/card.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/card.svg") center / contain no-repeat;
}

body[data-page="profile"] .profile-v2-edit {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(223, 228, 232, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.12);
}

body[data-page="profile"] .profile-v2-edit::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("/assets/icons/linear/edit-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/edit-2.svg") center / contain no-repeat;
}

body[data-page="profile"] .profile-v2-settings {
  position: absolute;
  top: 7px;
  right: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(223, 228, 232, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #4f5a64;
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.1);
}

body[data-page="profile"] .profile-v2-settings::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("/assets/icons/linear/setting.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/setting.svg") center / contain no-repeat;
}

body[data-page="profile"] .profile-v3-hero-actions {
  --cta-row-columns: repeat(2, minmax(0, 1fr));
  --cta-row-gap: 8px;
  --cta-row-radius: 999px;
  --cta-base-height: 32px;
  --cta-base-bg: #fff;
  --cta-base-border: rgba(10, 163, 95, 0.2);
  --cta-base-color: var(--sl-primary);
  --cta-base-font-size: 0.72rem;
  --cta-base-font-weight: 900;

  --cta-primary-height: 36px;
  --cta-primary-font-size: 0.74rem;
  --cta-primary-font-weight: 900;
  --cta-primary-bg: linear-gradient(135deg, var(--sl-primary), #0c77ae);
  --cta-primary-color: #ffffff;
  --cta-primary-border: transparent;

  --cta-secondary-height: 32px;
  --cta-secondary-font-size: 0.72rem;
  --cta-secondary-font-weight: 900;
  --cta-secondary-bg: #fff;
  --cta-secondary-color: var(--sl-primary);
  --cta-secondary-border: rgba(10, 163, 95, 0.2);

  width: 100%;
  margin: 4px 0 0;
}

body[data-page="profile"] .profile-v3-hero-actions .cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: var(--cta-base-height);
  min-width: 0;
  padding: 6px 10px;
  border-radius: var(--cta-row-radius);
  border: 1px solid var(--cta-border-color, var(--cta-secondary-border));
  background: var(--cta-bg-color, var(--cta-secondary-bg));
  color: var(--cta-text-color, var(--cta-secondary-color));
  text-decoration: none;
  font-size: var(--cta-font-size, var(--cta-secondary-font-size));
  font-weight: var(--cta-font-weight, var(--cta-secondary-font-weight));
  line-height: 1;
  box-shadow: 0 5px 13px rgba(17, 17, 17, 0.08);
  transition: transform 0.15s ease, filter 0.15s ease;
}

body[data-page="profile"] .profile-v3-hero-actions .cta-action::before {
  content: none;
}

body[data-page="profile"] .profile-v3-medal-list {
  gap: 9px 5px;
  padding: 11px 10px 11px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.05);
}

body[data-page="profile"] .profile-v3-badge-section-head {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 1px;
}

body[data-page="profile"] .profile-v3-badge-section-head .profile-v3-badge-title {
  margin: 0;
  color: #111820;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.2;
}

body[data-page="profile"] .profile-v3-medal-see-all {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-self: end;
  color: var(--sl-primary);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="profile"] .profile-v3-medal-see-all::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

body[data-page="profile"] .profile-v3-medal-see-all.is-icon-circle-arrow::after {
  mask-image: url("/assets/icons/linear/arrow-right-2.svg");
  -webkit-mask-image: url("/assets/icons/linear/arrow-right-2.svg");
}

body[data-page="profile"] .profile-v3-medal-list a {
  grid-template-rows: 40px minmax(1.25em, auto);
  gap: 5px;
  align-content: start;
  font-size: 0.56rem;
  line-height: 1.15;
}

body[data-page="profile"] .profile-v3-badge-art {
  display: grid;
  place-items: center;
  width: 42px;
  height: 40px;
  margin: 0 auto;
}

body[data-page="profile"] .profile-v3-badge-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(17, 17, 17, 0.13));
}

body[data-page="profile"] .profile-v3-medal-list a > span:last-child {
  display: block;
  min-height: 1.25em;
  overflow: visible;
  line-height: 1.15;
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges {
  display: block;
  grid-column: 1 / -1;
  grid-template-rows: none;
  gap: 0;
  min-width: 0;
  margin-top: 8px;
  border: 1px solid rgba(255, 193, 7, 0.82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 193, 7, 0.45) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 22%, rgba(255, 193, 7, 0.72) 0 4px, transparent 5px),
    #fffdf5;
  box-shadow: none;
  color: inherit;
  font-size: 1rem;
  line-height: 1;
  text-align: left;
}

body[data-page="profile"] .profile-v3-profile-badges .profile-v3-medal-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="profile"] .profile-v3-style-card {
  padding: 14px;
}

body[data-page="profile"] .profile-v3-style-card .section-head {
  margin-bottom: 10px;
}

body[data-page="profile"] .profile-v3-style-card .section-head h2 {
  color: #111820;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.25;
}

body[data-page="profile"] .profile-v3-style-card .profile-v2-tags {
  gap: 7px;
}

body[data-page="profile"] .profile-v3-style-card .profile-v2-tags span {
  min-height: 27px;
  padding: 5px 10px;
  border: 1px solid #e8eef1;
  background: #f7faf9;
  color: #4d5963;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.2;
}

body[data-page="profile"] .profile-v3-section-icon.is-badge {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/cup.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/cup.svg") center / contain no-repeat;
}

body[data-page="profile"] .profile-v3-profile-badges .is-locked img {
  filter: grayscale(0.15) drop-shadow(0 4px 6px rgba(17, 17, 17, 0.1));
  opacity: 0.78;
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges::before,
body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges::after {
  top: 14px;
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges::before {
  right: 122px;
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges::after {
  right: 40px;
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges .profile-v3-next-goal-inner {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 12px 16px 12px 14px;
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges .profile-v3-next-goal-board {
  width: 58px;
  max-width: none;
  justify-self: center;
  transform: rotate(-8deg);
  filter: drop-shadow(0 4px 6px rgba(17, 17, 17, 0.14));
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges .profile-v3-next-goal-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges .profile-v3-next-goal-copy span {
  min-height: 0;
  color: #59636c;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.1;
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges .profile-v3-next-goal-copy strong {
  color: #111820;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges .profile-v3-next-goal-copy i {
  width: 100%;
  min-width: 0;
  height: 11px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe3e6;
  box-shadow:
    inset 0 1px 2px rgba(17, 17, 17, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.95);
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges .profile-v3-next-goal-copy b {
  display: block;
  width: 30%;
  min-width: 0;
  height: 100%;
  border-radius: inherit;
  background: #0aa35f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 1px 3px rgba(10, 163, 95, 0.24);
}

body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges .profile-v3-next-goal-inner em {
  justify-self: end;
  margin-top: 0;
  min-width: 72px;
  color: #111820;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

body[data-page="profile"] .profile-v3-medal-list i {
  width: 38px;
  height: 35px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  box-shadow: 0 5px 12px rgba(17, 17, 17, 0.12);
}

body[data-page="profile"] .profile-v3-medal-list a:nth-child(1) i {
  background: linear-gradient(145deg, #ff3d33, #ff7a45);
}

body[data-page="profile"] .profile-v3-medal-list a:nth-child(2) i {
  background: linear-gradient(145deg, #008d4b, #13b96d);
}

body[data-page="profile"] .profile-v3-medal-list a:nth-child(3) i {
  background: linear-gradient(145deg, #ff554a, #ff8b79);
}

body[data-page="profile"] .profile-v3-medal-list a:nth-child(4) i {
  background: linear-gradient(145deg, #0d75bb, #2e9ce5);
}

body[data-page="profile"] .profile-v3-medal-list-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  box-shadow: none;
  padding: 3px 0 0;
}

body[data-page="profile"] .profile-v3-badge-title {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

body[data-page="profile"] .profile-v3-badge-title span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/cup.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/cup.svg") center / contain no-repeat;
}

body[data-page="profile"] .profile-v2-stats {
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.05);
}

body[data-page="profile"] .profile-v2-stats > * {
  min-height: 54px;
  padding: 8px;
}

body[data-page="profile"] .profile-v2-stats strong {
  font-size: 1.18rem;
}

body[data-page="profile"] .profile-v2-stats span {
  font-size: 0.68rem;
}

body[data-page="profile"] .profile-v2-stack {
  padding: 0 15px 98px;
  gap: 14px;
}

body[data-page="profile"] .profile-v3-info-card {
  padding: 10px 15px;
}

body[data-page="profile"] .profile-v3-info-card a,
body[data-page="profile"] .profile-v3-info-card div {
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 36px;
}

body[data-page="profile"] .profile-v3-info-card span,
body[data-page="profile"] .profile-v3-info-card strong {
  font-size: 0.74rem;
}

body[data-page="profile"] .profile-v3-info-card span {
  color: #59636c;
}

body[data-page="profile"] .profile-v3-info-card strong {
  color: #111820;
}

body[data-page="profile"] .profile-v3-info-card span {
  position: static;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-left: 0;
  white-space: nowrap;
}

body[data-page="profile"] .profile-v3-info-card span::before {
  content: none;
}

body[data-page="profile"] .profile-v3-info-card span img {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(942%) hue-rotate(123deg) brightness(91%) contrast(93%);
}

body[data-page="profile"] .profile-v3-info-card div:nth-child(3) strong {
  justify-self: end;
  min-width: 48px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ff8a00;
  color: #fff;
  text-align: center;
}

body[data-page="profile"] .profile-v3-next-goal {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1.5px solid rgba(255, 194, 54, 0.58);
  border-radius: 14px;
  background:
    radial-gradient(circle at 7% 30%, rgba(255, 201, 40, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 77%, rgba(255, 201, 40, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 24%, rgba(255, 201, 40, 0.28) 0 2px, transparent 3px),
    linear-gradient(102deg, #fff9eb 0%, #fffdf8 48%, #fff 100%);
  box-shadow:
    0 8px 20px rgba(255, 193, 7, 0.1),
  inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

body[data-page="profile"] .profile-v3-next-goal::before,
body[data-page="profile"] .profile-v3-next-goal::after {
  content: "✦";
  position: absolute;
  z-index: 1;
  color: #ffc928;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 2px 7px rgba(255, 193, 7, 0.24);
  pointer-events: none;
}

body[data-page="profile"] .profile-v3-next-goal::before {
  right: 64px;
  top: 17px;
}

body[data-page="profile"] .profile-v3-next-goal::after {
  right: 18px;
  top: 22px;
  font-size: 0.86rem;
}

body[data-page="profile"] .profile-v3-next-goal-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 92px;
  padding: 13px 14px 13px 10px;
  color: inherit;
}

body[data-page="profile"] .profile-v3-next-goal-board {
  width: 92px;
  max-width: none;
  justify-self: start;
  transform: translateX(-3px) rotate(-7deg);
  filter: drop-shadow(0 6px 8px rgba(17, 17, 17, 0.16));
}

body[data-page="profile"] .profile-v3-next-goal-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding-top: 1px;
}

body[data-page="profile"] .profile-v3-next-goal-copy span {
  color: #1f252b;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
}

body[data-page="profile"] .profile-v3-next-goal-copy strong {
  color: #111820;
  font-size: 1.3rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.12;
}

body[data-page="profile"] .profile-v3-next-goal-copy i {
  display: block;
  height: 9px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e8e8;
  box-shadow: inset 0 1px 2px rgba(17, 17, 17, 0.08);
}

body[data-page="profile"] .profile-v3-next-goal-copy b {
  display: block;
  width: 30%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0a9858, #12b86d);
  box-shadow: 0 1px 4px rgba(10, 163, 95, 0.24);
}

body[data-page="profile"] .profile-v3-next-goal-inner em {
  align-self: center;
  margin-top: 10px;
  color: #111820;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.profile-v3-see-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
  color: var(--sl-primary);
  font-size: 0.64rem;
  font-weight: 950;
  white-space: nowrap;
}

.profile-v3-see-all::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

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

body[data-page="profile"] .profile-v3-summary-year {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-self: end;
  color: var(--sl-primary);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="profile"] .profile-v3-summary-year::after {
  content: "⌄";
  font-size: 0.92rem;
  line-height: 0.8;
}

body[data-page="profile"] .profile-v3-summary-filter {
  justify-self: end;
  margin-left: 12px;
}

body[data-page="profile"] .profile-v3-summary-filter .compact-select {
  min-height: 26px;
  padding: 2px 18px 2px 4px;
  color: var(--sl-primary);
  font-size: 0.86rem;
  font-weight: 950;
  text-align: right;
  text-align-last: right;
}

body[data-page="profile"] .profile-v3-summary-card {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  min-height: 68px;
  padding: 9px 10px;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 13px;
  background: #fff;
  color: inherit;
  box-shadow: 0 5px 14px rgba(17, 17, 17, 0.04);
}

body[data-page="profile"] .profile-v3-summary-card.is-like {
  border-color: rgba(255, 194, 54, 0.7);
  background:
    radial-gradient(circle at 90% 24%, rgba(255, 193, 7, 0.25) 0 3px, transparent 4px),
    radial-gradient(circle at 82% 78%, rgba(255, 193, 7, 0.18) 0 2px, transparent 3px),
    linear-gradient(120deg, #fff, #fff9ec);
}

body[data-page="profile"] .profile-v3-summary-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--sl-primary);
  font-style: normal;
  line-height: 1;
}

body[data-page="profile"] .profile-v3-summary-icon::before {
  content: "";
  width: 17px;
  height: 17px;
  background: currentColor;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="profile"] .profile-v3-summary-icon.is-calendar::before {
  mask-image: url("/assets/icons/linear/calendar.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar.svg");
}

body[data-page="profile"] .profile-v3-summary-icon.is-location::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="profile"] .profile-v3-summary-icon.is-heart {
  color: #ff3d33;
}

body[data-page="profile"] .profile-v3-summary-icon.is-heart::before {
  mask-image: url("/assets/icons/linear/heart.svg");
  -webkit-mask-image: url("/assets/icons/linear/heart.svg");
}

body[data-page="profile"] .profile-v3-summary-card span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

body[data-page="profile"] .profile-v3-summary-card small {
  color: #59636c;
  font-size: 0.69rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

body[data-page="profile"] .profile-v3-summary-card strong {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  color: #111820;
  font-size: 1.38rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="profile"] .profile-v3-summary-card em {
  color: #222a31;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

body[data-page="profile"] .profile-v3-summary-ribbon {
  position: absolute;
  right: 10px;
  bottom: 13px;
  min-width: 39px;
  padding: 4px 11px 4px 7px;
  border-radius: 3px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 7px) 50%, 100% 100%, 0 100%);
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.16);
}

body[data-page="profile"] .profile-v3-summary-ribbon::after {
  content: none;
}

body[data-page="profile"] .profile-v3-summary-ribbon.is-blue {
  min-width: 44px;
  padding-right: 13px;
  background: #1787c7;
}

body[data-page="profile"] .profile-v3-summary-ribbon.is-yellow {
  background: #ffb300;
}

.profile-v3-activity-card {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 9px;
  border: 1px solid #edf0f2;
  border-radius: 10px;
  background: #fff;
  color: inherit;
  text-align: center;
  box-shadow: 0 5px 12px rgba(17, 17, 17, 0.04);
}

.profile-v3-activity-card > span {
  color: #111;
  font-size: 0.64rem;
  font-weight: 950;
}

.profile-v3-activity-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
}

.profile-v3-activity-card strong {
  display: -webkit-box;
  min-height: 2.45em;
  overflow: hidden;
  color: #111;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.profile-v3-activity-card small {
  color: #59636c;
  font-size: 0.62rem;
  font-weight: 850;
}

.profile-v3-count-card i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff7dc, #ffd66b);
  color: #111;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 950;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.profile-v3-next-card i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 34px;
  margin: 0 auto;
  border: 2px solid #ffc107;
  border-radius: 15px;
  background: linear-gradient(145deg, #078f51, #13b96d);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.65);
  color: #111;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 950;
  transform: rotate(-10deg);
}

.profile-v3-next-card b {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ebee;
}

.profile-v3-next-card em {
  display: block;
  width: 30%;
  height: 100%;
  border-radius: inherit;
  background: var(--sl-primary);
}

.profile-v3-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 9px;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 12px;
  background: #fff;
}

.profile-v3-kpi-strip div {
  display: grid;
  gap: 2px;
  min-height: 52px;
  align-content: center;
  text-align: center;
}

.profile-v3-kpi-strip div + div {
  border-left: 1px solid #edf0f2;
}

.profile-v3-kpi-strip strong {
  color: #111;
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1;
}

.profile-v3-kpi-strip span {
  color: #333;
  font-size: 0.62rem;
  font-weight: 850;
}

body[data-page="profile"] .profile-v2-log {
  grid-template-columns: 76px minmax(0, 1fr) 12px;
  min-height: 82px;
  padding: 9px 0;
}

body[data-page="profile"] .profile-v2-log img {
  aspect-ratio: 4 / 3;
  border-radius: 9px;
}

body[data-page="profile"] .profile-v2-log div {
  position: relative;
  gap: 4px;
  padding-right: 28px;
}

body[data-page="profile"] .profile-v2-log strong {
  color: #111820;
  font-size: 0.74rem;
  line-height: 1.35;
}

body[data-page="profile"] .profile-v2-log span,
body[data-page="profile"] .profile-v2-log small {
  color: #59636c;
  font-size: 0.68rem;
}

body[data-page="profile"] .profile-v2-log .profile-v3-log-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}

body[data-page="profile"] .profile-v3-log-meta i {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: #59636c;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
}

body[data-page="profile"] .profile-v3-log-meta i::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: currentColor;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="profile"] .profile-v3-log-meta .is-calendar::before {
  mask-image: url("/assets/icons/linear/calendar.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar.svg");
}

body[data-page="profile"] .profile-v3-log-meta .is-clock::before {
  mask-image: url("/assets/icons/linear/clock-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/clock-1.svg");
}

body[data-page="profile"] .profile-v2-log small {
  padding: 0;
  background: transparent;
  color: #59636c;
}

body[data-page="profile"] .profile-v3-log-like {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  gap: 3px;
  align-items: center;
  color: #ff3d33;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="profile"] .profile-v3-log-like::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("/assets/icons/linear/heart.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/heart.svg") center / contain no-repeat;
}

body[data-page="profile"] .profile-v2-park-scroll,
body[data-page="profile"] .profile-v3-visited-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

body[data-page="profile"] .profile-v3-visited-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 9px;
}

body[data-page="profile"] .profile-v2-park-card img {
  border-radius: 9px;
}

body[data-page="profile"] .profile-v2-park-card strong,
body[data-page="profile"] .profile-v3-visited-grid strong {
  color: #111820;
  font-size: 0.7rem;
  line-height: 1.28;
}

body[data-page="profile"] .profile-v2-park-card {
  gap: 6px;
}

body[data-page="profile"] .profile-v2-park-card span,
body[data-page="profile"] .profile-v3-visited-grid span {
  color: #59636c;
  font-size: 0.66rem;
  line-height: 1.15;
}

body[data-page="profile"] .profile-v3-visited-grid a {
  gap: 6px;
  text-align: left;
}

body[data-page="profile"] .profile-v3-medal-list-wide a {
  grid-template-rows: 48px minmax(2.4em, auto);
  gap: 5px;
}

body[data-page="profile"] .profile-v3-medal-list-wide i {
  width: 40px;
  height: 37px;
}

body[data-page="profile"] .profile-v3-medal-list-wide .profile-v3-badge-art {
  width: 52px;
  height: 48px;
}

body[data-page="profile"] .profile-v2-summary {
  padding-bottom: 13px;
}

body[data-page="profile"] .profile-v2-summary .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

body[data-page="profile"] .profile-v2-summary .section-head > div {
  min-width: 0;
  text-align: left;
}

body[data-page="profile"] .profile-v2-summary .section-head h2 {
  text-align: left;
}

body[data-page="profile"] .profile-v2-summary .section-head form {
  flex: 0 0 auto;
  margin-left: 12px;
  justify-self: end;
  text-align: right;
}

body[data-page="profile"] .profile-v2-summary .compact-select {
  text-align: right;
  text-align-last: right;
}

body[data-page="profile"] .profile-v3-friend-now {
  overflow: hidden;
}

body[data-page="profile"] .profile-v3-friend-now h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

body[data-page="profile"] .profile-v3-friend-now h2 span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/flash.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/flash.svg") center / contain no-repeat;
}

body[data-page="profile"] .profile-v3-friend-scroll {
  display: flex;
  gap: 18px;
  margin: 0 -16px;
  padding: 1px 16px 3px;
  overflow-x: auto;
  scrollbar-width: none;
}

body[data-page="profile"] .profile-v3-friend-scroll::-webkit-scrollbar {
  display: none;
}

body[data-page="profile"] .profile-v3-friend-avatar {
  position: relative;
  display: grid;
  flex: 0 0 62px;
  gap: 7px;
  justify-items: center;
  color: inherit;
  text-align: center;
}

body[data-page="profile"] .profile-v3-friend-photo {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(145deg, #0b8f57, #69c8df);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 950;
  box-shadow: 0 5px 13px rgba(17, 17, 17, 0.12);
}

body[data-page="profile"] .profile-v3-friend-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="profile"] .profile-v3-friend-avatar.is-you .profile-v3-friend-photo {
  border-color: var(--sl-primary);
  box-shadow:
    0 0 0 3px rgba(10, 163, 95, 0.22),
    0 5px 13px rgba(17, 17, 17, 0.12);
}

body[data-page="profile"] .profile-v3-friend-avatar i {
  position: absolute;
  top: 43px;
  right: 2px;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--sl-primary);
  box-shadow: 0 2px 5px rgba(17, 17, 17, 0.16);
}

body[data-page="profile"] .profile-v3-friend-avatar strong {
  max-width: 72px;
  overflow: hidden;
  color: #111820;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="profile"] .profile-v3-friend-avatar small {
  max-width: 72px;
  overflow: hidden;
  color: #59636c;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="profile"] .profile-v3-add-card {
  display: none;
}

body[data-page="profile"] .profile-v3-link-list {
  display: none;
}

body[data-page="profile"] .profile-v2-gear-list {
  gap: 0;
}

body[data-page="profile"] .profile-v2-gear-list div {
  min-height: 36px;
  padding: 6px 0;
}

body[data-page="profile"] .profile-v2-gear-list span,
body[data-page="profile"] .profile-v2-gear-list strong {
  font-size: 0.74rem;
}

body[data-page="profile"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
}

body[data-page="profile"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

body[data-page="profile"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: currentColor;
  line-height: 1;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="profile"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="profile"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="profile"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="profile"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="profile"] .bottom-nav a[data-nav="home"].active::before,
body[data-page="profile"] .bottom-nav a[data-nav="home"]:active::before {
  mask-image: url("/assets/icons/bold/home-2.svg");
  -webkit-mask-image: url("/assets/icons/bold/home-2.svg");
}

body[data-page="profile"] .bottom-nav a[data-nav="timeline"].active::before,
body[data-page="profile"] .bottom-nav a[data-nav="timeline"]:active::before {
  mask-image: url("/assets/icons/bold/document-text.svg");
  -webkit-mask-image: url("/assets/icons/bold/document-text.svg");
}

body[data-page="profile"] .bottom-nav a[data-nav="checkin"].active::before,
body[data-page="profile"] .bottom-nav a[data-nav="checkin"]:active::before {
  mask-image: url("/assets/icons/bold/location.svg");
  -webkit-mask-image: url("/assets/icons/bold/location.svg");
}

body[data-page="profile"] .bottom-nav a[data-nav="parks"].active::before,
body[data-page="profile"] .bottom-nav a[data-nav="parks"]:active::before {
  mask-image: url("/assets/icons/bold/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/bold/search-normal.svg");
}

body[data-page="profile"] .bottom-nav a[data-nav="profile"].active::before,
body[data-page="profile"] .bottom-nav a[data-nav="profile"]:active::before {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body[data-page="profile"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="profile"] .bottom-nav a.active::before {
  color: var(--sl-primary);
}

body[data-page="profile"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="profile"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="profile"] .bottom-nav .bottom-checkin.active::before,
body[data-page="profile"] .bottom-nav .bottom-checkin:active::before {
  mask-image: url("/assets/icons/bold/location.svg");
  -webkit-mask-image: url("/assets/icons/bold/location.svg");
}

body[data-page="profile"] .site-header,
body[data-page="profile"] .bottom-nav {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body[data-page="profile"] .bottom-nav {
  background: #fff;
}

body[data-page="profile"] .profile-v3-hero-skater,
body[data-page="profile"] .profile-v3-badge-art img,
body[data-page="profile"] .profile-v3-profile-badges .is-locked img,
body[data-page="profile"] .profile-v3-medal-list .profile-v3-next-goal-in-badges .profile-v3-next-goal-board,
body[data-page="profile"] .profile-v3-next-goal-board,
body[data-page="profile"] .profile-v3-gear-setup-card img {
  filter: none;
}

body[data-page="profile"] .profile-v3-medal-list a,
body[data-page="profile"] .profile-v3-next-goal-copy span,
body[data-page="profile"] .profile-v2-stats span,
body[data-page="profile"] .profile-v3-info-card span,
body[data-page="profile"] .profile-v3-summary-card small,
body[data-page="profile"] .profile-v3-summary-card em,
body[data-page="profile"] .profile-v3-summary-ribbon,
body[data-page="profile"] .profile-v3-log-meta i,
body[data-page="profile"] .profile-v2-log span,
body[data-page="profile"] .profile-v2-log small,
body[data-page="profile"] .profile-v2-park-card span,
body[data-page="profile"] .profile-v3-visited-grid span,
body[data-page="profile"] .profile-v3-friend-avatar strong,
body[data-page="profile"] .bottom-nav a {
  font-weight: 700;
}

body[data-page="profile"] .profile-v3-see-all,
body[data-page="profile"] .profile-v3-medal-see-all {
  font-weight: 800;
}

body[data-page="profile"] .profile-v2-stack .section-head small {
  display: block;
  margin-top: 3px;
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 750;
}

body[data-page="parks"] {
  background: #f4f6f7;
  color: #111820;
  font-size: 108%;
}

body[data-page="parks"] .site-header {
  display: none;
}

body[data-page="parks"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #f4f6f7;
}

body[data-page="parks"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="parks"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="parks"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="parks"] .parks-v2-hero {
  display: grid;
  gap: 14px;
  padding: 18px 15px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 247, 0.96)),
    url("/assets/parks/generated/search-page-hero.svg") center / cover no-repeat;
}

body[data-page="parks"] .parks-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="parks"] .parks-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="parks"] .parks-v2-title-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/icons/bold/search-normal.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/search-normal.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-v2-title p {
  margin: 0 0 2px;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="parks"] .parks-v2-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.08;
}

body[data-page="parks"] .parks-v2-search {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 44px;
  padding: 5px 5px 5px 12px;
  border: 1px solid #e1e7eb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
}

body[data-page="parks"] .parks-v2-search > span {
  width: 18px;
  height: 18px;
  background: #59636c;
  mask: url("/assets/icons/linear/search-normal.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/search-normal.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-v2-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111820;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
}

body[data-page="parks"] .parks-v2-search input::placeholder {
  color: #7b858e;
  font-weight: 700;
}

body[data-page="parks"] .parks-v2-search button {
  min-height: 34px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
}

body[data-page="parks"] .parks-v2-filter {
  display: flex;
  gap: 8px;
  margin: 0 -15px;
  padding: 0 15px 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

body[data-page="parks"] .parks-v2-filter::-webkit-scrollbar {
  display: none;
}

body[data-page="parks"] .parks-v2-filter a {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 8px 12px;
  border: 1px solid #e1e7eb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="parks"] .parks-v2-filter a.active {
  border-color: rgba(0, 154, 78, 0.24);
  background: #eaf8f1;
  color: var(--sl-primary);
  font-weight: 900;
}

body[data-page="parks"] .parks-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="parks"] .parks-v2-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
  padding: 12px;
}

body[data-page="parks"] .parks-v2-quick a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 3px 9px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid #edf0f2;
  border-radius: 12px;
  color: inherit;
}

body[data-page="parks"] .parks-v2-quick i {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eaf8f1;
}

body[data-page="parks"] .parks-v2-quick i::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 7px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="parks"] .parks-v2-quick .is-location::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="parks"] .parks-v2-quick .is-heart::before {
  background: #ff3d33;
  mask-image: url("/assets/icons/linear/heart.svg");
  -webkit-mask-image: url("/assets/icons/linear/heart.svg");
}

body[data-page="parks"] .parks-v2-quick span {
  color: #111820;
  font-size: 0.77rem;
  font-weight: 900;
  line-height: 1.2;
}

body[data-page="parks"] .parks-v2-quick b {
  color: #59636c;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.2;
}

body[data-page="parks"] .parks-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="parks"] .parks-v2-section-icon.is-map {
  mask-image: url("/assets/icons/bold/map.svg");
  -webkit-mask-image: url("/assets/icons/bold/map.svg");
}

body[data-page="parks"] .parks-v2-section-icon.is-region {
  mask-image: url("/assets/icons/bold/global.svg");
  -webkit-mask-image: url("/assets/icons/bold/global.svg");
}

body[data-page="parks"] .parks-v2-section-icon.is-news {
  mask-image: url("/assets/icons/bold/document-text.svg");
  -webkit-mask-image: url("/assets/icons/bold/document-text.svg");
}

body[data-page="parks"] .parks-v2-section-icon.is-favorite {
  background: #ff3d33;
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

body[data-page="parks"] .parks-v2-see-all {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-self: end;
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="parks"] .parks-v2-see-all::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-v2-card-list {
  display: grid;
  gap: 12px;
}

body[data-page="parks"] .parks-v2-park-card {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: inherit;
}

body[data-page="parks"] .parks-v2-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe7eb;
}

body[data-page="parks"] .parks-v2-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="parks"] .parks-v2-image-wrap i {
  position: absolute;
  top: 7px;
  left: 7px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 8px rgba(17, 17, 17, 0.14);
}

body[data-page="parks"] .parks-v2-image-wrap i::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #7b858e;
  mask: url("/assets/icons/linear/heart.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/heart.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-v2-image-wrap i.is-favorite::before {
  background: #ff3d33;
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

body[data-page="parks"] .parks-v2-image-wrap b {
  position: absolute;
  right: 7px;
  bottom: 7px;
  max-width: calc(100% - 14px);
  padding: 4px 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 24, 32, 0.72);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="parks"] .parks-v2-card-body {
  display: grid;
  min-width: 0;
  gap: 6px;
}

body[data-page="parks"] .parks-v2-card-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111820;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="parks"] .parks-v2-card-body small,
body[data-page="parks"] .parks-v2-card-body em {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  align-items: center;
  color: #59636c;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

body[data-page="parks"] .parks-v2-card-body small i,
body[data-page="parks"] .parks-v2-card-body em i {
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="parks"] .parks-v2-card-body .is-location {
  color: var(--sl-primary);
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="parks"] .parks-v2-card-body .is-clock {
  mask-image: url("/assets/icons/linear/clock-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/clock-1.svg");
}

body[data-page="parks"] .parks-v2-card-body em span {
  color: #111820;
  font-weight: 800;
}

body[data-page="parks"] .parks-v2-popular-prefs .section-head {
  margin-bottom: 13px;
}

body[data-page="parks"] .parks-v2-pref-chips {
  display: flex;
  gap: 10px;
  margin: 0 -2px;
  padding: 1px 2px 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

body[data-page="parks"] .parks-v2-pref-chips::-webkit-scrollbar {
  display: none;
}

body[data-page="parks"] .parks-v2-pref-chips a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 34px;
  padding: 8px 17px;
  border: 1.5px solid rgba(0, 154, 78, 0.58);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 154, 78, 0.06);
  white-space: nowrap;
}

body[data-page="parks"] .parks-v2-region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 13px;
}

body[data-page="parks"] .parks-v2-region-grid a {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 12px;
  gap: 7px;
  align-items: center;
  min-height: 78px;
  padding: 10px 9px;
  border: 1px solid #edf0f2;
  border-radius: 13px;
  background: #fff;
  color: inherit;
  box-shadow: 0 2px 10px rgba(17, 24, 32, 0.05);
}

body[data-page="parks"] .parks-v2-region-grid img {
  width: 50px;
  height: 44px;
  object-fit: contain;
}

body[data-page="parks"] .parks-v2-region-grid a > span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

body[data-page="parks"] .parks-v2-region-grid strong {
  color: #111820;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.22;
}

body[data-page="parks"] .parks-v2-region-grid em {
  color: #59636c;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

body[data-page="parks"] .parks-v2-region-grid i {
  width: 12px;
  height: 12px;
  background: #111820;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-v2-open-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="parks"] .parks-v2-open-grid a {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 118px;
  align-content: start;
  overflow: hidden;
  padding: 11px 10px 13px;
  border: 1px solid #edf0f2;
  border-radius: 13px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 47%, rgba(255, 255, 255, 0.64) 68%, rgba(255, 255, 255, 0.2) 100%),
    var(--open-image) right bottom / 80% auto no-repeat,
    #fff;
  color: inherit;
  box-shadow: 0 2px 10px rgba(17, 24, 32, 0.06);
}

body[data-page="parks"] .parks-v2-open-grid b {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 4px 7px;
  border-radius: 5px;
  background: #ff8a00;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
}

body[data-page="parks"] .parks-v2-open-grid strong {
  position: relative;
  z-index: 1;
  max-width: 106px;
  color: #111820;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.45;
}

body[data-page="parks"] .parks-v2-open-grid span {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #111820;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="parks"] .parks-v2-link-list {
  display: grid;
  gap: 0;
}

body[data-page="parks"] .parks-v2-link-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  gap: 4px 10px;
  align-items: center;
  min-height: 50px;
  padding: 8px 0;
  border-top: 1px solid #edf0f2;
  color: inherit;
}

body[data-page="parks"] .parks-v2-link-list a:first-child {
  border-top: 0;
}

body[data-page="parks"] .parks-v2-link-list a::after {
  content: "";
  grid-column: 2;
  grid-row: span 2;
  width: 16px;
  height: 16px;
  background: #111820;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-v2-link-list strong {
  grid-column: 1;
  color: #111820;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
}

body[data-page="parks"] .parks-v2-link-list span {
  grid-column: 1;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

body[data-page="parks"] .parks-column-v2-hero {
  display: grid;
  gap: 14px;
  padding: 16px 15px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 246, 247, 0.98)),
    url("/assets/parks/park-street.png") center / cover no-repeat;
}

body[data-page="parks"] .parks-column-v2-back {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(0, 154, 78, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="parks"] .parks-column-v2-back::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-left-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-left-2.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-column-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="parks"] .parks-column-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="parks"] .parks-column-v2-title-icon::before {
  content: "";
  width: 23px;
  height: 23px;
  background: #fff;
  mask: url("/assets/icons/bold/calendar-add.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/calendar-add.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-column-v2-title p {
  margin: 0 0 3px;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="parks"] .parks-column-v2-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.34rem;
  font-weight: 950;
  line-height: 1.18;
}

body[data-page="parks"] .parks-column-v2-lead {
  margin: 0;
  color: #39434c;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
}

body[data-page="parks"] .parks-column-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}

body[data-page="parks"] .parks-column-v2-stats span {
  display: grid;
  gap: 3px;
  min-height: 58px;
  align-content: center;
  text-align: center;
}

body[data-page="parks"] .parks-column-v2-stats span + span {
  border-left: 1px solid #edf0f2;
}

body[data-page="parks"] .parks-column-v2-stats strong {
  color: #111820;
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="parks"] .parks-column-v2-stats small {
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="parks"] .parks-column-v2-month-grid {
  display: flex;
  gap: 8px;
  margin: 0 -16px;
  padding: 0 16px 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

body[data-page="parks"] .parks-column-v2-month-grid::-webkit-scrollbar {
  display: none;
}

body[data-page="parks"] .parks-column-v2-month-grid a {
  display: grid;
  flex: 0 0 112px;
  gap: 5px;
  min-height: 56px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid #edf0f2;
  border-radius: 13px;
  background: #fff;
  color: inherit;
}

body[data-page="parks"] .parks-column-v2-month-grid strong {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

body[data-page="parks"] .parks-column-v2-month-grid span {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="parks"] .parks-column-v2-card-list {
  display: grid;
  gap: 0;
}

body[data-page="parks"] .parks-column-v2-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 16px;
  gap: 11px;
  align-items: center;
  min-height: 92px;
  padding: 10px 0;
  border-top: 1px solid #edf0f2;
  color: inherit;
}

body[data-page="parks"] .parks-column-v2-card:first-child {
  border-top: 0;
  padding-top: 0;
}

body[data-page="parks"] .parks-column-v2-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe7eb;
}

body[data-page="parks"] .parks-column-v2-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="parks"] .parks-column-v2-thumb b {
  position: absolute;
  right: 6px;
  bottom: 6px;
  max-width: calc(100% - 12px);
  padding: 4px 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 24, 32, 0.72);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="parks"] .parks-column-v2-card-body {
  display: grid;
  min-width: 0;
  gap: 5px;
}

body[data-page="parks"] .parks-column-v2-card-body em {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--sl-primary);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

body[data-page="parks"] .parks-column-v2-card-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111820;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="parks"] .parks-column-v2-card-body small {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

body[data-page="parks"] .parks-column-v2-card-body small i {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/location.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/location.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-column-v2-arrow {
  width: 16px;
  height: 16px;
  background: #111820;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2 {
  background: #f4f6f7;
}

body[data-page="parks"] .park-detail-v2-hero {
  display: grid;
  gap: 12px;
  padding: 12px 15px 14px;
  background: #fff;
}

body[data-page="parks"] .park-detail-v2-back {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(0, 154, 78, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="parks"] .park-detail-v2-back::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-left-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-left-2.svg") center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2-cover {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #dfe7eb;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
}

body[data-page="parks"] .park-detail-v2-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, rgba(17, 24, 32, 0), rgba(17, 24, 32, 0.48));
  pointer-events: none;
}

body[data-page="parks"] .park-detail-v2-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="parks"] .park-detail-v2-cover span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  max-width: calc(100% - 20px);
  padding: 6px 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--sl-primary);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="parks"] .park-detail-v2-photo-credit {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: fit-content;
  max-width: 100%;
  margin: -4px 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(0, 154, 78, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #28333b;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 0 6px 16px rgba(17, 24, 32, 0.08);
}

body[data-page="parks"] .park-detail-v2-photo-credit a {
  color: var(--sl-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body[data-page="parks"] .park-detail-v2-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: start;
}

body[data-page="parks"] .park-detail-v2-head p {
  margin: 0 0 5px;
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
}

body[data-page="parks"] .park-detail-v2-head h1 {
  margin: 0;
  color: #111820;
  font-size: 1.34rem;
  font-weight: 950;
  line-height: 1.2;
}

body[data-page="parks"] .park-detail-v2-correction {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #fff;
  color: #111820;
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.1);
}

body[data-page="parks"] .park-detail-v2-correction::before {
  content: "";
  width: 17px;
  height: 17px;
  background: currentColor;
  mask: url("/assets/icons/linear/edit-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/edit-2.svg") center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="parks"] .park-detail-v2-actions a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
}

body[data-page="parks"] .park-detail-v2-actions a::before {
  content: "";
  width: 17px;
  height: 17px;
  background: currentColor;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2-primary {
  background: var(--sl-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="parks"] .park-detail-v2-actions .park-detail-v2-primary::before {
  mask: url("/assets/icons/bold/map.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/map.svg") center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2-secondary {
  border: 1px solid #dfe4e8;
  background: #fff;
  color: #111820;
}

body[data-page="parks"] .park-detail-v2-actions .park-detail-v2-secondary::before {
  mask: url("/assets/icons/linear/location.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/location.svg") center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  padding: 0;
}

body[data-page="parks"] .park-detail-v2-summary div {
  display: grid;
  gap: 5px;
  min-height: 78px;
  align-content: center;
  justify-items: center;
  padding: 10px 6px;
  text-align: center;
}

body[data-page="parks"] .park-detail-v2-summary div + div {
  border-left: 1px solid #edf0f2;
}

body[data-page="parks"] .park-detail-v2-summary i {
  width: 18px;
  height: 18px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2-summary .is-fee {
  mask-image: url("/assets/icons/linear/ticket.svg");
  -webkit-mask-image: url("/assets/icons/linear/ticket.svg");
}

body[data-page="parks"] .park-detail-v2-summary .is-open {
  mask-image: url("/assets/icons/linear/calendar-tick.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar-tick.svg");
}

body[data-page="parks"] .park-detail-v2-summary .is-parking {
  mask-image: url("/assets/icons/linear/car.svg");
  -webkit-mask-image: url("/assets/icons/linear/car.svg");
}

body[data-page="parks"] .park-detail-v2-summary span {
  color: #59636c;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
}

body[data-page="parks"] .park-detail-v2-summary strong {
  color: #111820;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}

body[data-page="parks"] .park-detail-v2-about p {
  margin: 0;
  color: #333b44;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.75;
}

body[data-page="parks"] .park-detail-v2-about p + p {
  margin-top: 10px;
}

body[data-page="parks"] .park-detail-v2-detail-list {
  display: grid;
  gap: 0;
}

body[data-page="parks"] .park-detail-v2-detail-list div {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 8px 0;
  border-top: 1px solid #edf0f2;
}

body[data-page="parks"] .park-detail-v2-detail-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

body[data-page="parks"] .park-detail-v2-detail-list span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.25;
}

body[data-page="parks"] .park-detail-v2-detail-list i {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2-detail-list .is-location {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="parks"] .park-detail-v2-detail-list .is-phone {
  mask-image: url("/assets/icons/linear/call.svg");
  -webkit-mask-image: url("/assets/icons/linear/call.svg");
}

body[data-page="parks"] .park-detail-v2-detail-list .is-clock {
  mask-image: url("/assets/icons/linear/clock-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/clock-1.svg");
}

body[data-page="parks"] .park-detail-v2-detail-list .is-fee {
  mask-image: url("/assets/icons/linear/ticket.svg");
  -webkit-mask-image: url("/assets/icons/linear/ticket.svg");
}

body[data-page="parks"] .park-detail-v2-detail-list .is-parking {
  mask-image: url("/assets/icons/linear/car.svg");
  -webkit-mask-image: url("/assets/icons/linear/car.svg");
}

body[data-page="parks"] .park-detail-v2-detail-list .is-status {
  mask-image: url("/assets/icons/linear/verify.svg");
  -webkit-mask-image: url("/assets/icons/linear/verify.svg");
}

body[data-page="parks"] .park-detail-v2-detail-list strong {
  color: #111820;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

body[data-page="parks"] .park-detail-v2-info .data-updated {
  margin: 10px 0 0;
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 700;
  text-align: right;
}

body[data-page="parks"] .park-detail-v2-official-links {
  display: grid;
  gap: 0;
}

body[data-page="parks"] .park-detail-v2-official-links .official-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 8px 0;
  border-top: 1px solid #edf0f2;
  color: inherit;
}

body[data-page="parks"] .park-detail-v2-official-links .official-link::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/global.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/global.svg") center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2-official-links .official-link.is-instagram::before {
  mask-image: url("/assets/icons/linear/instagram.svg");
  -webkit-mask-image: url("/assets/icons/linear/instagram.svg");
}

body[data-page="parks"] .park-detail-v2-official-links .official-link.is-x::before {
  mask-image: url("/assets/icons/linear/link-2.svg");
  -webkit-mask-image: url("/assets/icons/linear/link-2.svg");
}

body[data-page="parks"] .park-detail-v2-official-links .official-link.is-facebook::before {
  mask-image: url("/assets/icons/linear/facebook.svg");
  -webkit-mask-image: url("/assets/icons/linear/facebook.svg");
}

body[data-page="parks"] .park-detail-v2-official-links .official-link:first-child {
  border-top: 0;
  padding-top: 0;
}

body[data-page="parks"] .park-detail-v2-official-links .official-link::after {
  display: none;
}

body[data-page="parks"] .park-detail-v2-official-links .official-link.disabled::after {
  display: none;
}

body[data-page="parks"] .park-detail-v2-official-links span {
  color: #111820;
  font-size: 0.74rem;
  font-weight: 700;
}

body[data-page="parks"] .park-detail-v2-official-links strong {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-self: end;
  color: var(--sl-primary);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="parks"] .park-detail-v2-official-links strong::after {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2-official-links .disabled span,
body[data-page="parks"] .park-detail-v2-official-links .disabled strong {
  color: #98a2aa;
}

body[data-page="parks"] .park-detail-v2-official-links .disabled::before {
  background: #c7ced4;
}

body[data-page="parks"] .park-detail-v2-favorite p {
  margin: 0 0 12px;
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.55;
}

body[data-page="parks"] .park-detail-v2-favorite .inline-form + p {
  margin-top: 12px;
}

body[data-page="parks"] .park-detail-v2-favorite .actions {
  display: block;
}

body[data-page="parks"] .park-detail-v2-favorite .inline-form,
body[data-page="parks"] .park-detail-v2-favorite .inline-form button {
  width: 100%;
}

body[data-page="parks"] .park-detail-v2-favorite .btn {
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

body[data-page="parks"] .park-detail-v2-recent-riders {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #edf0f2;
}

body[data-page="parks"] .park-detail-v2-recent-riders-head {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

body[data-page="parks"] .park-detail-v2-recent-riders-head strong {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

body[data-page="parks"] .park-detail-v2-recent-riders-head span {
  flex: 0 0 auto;
  color: #8a949e;
  font-size: 0.62rem;
  font-weight: 750;
}

body[data-page="parks"] .park-detail-v2-recent-rider-list {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

body[data-page="parks"] .park-detail-v2-recent-rider-list::-webkit-scrollbar {
  display: none;
}

body[data-page="parks"] .park-detail-v2-recent-rider-list a {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: center;
  max-width: 145px;
  padding: 6px 8px 6px 6px;
  border: 1px solid #edf0f2;
  border-radius: 999px;
  background: #f7f9fa;
  color: inherit;
}

body[data-page="parks"] .park-detail-v2-recent-rider-list img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  object-fit: cover;
}

body[data-page="parks"] .park-detail-v2-recent-rider-list span {
  display: grid;
  min-width: 0;
  gap: 1px;
}

body[data-page="parks"] .park-detail-v2-recent-rider-list b,
body[data-page="parks"] .park-detail-v2-recent-rider-list small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="parks"] .park-detail-v2-recent-rider-list b {
  color: #111820;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.1;
}

body[data-page="parks"] .park-detail-v2-recent-rider-list small {
  color: #8a949e;
  font-size: 0.58rem;
  font-weight: 750;
}

body[data-page="parks"] .park-detail-v2-recent-riders p {
  margin: 0;
  color: #8a949e;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.45;
}

body[data-page="gear"] {
  background: #f4f6f7;
  color: #111820;
  font-size: 108%;
}

body[data-page="gear"] .site-header {
  display: none;
}

body[data-page="gear"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #f4f6f7;
}

body[data-page="gear"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="gear"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="gear"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="gear"] .gear-v2-hero {
  display: grid;
  gap: 14px;
  padding: 16px 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 247, 0.98)),
    url("/assets/parks/park-street.png") center / cover no-repeat;
}

body[data-page="gear"] .gear-v2-back {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111820;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="gear"] .gear-v2-back::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
}

body[data-page="gear"] .gear-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="gear"] .gear-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="gear"] .gear-v2-title-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/icons/bold/setting-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/setting-2.svg") center / contain no-repeat;
}

body[data-page="gear"] .gear-v2-title p,
body[data-page="gear"] .gear-v2-hero > p {
  margin: 0;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
}

body[data-page="gear"] .gear-v2-title h1 {
  margin: 2px 0 0;
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.08;
}

body[data-page="gear"] .gear-v2-stack,
body[data-page="gear"] .gear-v2-form {
  gap: 14px;
}

body[data-page="gear"] .gear-v2-stack {
  padding: 0 15px;
}

body[data-page="gear"] .gear-v2-form {
  display: grid;
}

body[data-page="gear"] .gear-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="gear"] .gear-v2-section-icon.is-board {
  mask-image: url("/assets/icons/bold/setting-2.svg");
  -webkit-mask-image: url("/assets/icons/bold/setting-2.svg");
}

body[data-page="gear"] .gear-v2-section-icon.is-edit {
  mask-image: url("/assets/icons/bold/edit-2.svg");
  -webkit-mask-image: url("/assets/icons/bold/edit-2.svg");
}

body[data-page="gear"] .gear-v2-section-icon.is-note {
  mask-image: url("/assets/icons/bold/document-text.svg");
  -webkit-mask-image: url("/assets/icons/bold/document-text.svg");
}

body[data-page="gear"] .gear-v2-board-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 193, 7, 0.46);
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 193, 7, 0.25) 0 9px, transparent 10px),
    #fffdf5;
}

body[data-page="gear"] .gear-v2-board-card img {
  width: 92px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 4px 5px rgba(17, 17, 17, 0.16));
}

body[data-page="gear"] .gear-v2-board-card span,
body[data-page="gear"] .gear-v2-board-card small {
  display: block;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.35;
}

body[data-page="gear"] .gear-v2-board-card strong {
  display: block;
  margin: 3px 0;
  color: #111820;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.25;
}

body[data-page="gear"] .gear-v2-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="gear"] .gear-v2-field {
  display: grid;
  gap: 6px;
}

body[data-page="gear"] .gear-v2-field.is-full {
  grid-column: 1 / -1;
}

body[data-page="gear"] .gear-v2-field span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-page="gear"] .gear-v2-field i {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="gear"] .gear-v2-field .is-deck {
  mask-image: url("/assets/icons/linear/menu-board.svg");
  -webkit-mask-image: url("/assets/icons/linear/menu-board.svg");
}

body[data-page="gear"] .gear-v2-field .is-truck {
  mask-image: url("/assets/icons/linear/setting-2.svg");
  -webkit-mask-image: url("/assets/icons/linear/setting-2.svg");
}

body[data-page="gear"] .gear-v2-field .is-wheel {
  mask-image: url("/assets/icons/linear/record-circle.svg");
  -webkit-mask-image: url("/assets/icons/linear/record-circle.svg");
}

body[data-page="gear"] .gear-v2-field .is-bearing {
  mask-image: url("/assets/icons/linear/setting-3.svg");
  -webkit-mask-image: url("/assets/icons/linear/setting-3.svg");
}

body[data-page="gear"] .gear-v2-field .is-shoes {
  mask-image: url("/assets/icons/linear/brush.svg");
  -webkit-mask-image: url("/assets/icons/linear/brush.svg");
}

body[data-page="gear"] .gear-v2-field .is-note {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="gear"] .gear-v2-field input,
body[data-page="gear"] .gear-v2-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #dfe4e8;
  border-radius: 10px;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

body[data-page="gear"] .gear-v2-field textarea {
  min-height: 86px;
  resize: vertical;
}

body[data-page="gear"] .gear-v2-note {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

body[data-page="gear"] .gear-v2-note p {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="gear"] .gear-v2-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

body[data-page="gear"] .gear-v2-actions button,
body[data-page="gear"] .gear-v2-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

body[data-page="gear"] .gear-v2-actions button {
  border: 0;
  background: var(--sl-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="gear"] .gear-v2-actions a {
  border: 1px solid #dfe4e8;
  background: #fff;
  color: #111820;
}

body[data-page="gear"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="gear"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="gear"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="gear"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="gear"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="gear"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="gear"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="gear"] .bottom-nav a[data-nav="profile"].active::before,
body[data-page="gear"] .bottom-nav a[data-nav="profile"]:active::before {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body[data-page="gear"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="gear"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="gear"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

@media (min-width: 431px) {
  body[data-page="gear"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="gear"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media (max-width: 360px) {
  body[data-page="gear"] .gear-v2-fields {
    grid-template-columns: 1fr;
  }
}

body[data-page="profile-edit"] {
  background: #f4f6f7;
  color: #111820;
  font-size: 108%;
}

body[data-page="profile-edit"] .site-header {
  display: none;
}

body[data-page="profile-edit"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #f4f6f7;
}

body[data-page="profile-edit"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="profile-edit"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="profile-edit"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="profile-edit"] .profile-edit-v2-hero {
  display: grid;
  gap: 14px;
  padding: 16px 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 247, 0.98)),
    url("/assets/profile/profile-cover-default.jpg") center / cover no-repeat;
}

body[data-page="profile-edit"] .profile-edit-v2-back {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111820;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="profile-edit"] .profile-edit-v2-back::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
}

body[data-page="profile-edit"] .profile-edit-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="profile-edit"] .profile-edit-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="profile-edit"] .profile-edit-v2-title-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/icons/bold/edit-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/edit-2.svg") center / contain no-repeat;
}

body[data-page="profile-edit"] .profile-edit-v2-title p,
body[data-page="profile-edit"] .profile-edit-v2-hero > p {
  margin: 0;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
}

body[data-page="profile-edit"] .profile-edit-v2-title h1 {
  margin: 2px 0 0;
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.08;
}

body[data-page="profile-edit"] .profile-edit-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="profile-edit"] .profile-edit-v2-preview {
  overflow: hidden;
  padding: 0;
}

body[data-page="profile-edit"] .profile-edit-v2-cover {
  position: relative;
  height: 118px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 55, 83, 0.08), rgba(9, 55, 83, 0.16)),
    #dceff7;
  background-size: cover;
  background-position: center;
}

body[data-page="profile-edit"] .profile-edit-v2-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
}

body[data-page="profile-edit"] .profile-edit-v2-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="profile-edit"] .profile-edit-v2-preview-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px 14px;
  background: #fff;
}

body[data-page="profile-edit"] .profile-edit-v2-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-top: -36px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 999px;
  outline: 3px solid var(--sl-primary);
  background: #0b0d10;
  color: #fff;
  font-size: 1.24rem;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.18);
}

body[data-page="profile-edit"] .profile-edit-v2-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="profile-edit"] .profile-edit-v2-preview-head h2,
body[data-page="profile-edit"] .profile-edit-v2-preview-head p {
  margin: 0;
}

body[data-page="profile-edit"] .profile-edit-v2-preview-head h2 {
  color: #111820;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.15;
}

body[data-page="profile-edit"] .profile-edit-v2-preview-head p {
  margin-top: 3px;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
}

body[data-page="profile-edit"] .profile-edit-v2-form {
  display: grid;
  gap: 14px;
}

body[data-page="profile-edit"] .profile-edit-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="profile-edit"] .profile-edit-v2-section-icon.is-image {
  mask-image: url("/assets/icons/bold/gallery.svg");
  -webkit-mask-image: url("/assets/icons/bold/gallery.svg");
}

body[data-page="profile-edit"] .profile-edit-v2-section-icon.is-user {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body[data-page="profile-edit"] .profile-edit-v2-section-icon.is-privacy {
  mask-image: url("/assets/icons/bold/security-safe.svg");
  -webkit-mask-image: url("/assets/icons/bold/security-safe.svg");
}

body[data-page="profile-edit"] .profile-edit-v2-section-icon.is-style {
  mask-image: url("/assets/icons/bold/status.svg");
  -webkit-mask-image: url("/assets/icons/bold/status.svg");
}

body[data-page="profile-edit"] .profile-edit-v2-upload-list {
  display: grid;
  gap: 10px;
}

body[data-page="profile-edit"] .profile-edit-v2-upload {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

body[data-page="profile-edit"] .profile-edit-v2-upload > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eaf8f1;
}

body[data-page="profile-edit"] .profile-edit-v2-upload > span::before {
  content: "";
  width: 21px;
  height: 21px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="profile-edit"] .profile-edit-v2-upload .is-avatar::before {
  mask-image: url("/assets/icons/linear/camera.svg");
  -webkit-mask-image: url("/assets/icons/linear/camera.svg");
}

body[data-page="profile-edit"] .profile-edit-v2-upload .is-cover::before {
  mask-image: url("/assets/icons/linear/gallery.svg");
  -webkit-mask-image: url("/assets/icons/linear/gallery.svg");
}

body[data-page="profile-edit"] .profile-edit-v2-upload strong,
body[data-page="profile-edit"] .profile-edit-v2-upload small {
  display: block;
}

body[data-page="profile-edit"] .profile-edit-v2-upload strong {
  color: #111820;
  font-size: 0.82rem;
  font-weight: 850;
}

body[data-page="profile-edit"] .profile-edit-v2-upload small {
  margin-top: 3px;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.45;
}

body[data-page="profile-edit"] .profile-edit-v2-upload input[type="file"] {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 3px 0;
  color: #59636c;
  font-size: 0.74rem;
  line-height: 1.4;
}

body[data-page="profile-edit"] .profile-edit-v2-upload input[type="file"]::file-selector-button {
  min-height: 28px;
  margin-right: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(0, 154, 78, 0.24);
  border-radius: 999px;
  background: #f5fbf8;
  color: var(--sl-primary);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
}

body[data-page="profile-edit"] .profile-edit-v2-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="profile-edit"] .profile-edit-v2-field {
  display: grid;
  gap: 6px;
}

body[data-page="profile-edit"] .profile-edit-v2-field.is-full {
  grid-column: 1 / -1;
}

body[data-page="profile-edit"] .profile-edit-v2-field label {
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-page="profile-edit"] .profile-edit-v2-field input,
body[data-page="profile-edit"] .profile-edit-v2-field select,
body[data-page="profile-edit"] .profile-edit-v2-readonly {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #dfe4e8;
  border-radius: 10px;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

body[data-page="profile-edit"] .profile-edit-v2-readonly {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  background: #f7f9fa;
}

body[data-page="profile-edit"] .profile-edit-v2-readonly span {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 650;
}

body[data-page="profile-edit"] .profile-edit-v2-section-note {
  margin: -2px 0 12px;
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.55;
}

body[data-page="profile-edit"] .profile-edit-v2-section-note.is-after {
  margin: 10px 0 0;
}

body[data-page="profile-edit"] .profile-edit-v2-style-title {
  margin: 12px 0 8px;
  color: #111820;
  font-size: 0.82rem;
  font-weight: 950;
}

body[data-page="profile-edit"] .profile-edit-v2-privacy-list {
  display: grid;
  gap: 12px;
}

body[data-page="profile-edit"] .profile-edit-v2-privacy-row {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 12px;
  background: #fff;
}

body[data-page="profile-edit"] .profile-edit-v2-privacy-row legend {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 0;
}

body[data-page="profile-edit"] .profile-edit-v2-privacy-row legend strong {
  color: #111820;
  font-size: 0.82rem;
  font-weight: 850;
}

body[data-page="profile-edit"] .profile-edit-v2-privacy-row legend small {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.45;
}

body[data-page="profile-edit"] .profile-edit-v2-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

body[data-page="profile-edit"] .profile-edit-v2-choice-grid label,
body[data-page="profile-edit"] .profile-edit-v2-style-grid label {
  cursor: pointer;
}

body[data-page="profile-edit"] .profile-edit-v2-choice-grid input,
body[data-page="profile-edit"] .profile-edit-v2-style-grid input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body[data-page="profile-edit"] .profile-edit-v2-choice-grid span {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 7px 5px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #fff;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
}

body[data-page="profile-edit"] .profile-edit-v2-choice-grid input:checked + span {
  border-color: rgba(0, 154, 78, 0.38);
  background: #eaf8f1;
  color: var(--sl-primary);
  font-weight: 850;
}

body[data-page="profile-edit"] .profile-edit-v2-style-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-page="profile-edit"] .profile-edit-v2-style-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #fff;
  color: #111820;
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.1;
}

body[data-page="profile-edit"] .profile-edit-v2-style-grid input:checked + span {
  border-color: rgba(0, 154, 78, 0.4);
  background: #eaf8f1;
  color: var(--sl-primary);
  box-shadow: inset 0 0 0 1px rgba(0, 154, 78, 0.08);
}

body[data-page="profile-edit"] .profile-edit-v2-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding-bottom: 2px;
}

body[data-page="profile-edit"] .profile-edit-v2-actions button,
body[data-page="profile-edit"] .profile-edit-v2-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

body[data-page="profile-edit"] .profile-edit-v2-actions button {
  border: 0;
  background: var(--sl-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="profile-edit"] .profile-edit-v2-actions a {
  border: 1px solid #dfe4e8;
  background: #fff;
  color: #111820;
}

body[data-page="profile-edit"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="profile-edit"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="profile-edit"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="profile-edit"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="profile-edit"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="profile-edit"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="profile-edit"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="profile-edit"] .bottom-nav a[data-nav="profile"].active::before,
body[data-page="profile-edit"] .bottom-nav a[data-nav="profile"]:active::before {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body[data-page="profile-edit"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="profile-edit"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="profile-edit"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

@media (min-width: 431px) {
  body[data-page="profile-edit"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="profile-edit"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media (max-width: 360px) {
  body[data-page="profile-edit"] .profile-edit-v2-fields {
    grid-template-columns: 1fr;
  }
}

body[data-page="notifications"] {
  background: #f4f6f7;
  color: #111820;
  font-size: 108%;
}

body[data-page="notifications"] .site-header {
  display: none;
}

body[data-page="notifications"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #f4f6f7;
}

body[data-page="notifications"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="notifications"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="notifications"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="notifications"] .notifications-v2-hero {
  display: grid;
  gap: 14px;
  padding: 16px 15px;
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 154, 78, 0.14) 0 42px, transparent 43px),
    radial-gradient(circle at 12% 92%, rgba(255, 193, 7, 0.18) 0 36px, transparent 37px),
    linear-gradient(180deg, #ffffff, #f3faf6);
}

body[data-page="notifications"] .notifications-v2-back {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111820;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="notifications"] .notifications-v2-back::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
}

body[data-page="notifications"] .notifications-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="notifications"] .notifications-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="notifications"] .notifications-v2-title-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/icons/bold/notification.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/notification.svg") center / contain no-repeat;
}

body[data-page="notifications"] .notifications-v2-title p {
  margin: 0 0 2px;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="notifications"] .notifications-v2-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.08;
}

body[data-page="notifications"] .notifications-v2-hero > p {
  margin: 0;
  color: #39434c;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
}

body[data-page="notifications"] .notifications-v2-counts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="notifications"] .notifications-v2-counts span {
  display: grid;
  min-height: 58px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid #e1e7eb;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
}

.settings-v2-toggle-form {
  margin: 0;
}

.settings-v2-toggle-form label {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 62px;
  padding: 11px 12px;
  border-bottom: 1px solid #edf1f3;
  color: inherit;
}

.settings-v2-toggle-form strong,
.settings-v2-toggle-form small {
  grid-column: 2;
  min-width: 0;
}

.settings-v2-toggle-form strong {
  color: #111820;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
}

.settings-v2-toggle-form small {
  color: #6b747c;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.settings-v2-toggle-form input[type="checkbox"] {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.settings-v2-toggle-form i {
  grid-column: 3;
  position: relative;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: #d8dee3;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 32, 0.08);
  transition: background 0.18s ease;
}

.settings-v2-toggle-form i::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 24, 32, 0.2);
  transition: transform 0.18s ease;
}

.settings-v2-toggle-form input[type="checkbox"]:checked + i {
  background: var(--sl-primary);
}

.settings-v2-toggle-form input[type="checkbox"]:checked + i::before {
  transform: translateX(18px);
}

body[data-page="notifications"] .notifications-v2-counts strong {
  color: #111820;
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="notifications"] .notifications-v2-counts small {
  margin-top: 4px;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 700;
}

body[data-page="notifications"] .notifications-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="notifications"] .notifications-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="notifications"] .notifications-v2-section-icon.is-notification {
  mask-image: url("/assets/icons/bold/notification.svg");
  -webkit-mask-image: url("/assets/icons/bold/notification.svg");
}

body[data-page="notifications"] .notifications-v2-section-icon.is-info {
  mask-image: url("/assets/icons/bold/info-circle.svg");
  -webkit-mask-image: url("/assets/icons/bold/info-circle.svg");
}

body[data-page="notifications"] .notifications-v2-see-all {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: auto;
  min-height: auto;
  padding: 7px 10px;
  color: var(--sl-primary);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid #d7dde1;
  background: #ffffff;
}

body[data-page="notifications"] .notifications-v2-list {
  display: grid;
  gap: 0;
}

body[data-page="notifications"] .notifications-v2-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f2;
  color: inherit;
}

body[data-page="notifications"] .notifications-v2-item:last-child {
  border-bottom: 0;
}

body[data-page="notifications"] .notifications-v2-item.unread::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -5px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sl-primary);
}

body[data-page="notifications"] .notifications-v2-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eaf8f1;
}

body[data-page="notifications"] .notifications-v2-icon::before {
  content: "";
  width: 21px;
  height: 21px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="notifications"] .notifications-v2-icon.is-follow::before {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body[data-page="notifications"] .notifications-v2-icon.is-like {
  background: #fff5f4;
}

body[data-page="notifications"] .notifications-v2-icon.is-like::before {
  background: #ff3b30;
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

body[data-page="notifications"] .notifications-v2-icon.is-badge {
  background: #fff8df;
}

body[data-page="notifications"] .notifications-v2-icon.is-badge::before {
  background: #ffb300;
  mask-image: url("/assets/icons/bold/cup.svg");
  -webkit-mask-image: url("/assets/icons/bold/cup.svg");
}

body[data-page="notifications"] .notifications-v2-icon.is-notification::before {
  mask-image: url("/assets/icons/bold/notification.svg");
  -webkit-mask-image: url("/assets/icons/bold/notification.svg");
}

body[data-page="notifications"] .notifications-v2-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

body[data-page="notifications"] .notifications-v2-copy b {
  color: var(--sl-primary);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="notifications"] .notifications-v2-copy strong {
  color: #111820;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
}

body[data-page="notifications"] .notifications-v2-copy small {
  display: -webkit-box;
  overflow: hidden;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="notifications"] .notifications-v2-item em {
  align-self: start;
  margin-top: 4px;
  color: #59636c;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 650;
  white-space: nowrap;
}

body[data-page="notifications"] .notifications-v2-note {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

body[data-page="notifications"] .notifications-v2-note p {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="notifications"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="notifications"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="notifications"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="notifications"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="notifications"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="notifications"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="notifications"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="notifications"] .bottom-nav a[data-nav="home"].active::before,
body[data-page="notifications"] .bottom-nav a[data-nav="home"]:active::before {
  mask-image: url("/assets/icons/bold/home-2.svg");
  -webkit-mask-image: url("/assets/icons/bold/home-2.svg");
}

body[data-page="notifications"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="notifications"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="notifications"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

@media (min-width: 431px) {
  body[data-page="notifications"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="notifications"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

body[data-page="home"] {
  background: #f4f6f7;
  color: #111820;
  font-size: 108%;
}

body[data-page="home"] .site-header {
  display: none;
}

body[data-page="home"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #f4f6f7;
}

body[data-page="home"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="home"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="home"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="home"] .home-v2-hero {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px 15px 16px;
  border-bottom: 1px solid rgba(0, 154, 78, 0.08);
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 154, 78, 0.14) 0 42px, transparent 43px),
    radial-gradient(circle at 12% 92%, rgba(255, 193, 7, 0.18) 0 36px, transparent 37px),
    linear-gradient(180deg, #ffffff, #f3faf6);
}

body[data-page="home"] .home-v2-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: start;
}

body[data-page="home"] .home-v2-head div {
  min-width: 0;
}

body[data-page="home"] .home-v2-head p,
body[data-page="home"] .home-v2-head span {
  margin: 0;
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

body[data-page="home"] .home-v2-head h1 {
  margin: 4px 0 3px;
  color: #111820;
  font-size: 1.62rem;
  font-weight: 950;
  line-height: 1.1;
}

body[data-page="home"] .home-v2-notification {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

body[data-page="home"] .home-v2-hero-actions {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  --cta-row-columns: 1fr 1fr;
  --cta-row-gap: 8px;
  --cta-row-radius: 999px;
  --cta-base-height: 40px;
  --cta-base-border: rgba(0, 154, 78, 0.18);
  --cta-base-bg: #fff;
  --cta-base-color: var(--sl-primary);
  --cta-base-font-size: 0.82rem;
  --cta-base-font-weight: 850;

  --cta-primary-height: 42px;
  --cta-primary-font-size: 0.85rem;
  --cta-primary-font-weight: 850;
  --cta-primary-bg: linear-gradient(135deg, var(--sl-primary), #0a84bd);
  --cta-primary-border: var(--sl-primary);
  --cta-primary-color: #ffffff;

  --cta-secondary-height: 34px;
  --cta-secondary-font-size: 0.78rem;
  --cta-secondary-color: #0d5cb0;
  --cta-secondary-bg: #ffffff;
  --cta-secondary-border: rgba(15, 73, 255, 0.24);
  --cta-secondary-font-weight: 850;

  width: 100%;
}

body[data-page="home"] .home-v2-hero-actions .cta-action {
  box-sizing: border-box;
  min-height: 42px;
  width: 100%;
  padding: 0 14px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(17, 17, 17, 0.1);
}

body[data-page="home"] .home-v2-hero-actions .cta-action.cta-primary {
  min-height: 42px;
  min-width: 0;
  border-color: var(--cta-primary-border);
  background: var(--cta-primary-bg);
  color: var(--cta-primary-color);
}

body[data-page="home"] .home-v2-hero-actions .cta-action.cta-secondary {
  min-height: 34px;
  min-width: 0;
}

body[data-page="home"] .home-v2-notification::before {
  content: "";
  width: 19px;
  height: 19px;
  background: #111820;
  mask: url("/assets/icons/linear/notification.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/notification.svg") center / contain no-repeat;
}

body[data-page="home"] .home-v2-notification b {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ff3b30;
  color: #fff;
  font-size: 0.56rem;
  font-weight: 850;
  line-height: 1;
}

body[data-page="home"] .home-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="home"] .home-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="home"] .home-v2-section-icon.is-summary {
  mask-image: url("/assets/icons/bold/activity.svg");
  -webkit-mask-image: url("/assets/icons/bold/activity.svg");
}

body[data-page="home"] .home-v2-section-icon.is-badge {
  mask-image: url("/assets/icons/bold/cup.svg");
  -webkit-mask-image: url("/assets/icons/bold/cup.svg");
}

body[data-page="home"] .home-v2-section-icon.is-friend {
  mask-image: url("/assets/icons/bold/flash.svg");
  -webkit-mask-image: url("/assets/icons/bold/flash.svg");
}

body[data-page="home"] .home-v2-section-icon.is-log {
  mask-image: url("/assets/icons/bold/calendar-1.svg");
  -webkit-mask-image: url("/assets/icons/bold/calendar-1.svg");
}

body[data-page="home"] .home-v2-section-icon.is-info {
  mask-image: url("/assets/icons/bold/info-circle.svg");
  -webkit-mask-image: url("/assets/icons/bold/info-circle.svg");
}

body[data-page="home"] .home-v2-section-icon.is-favorite {
  background: #ff3b30;
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

body[data-page="home"] .home-v2-see-all {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: var(--sl-primary);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="home"] .home-v2-see-all::after {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
}

body[data-page="home"] .home-v2-status {
  display: grid;
  gap: 12px;
}

body[data-page="home"] .home-v2-status-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="home"] .home-v2-status-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eaf8f1;
}

body[data-page="home"] .home-v2-status-card i::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/location.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/location.svg") center / contain no-repeat;
}

body[data-page="home"] .home-v2-status-card span,
body[data-page="home"] .home-v2-status-card small {
  display: block;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.35;
}

body[data-page="home"] .home-v2-status-card strong {
  display: block;
  margin: 3px 0;
  color: #111820;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.28;
}

body[data-page="home"] .home-v2-checkin-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="home"] .home-v2-activity-summary {
  padding-bottom: 13px;
}

body[data-page="home"] .home-v2-activity-summary .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

body[data-page="home"] .home-v2-activity-summary .section-head > div,
body[data-page="home"] .home-v2-activity-summary .section-head h2 {
  min-width: 0;
  text-align: left;
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-card {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  min-height: 68px;
  padding: 9px 10px;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 13px;
  background: #fff;
  color: inherit;
  box-shadow: 0 5px 14px rgba(17, 17, 17, 0.04);
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-card.is-like {
  border-color: rgba(255, 194, 54, 0.7);
  background:
    radial-gradient(circle at 90% 24%, rgba(255, 193, 7, 0.25) 0 3px, transparent 4px),
    radial-gradient(circle at 82% 78%, rgba(255, 193, 7, 0.18) 0 2px, transparent 3px),
    linear-gradient(120deg, #fff, #fff9ec);
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--sl-primary);
  font-style: normal;
  line-height: 1;
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-icon::before {
  content: "";
  width: 17px;
  height: 17px;
  background: currentColor;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-icon.is-calendar::before {
  mask-image: url("/assets/icons/linear/calendar.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar.svg");
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-icon.is-location::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-icon.is-heart {
  color: #ff3d33;
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-icon.is-heart::before {
  mask-image: url("/assets/icons/linear/heart.svg");
  -webkit-mask-image: url("/assets/icons/linear/heart.svg");
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-card span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-card small {
  color: #59636c;
  font-size: 0.69rem;
  font-weight: 750;
  line-height: 1.15;
  white-space: nowrap;
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-card strong {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  color: #111820;
  font-size: 1.32rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-card em {
  color: #222a31;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 750;
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-ribbon {
  position: absolute;
  right: 10px;
  bottom: 13px;
  min-width: 39px;
  padding: 4px 11px 4px 7px;
  border-radius: 3px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 7px) 50%, 100% 100%, 0 100%);
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.16);
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-ribbon.is-blue {
  min-width: 44px;
  padding-right: 13px;
  background: #1787c7;
}

body[data-page="home"] .home-v2-activity-summary .profile-v3-summary-ribbon.is-yellow {
  background: #ffb300;
}

body[data-page="home"] .home-v2-social-stats {
  padding: 0;
  overflow: hidden;
}

body[data-page="home"] .home-v2-social-stats .profile-v2-stats {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="home"] .home-v2-social-stats .profile-v2-stats > * {
  min-height: 54px;
  padding: 8px;
}

body[data-page="home"] .home-v2-social-stats .profile-v2-stats strong {
  font-size: 1.18rem;
}

body[data-page="home"] .home-v2-social-stats .profile-v2-stats span {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 750;
}

body[data-page="home"] .home-v2-badges .profile-v3-medal-list {
  gap: 9px 5px;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .home-v2-badges .profile-v3-badge-section-head {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 1px;
}

body[data-page="home"] .home-v2-badges .profile-v3-badge-title {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.2;
}

body[data-page="home"] .home-v2-badges .profile-v3-badge-title span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/cup.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/cup.svg") center / contain no-repeat;
}

body[data-page="home"] .home-v2-badges .profile-v3-medal-see-all {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-self: end;
  color: var(--sl-primary);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="home"] .home-v2-badges .profile-v3-medal-see-all::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

body[data-page="home"] .home-v2-badges .profile-v3-medal-list a {
  grid-template-rows: 40px minmax(1.25em, auto);
  gap: 5px;
  align-content: start;
  font-size: 0.56rem;
  line-height: 1.15;
}

body[data-page="home"] .home-v2-badges .profile-v3-badge-art {
  display: grid;
  place-items: center;
  width: 42px;
  height: 40px;
  margin: 0 auto;
}

body[data-page="home"] .home-v2-badges .profile-v3-badge-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(17, 17, 17, 0.13));
}

body[data-page="home"] .home-v2-badges .profile-v3-medal-list a > span:last-child {
  display: block;
  min-height: 1.25em;
  overflow: visible;
  line-height: 1.15;
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-in-badges {
  position: relative;
  display: block;
  grid-column: 1 / -1;
  grid-template-rows: none;
  gap: 0;
  min-width: 0;
  margin-top: 8px;
  border: 1px solid rgba(255, 193, 7, 0.82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 193, 7, 0.45) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 22%, rgba(255, 193, 7, 0.72) 0 4px, transparent 5px),
    #fffdf5;
  box-shadow: none;
  color: inherit;
  font-size: 1rem;
  line-height: 1;
  text-align: left;
  overflow: hidden;
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-in-badges::before,
body[data-page="home"] .home-v2-badges .profile-v3-next-goal-in-badges::after {
  content: "✦";
  position: absolute;
  z-index: 1;
  top: 14px;
  color: #ffc928;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 2px 7px rgba(255, 193, 7, 0.24);
  pointer-events: none;
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-in-badges::before {
  right: 122px;
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-in-badges::after {
  right: 40px;
  font-size: 0.86rem;
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 12px 16px 12px 14px;
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-board {
  width: 58px;
  max-width: none;
  justify-self: center;
  transform: rotate(-8deg);
  filter: drop-shadow(0 4px 6px rgba(17, 17, 17, 0.14));
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-copy span {
  min-height: 0;
  color: #59636c;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.1;
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-copy strong {
  color: #111820;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-copy i {
  width: 100%;
  min-width: 0;
  height: 11px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe3e6;
  box-shadow:
    inset 0 1px 2px rgba(17, 17, 17, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.95);
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-copy b {
  display: block;
  width: 30%;
  min-width: 0;
  height: 100%;
  border-radius: inherit;
  background: #0aa35f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 1px 3px rgba(10, 163, 95, 0.24);
}

body[data-page="home"] .home-v2-badges .profile-v3-next-goal-inner em {
  justify-self: end;
  margin-top: 0;
  min-width: 72px;
  color: #111820;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

body[data-page="home"] .home-v2-badge-lead {
  margin: -2px 0 0;
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.55;
}

body[data-page="home"] .home-v2-badge-progress-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

body[data-page="home"] .home-v2-badge-progress-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255, 193, 7, 0.38);
  border-radius: 14px;
  background: #fffdf5;
  color: inherit;
  text-decoration: none;
}

body[data-page="home"] .home-v2-badge-progress-art {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

body[data-page="home"] .home-v2-badge-progress-art img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(17, 17, 17, 0.12));
}

body[data-page="home"] .home-v2-badge-progress-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

body[data-page="home"] .home-v2-badge-progress-copy small {
  color: #0aa35f;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
}

body[data-page="home"] .home-v2-badge-progress-copy strong {
  color: #111820;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
}

body[data-page="home"] .home-v2-badge-progress-copy em {
  overflow: hidden;
  color: #59636c;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="home"] .home-v2-badge-progress-bar {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4e8eb;
}

body[data-page="home"] .home-v2-badge-progress-bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #0aa35f;
}

body[data-page="home"] .home-v2-badge-progress-meta {
  justify-self: end;
  color: #111820;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
}

body[data-page="home"] .home-v2-site-links {
  padding: 14px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 154, 78, 0.08) 0 28px, transparent 29px),
    #fff;
}

body[data-page="home"] .home-v2-site-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body[data-page="home"] .home-v2-site-link-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid #e8eef1;
  border-radius: 999px;
  background: #f8faf9;
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

body[data-page="home"] .home-v2-admin-link {
  margin: -2px 0 10px;
  text-align: center;
}

body[data-page="home"] .home-v2-admin-link a {
  color: #7a848c;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body[data-page="home"] .home-v2-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="home"] .home-v2-summary-grid a {
  position: relative;
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px 12px 12px 38px;
  border: 1px solid #ebeff2;
  border-radius: 12px;
  background: #fff;
}

body[data-page="home"] .home-v2-summary-grid a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 12px;
  width: 17px;
  height: 17px;
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/location.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/location.svg") center / contain no-repeat;
}

body[data-page="home"] .home-v2-summary-grid .is-park::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="home"] .home-v2-summary-grid .is-timeline::before {
  mask-image: url("/assets/icons/linear/profile-2user.svg");
  -webkit-mask-image: url("/assets/icons/linear/profile-2user.svg");
}

body[data-page="home"] .home-v2-summary-grid .is-profile::before {
  mask-image: url("/assets/icons/linear/activity.svg");
  -webkit-mask-image: url("/assets/icons/linear/activity.svg");
}

body[data-page="home"] .home-v2-summary-grid span {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 650;
}

body[data-page="home"] .home-v2-summary-grid strong {
  color: #111820;
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1.2;
}

body[data-page="home"] .home-v2-summary-grid small {
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.25;
}

body[data-page="home"] .home-v2-friend-scroll,
body[data-page="home"] .home-v2-park-scroll {
  display: flex;
  gap: 12px;
  margin: 0 -16px;
  padding: 1px 16px 3px;
  overflow-x: auto;
  scrollbar-width: none;
}

body[data-page="home"] .home-v2-friend-scroll::-webkit-scrollbar,
body[data-page="home"] .home-v2-park-scroll::-webkit-scrollbar {
  display: none;
}

body[data-page="home"] .home-v2-friend-avatar {
  position: relative;
  display: grid;
  flex: 0 0 62px;
  gap: 7px;
  justify-items: center;
  color: inherit;
  text-align: center;
}

body[data-page="home"] .home-v2-friend-photo {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(145deg, #0b8f57, #69c8df);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 950;
  box-shadow: 0 5px 13px rgba(17, 17, 17, 0.12);
}

body[data-page="home"] .home-v2-friend-avatar.is-you .home-v2-friend-photo {
  border-color: var(--sl-primary);
  box-shadow:
    0 0 0 3px rgba(10, 163, 95, 0.22),
    0 5px 13px rgba(17, 17, 17, 0.12);
}

body[data-page="home"] .home-v2-friend-avatar i {
  position: absolute;
  top: 43px;
  right: 2px;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--sl-primary);
  box-shadow: 0 2px 5px rgba(17, 17, 17, 0.16);
}

body[data-page="home"] .home-v2-friend-avatar strong,
body[data-page="home"] .home-v2-friend-avatar small {
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="home"] .home-v2-friend-avatar strong {
  color: #111820;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.1;
}

body[data-page="home"] .home-v2-friend-avatar small {
  color: #59636c;
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1;
}

body[data-page="home"] .home-v2-log-list {
  display: grid;
  gap: 0;
}

body[data-page="home"] .home-v2-log {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f2;
  color: inherit;
}

body[data-page="home"] .home-v2-log:last-child {
  border-bottom: 0;
}

body[data-page="home"] .home-v2-log img {
  width: 78px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

body[data-page="home"] .home-v2-log div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

body[data-page="home"] .home-v2-log strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111820;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="home"] .home-v2-log span {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  align-items: center;
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.25;
}

body[data-page="home"] .home-v2-log small {
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 650;
}

body[data-page="home"] .home-v2-log i {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: #6f7780;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="home"] .home-v2-log .is-calendar {
  mask-image: url("/assets/icons/linear/calendar-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar-1.svg");
}

body[data-page="home"] .home-v2-log .is-clock {
  mask-image: url("/assets/icons/linear/clock-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/clock-1.svg");
}

body[data-page="home"] .home-v2-park-card {
  display: grid;
  flex: 0 0 96px;
  gap: 6px;
  color: inherit;
}

body[data-page="home"] .home-v2-park-card span {
  position: relative;
  display: block;
}

body[data-page="home"] .home-v2-park-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

body[data-page="home"] .home-v2-park-card i {
  position: absolute;
  top: 6px;
  left: 6px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 9px rgba(17, 17, 17, 0.16);
}

body[data-page="home"] .home-v2-park-card i::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #ff3b30;
  mask: url("/assets/icons/bold/heart.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/heart.svg") center / contain no-repeat;
}

body[data-page="home"] .home-v2-park-card strong {
  color: #111820;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

body[data-page="home"] .home-v2-park-card small {
  color: #59636c;
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1.3;
}

body[data-page="home"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="home"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="home"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="home"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="home"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="home"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="home"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="home"] .bottom-nav a[data-nav="home"].active::before,
body[data-page="home"] .bottom-nav a[data-nav="home"]:active::before {
  mask-image: url("/assets/icons/bold/home-2.svg");
  -webkit-mask-image: url("/assets/icons/bold/home-2.svg");
}

body[data-page="home"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="home"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="home"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

@media (min-width: 431px) {
  body[data-page="home"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="home"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

body[data-page="timeline"] {
  background: #f4f6f7;
  color: #111820;
  font-size: 102%;
}

body[data-page="timeline"] .site-header {
  display: none;
}

body[data-page="timeline"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #f4f6f7;
}

body[data-page="timeline"] .panel {
  padding: 14px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.05);
}

body[data-page="timeline"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="timeline"] .section-head h2 {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="timeline"] .timeline-v2-hero {
  display: grid;
  gap: 12px;
  min-height: 0;
  align-content: start;
  padding: 18px 15px 16px;
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 154, 78, 0.14) 0 42px, transparent 43px),
    radial-gradient(circle at 12% 92%, rgba(255, 193, 7, 0.18) 0 36px, transparent 37px),
    linear-gradient(180deg, #ffffff, #f3faf6);
}

body[data-page="timeline"] .timeline-v2-title {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: end;
}

body[data-page="timeline"] .timeline-v2-title-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.16);
}

body[data-page="timeline"] .timeline-v2-title-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/icons/bold/document-text.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/document-text.svg") center / contain no-repeat;
}

body[data-page="timeline"] .timeline-v2-title p {
  margin: 0 0 2px;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
}

body[data-page="timeline"] .timeline-v2-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.48rem;
  font-weight: 950;
  line-height: 1.08;
}

body[data-page="timeline"] .timeline-v2-hero > p {
  margin: 0;
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="timeline"] .timeline-v2-hero-stats {
  display: grid;
  grid-template-columns: minmax(0, 118px);
  gap: 10px;
}

body[data-page="timeline"] .timeline-v2-hero-stats span {
  display: grid;
  min-height: 52px;
  align-content: center;
  padding: 9px 12px;
  border: 1px solid #edf0f2;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 14px rgba(17, 17, 17, 0.04);
}

body[data-page="timeline"] .timeline-v2-hero-stats strong {
  color: #111820;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
}

body[data-page="timeline"] .timeline-v2-hero-stats small {
  color: #59636c;
  font-size: 0.64rem;
  font-weight: 650;
}

body[data-page="timeline"] .timeline-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="timeline"] .timeline-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="timeline"] .timeline-v2-section-icon.is-filter {
  mask-image: url("/assets/icons/bold/setting-4.svg");
  -webkit-mask-image: url("/assets/icons/bold/setting-4.svg");
}

body[data-page="timeline"] .timeline-v2-section-icon.is-follow {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body[data-page="timeline"] .timeline-v2-section-icon.is-favorite {
  background: #ff3b30;
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

body[data-page="timeline"] .timeline-v2-section-icon.is-public {
  mask-image: url("/assets/icons/bold/document-text.svg");
  -webkit-mask-image: url("/assets/icons/bold/document-text.svg");
}

body[data-page="timeline"] .timeline-v2-filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

body[data-page="timeline"] .timeline-v2-filter-tabs a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 7px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  color: #59636c;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1;
  text-align: center;
}

body[data-page="timeline"] .timeline-v2-filter-tabs a span {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="timeline"] .timeline-v2-filter-tabs a em {
  margin-top: 2px;
  color: #7f8892;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1;
}

body[data-page="timeline"] .timeline-v2-filter-tabs a.active {
  border-color: rgba(0, 154, 78, 0.18);
  background: #eaf8f1;
  color: var(--sl-primary);
  font-weight: 900;
}

body[data-page="timeline"] .timeline-v2-filter-tabs a.active em {
  color: #0a7e45;
  font-weight: 900;
}

body[data-page="timeline"] .timeline-v2-mode-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  background:
    radial-gradient(circle at 92% 18%, rgba(0, 154, 78, 0.12) 0 18px, transparent 19px),
    #fff;
}

body[data-page="timeline"] .timeline-v2-mode-card .timeline-v2-section-icon {
  width: 24px;
  height: 24px;
  justify-self: center;
}

body[data-page="timeline"] .timeline-v2-mode-card div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

body[data-page="timeline"] .timeline-v2-mode-card strong {
  color: #111820;
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.25;
}

body[data-page="timeline"] .timeline-v2-mode-card p {
  margin: 0;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.45;
}

body[data-page="timeline"] .timeline-v2-mode-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 154, 78, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="timeline"] .timeline-v2-feed {
  display: grid;
  gap: 13px;
}

body[data-page="timeline"] .timeline-v2-card {
  display: grid;
  gap: 10px;
  padding: 14px;
}

body[data-page="timeline"] .timeline-v2-card-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
}

body[data-page="timeline"] .timeline-v2-avatar,
body[data-page="timeline"] .timeline-v2-avatar .small-avatar {
  display: block;
  width: 42px;
  height: 42px;
}

body[data-page="timeline"] .timeline-v2-avatar .small-avatar {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0b0d10;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 950;
  outline: 2px solid var(--sl-primary);
  outline-offset: 2px;
}

body[data-page="timeline"] .timeline-v2-avatar .avatar-photo {
  overflow: hidden;
}

body[data-page="timeline"] .timeline-v2-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="timeline"] .timeline-v2-card-head > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

body[data-page="timeline"] .timeline-v2-user {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
}

body[data-page="timeline"] .timeline-v2-card h2 {
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="timeline"] .timeline-v2-card h2 a {
  color: inherit;
}

body[data-page="timeline"] .timeline-v2-card-head span,
body[data-page="timeline"] .timeline-v2-meta span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-width: 0;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

body[data-page="timeline"] .timeline-v2-card-head b {
  justify-self: end;
  padding: 4px 7px;
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--sl-primary);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="timeline"] .timeline-v2-card i {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: #6f7780;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="timeline"] .timeline-v2-card .is-location {
  background: var(--sl-primary);
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="timeline"] .timeline-v2-card .is-calendar {
  mask-image: url("/assets/icons/linear/calendar-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar-1.svg");
}

body[data-page="timeline"] .timeline-v2-card .is-clock {
  mask-image: url("/assets/icons/linear/clock-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/clock-1.svg");
}

body[data-page="timeline"] .timeline-v2-photo {
  display: block;
  overflow: hidden;
  border-radius: 9px;
  background: #dfe7eb;
}

body[data-page="timeline"] .timeline-v2-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="timeline"] .timeline-v2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
}

body[data-page="timeline"] .timeline-v2-note {
  margin: 0;
  color: #111820;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="timeline"] .timeline-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body[data-page="timeline"] .timeline-v2-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f5f7f8;
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1;
}

body[data-page="timeline"] .timeline-v2-actions {
  --cta-row-columns: minmax(0, 1fr) auto;
  --cta-row-gap: 10px;
  --cta-row-radius: 999px;
  --cta-base-bg: #ffffff;
  --cta-base-border: #dfe4e8;
  --cta-base-color: #111820;
  --cta-base-font-size: 0.72rem;
  --cta-base-font-weight: 800;
  --cta-base-height: 34px;

  --cta-primary-bg: linear-gradient(135deg, var(--sl-primary), #0c77ae);
  --cta-primary-color: #ffffff;
  --cta-primary-border: transparent;
  --cta-primary-height: 40px;
  --cta-primary-font-size: 0.8rem;
  --cta-primary-font-weight: 900;

  --cta-secondary-bg: #ffffff;
  --cta-secondary-color: #5f6872;
  --cta-secondary-border: #dfe4e8;
  --cta-secondary-height: 34px;
  --cta-secondary-font-size: 0.7rem;
  --cta-secondary-font-weight: 750;

  align-items: center;
}

body[data-page="timeline"] .timeline-v2-actions form {
  min-width: 0;
}

body[data-page="timeline"] .timeline-v2-like.cta-like {
  gap: 5px;
  padding: 6px 10px;
  box-shadow: none;
}

body[data-page="timeline"] .timeline-v2-like i {
  width: 15px;
  height: 15px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/heart.svg");
  -webkit-mask-image: url("/assets/icons/linear/heart.svg");
}

body[data-page="timeline"] .timeline-v2-like.liked {
  --cta-liked-bg: #f6f7f8;
  --cta-liked-border: rgba(20, 24, 31, 0.1);
  --cta-liked-color: #7a818c;
}

body[data-page="timeline"] .timeline-v2-like.liked i {
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

body[data-page="timeline"] .timeline-v2-like.liked span {
  display: none;
}

body[data-page="timeline"] .timeline-v2-like strong {
  color: inherit;
  font-size: 0.74rem;
  font-weight: 850;
}

body[data-page="timeline"] .timeline-v2-link.cta-secondary {
  padding-inline: 13px;
}

body[data-page="timeline"] .timeline-v2-link.cta-secondary:hover,
body[data-page="timeline"] .timeline-v2-link.cta-secondary:focus-visible {
  filter: brightness(1.03);
}

body[data-page="timeline"] .timeline-v2-like.cta-like:hover,
body[data-page="timeline"] .timeline-v2-like.cta-like:focus-visible {
  --cta-like-bg: #fff6f5;
  --cta-like-border: #ff7f70;
}

body[data-page="timeline"] .timeline-v2-link,
body[data-page="timeline"] .timeline-v2-like {
  width: auto;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

body[data-page="timeline"] .timeline-v2-empty {
  display: grid;
  gap: 9px;
  justify-items: center;
  text-align: center;
}

body[data-page="timeline"] .timeline-v2-empty h2,
body[data-page="timeline"] .timeline-v2-empty p {
  margin: 0;
}

body[data-page="timeline"] .timeline-v2-empty h2 {
  color: #111820;
  font-size: 0.94rem;
  font-weight: 950;
}

body[data-page="timeline"] .timeline-v2-empty p {
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="timeline"] .timeline-v2-empty a {
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 850;
}

body[data-page="timeline"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="timeline"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="timeline"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="timeline"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="timeline"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="timeline"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="timeline"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="timeline"] .bottom-nav a[data-nav="timeline"].active::before,
body[data-page="timeline"] .bottom-nav a[data-nav="timeline"]:active::before {
  mask-image: url("/assets/icons/bold/document-text.svg");
  -webkit-mask-image: url("/assets/icons/bold/document-text.svg");
}

body[data-page="timeline"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="timeline"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="timeline"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

@media (min-width: 431px) {
  body[data-page="timeline"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="timeline"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

body[data-page="log"] {
  background: #f4f6f7;
  color: #111820;
  font-size: 108%;
}

body[data-page="log"] .site-header {
  display: none;
}

body[data-page="log"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #f4f6f7;
}

body[data-page="log"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="log"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="log"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="log"] .log-v2-hero {
  display: grid;
  gap: 14px;
  padding: 18px 15px 16px;
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 154, 78, 0.14) 0 42px, transparent 43px),
    radial-gradient(circle at 12% 92%, rgba(255, 193, 7, 0.18) 0 36px, transparent 37px),
    linear-gradient(180deg, #ffffff, #f3faf6);
}

body[data-page="log"] .log-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="log"] .log-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="log"] .log-v2-title-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/icons/bold/document-text.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/document-text.svg") center / contain no-repeat;
}

body[data-page="log"] .log-v2-title p {
  margin: 0 0 2px;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="log"] .log-v2-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.08;
}

body[data-page="log"] .log-v2-hero > p {
  margin: 0;
  color: #39434c;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
}

body[data-page="log"] .log-v2-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body[data-page="log"] .log-v2-hero-stats span {
  display: grid;
  min-height: 56px;
  align-content: center;
  padding: 10px;
  border: 1px solid #e1e7eb;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
}

body[data-page="log"] .log-v2-hero-stats strong {
  color: #111820;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.2;
}

body[data-page="log"] .log-v2-hero-stats small {
  color: #59636c;
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1.3;
}

body[data-page="log"] .log-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="log"] .log-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="log"] .log-v2-section-icon.is-filter {
  mask-image: url("/assets/icons/bold/setting-4.svg");
  -webkit-mask-image: url("/assets/icons/bold/setting-4.svg");
}

body[data-page="log"] .log-v2-section-icon.is-history {
  mask-image: url("/assets/icons/bold/calendar.svg");
  -webkit-mask-image: url("/assets/icons/bold/calendar.svg");
}

body[data-page="log"] .log-v2-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1;
}

body[data-page="log"] .log-v2-filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

body[data-page="log"] .log-v2-filter-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 7px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #fff;
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

body[data-page="log"] .log-v2-filter-tabs a.active {
  border-color: rgba(0, 154, 78, 0.18);
  background: #eaf8f1;
  color: var(--sl-primary);
  font-weight: 850;
}

body[data-page="log"] .log-v2-list-head {
  margin: 0 0 10px;
  padding: 0 2px;
}

body[data-page="log"] .log-v2-list {
  display: grid;
  gap: 12px;
}

body[data-page="log"] .log-v2-card {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

body[data-page="log"] .log-v2-photo {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe7eb;
}

body[data-page="log"] .log-v2-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="log"] .log-v2-card-body,
body[data-page="log"] .log-v2-card-head > div {
  display: grid;
  min-width: 0;
}

body[data-page="log"] .log-v2-card-body {
  gap: 7px;
}

body[data-page="log"] .log-v2-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
}

body[data-page="log"] .log-v2-card h2 {
  margin: 0;
  color: #111820;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

body[data-page="log"] .log-v2-card h2 a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="log"] .log-v2-card-head b {
  justify-self: end;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--sl-primary);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="log"] .log-v2-meta,
body[data-page="log"] .log-v2-card-head span {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}

body[data-page="log"] .log-v2-meta span,
body[data-page="log"] .log-v2-card-head span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-width: 0;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

body[data-page="log"] .log-v2-meta .is-like-count {
  color: #ff3b30;
}

body[data-page="log"] .log-v2-card i {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: #6f7780;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="log"] .log-v2-card .is-location {
  background: var(--sl-primary);
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="log"] .log-v2-card .is-calendar {
  mask-image: url("/assets/icons/linear/calendar-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar-1.svg");
}

body[data-page="log"] .log-v2-card .is-clock {
  mask-image: url("/assets/icons/linear/clock-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/clock-1.svg");
}

body[data-page="log"] .log-v2-card .is-heart {
  background: currentColor;
  mask-image: url("/assets/icons/linear/heart.svg");
  -webkit-mask-image: url("/assets/icons/linear/heart.svg");
}

body[data-page="log"] .log-v2-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #39434c;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="log"] .log-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body[data-page="log"] .log-v2-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f5f7f8;
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1;
}

body[data-page="log"] .log-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body[data-page="log"] .log-v2-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #fff;
  color: #111820;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
}

body[data-page="log"] .log-v2-actions a:first-child {
  border-color: rgba(0, 154, 78, 0.18);
  color: var(--sl-primary);
}

body[data-page="log"] .log-v2-empty {
  display: grid;
  gap: 9px;
  justify-items: center;
  text-align: center;
}

body[data-page="log"] .log-v2-empty h2,
body[data-page="log"] .log-v2-empty p {
  margin: 0;
}

body[data-page="log"] .log-v2-empty h2 {
  color: #111820;
  font-size: 0.94rem;
  font-weight: 950;
}

body[data-page="log"] .log-v2-empty p {
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="log"] .log-v2-empty a {
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 850;
}

body[data-page="log"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="log"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="log"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="log"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="log"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="log"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="log"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="log"] .bottom-nav a[data-nav="profile"].active::before,
body[data-page="log"] .bottom-nav a[data-nav="profile"]:active::before {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body[data-page="log"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="log"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="log"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

@media (min-width: 431px) {
  body[data-page="log"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="log"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media (max-width: 360px) {
  body[data-page="log"] .log-v2-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
  }

  body[data-page="log"] .log-v2-actions a {
    padding-right: 8px;
    padding-left: 8px;
  }
}

body[data-page="badge-collection"] {
  background: #f4f6f7;
  color: #111820;
  font-size: 108%;
}

body[data-page="badge-collection"] .site-header {
  display: none;
}

body[data-page="badge-collection"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #f4f6f7;
}

body[data-page="badge-collection"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="badge-collection"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="badge-collection"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="badge-collection"] .badge-v2-hero {
  display: grid;
  gap: 14px;
  padding: 16px 15px;
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 154, 78, 0.14) 0 42px, transparent 43px),
    radial-gradient(circle at 12% 92%, rgba(255, 193, 7, 0.18) 0 36px, transparent 37px),
    linear-gradient(180deg, #ffffff, #f3faf6);
}

body[data-page="badge-collection"] .badge-v2-back {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111820;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="badge-collection"] .badge-v2-back::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
}

body[data-page="badge-collection"] .badge-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="badge-collection"] .badge-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #e3e9ed;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 24, 32, 0.08);
}

body[data-page="badge-collection"] .badge-v2-title-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/cup.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/cup.svg") center / contain no-repeat;
}

body[data-page="badge-collection"] .badge-v2-title p,
body[data-page="badge-collection"] .badge-v2-hero > p {
  margin: 0;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
}

body[data-page="badge-collection"] .badge-v2-title h1 {
  margin: 2px 0 0;
  color: #111820;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.1;
}

body[data-page="badge-collection"] .badge-v2-hero > p {
  color: #39434c;
  font-size: 0.78rem;
  line-height: 1.65;
}

body[data-page="badge-collection"] .badge-v2-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body[data-page="badge-collection"] .badge-v2-hero-stats span {
  display: grid;
  min-height: 56px;
  align-content: center;
  padding: 10px;
  border: 1px solid #e1e7eb;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
}

body[data-page="badge-collection"] .badge-v2-hero-stats strong {
  color: #111820;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
}

body[data-page="badge-collection"] .badge-v2-hero-stats small {
  color: #59636c;
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1.3;
}

body[data-page="badge-collection"] .badge-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="badge-collection"] .badge-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="badge-collection"] .badge-v2-section-icon.is-goal {
  background: #ffb000;
  mask-image: url("/assets/icons/bold/medal-star.svg");
  -webkit-mask-image: url("/assets/icons/bold/medal-star.svg");
}

body[data-page="badge-collection"] .badge-v2-section-icon.is-badge {
  mask-image: url("/assets/icons/bold/cup.svg");
  -webkit-mask-image: url("/assets/icons/bold/cup.svg");
}

body[data-page="badge-collection"] .badge-v2-goal-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 12px 16px 12px 14px;
  border: 1px solid rgba(255, 193, 7, 0.82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 193, 7, 0.45) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 22%, rgba(255, 193, 7, 0.72) 0 4px, transparent 5px),
    #fffdf5;
  color: inherit;
}

body[data-page="badge-collection"] .badge-v2-goal-card img {
  width: 58px;
  justify-self: center;
  transform: rotate(-8deg);
  filter: drop-shadow(0 4px 6px rgba(17, 17, 17, 0.14));
}

body[data-page="badge-collection"] .badge-v2-goal-card span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

body[data-page="badge-collection"] .badge-v2-goal-card small {
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
}

body[data-page="badge-collection"] .badge-v2-goal-card strong {
  color: #111820;
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

body[data-page="badge-collection"] .badge-v2-goal-card i {
  width: 100%;
  height: 11px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe3e6;
  box-shadow: inset 0 1px 2px rgba(17, 17, 17, 0.16);
}

body[data-page="badge-collection"] .badge-v2-goal-card b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #0aa35f;
}

body[data-page="badge-collection"] .badge-v2-goal-card em {
  justify-self: end;
  min-width: 56px;
  color: #111820;
  font-size: 1rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

body[data-page="badge-collection"] .badge-v2-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

body[data-page="badge-collection"] .badge-v2-section-note {
  margin: 0 0 12px;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.55;
}

body[data-page="badge-collection"] .badge-v2-strip a {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: #111820;
  font-size: 0.6rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
}

body[data-page="badge-collection"] .badge-v2-strip img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

body[data-page="badge-collection"] .badge-v2-selected-count {
  justify-self: end;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

body[data-page="badge-collection"] .badge-v2-select-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

body[data-page="badge-collection"] .badge-v2-select-groups {
  display: grid;
  gap: 15px;
}

body[data-page="badge-collection"] .badge-v2-select-group {
  display: grid;
  gap: 8px;
}

body[data-page="badge-collection"] .badge-v2-select-group h3 {
  margin: 0;
  color: #111820;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.35;
}

body[data-page="badge-collection"] .badge-v2-select-grid label {
  position: relative;
  cursor: pointer;
}

body[data-page="badge-collection"] .badge-v2-select-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body[data-page="badge-collection"] .badge-v2-select-grid span {
  position: relative;
  display: grid;
  min-height: 84px;
  gap: 3px;
  justify-items: center;
  align-content: center;
  padding: 8px 3px 7px;
  border: 1px solid #e1e7eb;
  border-radius: 10px;
  background: #fff;
  color: #111820;
  text-align: center;
}

body[data-page="badge-collection"] .badge-v2-select-grid input:checked + span {
  border-color: rgba(0, 154, 78, 0.42);
  background: #f2fbf6;
  box-shadow: inset 0 0 0 1px rgba(0, 154, 78, 0.18);
}

body[data-page="badge-collection"] .badge-v2-select-grid input:checked + span::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) center / 7px 2px no-repeat,
    var(--sl-primary);
  mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
}

body[data-page="badge-collection"] .badge-v2-select-grid img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

body[data-page="badge-collection"] .badge-v2-select-grid b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.52rem;
  font-weight: 850;
  line-height: 1.15;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="badge-collection"] .badge-v2-select-grid small {
  color: #59636c;
  font-size: 0.5rem;
  font-weight: 650;
  line-height: 1.1;
}

body[data-page="badge-collection"] .badge-v2-select-grid .is-disabled {
  cursor: not-allowed;
}

body[data-page="badge-collection"] .badge-v2-select-grid .is-disabled span {
  border-color: #d8dde4;
  background: #f1f3f5;
  color: #89929d;
  box-shadow: none;
}

body[data-page="badge-collection"] .badge-v2-select-grid .is-disabled img {
  opacity: 1;
  filter: brightness(0.22) saturate(0.45);
}

body[data-page="badge-collection"] .badge-v2-select-grid .is-disabled b,
body[data-page="badge-collection"] .badge-v2-select-grid .is-disabled small {
  color: #8a939e;
}

body[data-page="badge-collection"] .badge-v2-save-button {
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="badge-collection"] .badge-v2-grid {
  display: grid;
  gap: 12px;
}

body[data-page="badge-collection"] .badge-v2-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

body[data-page="badge-collection"] .badge-v2-card.is-locked {
  border-color: #d9dee5;
  background: #f7f8f9;
  box-shadow: none;
}

body[data-page="badge-collection"] .badge-v2-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 16px;
  background: #f7fafb;
}

body[data-page="badge-collection"] .badge-v2-card.is-locked .badge-v2-art {
  background: #111820;
}

body[data-page="badge-collection"] .badge-v2-card.is-locked .badge-v2-art::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

body[data-page="badge-collection"] .badge-v2-art img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

body[data-page="badge-collection"] .badge-v2-card.is-locked .badge-v2-art img {
  filter: saturate(0.45) contrast(1.05);
}

body[data-page="badge-collection"] .badge-v2-card-body {
  display: grid;
  min-width: 0;
  gap: 8px;
}

body[data-page="badge-collection"] .badge-v2-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
}

body[data-page="badge-collection"] .badge-v2-card-head div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

body[data-page="badge-collection"] .badge-v2-card-head span {
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.2;
}

body[data-page="badge-collection"] .badge-v2-card h2 {
  margin: 0;
  color: #111820;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

body[data-page="badge-collection"] .badge-v2-card-head b {
  justify-self: end;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef1f3;
  color: #59636c;
  font-size: 0.62rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="badge-collection"] .badge-v2-card.is-unlocked .badge-v2-card-head b {
  background: #eaf8f1;
  color: var(--sl-primary);
}

body[data-page="badge-collection"] .badge-v2-card.is-locked .badge-v2-card-head span,
body[data-page="badge-collection"] .badge-v2-card.is-locked h2,
body[data-page="badge-collection"] .badge-v2-card.is-locked p,
body[data-page="badge-collection"] .badge-v2-card.is-locked .badge-v2-progress strong {
  color: #7a8491;
}

body[data-page="badge-collection"] .badge-v2-card.is-locked .badge-v2-card-head b {
  background: #e4e7eb;
  color: #7a8491;
}

body[data-page="badge-collection"] .badge-v2-card p {
  margin: 0;
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.5;
}

body[data-page="badge-collection"] .badge-v2-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

body[data-page="badge-collection"] .badge-v2-progress i {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe3e6;
  box-shadow: inset 0 1px 2px rgba(17, 17, 17, 0.12);
}

body[data-page="badge-collection"] .badge-v2-progress em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #079957, #15bd71);
}

body[data-page="badge-collection"] .badge-v2-card.is-locked .badge-v2-progress i {
  background: #dde2e8;
}

body[data-page="badge-collection"] .badge-v2-card.is-locked .badge-v2-progress em {
  background: #aeb7c2;
}

body[data-page="badge-collection"] .badge-v2-progress strong {
  color: #111820;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

body[data-page="badge-collection"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="badge-collection"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="badge-collection"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="badge-collection"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="badge-collection"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="badge-collection"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="badge-collection"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="badge-collection"] .bottom-nav a[data-nav="profile"].active::before,
body[data-page="badge-collection"] .bottom-nav a[data-nav="profile"]:active::before {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body[data-page="badge-collection"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="badge-collection"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="badge-collection"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

@media (min-width: 431px) {
  body[data-page="badge-collection"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="badge-collection"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media (max-width: 360px) {
  body[data-page="badge-collection"] .badge-v2-goal-card {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 9px;
    padding-right: 12px;
    padding-left: 12px;
  }

  body[data-page="badge-collection"] .badge-v2-goal-card img {
    width: 50px;
  }

  body[data-page="badge-collection"] .badge-v2-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  body[data-page="badge-collection"] .badge-v2-art {
    width: 68px;
    height: 68px;
  }

  body[data-page="badge-collection"] .badge-v2-art img {
    width: 60px;
    height: 60px;
  }
}

body[data-page="favorite-parks"] {
  background: #f4f6f7;
  color: #111820;
  font-size: 108%;
}

body[data-page="favorite-parks"] .site-header {
  display: none;
}

body[data-page="favorite-parks"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #f4f6f7;
}

body[data-page="favorite-parks"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="favorite-parks"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="favorite-parks"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="favorite-parks"] .favorite-parks-v2-hero {
  display: grid;
  gap: 14px;
  padding: 16px 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 247, 0.98)),
    url("/assets/parks/park-street.png") center / cover no-repeat;
}

body[data-page="favorite-parks"] .favorite-parks-v2-back {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111820;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="favorite-parks"] .favorite-parks-v2-back::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-left.svg") center / contain no-repeat;
}

body[data-page="favorite-parks"] .favorite-parks-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="favorite-parks"] .favorite-parks-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #ff3b30;
  box-shadow: 0 8px 18px rgba(255, 59, 48, 0.2);
}

body[data-page="favorite-parks"] .favorite-parks-v2-title-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/icons/bold/heart.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/heart.svg") center / contain no-repeat;
}

body[data-page="favorite-parks"] .favorite-parks-v2-title p,
body[data-page="favorite-parks"] .favorite-parks-v2-hero > p {
  margin: 0;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
}

body[data-page="favorite-parks"] .favorite-parks-v2-title h1 {
  margin: 2px 0 0;
  color: #111820;
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1.1;
}

body[data-page="favorite-parks"] .favorite-parks-v2-hero > p {
  color: #39434c;
  font-size: 0.78rem;
  line-height: 1.65;
}

body[data-page="favorite-parks"] .favorite-parks-v2-stats {
  display: none;
  grid-template-columns: minmax(0, 96px);
  gap: 8px;
}

body[data-page="favorite-parks"] .favorite-parks-v2-stats span {
  display: grid;
  min-height: 56px;
  align-content: center;
  padding: 10px;
  border: 1px solid #e1e7eb;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
}

body[data-page="favorite-parks"] .favorite-parks-v2-stats strong {
  color: #111820;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.2;
}

body[data-page="favorite-parks"] .favorite-parks-v2-stats small {
  color: #59636c;
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1.3;
}

body[data-page="favorite-parks"] .favorite-parks-v2-filter {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 1px;
  scrollbar-width: none;
}

body[data-page="favorite-parks"] .favorite-parks-v2-filter::-webkit-scrollbar {
  display: none;
}

body[data-page="favorite-parks"] .favorite-parks-v2-filter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 7px 12px;
  border: 1px solid #dfe7ec;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="favorite-parks"] .favorite-parks-v2-filter a.active {
  border-color: rgba(0, 154, 78, 0.25);
  background: #effaf4;
  color: var(--sl-primary);
}

body[data-page="favorite-parks"] .favorite-parks-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="favorite-parks"] .favorite-parks-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: #ff3b30;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="favorite-parks"] .favorite-parks-v2-section-icon.is-heart {
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

body[data-page="favorite-parks"] .favorite-parks-v2-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 154, 78, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1;
}

body[data-page="favorite-parks"] .favorite-parks-v2-summary p {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.55;
}

body[data-page="favorite-parks"] .favorite-parks-v2-list {
  display: grid;
  gap: 12px;
}

body[data-page="favorite-parks"] .favorite-parks-v2-card {
  display: grid;
  gap: 12px;
  align-items: start;
}

body[data-page="favorite-parks"] .favorite-parks-v2-card-main {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

body[data-page="favorite-parks"] .favorite-parks-v2-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe7eb;
}

body[data-page="favorite-parks"] .favorite-parks-v2-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="favorite-parks"] .favorite-parks-v2-thumb i {
  position: absolute;
  top: 7px;
  left: 7px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 9px rgba(17, 17, 17, 0.16);
}

body[data-page="favorite-parks"] .favorite-parks-v2-thumb i::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #ff3b30;
  mask: url("/assets/icons/bold/heart.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/heart.svg") center / contain no-repeat;
}

body[data-page="favorite-parks"] .favorite-parks-v2-thumb b {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  min-height: 20px;
  padding: 5px 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 24, 32, 0.72);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="favorite-parks"] .favorite-parks-v2-card-body {
  display: grid;
  min-width: 0;
  gap: 10px;
}

body[data-page="favorite-parks"] .favorite-parks-v2-card-body > div:first-child {
  display: grid;
  gap: 5px;
}

body[data-page="favorite-parks"] .favorite-parks-v2-card h2 {
  margin: 0;
  color: #111820;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

body[data-page="favorite-parks"] .favorite-parks-v2-card h2 a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="favorite-parks"] .favorite-parks-v2-card span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-width: 0;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

body[data-page="favorite-parks"] .favorite-parks-v2-card span i {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/location.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/location.svg") center / contain no-repeat;
}

body[data-page="favorite-parks"] .favorite-parks-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

body[data-page="favorite-parks"] .favorite-parks-v2-actions a,
body[data-page="favorite-parks"] .favorite-parks-v2-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
}

body[data-page="favorite-parks"] .favorite-parks-v2-actions a {
  border-color: rgba(0, 154, 78, 0.18);
  color: var(--sl-primary);
}

body[data-page="favorite-parks"] .favorite-parks-v2-actions button {
  color: #59636c;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #edf0f2;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-head {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-head strong {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-head span {
  flex: 0 0 auto;
  color: #8a949e;
  font-size: 0.62rem;
  font-weight: 750;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-riders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-riders a {
  display: flex;
  gap: 6px;
  align-items: center;
  min-width: 0;
  padding: 7px 8px 7px 7px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #f7f9fa;
  color: inherit;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-riders img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  object-fit: cover;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-riders span {
  display: grid;
  min-width: 0;
  gap: 1px;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-riders b,
body[data-page="favorite-parks"] .favorite-parks-v2-recent-riders small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-riders b {
  color: #111820;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.1;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent-riders small {
  color: #8a949e;
  font-size: 0.62rem;
  font-weight: 750;
}

body[data-page="favorite-parks"] .favorite-parks-v2-recent p {
  margin: 0;
  color: #8a949e;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.45;
}

body[data-page="favorite-parks"] .favorite-parks-v2-street-note {
  padding: 10px 11px;
  border: 1px dashed #dfe4e8;
  border-radius: 14px;
  background: #f7f9fa;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.45;
}

body[data-page="favorite-parks"] .favorite-parks-v2-empty {
  display: grid;
  gap: 9px;
  justify-items: center;
  text-align: center;
}

body[data-page="favorite-parks"] .favorite-parks-v2-empty h2,
body[data-page="favorite-parks"] .favorite-parks-v2-empty p {
  margin: 0;
}

body[data-page="favorite-parks"] .favorite-parks-v2-empty h2 {
  color: #111820;
  font-size: 0.94rem;
  font-weight: 950;
}

body[data-page="favorite-parks"] .favorite-parks-v2-empty p {
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="favorite-parks"] .favorite-parks-v2-empty a {
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 850;
}

body[data-page="favorite-parks"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="favorite-parks"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="favorite-parks"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="favorite-parks"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="favorite-parks"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="favorite-parks"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="favorite-parks"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="favorite-parks"] .bottom-nav a[data-nav="profile"].active::before,
body[data-page="favorite-parks"] .bottom-nav a[data-nav="profile"]:active::before {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body[data-page="favorite-parks"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="favorite-parks"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="favorite-parks"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

.subpage-hero {
  display: grid;
  gap: 12px;
  padding: 14px 14px 4px;
}

.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  color: var(--sl-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.subpage-back::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-left-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-left-2.svg") center / contain no-repeat;
}

.subpage-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.settings-v2-section-icon,
.settings-v2-icon,
.checkin-detail-v2-icon {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.subpage-title-icon {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0bbf72, #007a46);
  box-shadow: 0 10px 22px rgba(0, 154, 78, 0.18);
}

.subpage-title-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  mask: var(--icon) center / 22px 22px no-repeat;
  -webkit-mask: var(--icon) center / 22px 22px no-repeat;
}

.subpage-title-icon.is-settings,
.settings-v2-icon.is-setting {
  --icon: url("/assets/icons/linear/setting-2.svg");
}

.subpage-title-icon.is-id {
  --icon: url("/assets/icons/linear/barcode.svg");
}

.subpage-title-icon.is-friends {
  --icon: url("/assets/icons/linear/profile-2user.svg");
}

.subpage-title-icon.is-search {
  --icon: url("/assets/icons/linear/search-normal.svg");
}

.subpage-title-icon.is-calendar {
  --icon: url("/assets/icons/linear/calendar.svg");
}

.subpage-title .eyebrow {
  margin-bottom: 2px;
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 800;
}

.subpage-title h1 {
  margin: 0;
  color: var(--sl-text);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.12;
}

.subpage-title p:not(.eyebrow) {
  margin: 5px 0 0;
  color: var(--sl-text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.55;
}

.settings-v2 .content-stack,
.profile-share-v2 .content-stack,
.friends-v2 .friend-list,
.user-search-v2 .content-stack {
  gap: 14px;
}

.settings-v2-panel .section-head h2,
.checkin-detail-v2-panel .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.settings-v2-section-icon,
.checkin-detail-v2-icon {
  width: 17px;
  height: 17px;
  color: var(--sl-primary);
}

.settings-v2-section-icon.is-profile {
  --icon: url("/assets/icons/bold/user.svg");
}

.settings-v2-section-icon.is-privacy {
  --icon: url("/assets/icons/bold/shield-tick.svg");
}

.settings-v2-section-icon.is-notification {
  --icon: url("/assets/icons/bold/notification.svg");
}

.checkin-detail-v2-icon.is-location {
  --icon: url("/assets/icons/linear/location.svg");
}

.checkin-detail-v2-icon.is-pencil {
  --icon: url("/assets/icons/bold/edit-2.svg");
}

.settings-v2-list {
  display: grid;
  gap: 0;
}

.settings-v2-list a,
.settings-v2-list div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: center;
  min-height: 50px;
  padding: 10px 0;
  border-bottom: 1px solid var(--sl-border);
  color: inherit;
  text-decoration: none;
}

.settings-v2-list a:last-child,
.settings-v2-list div:last-child {
  border-bottom: 0;
}

.settings-v2-icon {
  grid-row: span 2;
  width: 17px;
  height: 17px;
  color: var(--sl-primary);
}

.settings-v2-icon.is-user {
  --icon: url("/assets/icons/linear/user.svg");
}

.settings-v2-icon.is-edit {
  --icon: url("/assets/icons/linear/edit-2.svg");
}

.settings-v2-icon.is-lock {
  --icon: url("/assets/icons/linear/lock.svg");
}

.settings-v2-icon.is-timeline {
  --icon: url("/assets/icons/linear/document-text.svg");
}

.settings-v2-icon.is-notification {
  --icon: url("/assets/icons/linear/notification.svg");
}

.settings-v2-icon.is-account {
  --icon: url("/assets/icons/linear/profile-delete.svg");
}

.settings-v2-list strong {
  color: var(--sl-text);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.25;
}

.settings-v2-list small {
  grid-column: 2;
  color: var(--sl-text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

.settings-v2-list em {
  grid-row: span 2;
  width: 17px;
  height: 17px;
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
}

.settings-v2-list form {
  grid-row: span 2;
}

.settings-v2-list button {
  appearance: none;
  border: 1px solid var(--sl-border);
  border-radius: 999px;
  background: #fff;
  color: #59636c;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
  padding: 8px 10px;
  cursor: pointer;
}

.safety-v2 .settings-v2-list a,
.safety-v2 .settings-v2-list div {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  text-align: left;
}

.safety-v2 .settings-v2-list strong,
.safety-v2 .settings-v2-list small {
  text-align: left;
}

.safety-v2 .settings-v2-list small {
  grid-column: 2;
}

.safety-v2 .settings-v2-list em {
  display: none;
}

.safety-v2 .settings-v2-list form {
  grid-column: 2;
  grid-row: auto;
  justify-self: start;
  margin-top: 6px;
}

.safety-v2 .settings-v2-list button {
  min-height: 32px;
}

.safety-v2-subtitle {
  margin: 16px 0 6px;
  color: #111820;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.25;
}

body[data-page="account"] .subpage-title-icon.is-account {
  --icon: url("/assets/icons/linear/profile-delete.svg");
}

body[data-page="account"] .account-v2-stack {
  gap: 14px;
}

body[data-page="account"] .account-v2-summary {
  display: grid;
  gap: 10px;
}

body[data-page="account"] .account-v2-summary div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--sl-border);
  border-radius: 14px;
  background: #fff;
}

body[data-page="account"] .account-v2-summary i {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--sl-primary);
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

body[data-page="account"] .account-v2-summary strong {
  display: block;
  color: var(--sl-text);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.3;
}

body[data-page="account"] .account-v2-summary small {
  display: block;
  margin-top: 3px;
  color: var(--sl-text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
}

body[data-page="account"] .account-v2-choice-list {
  display: grid;
  gap: 10px;
}

body[data-page="account"] .account-v2-choice-list label {
  cursor: pointer;
}

body[data-page="account"] .account-v2-choice-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body[data-page="account"] .account-v2-choice-list span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--sl-border);
  border-radius: 15px;
  background: #fff;
}

body[data-page="account"] .account-v2-choice-list span::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 2px solid #cfd7dd;
  border-radius: 999px;
}

body[data-page="account"] .account-v2-choice-list input:checked + span {
  border-color: rgba(0, 154, 78, 0.45);
  background: #f2fbf6;
}

body[data-page="account"] .account-v2-choice-list input:checked + span::before {
  border-color: var(--sl-primary);
  background:
    radial-gradient(circle, var(--sl-primary) 0 4px, transparent 5px),
    #fff;
}

body[data-page="account"] .account-v2-choice-list strong {
  display: block;
  color: var(--sl-text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

body[data-page="account"] .account-v2-choice-list small {
  display: block;
  margin-top: 4px;
  color: var(--sl-text-secondary);
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.45;
}

body[data-page="account"] .account-v2-danger {
  border-color: rgba(255, 77, 77, 0.2);
  background: #fff;
}

body[data-page="account"] .account-v2-danger p {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.6;
}

body[data-page="account"] .account-v2-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

body[data-page="account"] .account-v2-actions button,
body[data-page="account"] .account-v2-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

body[data-page="account"] .account-v2-actions button {
  border: 0;
  background: #e54848;
  color: #fff;
}

body[data-page="account"] .account-v2-actions button.is-primary {
  background: var(--sl-primary);
}

body[data-page="account"] .account-v2-actions a {
  padding: 0 14px;
  border: 1px solid var(--sl-border);
  background: #fff;
  color: var(--sl-text);
}

body[data-page="account"] .account-email-v2-form {
  display: grid;
  gap: 10px;
}

body[data-page="account"] .account-email-v2-form label {
  color: var(--sl-text);
  font-size: 0.8rem;
  font-weight: 850;
}

body[data-page="account"] .account-email-v2-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--sl-border);
  border-radius: 12px;
  background: #fff;
  color: var(--sl-text);
  font-size: 0.9rem;
  font-weight: 700;
}

body[data-page="account"] .account-email-v2-form input:focus {
  border-color: rgba(0, 154, 78, 0.45);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 154, 78, 0.1);
}

body[data-page="account"] .account-email-v2-form p {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.55;
}

.friends-v2 .segmented-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  margin-top: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #eef5f3;
}

.friends-v2 .segmented-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  color: #59636c;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
}

.friends-v2 .segmented-links a.active {
  background: #fff;
  color: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.friends-v2 {
  background: #fff;
}

.friends-v2 .subpage-hero {
  gap: 11px;
  margin: 14px 14px 0;
  padding: 15px 14px 14px;
  border: 1px solid #ebeff2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

.friends-v2 .subpage-back {
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid #e3e9ed;
  border-radius: 999px;
  background: #fff;
  font-size: 0.72rem;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.04);
}

.friends-v2 .subpage-title {
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
}

.friends-v2 .subpage-title-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

.friends-v2 .subpage-title h1 {
  font-size: 1.3rem;
  line-height: 1.18;
}

.friends-v2 .subpage-title p:not(.eyebrow) {
  margin-top: 4px;
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

.friends-v2-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 36px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(0, 154, 78, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.friends-v2-search::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("/assets/icons/linear/search-normal.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/search-normal.svg") center / contain no-repeat;
}

.friends-v2-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 3px;
  overflow: hidden;
  border: 1px solid #ebeff2;
  border-radius: 14px;
  background: #fff;
}

.friends-v2-stats a {
  display: grid;
  gap: 2px;
  justify-items: center;
  min-height: 52px;
  padding: 8px 8px 7px;
  color: #111820;
  text-decoration: none;
}

.friends-v2-stats a + a {
  border-left: 1px solid #ebeff2;
}

.friends-v2-stats a.active {
  background: #fff;
}

.friends-v2-stats strong {
  font-size: 1.16rem;
  font-weight: 950;
  line-height: 1;
}

.friends-v2-stats span {
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.2;
}

.friends-v2-panel {
  margin: 14px;
  padding: 15px 14px;
}

.friends-v2-panel .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.friends-v2-section-icon,
.friends-v2-inline-icon {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.friends-v2-section-icon {
  width: 17px;
  height: 17px;
  color: var(--sl-primary);
}

.friends-v2-section-icon.is-list {
  --icon: url("/assets/icons/bold/user.svg");
}

.friends-v2-inline-icon {
  width: 12px;
  height: 12px;
  color: #6c7680;
  vertical-align: -1px;
}

.friends-v2-inline-icon.is-checkin {
  --icon: url("/assets/icons/linear/calendar.svg");
}

.friends-v2-inline-icon.is-park {
  --icon: url("/assets/icons/linear/location.svg");
}

.friends-v2-inline-icon.is-clock {
  --icon: url("/assets/icons/linear/clock-1.svg");
}

.friends-v2 .friend-item,
.user-search-v2 .friend-item {
  border-color: var(--sl-border);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
}

.friends-v2 .friend-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 7px 10px;
  align-items: center;
  min-height: 88px;
  padding: 12px 34px 12px 11px;
  border-radius: 14px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.friends-v2 .friend-link-card::after {
  right: 14px;
  width: 16px;
  height: 16px;
  color: var(--sl-primary);
  font-size: 0;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
}

.friends-v2 .friend-link-card .toolbar {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.friends-v2 .avatar-link,
.friends-v2 .small-avatar {
  width: 48px;
  height: 48px;
}

.friends-v2 .avatar-link {
  position: relative;
  display: block;
}

.friends-v2 .avatar-link > i {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--sl-primary);
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.14);
}

.friends-v2 .small-avatar {
  background: linear-gradient(145deg, #0bbf72, #007a46);
  color: #fff;
  font-size: 0.86rem;
}

.friends-v2-person {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.friends-v2-person strong {
  overflow: hidden;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.friends-v2-person strong a {
  color: inherit;
  text-decoration: none;
}

.friends-v2-person small {
  overflow: hidden;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.friends-v2-person em {
  overflow: hidden;
  color: #333b44;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.friends-v2-meta {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.friends-v2-meta b {
  min-height: 24px;
  padding: 6px 8px;
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.friends-v2-followback {
  margin: 0;
}

.friends-v2-followback button {
  min-height: 28px;
  padding: 7px 9px;
  border: 0;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 154, 78, 0.2);
}

.friends-v2-meta small {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.friends-v2-latest {
  grid-column: 2 / -1;
  display: flex;
  min-width: 0;
  gap: 4px;
  align-items: center;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

.friends-v2-latest > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.friends-v2-empty {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 18px 14px;
  border: 1px dashed #d7e3dc;
  border-radius: 14px;
  background: #f8fcfa;
}

.friends-v2-empty strong {
  color: #111820;
  font-size: 0.95rem;
  font-weight: 900;
}

.friends-v2-empty p {
  margin: 0;
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 600;
}

.friends-v2 .friend-link-card .toolbar > div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.friends-v2 .friend-item h3,
.user-search-v2 .friend-item h3 {
  margin: 0;
  color: var(--sl-text);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
}

.friends-v2 .friend-item .muted {
  margin: 0;
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

.friends-v2 .friend-link-card .tag {
  min-height: 28px;
  padding: 6px 10px;
  background: #eaf8f1;
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="timeline"] .friend-profile-v2 {
  color: #111820;
}

body[data-page="timeline"] .friend-profile-v2 .profile-cover {
  height: 164px;
  margin: 14px 14px 0;
  border-radius: 24px 24px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.92) 100%),
    linear-gradient(145deg, rgba(0, 154, 78, 0.08), rgba(0, 194, 209, 0.16)),
    var(--profile-cover, linear-gradient(145deg, #9ed3e5, #dfeef4));
  background-position: center;
  background-size: cover;
  overflow: visible;
}

body[data-page="timeline"] .friend-profile-v2 .profile-cover::before {
  display: none;
}

body[data-page="timeline"] .friend-profile-v2 .cover-avatar {
  left: 18px;
  bottom: -43px;
  width: 86px;
  height: 86px;
  border: 4px solid #fff;
  background: #0b0d10;
  color: #fff;
  font-size: 1.22rem;
  outline: 3px solid var(--sl-primary);
  outline-offset: -7px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
}

body[data-page="timeline"] .friend-profile-v2 .page-title {
  margin: 0 14px 14px;
  padding: 48px 14px 16px;
  border: 1px solid #ebeff2;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="timeline"] .friend-profile-v2 .page-title .eyebrow {
  margin: 0 0 3px;
  color: var(--sl-primary);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

body[data-page="timeline"] .friend-profile-v2 .page-title .toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

body[data-page="timeline"] .friend-profile-v2 .page-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.08;
}

body[data-page="timeline"] .friend-profile-v2 .page-title .lead {
  margin: 5px 0 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.25;
}

body[data-page="timeline"] .friend-profile-v2 .page-title .tag.green {
  min-height: 32px;
  padding: 8px 12px;
  background: #eaf8f1;
  color: var(--sl-primary);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
}

body[data-page="timeline"] .friend-profile-v2 .page-title .btn.primary {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sl-primary);
  font-size: 0.76rem;
  line-height: 1;
}

body[data-page="timeline"] .friend-profile-v2-badges {
  display: flex;
  gap: 8px;
  margin-top: 13px;
  padding-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

body[data-page="timeline"] .friend-profile-v2-badges::-webkit-scrollbar {
  display: none;
}

body[data-page="timeline"] .friend-profile-v2-badges .badge-medal {
  min-width: auto;
  min-height: 30px;
  padding: 7px 10px;
  border-width: 1px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="timeline"] .friend-profile-v2-stack {
  gap: 14px;
  padding: 0 14px;
}

body[data-page="timeline"] .friend-profile-v2 .section-head {
  margin-bottom: 10px;
}

body[data-page="timeline"] .friend-profile-v2 .section-head h2,
body[data-page="timeline"] .friend-profile-v2 > .content-stack > .panel > h2 {
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="timeline"] .friend-profile-v2-detail {
  gap: 0;
}

body[data-page="timeline"] .friend-profile-v2-detail div {
  min-height: 35px;
  padding: 8px 0;
}

body[data-page="timeline"] .friend-profile-v2-detail span,
body[data-page="timeline"] .friend-profile-v2-detail strong {
  font-size: 0.78rem;
  line-height: 1.25;
}

body[data-page="timeline"] .friend-profile-v2-detail span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #59636c;
  font-weight: 650;
}

body[data-page="timeline"] .friend-profile-v2-detail strong {
  color: #111820;
  font-weight: 850;
}

body[data-page="timeline"] .friend-profile-v2-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="timeline"] .friend-profile-v2-icon.is-stance {
  mask-image: url("/assets/icons/linear/refresh.svg");
  -webkit-mask-image: url("/assets/icons/linear/refresh.svg");
}

body[data-page="timeline"] .friend-profile-v2-icon.is-board {
  mask-image: url("/assets/icons/linear/calendar.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar.svg");
}

body[data-page="timeline"] .friend-profile-v2-icon.is-level {
  mask-image: url("/assets/icons/linear/status-up.svg");
  -webkit-mask-image: url("/assets/icons/linear/status-up.svg");
}

body[data-page="timeline"] .friend-profile-v2-icon.is-birthday {
  mask-image: url("/assets/icons/linear/calendar-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar-1.svg");
}

body[data-page="timeline"] .friend-profile-v2-icon.is-user {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="timeline"] .friend-profile-v2-icon.is-location {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="timeline"] .friend-profile-v2 .profile-summary {
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 154, 78, 0.1) 0 18px, transparent 19px),
    #fff;
}

body[data-page="timeline"] .friend-profile-v2 .summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body[data-page="timeline"] .friend-profile-v2 .summary-item {
  min-width: 0;
  min-height: 94px;
  padding: 10px;
  border-color: #ebeff2;
  border-radius: 12px;
}

body[data-page="timeline"] .friend-profile-v2 .summary-item span {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.25;
}

body[data-page="timeline"] .friend-profile-v2 .summary-item strong {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
}

body[data-page="timeline"] .friend-profile-v2 .summary-item small {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

body[data-page="timeline"] .friend-profile-v2 .profile-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="timeline"] .friend-profile-v2 .profile-stats .stat {
  min-height: 64px;
  padding: 10px 8px;
  border: 0;
  border-right: 1px solid #ebeff2;
  border-radius: 0;
  background: #fff;
  text-align: center;
}

body[data-page="timeline"] .friend-profile-v2 .profile-stats .stat:nth-child(3n) {
  border-right: 0;
}

body[data-page="timeline"] .friend-profile-v2 .profile-stats .stat strong {
  color: #111820;
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1.05;
}

body[data-page="timeline"] .friend-profile-v2 .profile-stats .stat span {
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.25;
}

body[data-page="timeline"] .friend-profile-v2 .rank-list {
  gap: 0;
}

body[data-page="timeline"] .friend-profile-v2 .rank-item {
  min-height: 42px;
  padding: 10px 20px 10px 0;
}

body[data-page="timeline"] .friend-profile-v2 .rank-item::after {
  color: var(--sl-primary);
}

body[data-page="timeline"] .friend-profile-v2 .rank-item span,
body[data-page="timeline"] .friend-profile-v2 .rank-item strong,
body[data-page="timeline"] .friend-profile-v2 .detail-list span,
body[data-page="timeline"] .friend-profile-v2 .detail-list strong {
  font-size: 0.78rem;
}

body[data-page="timeline"] .friend-profile-v2 .rank-item span,
body[data-page="timeline"] .friend-profile-v2 .detail-list span {
  color: #59636c;
  font-weight: 650;
}

body[data-page="timeline"] .friend-profile-v2 .rank-item strong,
body[data-page="timeline"] .friend-profile-v2 .detail-list strong {
  color: #111820;
  font-weight: 850;
}

body[data-page="timeline"] .friend-profile-v2 .compact-select {
  min-height: 34px;
  border-color: rgba(0, 154, 78, 0.18);
  color: var(--sl-primary);
  background: #fff;
  font-size: 0.74rem;
  font-weight: 850;
}

body[data-page="timeline"] .friend-profile-v2 .log-mini {
  flex-basis: 170px;
  min-height: 96px;
  padding: 12px;
  border-color: #ebeff2;
  border-radius: 12px;
  background: #fff;
}

body[data-page="timeline"] .friend-profile-v2 .log-mini strong {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
}

body[data-page="timeline"] .friend-profile-v2 .log-mini span,
body[data-page="timeline"] .friend-profile-v2 .log-mini em {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
}

body[data-page="timeline"] .friend-profile-v2-report {
  display: grid;
  gap: 10px;
  justify-content: center;
  padding: 2px 0 18px;
  text-align: center;
}

body[data-page="timeline"] .friend-profile-v2-report a,
body[data-page="timeline"] .friend-profile-v2-report button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #8a949c;
  font-size: 0.68rem;
  font-weight: 550;
  font-family: inherit;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

body[data-page="timeline"] .friend-profile-v2-report button {
  color: #8a949c;
}

body[data-page="timeline"] .friend-profile-v2 {
  background: #fff;
  color: #111820;
}

body[data-page="timeline"] .friend-profile-v2-state-panel {
  display: grid;
  gap: 12px;
  margin: 14px;
  padding: 16px 14px;
}

body[data-page="timeline"] .friend-profile-v2-state-panel h2,
body[data-page="timeline"] .friend-profile-v2-state-panel p {
  margin: 0;
}

body[data-page="timeline"] .friend-profile-v2-state-panel .actions {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

body[data-page="timeline"] .friend-profile-v3-hero {
  padding-bottom: 0;
  background: #fff;
}

body[data-page="timeline"] .friend-profile-v3-cover {
  height: 224px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.86) 82%, #fff 100%),
    url("/assets/profile/profile-cover-default.jpg") center 42% / cover no-repeat;
}

body[data-page="timeline"] .friend-profile-v3-cover::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 116px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82) 62%, #fff 100%);
  pointer-events: none;
}

body[data-page="timeline"] .friend-profile-v3-cover::after {
  content: none;
}

body[data-page="timeline"] .friend-profile-v3-card {
  position: relative;
  gap: 12px;
  margin: -66px 12px 0;
  padding: 0 0 15px;
}

body[data-page="timeline"] .friend-profile-v3-card .profile-v2-head {
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 8px;
  align-items: end;
  padding-right: 112px;
}

body[data-page="timeline"] .friend-profile-v3-card .profile-v2-avatar {
  width: 80px;
  height: 80px;
  border-width: 4px;
  outline: 3px solid var(--sl-primary);
  background: #0b0d10;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.22);
}

body[data-page="timeline"] .friend-profile-v3-card .profile-v3-name-row {
  margin-bottom: 0;
}

body[data-page="timeline"] .friend-profile-v3-card .profile-v3-name-row h1 {
  color: #111820;
  font-size: 1.5rem;
  line-height: 1.04;
}

body[data-page="timeline"] .friend-profile-v3-card .profile-v3-id-text {
  color: #4f5a64;
  font-size: 0.7rem;
  line-height: 1.2;
}

body[data-page="timeline"] .friend-profile-v3-follow-form {
  position: absolute;
  right: 0;
  bottom: 18px;
  margin: 0;
}

body[data-page="timeline"] .friend-profile-v3-follow {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 7px 12px;
  border: 1px solid rgba(10, 163, 95, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--sl-primary);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 5px 13px rgba(17, 17, 17, 0.08);
}

body[data-page="timeline"] .friend-profile-v3-follow-form .friend-profile-v3-follow {
  position: static;
  background: var(--sl-primary);
  color: #fff;
}

body[data-page="timeline"] .friend-profile-v2-stack {
  gap: 14px;
  padding: 0 15px 98px;
}

body[data-page="timeline"] .friend-profile-v3-stats {
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.05);
}

body[data-page="timeline"] .friend-profile-v3-stats > * {
  min-height: 54px;
  padding: 8px;
}

body[data-page="timeline"] .friend-profile-v3-stats strong {
  font-size: 1.18rem;
}

body[data-page="timeline"] .friend-profile-v3-stats span {
  font-size: 0.68rem;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-section-icon.is-badge {
  mask-image: url("/assets/icons/bold/cup.svg");
  -webkit-mask-image: url("/assets/icons/bold/cup.svg");
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-section-icon.is-style {
  mask-image: url("/assets/icons/bold/status.svg");
  -webkit-mask-image: url("/assets/icons/bold/status.svg");
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-section-icon.is-history {
  mask-image: url("/assets/icons/bold/calendar.svg");
  -webkit-mask-image: url("/assets/icons/bold/calendar.svg");
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-section-icon.is-visited {
  mask-image: url("/assets/icons/bold/location-tick.svg");
  -webkit-mask-image: url("/assets/icons/bold/location-tick.svg");
}

body[data-page="timeline"] .friend-profile-v3-badges,
body[data-page="timeline"] .friend-profile-v3-style-card,
body[data-page="timeline"] .friend-profile-v3-info-card,
body[data-page="timeline"] .friend-profile-v2 .profile-v3-gear-panel {
  padding: 14px;
}

body[data-page="timeline"] .friend-profile-v3-badges .section-head,
body[data-page="timeline"] .friend-profile-v3-style-card .section-head {
  margin-bottom: 10px;
}

body[data-page="timeline"] .friend-profile-v3-badges .profile-v3-medal-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 3px 0 0;
  border: 0;
  box-shadow: none;
}

body[data-page="timeline"] .friend-profile-v3-badges .profile-v3-medal-list a {
  display: grid;
  grid-template-rows: 48px minmax(2.4em, auto);
  gap: 5px;
  color: inherit;
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

body[data-page="timeline"] .friend-profile-v3-badges .profile-v3-badge-art {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto;
}

body[data-page="timeline"] .friend-profile-v3-badges .profile-v3-badge-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(17, 17, 17, 0.13));
}

body[data-page="timeline"] .friend-profile-v3-badges .is-locked img {
  filter: grayscale(0.15) drop-shadow(0 4px 6px rgba(17, 17, 17, 0.1));
  opacity: 0.78;
}

body[data-page="timeline"] .friend-profile-v3-style-card .section-head h2,
body[data-page="timeline"] .friend-profile-v3-badges .section-head h2 {
  color: #111820;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.25;
}

body[data-page="timeline"] .friend-profile-v3-style-card .profile-v2-tags {
  gap: 7px;
}

body[data-page="timeline"] .friend-profile-v3-style-card .profile-v2-tags span {
  min-height: 27px;
  padding: 5px 10px;
  border: 1px solid #e8eef1;
  background: #f7faf9;
  color: #4d5963;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.2;
}

body[data-page="timeline"] .friend-profile-v3-info-card {
  gap: 0;
}

body[data-page="timeline"] .friend-profile-v3-info-card div {
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 36px;
  padding: 6px 0;
}

body[data-page="timeline"] .friend-profile-v3-info-card span,
body[data-page="timeline"] .friend-profile-v3-info-card strong {
  font-size: 0.74rem;
}

body[data-page="timeline"] .friend-profile-v3-info-card span {
  position: static;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-left: 0;
  color: #59636c;
  font-weight: 650;
  white-space: nowrap;
}

body[data-page="timeline"] .friend-profile-v3-info-card strong {
  color: #111820;
  font-weight: 850;
}

body[data-page="timeline"] .friend-profile-v3-info-card span::before {
  content: none;
}

body[data-page="timeline"] .friend-profile-v3-info-card span img {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(942%) hue-rotate(123deg) brightness(91%) contrast(93%);
}

body[data-page="timeline"] .friend-profile-v3-info-card div:nth-child(3) strong {
  justify-self: end;
  min-width: 48px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ff8a00;
  color: #fff;
  text-align: center;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v2-log {
  grid-template-columns: 76px minmax(0, 1fr) 12px;
  min-height: 82px;
  padding: 9px 0;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v2-log img {
  aspect-ratio: 4 / 3;
  border-radius: 9px;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v2-log div {
  position: relative;
  gap: 4px;
  padding-right: 28px;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v2-log strong {
  color: #111820;
  font-size: 0.74rem;
  line-height: 1.35;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v2-log span,
body[data-page="timeline"] .friend-profile-v2 .profile-v2-log small {
  color: #59636c;
  font-size: 0.68rem;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-log-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-log-meta i {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: #59636c;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-log-meta i::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: currentColor;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-log-meta .is-calendar::before {
  mask-image: url("/assets/icons/linear/calendar.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar.svg");
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-log-meta .is-clock::before {
  mask-image: url("/assets/icons/linear/clock-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/clock-1.svg");
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-log-like {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  gap: 3px;
  align-items: center;
  color: #ff3d33;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-log-like::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("/assets/icons/linear/heart.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/heart.svg") center / contain no-repeat;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-visited-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-visited-grid a {
  gap: 6px;
  text-align: left;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-visited-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 9px;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-visited-grid strong {
  color: #111820;
  font-size: 0.7rem;
  line-height: 1.28;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v3-visited-grid span {
  color: #59636c;
  font-size: 0.66rem;
  line-height: 1.15;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v2-gear-list {
  gap: 0;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v2-gear-list div {
  min-height: 36px;
  padding: 6px 0;
}

body[data-page="timeline"] .friend-profile-v2 .profile-v2-gear-list span,
body[data-page="timeline"] .friend-profile-v2 .profile-v2-gear-list strong {
  font-size: 0.74rem;
}

body[data-page="timeline"] .friend-log-v2 {
  background: #f4f6f7;
  color: #111820;
}

body[data-page="timeline"] .friend-log-v2-hero {
  display: grid;
  gap: 14px;
  padding: 18px 15px 16px;
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 154, 78, 0.14) 0 42px, transparent 43px),
    radial-gradient(circle at 12% 92%, rgba(255, 193, 7, 0.18) 0 36px, transparent 37px),
    linear-gradient(180deg, #ffffff, #f3faf6);
}

body[data-page="timeline"] .friend-log-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="timeline"] .friend-log-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="timeline"] .friend-log-v2-title-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/icons/bold/document-text.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/document-text.svg") center / contain no-repeat;
}

body[data-page="timeline"] .friend-log-v2-title p {
  margin: 0 0 2px;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

body[data-page="timeline"] .friend-log-v2-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.08;
}

body[data-page="timeline"] .friend-log-v2-hero > p {
  margin: 0;
  color: #39434c;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
}

body[data-page="timeline"] .friend-log-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="timeline"] .friend-log-v2-card {
  display: grid;
  gap: 12px;
}

body[data-page="timeline"] .friend-log-v2-card-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

body[data-page="timeline"] .friend-log-v2-card-head .small-avatar {
  width: 44px;
  height: 44px;
  background: #0b0d10;
  color: #fff;
  font-size: 0.82rem;
  outline: 2px solid var(--sl-primary);
  outline-offset: 2px;
}

body[data-page="timeline"] .friend-log-v2-card-head > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

body[data-page="timeline"] .friend-log-v2-user {
  color: #111820;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

body[data-page="timeline"] .friend-log-v2-card-head span {
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
}

body[data-page="timeline"] .friend-log-v2-card-head b {
  justify-self: end;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--sl-primary);
  font-size: 0.64rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="timeline"] .friend-log-v2-photo {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #dfe7eb;
}

body[data-page="timeline"] .friend-log-v2-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="timeline"] .friend-log-v2-park {
  display: grid;
  gap: 4px;
}

body[data-page="timeline"] .friend-log-v2-park span {
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

body[data-page="timeline"] .friend-log-v2-park h2 {
  margin: 0;
  color: #111820;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="timeline"] .friend-log-v2-park p,
body[data-page="timeline"] .friend-log-v2-meta span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin: 0;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.25;
}

body[data-page="timeline"] .friend-log-v2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
}

body[data-page="timeline"] .friend-log-v2-icon,
body[data-page="timeline"] .friend-log-v2-section-icon {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="timeline"] .friend-log-v2-icon {
  width: 13px;
  height: 13px;
  color: #6f7780;
}

body[data-page="timeline"] .friend-log-v2-section-icon {
  width: 17px;
  height: 17px;
  color: var(--sl-primary);
}

body[data-page="timeline"] .friend-log-v2-icon.is-location {
  color: var(--sl-primary);
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="timeline"] .friend-log-v2-icon.is-calendar {
  mask-image: url("/assets/icons/linear/calendar-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/calendar-1.svg");
}

body[data-page="timeline"] .friend-log-v2-icon.is-clock {
  mask-image: url("/assets/icons/linear/clock-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/clock-1.svg");
}

body[data-page="timeline"] .friend-log-v2-icon.is-heart {
  color: #ff3b30;
  mask-image: url("/assets/icons/linear/heart.svg");
  -webkit-mask-image: url("/assets/icons/linear/heart.svg");
}

body[data-page="timeline"] .friend-log-v2-icon.is-lock {
  mask-image: url("/assets/icons/linear/lock.svg");
  -webkit-mask-image: url("/assets/icons/linear/lock.svg");
}

body[data-page="timeline"] .friend-log-v2-icon.is-people {
  mask-image: url("/assets/icons/linear/profile-2user.svg");
  -webkit-mask-image: url("/assets/icons/linear/profile-2user.svg");
}

body[data-page="timeline"] .friend-log-v2-icon.is-surface {
  mask-image: url("/assets/icons/linear/status-up.svg");
  -webkit-mask-image: url("/assets/icons/linear/status-up.svg");
}

body[data-page="timeline"] .friend-log-v2-section-icon.is-detail {
  mask-image: url("/assets/icons/bold/document-text.svg");
  -webkit-mask-image: url("/assets/icons/bold/document-text.svg");
}

body[data-page="timeline"] .friend-log-v2-section-icon.is-like {
  color: #7a818c;
  mask-image: url("/assets/icons/linear/heart.svg");
  -webkit-mask-image: url("/assets/icons/linear/heart.svg");
}

body[data-page="timeline"] .friend-log-v2-note {
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  background: #f7f9fa;
  color: #111820;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="timeline"] .friend-log-v2-detail-list {
  gap: 0;
}

body[data-page="timeline"] .friend-log-v2-detail-list div {
  min-height: 38px;
  padding: 9px 0;
}

body[data-page="timeline"] .friend-log-v2-detail-list span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.25;
}

body[data-page="timeline"] .friend-log-v2-detail-list strong {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: right;
}

body[data-page="timeline"] .friend-log-v2-likers-panel {
  display: grid;
  gap: 12px;
}

body[data-page="timeline"] .friend-log-v2-likers-count {
  justify-self: end;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="timeline"] .friend-log-v2-likers-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 10px 11px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fbfcfc;
}

body[data-page="timeline"] .friend-log-v2-liker-facepile {
  display: flex;
  align-items: center;
  min-width: 0;
}

body[data-page="timeline"] .friend-log-v2-liker-facepile img,
body[data-page="timeline"] .friend-log-v2-liker-facepile span {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-left: -9px;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(17, 17, 17, 0.08);
}

body[data-page="timeline"] .friend-log-v2-liker-facepile img:first-child,
body[data-page="timeline"] .friend-log-v2-liker-facepile span:first-child {
  margin-left: 0;
}

body[data-page="timeline"] .friend-log-v2-liker-facepile img {
  object-fit: cover;
  background: #0b0d10;
}

body[data-page="timeline"] .friend-log-v2-liker-facepile span {
  display: grid;
  place-items: center;
  background: #eef3f1;
  color: #3d474f;
  font-size: 0.66rem;
  font-weight: 850;
}

body[data-page="timeline"] .friend-log-v2-likers-summary p {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
}

body[data-page="timeline"] .friend-log-v2-likers-summary strong {
  color: #111820;
  font-weight: 950;
}

body[data-page="timeline"] .friend-log-v2-likers-detail {
  display: grid;
  gap: 10px;
}

body[data-page="timeline"] .friend-log-v2-likers-detail summary {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e3e9ed;
  border-radius: 999px;
  background: #fff;
  color: #333b44;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  list-style: none;
}

body[data-page="timeline"] .friend-log-v2-likers-detail summary::-webkit-details-marker {
  display: none;
}

body[data-page="timeline"] .friend-log-v2-likers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
  padding-top: 2px;
}

body[data-page="timeline"] .friend-log-v2-likers a {
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  padding: 8px 5px;
  border-radius: 12px;
  background: #fff;
  color: #111820;
  text-align: center;
  text-decoration: none;
}

body[data-page="timeline"] .friend-log-v2-likers img {
  display: block;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 999px;
  outline: 2px solid #edf1f4;
  object-fit: cover;
  background: #0b0d10;
}

body[data-page="timeline"] .friend-log-v2-likers span {
  width: 100%;
  overflow: hidden;
  color: #333b44;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="timeline"] .friend-log-v2-empty-likers {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 500;
}

body[data-page="timeline"] .friend-log-v2-action-panel {
  padding: 14px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 59, 48, 0.1) 0 28px, transparent 29px),
    #fff;
}

body[data-page="timeline"] .friend-log-v2-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

body[data-page="timeline"] .friend-log-v2-actions form {
  min-width: 0;
}

body[data-page="timeline"] .friend-log-v2-actions .cta-action {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
}

body[data-page="timeline"] .friend-log-v2-actions .timeline-v2-like.cta-like {
  display: inline-grid;
  grid-template-columns: 18px auto auto;
  gap: 6px;
  min-height: 48px;
  border-color: rgba(255, 59, 48, 0.24);
  background: #fff8f7;
  color: #e94b43;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(255, 59, 48, 0.1);
}

body[data-page="timeline"] .friend-log-v2-actions .timeline-v2-like.cta-like .friend-log-v2-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}

body[data-page="timeline"] .friend-log-v2-actions .timeline-v2-like strong {
  min-width: 22px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 59, 48, 0.1);
  color: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="timeline"] .friend-log-v2-actions .timeline-v2-like.liked {
  border-color: rgba(20, 24, 31, 0.1);
  background: #f6f7f8;
  color: #7a818c;
  box-shadow: none;
}

body[data-page="timeline"] .friend-log-v2-actions .timeline-v2-like.liked .friend-log-v2-icon {
  mask-image: url("/assets/icons/bold/heart.svg");
  -webkit-mask-image: url("/assets/icons/bold/heart.svg");
}

body[data-page="timeline"] .friend-log-v2-actions .timeline-v2-like.liked span {
  display: inline;
}

body[data-page="timeline"] .friend-log-v2-actions .timeline-v2-like.liked strong {
  padding: 3px 7px;
  background: rgba(20, 24, 31, 0.08);
}

body[data-page="timeline"] .friend-log-v2-actions .cta-secondary {
  border-color: rgba(0, 154, 78, 0.18);
  color: var(--sl-primary);
  background: #fff;
}

.user-search-v2-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.user-search-v2-form .search {
  width: 100%;
  border-color: var(--sl-border);
  border-radius: 999px;
}

.checkin-detail-v2-panel {
  display: grid;
  gap: 12px;
}

.checkin-detail-v2-panel > p {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(0, 154, 78, 0.12);
  border-radius: 12px;
  background: #f8fcfa;
  color: var(--sl-text);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.65;
}

.checkin-detail-v2-photo {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: #edf1f4;
}

.checkin-detail-v2-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkin-detail-v2-icon.is-heart {
  --icon: url("/assets/icons/bold/heart.svg");
  color: #7a818c;
}

.checkin-detail-v2-likers-panel {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.checkin-detail-v2-likers-count {
  justify-self: end;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.checkin-detail-v2-likers-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 10px 11px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fbfcfc;
}

.checkin-detail-v2-liker-facepile {
  display: flex;
  align-items: center;
  min-width: 0;
}

.checkin-detail-v2-liker-facepile img,
.checkin-detail-v2-liker-facepile span {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-left: -9px;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(17, 17, 17, 0.08);
}

.checkin-detail-v2-liker-facepile img:first-child,
.checkin-detail-v2-liker-facepile span:first-child {
  margin-left: 0;
}

.checkin-detail-v2-liker-facepile img {
  object-fit: cover;
  background: #0b0d10;
}

.checkin-detail-v2-liker-facepile span {
  display: grid;
  place-items: center;
  background: #eef3f1;
  color: #3d474f;
  font-size: 0.66rem;
  font-weight: 850;
}

.checkin-detail-v2-likers-summary p {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
}

.checkin-detail-v2-likers-summary strong {
  color: #111820;
  font-weight: 950;
}

.checkin-detail-v2-likers-detail {
  display: grid;
  gap: 10px;
}

.checkin-detail-v2-likers-detail summary {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e3e9ed;
  border-radius: 999px;
  background: #fff;
  color: #333b44;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  list-style: none;
}

.checkin-detail-v2-likers-detail summary::-webkit-details-marker {
  display: none;
}

.checkin-detail-v2-likers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
  padding-top: 2px;
}

.checkin-detail-v2-likers a {
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  padding: 8px 5px;
  border-radius: 12px;
  background: #fff;
  color: #111820;
  text-align: center;
  text-decoration: none;
}

.checkin-detail-v2-likers img {
  display: block;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 999px;
  outline: 2px solid #edf1f4;
  object-fit: cover;
  background: #0b0d10;
}

.checkin-detail-v2-likers span {
  width: 100%;
  overflow: hidden;
  color: #333b44;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkin-detail-v2-empty-likers {
  margin: 0;
}

.checkin-detail-edit-form {
  display: grid;
  gap: 14px;
}

.checkin-detail-field,
.checkin-detail-field label {
  display: grid;
  gap: 6px;
}

.checkin-detail-field label,
.checkin-detail-field legend {
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 700;
}

.checkin-detail-field input[type="datetime-local"],
.checkin-detail-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #dfe4e8;
  border-radius: 10px;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.checkin-detail-field textarea {
  min-height: 100px;
}

.checkin-detail-field legend + div,
.checkin-detail-field > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkin-detail-field label:has(input[type="checkbox"]),
.checkin-detail-field label:has(input[type="radio"]) {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  width: auto;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.checkin-detail-field input[type="checkbox"],
.checkin-detail-field input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.checkin-detail-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  padding-top: 4px;
}

.checkin-detail-actions button,
.checkin-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
}

.checkin-detail-actions button {
  border: 0;
  background: #0bbf72;
  color: #fff;
}

.checkin-detail-actions a {
  background: #f0f3f6;
  color: #5b6771;
}

.checkin-detail-v2-report-link {
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.checkin-detail-v2-report-link a {
  color: #6d747c;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 431px) {
  body[data-page="favorite-parks"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="favorite-parks"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media (max-width: 360px) {
  body[data-page="favorite-parks"] .favorite-parks-v2-card {
    gap: 10px;
  }

  body[data-page="favorite-parks"] .favorite-parks-v2-card-main {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 10px;
  }

  body[data-page="favorite-parks"] .favorite-parks-v2-actions a,
  body[data-page="favorite-parks"] .favorite-parks-v2-actions button {
    padding-right: 8px;
    padding-left: 8px;
  }
}

body[data-page="checkin"] {
  background: #fff;
  color: #111820;
  font-size: 108%;
}

body[data-page="checkin"] .site-header {
  display: none;
}

body[data-page="checkin"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 94px;
  overflow: hidden;
  background: #fff;
}

body[data-page="checkin"] .panel {
  padding: 16px;
  border-color: #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="checkin"] .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  text-align: left;
}

body[data-page="checkin"] .section-head h2 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="checkin"] .checkin-v2-hero {
  display: grid;
  gap: 14px;
  padding: 18px 15px 14px;
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 154, 78, 0.14) 0 42px, transparent 43px),
    radial-gradient(circle at 12% 92%, rgba(255, 193, 7, 0.18) 0 36px, transparent 37px),
    linear-gradient(180deg, #ffffff, #f3faf6);
}

body[data-page="checkin"] .checkin-v2-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

body[data-page="checkin"] .checkin-v2-title-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="checkin"] .checkin-v2-title-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/icons/bold/location.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/location.svg") center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v2-title p {
  margin: 0 0 2px;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="checkin"] .checkin-v2-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.08;
}

body[data-page="checkin"] .checkin-v2-lead {
  margin: 0;
  color: #39434c;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
}

body[data-page="checkin"] .checkin-v2-status-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e1e7eb;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
}

body[data-page="checkin"] .checkin-v2-status-card > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eaf8f1;
}

body[data-page="checkin"] .checkin-v2-status-card > i::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/location-tick.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/location-tick.svg") center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v2-status-card.is-outside > i::before,
body[data-page="checkin"] .checkin-v2-status-card.is-denied > i::before,
body[data-page="checkin"] .checkin-v2-status-card.is-inaccurate > i::before {
  background: #ff9f0a;
  mask-image: url("/assets/icons/bold/info-circle.svg");
  -webkit-mask-image: url("/assets/icons/bold/info-circle.svg");
}

body[data-page="checkin"] .checkin-v2-status-card.is-active > i::before,
body[data-page="checkin"] .checkin-v2-status-card.is-active-moved > i::before {
  mask-image: url("/assets/icons/bold/record-circle.svg");
  -webkit-mask-image: url("/assets/icons/bold/record-circle.svg");
}

body[data-page="checkin"] .checkin-v2-status-card span {
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="checkin"] .checkin-v2-status-card strong {
  display: block;
  margin-top: 4px;
  color: #111820;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.25;
}

body[data-page="checkin"] .checkin-v2-status-card small {
  display: block;
  margin-top: 4px;
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
}

body[data-page="checkin"] .checkin-v2-status-card > a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #fff;
  color: #111820;
}

body[data-page="checkin"] .checkin-v2-status-card > a::before {
  content: "";
  width: 17px;
  height: 17px;
  background: currentColor;
  mask: url("/assets/icons/linear/refresh.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/refresh.svg") center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v2-stack {
  gap: 14px;
  padding: 0 15px;
}

body[data-page="checkin"] .checkin-v2.is-active .checkin-v2-hero,
body[data-page="checkin"] .checkin-v2.is-active-moved .checkin-v2-hero {
  display: none;
}

body[data-page="checkin"] .checkin-v2.is-active .checkin-v2-stack,
body[data-page="checkin"] .checkin-v2.is-active-moved .checkin-v2-stack {
  gap: 14px;
  padding: 14px 14px 96px;
}

body[data-page="checkin"] .checkin-v3-save {
  display: grid;
  gap: 14px;
  padding: 15px 14px;
  border: 1px solid #ebeff2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

body[data-page="checkin"] .checkin-v3-checked-at {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #111820;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.4;
}

body[data-page="checkin"] .checkin-v3-checked-at::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/calendar.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/calendar.svg") center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v3-park-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fbfdfc;
  box-shadow: none;
}

body[data-page="checkin"] .checkin-v3-park-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

body[data-page="checkin"] .checkin-v3-park-card div {
  display: grid;
  min-width: 0;
  gap: 7px;
}

body[data-page="checkin"] .checkin-v3-park-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111820;
  font-size: 0.96rem;
  font-weight: 950;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="checkin"] .checkin-v3-park-card span {
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

body[data-page="checkin"] .checkin-v3-save-form {
  display: grid;
  gap: 16px;
}

body[data-page="checkin"] .checkin-v3-option-group,
body[data-page="checkin"] .checkin-v3-visibility {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

body[data-page="checkin"] .checkin-v3-option-group legend,
body[data-page="checkin"] .checkin-v3-note-field label,
body[data-page="checkin"] .checkin-v3-visibility legend {
  display: block;
  margin: 0 0 8px;
  color: #111820;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
}

body[data-page="checkin"] .checkin-v3-option-group small,
body[data-page="checkin"] .checkin-v3-note-field small {
  color: #59636c;
  font-size: 0.68rem;
  font-weight: 650;
}

body[data-page="checkin"] .checkin-v3-segment-grid {
  display: grid;
  gap: 11px;
}

body[data-page="checkin"] .checkin-v3-segment-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="checkin"] .checkin-v3-segment-grid.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="checkin"] .checkin-v3-segment-grid.is-style {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-page="checkin"] .checkin-v3-option-note {
  margin: -1px 0 10px;
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
}

body[data-page="checkin"] .checkin-v3-segment-grid input,
body[data-page="checkin"] .checkin-v3-visibility input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body[data-page="checkin"] .checkin-v3-segment-grid span,
body[data-page="checkin"] .checkin-v3-visibility span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 8px;
  border: 1px solid #dfe4e8;
  border-radius: 12px;
  background: #fff;
  color: #333b44;
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.03);
}

body[data-page="checkin"] .checkin-v3-segment-grid.is-style span {
  width: auto;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1.1;
}

body[data-page="checkin"] .checkin-v3-segment-grid input:checked + span,
body[data-page="checkin"] .checkin-v3-visibility input:checked + span {
  border-color: rgba(0, 154, 78, 0.55);
  background: #f5fbf8;
  color: var(--sl-primary);
  font-weight: 950;
}

body[data-page="checkin"] .checkin-v3-note-field {
  position: relative;
  display: grid;
}

body[data-page="checkin"] .checkin-v3-note-field textarea {
  width: 100%;
  min-height: 66px;
  padding: 12px 16px 23px;
  border: 1px solid #dfe4e8;
  border-radius: 14px;
  background: #fbfcfd;
  color: #111820;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
  resize: vertical;
  box-shadow: inset 0 1px 2px rgba(17, 17, 17, 0.03);
}

body[data-page="checkin"] .checkin-v3-note-field textarea::placeholder {
  color: #b7bec5;
  font-weight: 650;
}

body[data-page="checkin"] .checkin-v3-note-field > span {
  position: absolute;
  right: 14px;
  bottom: 9px;
  color: #777f87;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
}

body[data-page="checkin"] .checkin-v3-sub-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

body[data-page="checkin"] .checkin-v3-photo-button,
body[data-page="checkin"] .checkin-v3-visibility {
  min-height: 64px;
  padding: 11px 13px;
  border: 1px solid #edf0f2;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.04);
}

body[data-page="checkin"] .checkin-v3-photo-button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #111820;
  font: inherit;
  text-align: left;
}

body[data-page="checkin"] .checkin-v3-photo-button i {
  width: 30px;
  height: 30px;
  background: var(--sl-primary);
  mask: url("/assets/icons/linear/camera.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/camera.svg") center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v3-photo-button span {
  display: grid;
  gap: 4px;
  color: #111820;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
}

body[data-page="checkin"] .checkin-v3-photo-button small {
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 650;
}

body[data-page="checkin"] .checkin-v3-visibility {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 11px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fbfdfc;
  box-shadow: none;
}

body[data-page="checkin"] .checkin-v3-visibility legend {
  margin-bottom: 9px;
}

body[data-page="checkin"] .checkin-v3-visibility div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body[data-page="checkin"] .checkin-v3-visibility span {
  min-height: 36px;
  padding: 8px 6px;
  border-radius: 999px;
  font-size: 0.76rem;
  white-space: nowrap;
}

body[data-page="checkin"] .checkin-v3-visibility i {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: currentColor;
  mask: url("/assets/icons/linear/global.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/global.svg") center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v3-footer-actions {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 0.95fr);
  gap: 12px;
  align-items: center;
  margin-top: 0;
}

body[data-page="checkin"] .checkin-v3-save-button,
body[data-page="checkin"] .checkin-v3-later-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
}

body[data-page="checkin"] .checkin-v3-save-button {
  gap: 10px;
  border: 0;
  background: var(--sl-primary);
  color: #fff;
  box-shadow: 0 9px 20px rgba(0, 154, 78, 0.24);
}

body[data-page="checkin"] .checkin-v3-save-button i {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--sl-primary);
}

body[data-page="checkin"] .checkin-v3-save-button i::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/tick-circle.svg") center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v3-later-button {
  border: 1px solid #dfe4e8;
  background: #fff;
  color: #111820;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.04);
}

body[data-page="checkin"] .checkin-edit-v2-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding-bottom: 2px;
}

body[data-page="checkin"] .checkin-edit-v2-actions .cta-action {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

body[data-page="checkin"] .checkin-v2-section-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v2-section-icon.is-location {
  mask-image: url("/assets/icons/bold/location.svg");
  -webkit-mask-image: url("/assets/icons/bold/location.svg");
}

body[data-page="checkin"] .checkin-v2-section-icon.is-note {
  mask-image: url("/assets/icons/bold/document-text.svg");
  -webkit-mask-image: url("/assets/icons/bold/document-text.svg");
}

body[data-page="checkin"] .checkin-v2-section-icon.is-add {
  mask-image: url("/assets/icons/bold/add-circle.svg");
  -webkit-mask-image: url("/assets/icons/bold/add-circle.svg");
}

body[data-page="checkin"] .checkin-v2-section-icon.is-info {
  mask-image: url("/assets/icons/bold/info-circle.svg");
  -webkit-mask-image: url("/assets/icons/bold/info-circle.svg");
}

body[data-page="checkin"] .checkin-v2-park-card,
body[data-page="checkin"] .checkin-v2-candidate {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: inherit;
}

body[data-page="checkin"] .checkin-v2-park-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe7eb;
}

body[data-page="checkin"] .checkin-v2-park-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="checkin"] .checkin-v2-park-thumb b {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(17, 24, 32, 0.72);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="checkin"] .checkin-v2-park-card div,
body[data-page="checkin"] .checkin-v2-candidate div {
  display: grid;
  min-width: 0;
  gap: 6px;
}

body[data-page="checkin"] .checkin-v2-park-card strong,
body[data-page="checkin"] .checkin-v2-candidate strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111820;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="checkin"] .checkin-v2-park-card small,
body[data-page="checkin"] .checkin-v2-candidate small,
body[data-page="checkin"] .checkin-v2-park-card em {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: #59636c;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

body[data-page="checkin"] .checkin-v2-park-card i,
body[data-page="checkin"] .checkin-v2-candidate i {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v2-park-card .is-location,
body[data-page="checkin"] .checkin-v2-candidate .is-location {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="checkin"] .checkin-v2-park-card .is-check {
  mask-image: url("/assets/icons/linear/tick-circle.svg");
  -webkit-mask-image: url("/assets/icons/linear/tick-circle.svg");
}

body[data-page="checkin"] .checkin-v2-main-action {
  margin-top: 13px;
}

body[data-page="checkin"] .checkin-v2-main-action button,
body[data-page="checkin"] .checkin-v2-main-action a,
body[data-page="checkin"] .checkin-v2-candidate button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.22);
}

body[data-page="checkin"] .checkin-v2-candidate-list {
  display: grid;
  gap: 14px;
}

body[data-page="checkin"] .checkin-v2-candidate {
  grid-template-columns: 92px minmax(0, 1fr);
  padding-bottom: 14px;
  border-bottom: 1px solid #edf0f2;
}

body[data-page="checkin"] .checkin-v2-candidate:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body[data-page="checkin"] .checkin-v2-candidate form {
  grid-column: 1 / -1;
  margin: -2px 0 0;
}

body[data-page="checkin"] .checkin-v2-empty {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

body[data-page="checkin"] .checkin-v2-empty-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #eaf8f1;
}

body[data-page="checkin"] .checkin-v2-empty-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="checkin"] .checkin-v2-empty-icon.is-search::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="checkin"] .checkin-v2-empty-icon.is-clock::before {
  mask-image: url("/assets/icons/linear/clock-1.svg");
  -webkit-mask-image: url("/assets/icons/linear/clock-1.svg");
}

body[data-page="checkin"] .checkin-v2-empty-icon.is-lock::before {
  mask-image: url("/assets/icons/linear/lock.svg");
  -webkit-mask-image: url("/assets/icons/linear/lock.svg");
}

body[data-page="checkin"] .checkin-v2-empty-icon.is-gps::before {
  mask-image: url("/assets/icons/linear/gps.svg");
  -webkit-mask-image: url("/assets/icons/linear/gps.svg");
}

body[data-page="checkin"] .checkin-v2-empty h2 {
  margin: 0;
  color: #111820;
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="checkin"] .checkin-v2-empty p,
body[data-page="checkin"] .checkin-v2-register p,
body[data-page="checkin"] .checkin-v2-checkout p,
body[data-page="checkin"] .checkin-v2-note p {
  margin: 0;
  color: #59636c;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.55;
}

body[data-page="checkin"] .checkin-v2-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

body[data-page="checkin"] .checkin-v2-register .checkin-v2-actions {
  grid-template-columns: 1fr;
}

body[data-page="checkin"] .checkin-v2-actions.is-single {
  grid-template-columns: 1fr;
}

body[data-page="checkin"] .checkin-v2-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid #dfe4e8;
  border-radius: 999px;
  background: #fff;
  color: #111820;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

body[data-page="checkin"] .checkin-v2-actions .is-primary {
  border-color: var(--sl-primary);
  background: var(--sl-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.2);
}

body[data-page="checkin"] .checkin-v2-active-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(0, 154, 78, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 18%, rgba(0, 154, 78, 0.16) 0 15px, transparent 16px),
    #f3fbf7;
}

body[data-page="checkin"] .checkin-v2-active-card span {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
}

body[data-page="checkin"] .checkin-v2-active-card h2 {
  margin: 0;
  color: #111820;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.35;
}

body[data-page="checkin"] .checkin-v2-active-card p {
  margin: 0;
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-page="checkin"] .checkin-v2-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

body[data-page="checkin"] .checkin-v2-form div {
  display: grid;
  gap: 6px;
}

body[data-page="checkin"] .checkin-v2-form .is-full {
  grid-column: 1 / -1;
}

body[data-page="checkin"] .checkin-v2-form label {
  color: #111820;
  font-size: 0.72rem;
  font-weight: 850;
}

body[data-page="checkin"] .checkin-v2-form select,
body[data-page="checkin"] .checkin-v2-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #dfe4e8;
  border-radius: 10px;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

body[data-page="checkin"] .checkin-v2-form textarea {
  min-height: 96px;
  resize: vertical;
}

body[data-page="checkin"] .checkin-v2-detail-list {
  width: 100%;
  display: grid;
  gap: 0;
  margin-top: 4px;
  text-align: left;
}

body[data-page="checkin"] .checkin-v2-detail-list div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 10px;
  min-height: 36px;
  align-items: center;
  border-top: 1px solid #edf0f2;
}

body[data-page="checkin"] .checkin-v2-detail-list span {
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-page="checkin"] .checkin-v2-detail-list strong {
  color: #111820;
  font-size: 0.74rem;
  font-weight: 850;
  text-align: right;
}

body[data-page="checkin"] .checkin-v2-note {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

body[data-page="checkin"] .compact-link {
  margin: 10px 0 0;
  text-align: left;
}

body[data-page="checkin"] .compact-link a {
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 800;
}

body[data-page="checkin"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="checkin"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="checkin"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="checkin"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="checkin"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="checkin"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="checkin"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="checkin"] .bottom-nav a[data-nav="checkin"].active::before,
body[data-page="checkin"] .bottom-nav a[data-nav="checkin"]:active::before {
  mask-image: url("/assets/icons/bold/location.svg");
  -webkit-mask-image: url("/assets/icons/bold/location.svg");
}

body[data-page="checkin"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="checkin"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
  box-shadow: none;
}

body[data-page="checkin"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  color: var(--sl-primary);
  background: currentColor;
  mask-image: url("/assets/icons/bold/location.svg");
  -webkit-mask-image: url("/assets/icons/bold/location.svg");
}

@media (min-width: 431px) {
  body[data-page="checkin"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="checkin"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

body[data-page="parks"] .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top-color: #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body[data-page="parks"] .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 64px;
  padding: 36px 0 8px;
  color: #6f7780;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="parks"] .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body[data-page="parks"] .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body[data-page="parks"] .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body[data-page="parks"] .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body[data-page="parks"] .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body[data-page="parks"] .bottom-nav a[data-nav="parks"].active::before {
  mask-image: url("/assets/icons/bold/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/bold/search-normal.svg");
}

body[data-page="parks"] .bottom-nav a.active {
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sl-primary);
}

body[data-page="parks"] .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
}

body[data-page="parks"] .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  color: #6f7780;
  background: currentColor;
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

@media (min-width: 431px) {
  body[data-page="parks"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="parks"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media (min-width: 431px) {
  body[data-page="profile"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body[data-page="profile"] .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media (max-width: 360px) {
  body[data-page="profile"] .profile-v2-head {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  body[data-page="profile"] .profile-v2-avatar {
    width: 84px;
    height: 84px;
  }

  body[data-page="profile"] .profile-v3-hero-actions {
    --cta-row-gap: 6px;
    width: 100%;
  }

  body[data-page="profile"] .profile-v3-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*
  Member app polish shared across the remaining mock pages.
  These rules intentionally sit at the end so older page-level styles inherit
  the same spacing, text scale, cards, and bottom navigation used by My Page.
*/
body[data-page="home"],
body[data-page="timeline"],
body[data-page="checkin"],
body[data-page="log"],
body[data-page="gear"],
body[data-page="badge-collection"],
body[data-page="favorite-parks"],
body[data-page="profile-edit"],
body[data-page="settings"],
body[data-page="notifications"],
body[data-page="parks"],
body[data-page="profile"] {
  background: #fff;
  color: #111820;
  font-size: 15px;
  line-height: 1.55;
}

body[data-page="profile"] {
  background: #fff;
}

body[data-page]:not([data-page="guest"]) .site-header {
  display: none !important;
}

body[data-page]:not([data-page="guest"]) .site-header .nav {
  display: none !important;
}

body[data-page="home"] .site-header,
body[data-page="timeline"] .site-header,
body[data-page="checkin"] .site-header,
body[data-page="log"] .site-header,
body[data-page="gear"] .site-header,
body[data-page="badge-collection"] .site-header,
body[data-page="favorite-parks"] .site-header,
body[data-page="profile-edit"] .site-header,
body[data-page="settings"] .site-header,
body[data-page="notifications"] .site-header,
body[data-page="parks"] .site-header,
body[data-page="profile"] .site-header {
  display: none;
}

:where(
  .home-v2,
  .timeline-v2,
  .checkin-v2,
  .log-v2,
  .gear-v2,
  .badge-v2,
  .favorite-parks-v2,
  .profile-edit-v2,
  .user-search-v2,
  .settings-v2,
  .notifications-v2,
  .friends-v2,
  .friend-profile-v2,
  .friend-log-v2,
  .checkin-detail-v2,
  .profile-share-v2,
  .parks-v2
).main,
body[data-page="profile"] .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 96px;
  overflow: hidden;
  background: #fff;
}

:where(
  .home-v2,
  .timeline-v2,
  .checkin-v2,
  .log-v2,
  .gear-v2,
  .badge-v2,
  .favorite-parks-v2,
  .profile-edit-v2,
  .user-search-v2,
  .settings-v2,
  .notifications-v2,
  .friends-v2,
  .friend-profile-v2,
  .friend-log-v2,
  .checkin-detail-v2,
  .profile-share-v2,
  .parks-v2
) .content-stack {
  gap: 14px;
  padding: 0 14px;
}

:where(
  .home-v2,
  .timeline-v2,
  .checkin-v2,
  .log-v2,
  .gear-v2,
  .badge-v2,
  .favorite-parks-v2,
  .profile-edit-v2,
  .user-search-v2,
  .settings-v2,
  .notifications-v2,
  .friends-v2,
  .friend-profile-v2,
  .friend-log-v2,
  .checkin-detail-v2,
  .profile-share-v2,
  .parks-v2
) .panel {
  border: 1px solid #ebeff2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

:where(
  .home-v2,
  .timeline-v2,
  .checkin-v2,
  .log-v2,
  .gear-v2,
  .badge-v2,
  .favorite-parks-v2,
  .profile-edit-v2,
  .user-search-v2,
  .settings-v2,
  .notifications-v2,
  .friends-v2,
  .friend-profile-v2,
  .friend-log-v2,
  .checkin-detail-v2,
  .profile-share-v2,
  .parks-v2
) .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

:where(
  .home-v2,
  .timeline-v2,
  .checkin-v2,
  .log-v2,
  .gear-v2,
  .badge-v2,
  .favorite-parks-v2,
  .profile-edit-v2,
  .user-search-v2,
  .settings-v2,
  .notifications-v2,
  .friends-v2,
  .friend-profile-v2,
  .friend-log-v2,
  .checkin-detail-v2,
  .profile-share-v2,
  .parks-v2
) .section-head h2,
:where(
  .home-v2,
  .timeline-v2,
  .checkin-v2,
  .log-v2,
  .gear-v2,
  .badge-v2,
  .favorite-parks-v2,
  .profile-edit-v2,
  .user-search-v2,
  .settings-v2,
  .notifications-v2,
  .friends-v2,
  .friend-profile-v2,
  .friend-log-v2,
  .checkin-detail-v2,
  .profile-share-v2,
  .parks-v2
) .panel > h2 {
  margin: 0;
  color: #111820;
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1.35;
}

:where(
  .home-v2,
  .timeline-v2,
  .checkin-v2,
  .log-v2,
  .gear-v2,
  .badge-v2,
  .favorite-parks-v2,
  .profile-edit-v2,
  .user-search-v2,
  .settings-v2,
  .notifications-v2,
  .friends-v2,
  .friend-profile-v2,
  .friend-log-v2,
  .checkin-detail-v2,
  .profile-share-v2
) .subpage-hero,
:where(
  .user-search-v2,
  .friend-profile-v2,
  .profile-share-v2
) .page-title,
body[data-page="profile"] .settings-v2 .subpage-hero,
body[data-page="profile"] .profile-share-v2 .subpage-hero,
body[data-page="profile"] .checkin-detail-v2 .subpage-hero {
  margin: 14px 14px 14px;
  padding: 16px 15px;
  border: 1px solid #ebeff2;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 154, 78, 0.12) 0 22px, transparent 23px),
    linear-gradient(180deg, #fff, #f8faf9);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

:where(.subpage-back, .notifications-v2-back, .friend-log-v2-hero .subpage-back) {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid #ebeff2;
  border-radius: 999px;
  background: #fff;
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1;
}

:where(.subpage-back, .notifications-v2-back, .friend-log-v2-hero .subpage-back)::before {
  content: "";
  width: 12px;
  height: 12px;
  background: currentColor;
  mask: url("/assets/icons/linear/arrow-left-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-left-2.svg") center / contain no-repeat;
}

:where(.subpage-title, .notifications-v2-title, .friend-log-v2-title) {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

:where(.subpage-title-icon, .notifications-v2-title-icon, .friend-log-v2-title-icon) {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--sl-primary);
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.2);
}

:where(.subpage-title-icon, .notifications-v2-title-icon, .friend-log-v2-title-icon)::before {
  content: "";
  width: 22px;
  height: 22px;
  background: #fff;
  mask: url("/assets/icons/bold/user.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/user.svg") center / contain no-repeat;
}

:where(.subpage-title .eyebrow, .subpage-title p:first-child, .notifications-v2-title p, .friend-log-v2-title p) {
  margin: 0 0 3px;
  color: var(--sl-primary);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

:where(.subpage-title h1, .notifications-v2-title h1, .friend-log-v2-title h1) {
  margin: 0;
  color: #111820;
  font-size: 1.38rem;
  font-weight: 950;
  line-height: 1.15;
}

:where(.subpage-title p:last-child, .notifications-v2-hero > p, .friend-log-v2-hero > p) {
  margin: 8px 0 0;
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

:where(.btn, button.btn, .share-close, .friends-v2-search) {
  min-height: 38px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.08);
}

:where(.btn.primary, button.btn.primary) {
  border-color: transparent;
  background: var(--sl-primary);
  color: #fff;
}

:where(.btn.ghost, button.btn.ghost) {
  border-color: #ebeff2;
  background: #fff;
  color: #111820;
  box-shadow: none;
}

:where(.field label, .form-grid label) {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

:where(input, select, textarea) {
  border-color: #dfe5e9;
  border-radius: 12px;
  color: #111820;
  font-size: 0.86rem;
}

:where(textarea) {
  min-height: 92px;
}

:where(.detail-list) {
  display: grid;
  gap: 0;
}

:where(.detail-list > div) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  border-bottom: 1px solid #edf0f2;
}

:where(.detail-list > div:last-child) {
  border-bottom: 0;
}

:where(.detail-list span) {
  color: #59636c;
  font-size: 0.78rem;
  font-weight: 650;
}

:where(.detail-list strong) {
  color: #111820;
  font-size: 0.8rem;
  font-weight: 850;
}

:where(.tag.green, .notice, .like-toast) {
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--sl-primary);
  font-size: 0.76rem;
  font-weight: 850;
}

:where(.friend-list, .settings-v2-list, .notifications-v2-list) {
  display: grid;
  gap: 0;
}

:where(.friend-item, .settings-v2-list > a, .settings-v2-list > div, .notifications-v2-item) {
  border-bottom: 1px solid #edf0f2;
}

:where(.friend-item:last-child, .settings-v2-list > a:last-child, .settings-v2-list > div:last-child, .notifications-v2-item:last-child) {
  border-bottom: 0;
}

:where(.small-avatar, .cover-avatar, .share-avatar) {
  background: #0b0d10;
  color: #fff;
  outline: 2px solid var(--sl-primary);
  outline-offset: -5px;
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 390px);
  min-height: 64px;
  border-top: 1px solid #edf0f2;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.08);
  transform: translateX(-50%);
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a {
  position: relative;
  display: grid;
  place-items: end center;
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
  box-shadow: none;
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: currentColor;
  transform: translateX(-50%);
  mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/home-2.svg") center / contain no-repeat;
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/linear/document-text.svg");
  -webkit-mask-image: url("/assets/icons/linear/document-text.svg");
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a[data-nav="checkin"]::before {
  mask-image: url("/assets/icons/linear/location.svg");
  -webkit-mask-image: url("/assets/icons/linear/location.svg");
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a[data-nav="parks"]::before {
  mask-image: url("/assets/icons/linear/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/linear/search-normal.svg");
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a[data-nav="profile"]::before {
  mask-image: url("/assets/icons/linear/user.svg");
  -webkit-mask-image: url("/assets/icons/linear/user.svg");
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a.active {
  color: var(--sl-primary);
  font-weight: 850;
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a.active[data-nav="home"]::before {
  mask-image: url("/assets/icons/bold/home-2.svg");
  -webkit-mask-image: url("/assets/icons/bold/home-2.svg");
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a.active[data-nav="timeline"]::before {
  mask-image: url("/assets/icons/bold/document-text.svg");
  -webkit-mask-image: url("/assets/icons/bold/document-text.svg");
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a.active[data-nav="checkin"]::before,
body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav .bottom-checkin.active::before {
  mask-image: url("/assets/icons/bold/location.svg");
  -webkit-mask-image: url("/assets/icons/bold/location.svg");
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a.active[data-nav="parks"]::before {
  mask-image: url("/assets/icons/bold/search-normal.svg");
  -webkit-mask-image: url("/assets/icons/bold/search-normal.svg");
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav a.active[data-nav="profile"]::before {
  mask-image: url("/assets/icons/bold/user.svg");
  -webkit-mask-image: url("/assets/icons/bold/user.svg");
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav .bottom-checkin {
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 36px 0 8px;
  border-radius: 0;
  background: transparent;
  color: #6f7780;
  box-shadow: none;
  transform: none;
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav .bottom-checkin::before {
  top: 10px;
  width: 24px;
  height: 24px;
  background: currentColor;
}

body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav .bottom-checkin:not(.active),
body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav .bottom-checkin:not(.active)::before {
  color: #6f7780;
}

@media (min-width: 431px) {
  :where(
    .home-v2,
    .timeline-v2,
    .checkin-v2,
    .log-v2,
    .gear-v2,
    .badge-v2,
    .favorite-parks-v2,
    .profile-edit-v2,
    .user-search-v2,
    .settings-v2,
    .notifications-v2,
    .friends-v2,
    .friend-profile-v2,
    .friend-log-v2,
    .checkin-detail-v2,
    .profile-share-v2,
    .parks-v2
  ).main,
  body[data-page="profile"] .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }

  body:not([data-page="access"]):not([data-page="guest"]) .bottom-nav {
    bottom: 22px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

@media (max-width: 360px) {
  :where(
    .home-v2,
    .timeline-v2,
    .checkin-v2,
    .log-v2,
    .gear-v2,
    .badge-v2,
    .favorite-parks-v2,
    .profile-edit-v2,
    .user-search-v2,
    .settings-v2,
    .notifications-v2,
    .friends-v2,
    .friend-profile-v2,
    .friend-log-v2,
    .checkin-detail-v2,
    .profile-share-v2,
    .parks-v2
  ) .content-stack {
    padding-right: 11px;
    padding-left: 11px;
  }
}

body:not([data-page="access"]):not([data-page="guest"]) > .main {
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 96px;
  overflow: hidden;
  background: #fff;
}

body[data-page="profile"]:not([data-page="guest"]) > main.main {
  background: #fff;
}

body:not([data-page="access"]):not([data-page="guest"]) > .main:not(.profile-v2):not(.parks-v2) > :where(.page-title, .member-lock) {
  width: auto;
  max-width: none;
  margin: 14px 14px 14px;
  padding: 16px 15px;
  border: 1px solid #ebeff2;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 154, 78, 0.12) 0 22px, transparent 23px),
    linear-gradient(180deg, #fff, #f8faf9);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body:not([data-page="access"]):not([data-page="guest"]) > .main:not(.profile-v2):not(.parks-v2) > :where(.grid, .content-stack, .panel) {
  margin-right: 14px;
  margin-left: 14px;
}

body[data-page="profile"]:not([data-page="access"]):not([data-page="guest"]) > .main:not(.profile-v2):not(.parks-v2) > .content-stack.profile-v2-stack {
  margin-right: 14px;
  margin-left: 14px;
  padding-right: 0;
  padding-left: 0;
}

body:not([data-page="access"]):not([data-page="guest"]) > main.main > .content-stack {
  width: auto;
  max-width: none;
  margin-right: 14px;
  margin-left: 14px;
  padding-right: 0;
  padding-left: 0;
}

body:not([data-page="access"]):not([data-page="guest"]) > main.main > :where(.panel, .grid) {
  width: auto;
  max-width: none;
  margin-right: 14px;
  margin-left: 14px;
}

body:not([data-page="access"]):not([data-page="guest"]) > main.main > :where(.page-title, .subpage-hero) {
  width: auto;
  max-width: none;
  margin-right: 14px;
  margin-left: 14px;
}

body:not([data-page="access"]):not([data-page="guest"]) > .main:not(.profile-v2):not(.parks-v2) :where(.grid.two, .grid.three) {
  grid-template-columns: 1fr;
}

body:not([data-page="access"]):not([data-page="guest"]) > .main:not(.profile-v2):not(.parks-v2) :where(.page-title h1, .member-lock h1) {
  margin-bottom: 8px;
  color: #111820;
  font-size: 1.42rem;
  font-weight: 950;
  line-height: 1.18;
}

body:not([data-page="access"]):not([data-page="guest"]) > .main:not(.profile-v2):not(.parks-v2) :where(.lead, .page-title .lead, .member-lock .lead) {
  margin: 0;
  color: #59636c;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.55;
}

body:not([data-page="access"]):not([data-page="guest"]) > .main:not(.profile-v2):not(.parks-v2) :where(.panel, .card) {
  border-color: #ebeff2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body:not([data-page="access"]):not([data-page="guest"]) > .main:not(.profile-v2):not(.parks-v2) :where(.panel h2, .card h3) {
  color: #111820;
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1.35;
}

body:not([data-page="access"]):not([data-page="guest"]) > .main:not(.profile-v2):not(.parks-v2) :where(.panel p, .card p) {
  color: #59636c;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.6;
}

@media (min-width: 431px) {
  body:not([data-page="access"]):not([data-page="guest"]) > .main {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 1px solid #dfe4e8;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  }
}

body[data-page="parks"] > .main:not(.parks-v2):not(.park-detail-v2) {
  padding-top: 0;
}

body[data-page="parks"] > .main:not(.parks-v2):not(.park-detail-v2) > .page-title {
  position: relative;
  overflow: hidden;
  margin: 14px 14px 14px;
  padding: 18px 16px;
  border: 1px solid #ebeff2;
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 154, 78, 0.16) 0 28px, transparent 29px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 249, 0.98)),
    url("/assets/parks/generated/search-page-hero.svg") center / cover no-repeat;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="parks"] > .main:not(.parks-v2):not(.park-detail-v2) > .page-title::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

body[data-page="parks"] > .main:not(.parks-v2):not(.park-detail-v2) > .page-title > * {
  position: relative;
  z-index: 1;
}

body[data-page="parks"] > .main:not(.parks-v2):not(.park-detail-v2) .page-title .eyebrow {
  margin: 0 0 5px;
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
}

body[data-page="parks"] > .main:not(.parks-v2):not(.park-detail-v2) .page-title h1 {
  margin: 0 0 8px;
  color: #111820;
  font-size: 1.36rem;
  font-weight: 950;
  line-height: 1.2;
}

body[data-page="parks"] > .main:not(.parks-v2):not(.park-detail-v2) .page-title .lead {
  max-width: none;
  color: #59636c;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.5;
}

body[data-page="parks"] :where(.pref-grid) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="parks"] :where(.pref-card) {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 74px;
  align-content: center;
  padding: 12px 30px 12px 12px;
  border: 1px solid #ebeff2;
  border-radius: 13px;
  background:
    radial-gradient(circle at 88% 22%, rgba(0, 154, 78, 0.12) 0 10px, transparent 11px),
    #fff;
  color: inherit;
  box-shadow: 0 2px 10px rgba(17, 24, 32, 0.05);
}

body[data-page="parks"] :where(.pref-card)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 13px;
  height: 13px;
  background: #111820;
  transform: translateY(-50%);
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

body[data-page="parks"] :where(.pref-card strong) {
  color: #111820;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
}

body[data-page="parks"] :where(.pref-card span) {
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="parks"] :where(.park-text-links, .park-list, .rank-list, .official-links) {
  display: grid;
  gap: 0;
}

body[data-page="parks"] :where(.park-text-link, .park-item, .rank-item, .official-link) {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 10px;
  align-items: center;
  min-height: 54px;
  padding: 11px 22px 11px 0;
  border-bottom: 1px solid #edf0f2;
  color: inherit;
}

body[data-page="parks"] :where(.park-text-link:last-child, .park-item:last-child, .rank-item:last-child, .official-link:last-child) {
  border-bottom: 0;
}

body[data-page="parks"] :where(.park-text-link)::after,
body[data-page="parks"] :where(.park-item)::after,
body[data-page="parks"] :where(.rank-item)::after,
body[data-page="parks"] :where(.official-link)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  background: #111820;
  transform: translateY(-50%);
  mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-right-2.svg") center / contain no-repeat;
}

body[data-page="parks"] :where(.park-text-link strong, .park-item h3, .rank-item span, .official-link span) {
  margin: 0;
  color: #111820;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
}

body[data-page="parks"] :where(.park-text-link span, .park-item .muted, .rank-item strong, .official-link strong) {
  margin: 0;
  color: #59636c;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
}

body[data-page="parks"] :where(.park-item .btn) {
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--sl-primary);
  font-size: 0.72rem;
}

body[data-page="parks"] :where(.stat-row) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #ebeff2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="parks"] :where(.stat) {
  min-height: 64px;
  padding: 10px 8px;
  border: 0;
  border-right: 1px solid #ebeff2;
  border-bottom: 1px solid #ebeff2;
  border-radius: 0;
  background: #fff;
  text-align: center;
}

body[data-page="parks"] :where(.stat:nth-child(2n)) {
  border-right: 0;
}

body[data-page="parks"] :where(.stat:nth-last-child(-n+2)) {
  border-bottom: 0;
}

body[data-page="parks"] :where(.stat strong) {
  color: #111820;
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1.05;
}

body[data-page="parks"] :where(.stat span) {
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.25;
}

body[data-page="parks"] :where(.leaflet-map) {
  overflow: hidden;
  min-height: 220px;
  border: 1px solid #ebeff2;
  border-radius: 14px;
}

body[data-page="parks"] :where(.map-note, .data-updated) {
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.45;
}

/* Final shared polish for remaining member mock pages. */
body:not([data-page="access"]):not([data-page="guest"]) :where(.directory-list, .list-links, .friend-list, .share-actions) {
  display: grid;
  gap: 0;
}

body:not([data-page="guest"]) :where(.directory-row, .list-links a, .share-action, .friend-link-card) {
  position: relative;
  min-width: 0;
  border-color: #ebeff2;
  background: #fff;
  box-shadow: 0 4px 14px rgba(17, 24, 32, 0.045);
}

body:not([data-page="guest"]) :where(.directory-row, .list-links a, .share-action) {
  padding: 13px 34px 13px 14px;
  border-radius: 14px;
}

body:not([data-page="guest"]) :where(.directory-row, .list-links a, .share-action)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 14px;
  height: 14px;
  background: #111820;
  transform: translateY(-50%);
  mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
}

body:not([data-page="guest"]) :where(.directory-row + .directory-row, .list-links a + a, .share-action + .share-action) {
  margin-top: 10px;
}

body:not([data-page="guest"]) .directory-row span {
  color: var(--sl-primary);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0;
}

body:not([data-page="guest"]) .directory-row strong,
body:not([data-page="guest"]) :where(.list-links a strong, .share-action strong) {
  color: #111820;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

body:not([data-page="guest"]) .directory-row em,
body:not([data-page="guest"]) :where(.list-links a span, .share-action span) {
  color: #59636c;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.45;
}

body:not([data-page="guest"]) .directory-row code {
  width: 100%;
  padding: 5px 7px;
  border-radius: 8px;
  background: #f2f6f8;
  color: #59636c;
  font-size: 0.66rem;
  font-weight: 500;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.form-grid) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.form-grid > label) {
  display: grid;
  gap: 7px;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.form-grid > label > span) {
  color: #111820;
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.25;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.field) {
  display: grid;
  gap: 7px;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.field label) {
  color: #111820;
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.field input, .field select, .field textarea, .form-grid input, .form-grid select, .form-grid textarea, input.search) {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #dfe4e8;
  border-radius: 12px;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  box-shadow: inset 0 1px 2px rgba(17, 24, 32, 0.035);
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.field textarea, .form-grid textarea) {
  min-height: 118px;
  line-height: 1.55;
  resize: vertical;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.notice, .like-toast) {
  border: 1px solid rgba(0, 154, 78, 0.18);
  border-radius: 13px;
  background: #effaf4;
  color: #087842;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.55;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.notice.error) {
  border-color: rgba(221, 52, 52, 0.2);
  background: #fff1f1;
  color: #c62929;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.auth-notice, .auth-error) {
  padding: 12px 13px;
  border-radius: 13px;
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.55;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.auth-notice) {
  border: 1px solid rgba(0, 154, 78, 0.18);
  background: #effaf4;
  color: #087842;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.auth-error) {
  border: 1px solid rgba(221, 52, 52, 0.2);
  background: #fff1f1;
  color: #c62929;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.settings-v2-panel .actions, .form-grid .actions) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.settings-v2-panel .actions .btn, .form-grid .actions .btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

body:not([data-page="access"]):not([data-page="guest"]) :where(.settings-v2-panel > p) {
  margin: 0;
  color: #59636c;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.65;
}

.spot-register-form {
  margin-top: 14px;
}

.spot-location-field {
  display: grid;
  gap: 7px;
}

.spot-location-field > span {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.spot-location-notice {
  display: grid;
  gap: 3px;
}

.spot-location-notice span {
  display: block;
  font-weight: 650;
}

.spot-register-form > label,
.spot-register-form .profile-form-grid > label {
  display: grid;
  gap: 7px;
}

.spot-register-form > label > span,
.spot-register-form .profile-form-grid > label > span {
  color: #111820;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.spot-register-form input,
.spot-register-form select,
.spot-register-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #dfe4e8;
  border-radius: 12px;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 650;
  box-shadow: inset 0 1px 2px rgba(17, 24, 32, 0.035);
}

.spot-register-form textarea {
  min-height: 108px;
  line-height: 1.55;
  resize: vertical;
}

.spot-register-form .profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.spot-register-form .profile-upload-box {
  padding: 13px;
  border: 1px dashed #cbd5dc;
  border-radius: 14px;
  background: #f8fbfc;
}

.spot-register-form .profile-upload-box strong {
  color: #111820;
  font-size: 0.86rem;
  font-weight: 950;
}

.spot-register-form .profile-upload-box span {
  color: #66717a;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.55;
}

.spot-register-form .actions {
  display: grid;
  gap: 10px;
}

.spot-register-form .actions .btn {
  width: 100%;
}

.spot-register-thanks-flow > div {
  justify-content: flex-start;
  gap: 12px;
}

.spot-register-thanks-flow > div > span {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #effaf4;
  color: var(--sl-primary);
  font-size: 0.72rem;
  font-weight: 950;
}

.spot-register-thanks-flow > div > strong {
  min-width: 0;
  text-align: left;
}

@media (max-width: 390px) {
  .spot-register-form .profile-form-grid {
    grid-template-columns: 1fr;
  }
}

body[data-page="profile"] .profile-share-v2 .share-sheet,
body[data-page="timeline"] .user-search-v2 .panel,
body[data-page="timeline"] .friend-log-v2-card,
body[data-page="timeline"] .friend-log-v2-detail-panel,
body[data-page="timeline"] .friend-log-v2-action-panel {
  border-radius: 16px;
  border-color: #ebeff2;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="profile"] .profile-share-v2 .share-sheet {
  padding: 20px 16px 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 154, 78, 0.1) 0 28px, transparent 29px),
    #fff;
}

body[data-page="profile"] .profile-share-v2 .share-avatar {
  width: 74px;
  height: 74px;
  border-color: var(--sl-primary);
  background: #111820;
  box-shadow: 0 8px 22px rgba(17, 24, 32, 0.16);
}

body[data-page="profile"] .profile-share-v2 .qr-frame {
  width: min(100%, 260px);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

body[data-page="timeline"] .user-search-v2-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 9px;
  align-items: center;
}

body[data-page="timeline"] .user-search-v2-form .search {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #dfe6eb;
  border-radius: 999px;
  background: #fff;
  color: #111820;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: inset 0 1px 2px rgba(17, 17, 17, 0.03);
}

body[data-page="timeline"] .user-search-v2 .btn.primary {
  min-height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: var(--sl-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.18);
  transform: none;
}

body[data-page="timeline"] .user-search-v2 .friend-list {
  gap: 10px;
}

body[data-page="timeline"] .user-search-v2 .friend-item {
  padding: 12px;
  border: 1px solid #ebeff2;
  border-radius: 14px;
}

body[data-page="timeline"] .user-search-v2 .friend-item .toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

body[data-page="timeline"] .user-search-v2-result-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

body[data-page="timeline"] .user-search-v2 .avatar-link,
body[data-page="timeline"] .user-search-v2 .small-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

body[data-page="timeline"] .user-search-v2 .small-avatar {
  display: block;
  object-fit: cover;
  background: #0b0d10;
}

body[data-page="timeline"] .user-search-v2-result-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

body[data-page="timeline"] .user-search-v2-result-copy strong {
  overflow: hidden;
  margin: 0;
  color: #111820;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="timeline"] .user-search-v2-result-copy small {
  overflow: hidden;
  color: #59636c;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="timeline"] .user-search-v2 .inline-form .btn {
  min-height: 34px;
  padding-inline: 11px;
  font-size: 0.72rem;
}

body[data-page="timeline"] .friend-log-v2-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

body[data-page="timeline"] .friend-log-v2-card-head {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
}

body[data-page="timeline"] .friend-log-v2-photo {
  overflow: hidden;
  border-radius: 13px;
}

body[data-page="timeline"] .friend-log-v2-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="timeline"] .friend-log-v2-park h2 {
  font-size: 1rem;
}

body[data-page="timeline"] .friend-log-v2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  padding-top: 2px;
}

body[data-page="timeline"] .friend-log-v2-meta span {
  font-size: 0.72rem;
  font-weight: 600;
}

body[data-page="timeline"] .friend-log-v2-note {
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  background: #f4f6f7;
  color: #333b44;
  font-size: 0.78rem;
  font-weight: 600;
}

body[data-page="timeline"] .friend-log-v2-detail-list div {
  min-height: 38px;
  padding-block: 8px;
}

body[data-page="timeline"] .friend-log-v2-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* CTA priority tokens: shared contract for member home, timeline, profile, and log actions. */
:where(.cta-row.cta-priority-home) {
  --cta-row-columns: minmax(0, 1fr) minmax(0, 1fr);
  --cta-row-gap: 8px;
  --cta-primary-height: 42px;
  --cta-primary-font-size: 0.85rem;
  --cta-primary-font-weight: 850;
  --cta-secondary-height: 36px;
  --cta-secondary-font-size: 0.78rem;
  --cta-secondary-font-weight: 850;
  --cta-secondary-color: #0d5cb0;
  --cta-secondary-border: rgba(15, 73, 255, 0.24);
}

:where(.cta-row.cta-priority-timeline, .cta-row.cta-priority-log-detail) {
  --cta-row-columns: minmax(0, 1fr) auto;
  --cta-row-gap: 10px;
  --cta-like-height: 34px;
  --cta-like-font-size: 0.72rem;
  --cta-like-font-weight: 850;
  --cta-secondary-height: 34px;
  --cta-secondary-font-size: 0.72rem;
  --cta-secondary-font-weight: 800;
  --cta-secondary-color: #111820;
  --cta-secondary-border: #dfe4e8;
}

:where(.cta-row.cta-priority-timeline, .cta-row.cta-priority-log-detail) form {
  min-width: 0;
}

:where(.cta-row.cta-priority-profile) {
  --cta-row-columns: minmax(0, 1fr);
  --cta-row-gap: 6px;
  --cta-primary-height: 32px;
  --cta-primary-font-size: 0.72rem;
  --cta-primary-font-weight: 950;
  --cta-secondary-height: 32px;
  --cta-secondary-font-size: 0.72rem;
  --cta-secondary-font-weight: 950;
  --cta-secondary-border: rgba(223, 228, 232, 0.96);
}

body[data-page="parks"] .parks-column-v2-related a,
body[data-page="parks"] .park-text-link {
  min-width: 0;
}

body[data-page="parks"] .parks-column-v2-related {
  overflow: hidden;
}

body[data-page="parks"] .parks-column-v2-related a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  gap: 4px 10px;
  align-items: center;
  min-height: 56px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f2;
  color: inherit;
}

body[data-page="parks"] .parks-column-v2-related a:last-child {
  border-bottom: 0;
}

body[data-page="parks"] .parks-column-v2-related a::after {
  content: "";
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 15px;
  height: 15px;
  background: #111820;
  mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/arrow-circle-right.svg") center / contain no-repeat;
}

body[data-page="parks"] .parks-column-v2-month-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: visible;
}

body[data-page="parks"] .parks-column-v2-month-grid a {
  min-width: 0;
  flex: none;
}

/* Keep every mock page on the My Page white background baseline. */
body,
body[data-page],
body[data-page="guest"],
body[data-page="access"] {
  background: #fff;
}

:where(
  .main,
  .guest-v2.main,
  body[data-page="access"] .main,
  body[data-page="guest"] .main
) {
  background: #fff;
}

body[data-page="guest"] .guest-v2.main,
body[data-page="access"] main.main {
  background: #fff;
}

.guest-v2-hero-media {
  background:
    linear-gradient(180deg, rgba(17, 24, 32, 0.18) 0%, rgba(17, 24, 32, 0.08) 34%, rgba(255, 255, 255, 0.98) 83%, #fff 100%),
    url("/assets/profile/profile-cover-default.jpg") center / cover no-repeat;
}

/* Park detail refresh: keep the page aligned with the My Page visual system. */
body[data-page="parks"] .park-detail-v2 {
  background: #fff;
}

body[data-page="parks"] .park-detail-v2-hero {
  position: relative;
  gap: 12px;
  padding: 0 14px 14px;
  background: #fff;
}

body[data-page="parks"] .park-detail-v2-back {
  position: absolute;
  top: 12px;
  left: 24px;
  z-index: 3;
  min-height: 32px;
  padding: 8px 12px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.94);
  color: #111820;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.1);
}

body[data-page="parks"] .park-detail-v2-cover {
  width: calc(100% + 28px);
  margin: 0 -14px;
  border-radius: 0 0 22px 22px;
  box-shadow: none;
}

body[data-page="parks"] .park-detail-v2-cover::after {
  height: 68%;
  background: linear-gradient(180deg, rgba(17, 24, 32, 0), rgba(17, 24, 32, 0.24) 42%, rgba(255, 255, 255, 0.92) 82%, #fff 100%);
}

body[data-page="parks"] .park-detail-v2-cover img {
  aspect-ratio: 16 / 10;
}

body[data-page="parks"] .park-detail-v2-cover span {
  right: 14px;
  top: 14px;
  bottom: auto;
  min-height: 28px;
  padding: 8px 11px;
  border: 1px solid rgba(0, 154, 78, 0.18);
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.08);
}

body[data-page="parks"] .park-detail-v2-head {
  position: relative;
  z-index: 2;
  min-height: 88px;
  margin-top: -48px;
  padding: 14px 14px;
  border: 1px solid #ebeff2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

body[data-page="parks"] .park-detail-v2-head p {
  color: var(--sl-primary);
  font-size: 0.76rem;
  font-weight: 800;
}

body[data-page="parks"] .park-detail-v2-head h1 {
  font-size: 1.12rem;
  line-height: 1.22;
}

body[data-page="parks"] .park-detail-v2-correction {
  width: 36px;
  height: 36px;
  align-self: start;
  border-color: #ebeff2;
  background: #fff;
  color: #59636c;
}

body[data-page="parks"] .park-detail-v2-actions {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9px;
}

body[data-page="parks"] .park-detail-v2-actions:has(.park-detail-v2-photo) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="parks"] .park-detail-v2-actions a {
  min-height: 40px;
  padding: 9px 10px;
  font-size: 0.78rem;
}

body[data-page="parks"] .park-detail-v2-primary {
  box-shadow: 0 8px 18px rgba(0, 154, 78, 0.18);
}

body[data-page="parks"] .park-detail-v2-actions .park-detail-v2-photo::before {
  mask: url("/assets/icons/linear/camera.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/linear/camera.svg") center / contain no-repeat;
}

body[data-page="parks"] .park-detail-v2 .parks-v2-stack {
  gap: 14px;
  margin-right: 14px;
  margin-left: 14px;
  padding: 0;
}

body[data-page="parks"] .park-detail-v2 .panel {
  padding: 15px 14px;
}

body[data-page="parks"] .park-detail-v2 .park-detail-v2-summary {
  padding: 0;
  border-radius: 16px;
}

body[data-page="parks"] .park-detail-v2-summary div {
  min-height: 74px;
  padding: 10px 5px;
}

body[data-page="parks"] .park-detail-v2-summary i {
  width: 20px;
  height: 20px;
}

body[data-page="parks"] .park-detail-v2-summary span {
  color: #59636c;
  font-size: 0.62rem;
  font-weight: 600;
}

body[data-page="parks"] .park-detail-v2-summary strong {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="parks"] .park-detail-v2-about p {
  color: #333b44;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.72;
}

body[data-page="parks"] .park-detail-v2-detail-list div {
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 42px;
  padding: 9px 0;
}

body[data-page="parks"] .park-detail-v2-detail-list span {
  font-size: 0.7rem;
  font-weight: 600;
}

body[data-page="parks"] .park-detail-v2-detail-list strong {
  color: #111820;
  font-size: 0.74rem;
  font-weight: 700;
}

body[data-page="parks"] .park-detail-v2-official-links .official-link {
  min-height: 46px;
  padding: 10px 0;
}

body[data-page="parks"] .park-detail-v2-favorite p {
  font-size: 0.74rem;
  font-weight: 500;
}

body[data-page="parks"] .park-detail-v2-footer-link {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 6px 2px 10px;
  text-align: center;
}

body[data-page="parks"] .park-detail-v2-footer-link a {
  color: #6d747c;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body[data-page="parks"] .park-detail-v2 .leaflet-map {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.maintenance-v2 {
  min-height: 100vh;
  padding: 42px 14px;
  display: grid;
  place-items: center;
}

.maintenance-v2-card {
  width: min(390px, 100%);
  padding: 28px 20px 22px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-xl);
  background: #ffffff;
  box-shadow: var(--sl-shadow-lg);
}

.maintenance-v2-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(0, 154, 78, 0.12);
}

.maintenance-v2-icon::before {
  width: 28px;
  height: 28px;
  content: "";
  background: var(--sl-primary);
  mask: url("/assets/icons/bold/status.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icons/bold/status.svg") center / contain no-repeat;
}

.maintenance-v2 h1 {
  margin: 0;
  color: var(--sl-text);
  font-size: 1.48rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.maintenance-v2 p {
  margin: 12px 0 0;
  color: #4b5560;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.75;
}

.maintenance-v2-status {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.maintenance-v2-status div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-md);
  background: #f7f8fa;
}

.maintenance-v2-status span {
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 650;
}

.maintenance-v2-status strong {
  color: var(--sl-text);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.maintenance-v2-actions a {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--sl-border);
  border-radius: 999px;
  color: #333b44;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
}

.maintenance-v2-actions a.is-primary {
  border-color: var(--sl-primary);
  color: #ffffff;
  background: var(--sl-primary);
}

.maintenance-v2 .maintenance-v2-note {
  color: var(--sl-text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
}

body[data-page="parks"] .park-photo-v2 {
  background: #fff;
}

body[data-page="parks"] .park-photo-v2-hero,
body[data-page="parks"] .park-photo-v2-stack {
  width: min(100% - 28px, 390px);
  margin-right: auto;
  margin-left: auto;
}

body[data-page="parks"] .park-photo-v2-hero {
  margin-top: 18px;
  padding: 16px 14px 18px;
  border: 1px solid var(--sl-border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 91% 17%, rgba(0, 160, 91, 0.14) 0 22px, transparent 23px),
    linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

body[data-page="parks"] .park-photo-v2-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--sl-border);
  border-radius: 999px;
  color: #25313b;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 800;
}

body[data-page="parks"] .park-photo-v2-back::before {
  content: "←";
  color: var(--sl-primary);
}

body[data-page="parks"] .park-photo-v2-title {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

body[data-page="parks"] .park-photo-v2-title-icon,
body[data-page="parks"] .park-photo-v2-status-icon,
body[data-page="parks"] .park-photo-v2-section-icon {
  display: inline-block;
  background: var(--sl-primary);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

body[data-page="parks"] .park-photo-v2-title-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--sl-primary);
  mask-image: url("/assets/icons/bold/gallery-add.svg");
  -webkit-mask-image: url("/assets/icons/bold/gallery-add.svg");
}

body[data-page="parks"] .park-photo-v2-title p {
  margin: 0 0 2px;
  color: var(--sl-primary);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
}

body[data-page="parks"] .park-photo-v2-title h1 {
  margin: 0;
  color: #111820;
  font-size: 1.44rem;
  font-weight: 950;
  line-height: 1.25;
}

body[data-page="parks"] .park-photo-v2-hero > p,
body[data-page="parks"] .park-photo-v2-empty p,
body[data-page="parks"] .park-photo-v2-complete p {
  margin: 12px 0 0;
  color: #4b5560;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.65;
}

body[data-page="parks"] .park-photo-v2-stack {
  margin-top: 12px;
  padding-bottom: 106px;
}

body[data-page="parks"] .park-photo-v2-target-card {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid #dfe7e4;
  border-radius: 14px;
  background: #f7faf9;
}

body[data-page="parks"] .park-photo-v2-target-card strong {
  color: #111820;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.45;
}

body[data-page="parks"] .park-photo-v2-target-card span,
body[data-page="parks"] .park-photo-v2-member span {
  color: #64717c;
  font-size: 0.76rem;
  font-weight: 650;
}

body[data-page="parks"] .park-photo-v2-section-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -2px;
}

body[data-page="parks"] .park-photo-v2-section-icon.is-park {
  mask-image: url("/assets/icons/bold/gallery-tick.svg");
  -webkit-mask-image: url("/assets/icons/bold/gallery-tick.svg");
}

body[data-page="parks"] .park-photo-v2-section-icon.is-note {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  mask-image: url("/assets/icons/bold/information.svg");
  -webkit-mask-image: url("/assets/icons/bold/information.svg");
}

body[data-page="parks"] .park-photo-v2-form {
  gap: 14px;
}

body[data-page="parks"] .park-photo-v2-form input[type="file"] {
  padding: 10px;
  min-height: 48px;
  border: 1px solid #dfe5e9;
  border-radius: 12px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

body[data-page="parks"] .park-photo-v2-form .muted {
  margin: 7px 0 0;
  color: #64717c;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.55;
}

body[data-page="parks"] .park-photo-v2-member {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #dfe7e4;
  border-radius: 14px;
  background: #f7faf9;
}

body[data-page="parks"] .park-photo-v2-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  font-size: 0.9rem;
}

body[data-page="parks"] .park-photo-v2-member strong {
  display: block;
  color: #111820;
  font-size: 0.9rem;
  font-weight: 900;
}

body[data-page="parks"] .park-photo-v2-checks {
  display: grid;
  gap: 8px;
}

body[data-page="parks"] .park-photo-v2-credit-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body[data-page="parks"] .park-photo-v2-checks label,
body[data-page="parks"] .park-photo-v2-credit-options label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 10px;
  border: 1px solid #dfe7e4;
  border-radius: 12px;
  background: #fff;
  color: #26323d;
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.45;
}

body[data-page="parks"] .park-photo-v2-checks input,
body[data-page="parks"] .park-photo-v2-credit-options input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--sl-primary);
}

body[data-page="parks"] .park-photo-v2-note {
  display: flex;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(0, 160, 91, 0.18);
  border-radius: 14px;
  background: #f2fbf6;
}

body[data-page="parks"] .park-photo-v2-note p {
  margin: 0;
  color: #3f4a54;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.6;
}

body[data-page="parks"] .park-photo-v2-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 98px;
  gap: 10px;
}

body[data-page="parks"] .park-photo-v2-actions.is-single {
  grid-template-columns: 1fr;
}

body[data-page="parks"] .park-photo-v2-complete .park-photo-v2-actions {
  grid-template-columns: 1fr;
  width: 100%;
}

body[data-page="parks"] .park-photo-v2-actions .btn,
body[data-page="parks"] .park-photo-v2-actions button,
body[data-page="parks"] .park-photo-v2-actions .cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

body[data-page="parks"] .park-photo-v2-actions .btn.primary,
body[data-page="parks"] .park-photo-v2-actions button.btn.primary,
body[data-page="parks"] .park-photo-v2-empty .btn.primary {
  border-color: var(--sl-primary);
  background: var(--sl-primary);
  color: #fff;
}

body[data-page="parks"] .park-photo-v2-empty,
body[data-page="parks"] .park-photo-v2-complete {
  display: grid;
  gap: 12px;
}

body[data-page="parks"] .park-photo-v2-empty h2,
body[data-page="parks"] .park-photo-v2-complete h2 {
  margin: 0;
  color: #111820;
  font-size: 1.02rem;
  font-weight: 900;
}

body[data-page="parks"] .park-photo-v2-empty ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #26323d;
  font-size: 0.82rem;
  font-weight: 750;
}

body[data-page="parks"] .park-photo-v2-status-icon {
  width: 26px;
  height: 26px;
  mask-image: url("/assets/icons/bold/gallery-tick.svg");
  -webkit-mask-image: url("/assets/icons/bold/gallery-tick.svg");
}

.sl-center-toast {
  position: fixed;
  z-index: 2000;
  top: 50%;
  left: 50%;
  min-width: min(280px, calc(100vw - 56px));
  max-width: calc(100vw - 40px);
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(17, 24, 32, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.4;
  text-align: center;
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.sl-center-toast.is-visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.sl-center-toast.is-hiding {
  transform: translate(-50%, -54%) scale(0.98);
  opacity: 0;
}

body[data-page="friends"] .friend-list {
  gap: 12px;
}

body[data-page="friends"] .friend-item {
  border: 1px solid var(--sl-border);
}

@media (max-width: 420px) {
  body[data-page="parks"] .park-photo-v2-actions {
    grid-template-columns: 1fr;
  }
}
