:root {
  --accent: #ff5a1f;
  --ink: #121212;
  --muted: #6f6f6f;
  --line: #e6e2dd;
  --paper: #f6f1eb;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #ede7df;
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

.workspace {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(380px, 1fr) 460px;
}

.public-mode .workspace {
  grid-template-columns: 1fr;
}

.public-mode .editor-panel {
  display: none;
}

.phone-stage {
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.08), transparent 42%),
    #ded6cc;
}

.phone-shell {
  width: min(430px, 92vw);
  height: min(840px, calc(100vh - 64px));
  border: 10px solid #171717;
  border-radius: 28px;
  background: #0f0f0f;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(26, 20, 16, 0.26);
}

.mini-program {
  height: 100%;
  overflow-y: auto;
  background: #111;
}

.mini-program::-webkit-scrollbar {
  width: 0;
}

.home-native-bar {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #101112;
}

.home-native-bar strong { font-size: 18px; }

.home-native-bar span {
  position: absolute;
  right: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 560px;
  padding: 14px 16px 0;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 16%, rgba(0, 0, 0, 0.16) 48%, rgba(5, 12, 14, 0.7) 74%, #111 100%);
  pointer-events: none;
}

.top-bar,
.hero-brand,
.channel-grid {
  position: relative;
  z-index: 1;
}

.top-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.city-pill,
.wechat-menu,
.search-pill,
.home-clear-search {
  height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(10px);
}

.home-clear-search {
  width: 44px;
  min-width: 44px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.home-clear-search:active {
  transform: scale(0.94);
}

.city-pill {
  gap: 5px;
  padding: 0 12px;
  border-radius: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.search-pill {
  min-width: 0;
  gap: 8px;
  padding: 0 14px;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.search-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wechat-menu {
  min-width: 104px;
  justify-content: space-around;
  border-radius: 22px;
  color: #fff;
  font-weight: 900;
}

.menu-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-brand {
  margin-top: 170px;
  text-align: center;
}

.hero-title {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}
.hero-carousel-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 12px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.hero-carousel-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}
.hero-carousel-dots i.active {
  width: 16px;
  border-radius: 3px;
  background: var(--accent);
}

.slogan-row {
  display: flex;
  justify-content: center;
  gap: 82px;
  margin-top: 12px;
  font-weight: 700;
}

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

.channel-card {
  position: relative;
  min-width: 0;
  height: 124px;
  padding: 14px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  color: #fff;
  background: rgba(22, 24, 25, 0.92);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%, 0 64%, 8px 58%, 0 52%);
  text-align: center;
  cursor: pointer;
}

.channel-card.channel-travel { border-left-color: #54b9ff; }
.channel-card.channel-retreat { border-left-color: #7cdc46; }

.channel-card.selected {
  transform: translateY(3px);
  border-color: rgba(255, 255, 255, 0.86);
  background: var(--accent);
  box-shadow: 0 3px 0 #a92c00, inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.channel-card h3 {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.15;
  white-space: nowrap;
}

.channel-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.channel-card i {
  width: 26px;
  height: 4px;
  margin-top: 10px;
  border-radius: 2px;
  background: transparent;
}

.channel-card.selected i { background: #ffd028; }

.home-calendar-entry {
  grid-column: 1 / -1;
  min-height: 76px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 48px 1fr 20px;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(24, 26, 27, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: left;
  cursor: pointer;
}

.home-calendar-date {
  width: 44px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 90, 31, 0.42);
  border-top-width: 10px;
  border-radius: 6px;
  color: var(--accent);
  font-weight: 950;
}

.home-calendar-entry span:nth-child(2) { display: grid; gap: 5px; }
.home-calendar-entry strong { font-size: 18px; }
.home-calendar-entry small { color: #9da1a7; font-size: 12px; }
.home-calendar-entry b { color: #9da1a7; font-size: 32px; font-weight: 400; }

.content {
  padding: 22px 16px 28px;
  background: #111;
}

.with-tabbar {
  padding-bottom: 92px !important;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 14px;
  color: #fff;
}

.section-heading h2 {
  margin: 0;
  font-size: 22px;
}

.more-link,
.text-link {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  cursor: pointer;
}

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

.activity-card {
  overflow: hidden;
  border-radius: 8px;
  background: #222;
  color: #fff;
  cursor: pointer;
}

.activity-image {
  position: relative;
  aspect-ratio: 3 / 4;
  background-position: center;
  background-size: cover;
}

.tag {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(18, 18, 18, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.activity-info {
  min-height: 94px;
  display: grid;
  gap: 8px;
  padding: 10px;
}

.activity-title {
  min-height: 42px;
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 850;
}

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

.activity-subtitle {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 4px 6px;
  border-radius: 5px;
  background: #333;
  color: #cfcfcf;
  font-size: 12px;
}

.price {
  color: var(--accent);
  font-weight: 950;
  white-space: nowrap;
}

.plain-page {
  min-height: 100%;
  padding: 0 14px 24px;
  background: #111;
  color: #fff;
}

.page-top {
  position: sticky;
  top: 0;
  z-index: 8;
  height: 64px;
  display: grid;
  grid-template-columns: 92px 1fr 104px;
  align-items: center;
  gap: 8px;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(12px);
}

.page-top strong {
  text-align: center;
  font-size: 18px;
}

.city-pill.small {
  width: 88px;
  height: 36px;
  justify-content: center;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background: transparent;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.wechat-menu.compact {
  min-width: 96px;
  height: 40px;
  justify-self: end;
}

.channel-cover {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  margin: 0 -14px 20px;
  padding: 24px 18px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.channel-cover::after,
.review-card::after,
.detail-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.68));
}

.channel-cover > div {
  position: relative;
  z-index: 1;
}

.channel-cover h1,
.detail-body h1,
.calendar-header h1,
.profile-card h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
}

.channel-cover p,
.calendar-header p,
.profile-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.filter-row,
.status-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 18px;
}

.status-tabs {
  grid-template-columns: repeat(4, 1fr);
}

.filter-row button,
.status-tabs button {
  height: 42px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #202020;
  font-weight: 800;
}

.status-tabs button.active {
  background: var(--accent);
}

.detail-page {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 96px;
}

.detail-page .page-top,
.detail-body {
  padding-left: 14px;
  padding-right: 14px;
}

.detail-cover {
  height: 360px;
  position: relative;
  background-position: center;
  background-size: cover;
}

.detail-cover .tag {
  z-index: 1;
}

.detail-body {
  padding-top: 20px;
}

.detail-price {
  margin: 10px 0 18px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 950;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.info-list div,
.rule-card,
.form-card,
.order-card,
.profile-card,
.menu-list {
  border-radius: 8px;
  background: #202020;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
}

.info-list span {
  color: #aaa;
}

.detail-body h2 {
  margin: 24px 0 10px;
  font-size: 18px;
}

.detail-body p,
.rule-card p {
  margin: 0;
  color: #c9c9c9;
  line-height: 1.7;
}

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

.highlight-list span {
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--accent);
  background: rgba(255, 90, 31, 0.12);
  font-weight: 850;
}

.sticky-action {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  padding: 12px 14px 16px;
  border-top: 1px solid #252525;
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(14px);
}

.ghost-action,
.primary-action {
  height: 48px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.ghost-action {
  border: 1px solid #383838;
  color: #fff;
  background: #202020;
}

.primary-action {
  border: 0;
  color: #fff;
  background: var(--accent);
}

.signup-page {
  padding-bottom: 96px;
}

.order-activity {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  padding: 14px;
  margin: 14px 0;
  border-radius: 8px;
  background: #202020;
}

.order-activity img {
  width: 108px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.order-activity h1 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.order-activity p {
  margin: 8px 0;
  color: #aaa;
  font-size: 13px;
}

.order-activity strong {
  color: var(--accent);
}

.form-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.form-card input {
  margin-top: 7px;
  border-color: #383838;
  color: #fff;
  background: #151515;
}

.rule-card {
  padding: 14px;
  margin-top: 14px;
}

.rule-card strong {
  display: block;
  margin-bottom: 8px;
}

.total-price {
  display: grid;
  align-content: center;
  color: #aaa;
  font-size: 13px;
}

.total-price strong {
  color: var(--accent);
  font-size: 20px;
}

.calendar-header {
  padding: 22px 4px 18px;
}

.calendar-list,
.order-list,
.review-list,
.menu-list {
  display: grid;
  gap: 12px;
}

.calendar-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 14px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #202020;
  text-align: left;
  cursor: pointer;
}

.calendar-item > span {
  display: grid;
  place-items: center;
  height: 58px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 950;
}

.calendar-item strong {
  font-size: 16px;
}

.calendar-item p {
  margin: 8px 0 0;
  color: #aaa;
}

.review-card {
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.review-card > div {
  position: relative;
  z-index: 1;
}

.review-card h2 {
  margin: 0;
  font-size: 24px;
}

.review-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.order-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 0;
}

.order-title strong {
  color: var(--accent);
}

.order-title span {
  color: #aaa;
  font-size: 12px;
}

.compact-order {
  margin: 0;
  background: transparent;
}

.profile-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  margin: 18px 0 14px;
}

.avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 26px;
  font-weight: 950;
}

.mine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mine-grid button {
  display: grid;
  gap: 6px;
  padding: 16px 8px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #202020;
}

.mine-grid strong {
  color: var(--accent);
  font-size: 22px;
}

.mine-grid span {
  color: #aaa;
}

.menu-list {
  gap: 0;
  overflow: hidden;
}

.menu-list button {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid #303030;
  color: #fff;
  background: transparent;
  padding: 0 14px;
}

.tabbar {
  position: sticky;
  bottom: 0;
  z-index: 9;
  display: flex;
  height: 72px;
  border-top: 1px solid #242424;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(14px);
}

.tabbar button {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  color: #777;
  background: transparent;
  cursor: pointer;
}

.tabbar button.active {
  color: var(--accent);
}

.tabbar span {
  font-size: 20px;
}

.tabbar em {
  font-style: normal;
  font-size: 12px;
}

.community-hero {
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: 12px;
  align-items: center;
  padding: 18px;
  margin: 12px 0 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #202020 78%);
}

.community-hero h1,
.distribution-card h1,
.qr-card h2 {
  margin: 0;
}

.community-hero p,
.distribution-card p,
.distribution-card span,
.qr-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.community-hero button,
.qr-card button,
.withdraw-button {
  height: 42px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #111;
  font-weight: 900;
  cursor: pointer;
}

.post-grid {
  columns: 2;
  column-gap: 10px;
}

.post-card {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 10px;
  border-radius: 8px;
  background: #202020;
  cursor: pointer;
}

.post-cover {
  height: 210px;
  background-position: center;
  background-size: cover;
}

.post-info {
  padding: 10px;
}

.post-info h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.post-info p {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0;
  color: #b8b8b8;
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ddd;
  font-size: 12px;
}

.post-author em {
  margin-left: auto;
  color: #aaa;
  font-style: normal;
}

.post-author.large {
  margin-bottom: 14px;
}

.post-author.large em {
  margin-left: 0;
}

.small-avatar {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-weight: 950;
}

.post-detail-page {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 82px;
}

.post-detail-page .page-top,
.post-detail-body {
  padding-left: 14px;
  padding-right: 14px;
}

.post-gallery {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 0 14px 14px;
  scroll-snap-type: x mandatory;
}

.post-gallery img {
  width: 86%;
  height: 360px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: start;
}

.post-detail-body h1 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.post-detail-body > p {
  margin: 0;
  color: #d4d4d4;
  line-height: 1.8;
}

.post-actions {
  display: grid;
  grid-template-columns: 1fr 82px 82px;
  gap: 8px;
  margin: 18px 0;
}

.post-actions button {
  height: 38px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #202020;
  font-weight: 800;
}

.comment-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.comment-item {
  padding: 12px;
  border-radius: 8px;
  background: #202020;
}

.comment-item p {
  margin: 6px 0 0;
  color: #c8c8c8;
  line-height: 1.6;
}

.comment-bar {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 70px;
  gap: 8px;
  padding: 10px 14px 14px;
  border-top: 1px solid #252525;
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(14px);
}

.comment-bar input {
  border-color: #333;
  color: #fff;
  background: #202020;
}

.comment-bar button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.distribution-card {
  padding: 18px;
  margin: 12px 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #262626, var(--accent));
}

.distribution-card h1 {
  margin-top: 6px;
  font-size: 28px;
  letter-spacing: 0;
}

.qr-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #202020;
}

.fake-qr {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  width: 128px;
  height: 128px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.fake-qr i {
  border-radius: 2px;
  background: #ececec;
}

.fake-qr i.on {
  background: #111;
}

.commission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 12px 0;
}

.commission-grid div {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  background: #202020;
}

.commission-grid span,
.team-item span,
.record-item span,
.team-item em,
.record-item em {
  color: #aaa;
  font-size: 12px;
  font-style: normal;
}

.commission-grid strong,
.team-item strong:last-child,
.record-item strong:last-child {
  color: var(--accent);
  font-size: 20px;
}

.local-heading {
  margin-top: 20px;
}

.team-list,
.record-list {
  display: grid;
  gap: 10px;
}

.team-item,
.record-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #202020;
}

.team-item > div,
.record-item > div {
  display: grid;
  gap: 6px;
}

.team-item > div:last-child,
.record-item > div:last-child {
  text-align: right;
}

.withdraw-button {
  width: 100%;
  margin: 18px 0 0;
  background: var(--accent);
}

.join-cover {
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  margin: 0 -14px 18px;
  padding: 22px 18px;
  background-position: center;
  background-size: cover;
}

.join-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.76));
}

.join-cover > div {
  position: relative;
  z-index: 1;
}

.join-cover h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}

.join-cover p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

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

.join-role-card,
.join-benefit-card,
.join-form-card {
  padding: 15px;
  border-radius: 8px;
  background: #202020;
}

.join-role-card h2,
.join-benefit-card h2,
.join-form-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.join-role-card p {
  margin: 0 0 12px;
  color: #c4c4c4;
  line-height: 1.6;
}

.join-role-card div,
.join-benefit-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.join-role-card span,
.join-benefit-card span {
  padding: 7px 9px;
  border-radius: 7px;
  color: var(--accent);
  background: rgba(255, 90, 31, 0.12);
  font-size: 12px;
  font-weight: 850;
}

.join-benefit-card,
.join-form-card {
  margin-top: 12px;
}

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

.join-form-card input {
  margin-top: 7px;
  border-color: #383838;
  color: #fff;
  background: #151515;
}

.join-form-card button {
  height: 46px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
  cursor: pointer;
}

.member-join-header {
  min-height: 284px;
  display: flex;
  align-items: flex-end;
  position: relative;
  margin: 0 -14px -36px;
  padding: 24px 22px 72px;
  background-position: center;
  background-size: cover;
}

.member-join-header::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, rgba(6, 13, 18, 0.16), rgba(6, 13, 18, 0.04) 48%, rgba(6, 13, 18, 0.58)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), #111 100%);
}

.member-join-header > div {
  position: relative;
  z-index: 1;
}

.member-join-header h1 {
  margin: 0;
  color: #fff;
  font-size: 32px;
}

.member-join-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-left: 3px solid #ff5a1f;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.34);
  font-size: 10px;
  font-weight: 800;
}

.member-join-header p {
  margin: 8px 0 0;
  color: #eee;
  font-size: 17px;
}

.membership-section-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
  color: #fff;
}

.membership-section-heading h2 {
  margin: 0;
  font-size: 20px;
}

.membership-section-heading span {
  color: #999;
  font-size: 12px;
}

.membership-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.membership-card {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.membership-card.featured-member {
  min-height: 166px;
}

.membership-card:nth-child(n + 4) {
  min-height: 166px;
}

.membership-card-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background:
    linear-gradient(110deg, transparent 0 59%, rgba(255, 255, 255, 0.18) 59% 60%, transparent 60%),
    linear-gradient(0deg, transparent 0 74%, rgba(255, 255, 255, 0.14) 74% 75%, transparent 75%);
}

.membership-card-cover,
.membership-card-cover-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.membership-card-cover {
  object-fit: cover;
}

.membership-card-cover-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 17, 0.82), rgba(8, 13, 17, 0.32) 72%, rgba(8, 13, 17, 0.56)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
}

.membership-card-watermark {
  position: absolute;
  right: 10px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 112px;
  font-weight: 950;
  line-height: 1;
}

.membership-card-top,
.membership-card-copy,
.membership-card-bottom {
  position: relative;
  z-index: 1;
}

.membership-card-top,
.membership-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.membership-card-top span {
  font-size: 10px;
  font-weight: 800;
  opacity: 0.86;
}

.membership-card-copy {
  margin: 15px 0 12px;
}

.membership-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.membership-card p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.86;
}

.membership-card-bottom strong {
  font-size: 22px;
  line-height: 1;
}

.membership-card-bottom strong small {
  margin-right: 2px;
  font-size: 12px;
}

.membership-card-bottom > span {
  padding: 7px 9px 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  font-size: 11px;
  font-weight: 800;
}

.membership-card-bottom b {
  margin-left: 5px;
  font-size: 15px;
}

.membership-card.peach {
  background: linear-gradient(135deg, #ff6a24 0%, #f24b28 56%, #af2132 100%);
}

.membership-card.ice {
  color: #0b2738;
  background: linear-gradient(135deg, #d8f4ff 0%, #95d4ed 54%, #58a7cb 100%);
}

.membership-card.gold {
  color: #2c2411;
  background: linear-gradient(135deg, #fff0ad 0%, #e8c35a 58%, #b98427 100%);
}

.membership-card.navy {
  color: #fff;
  background: linear-gradient(135deg, #365d86 0%, #18364f 52%, #0c1d2c 100%);
}

.membership-card.slate {
  color: #fff;
  background: linear-gradient(135deg, #6d7180 0%, #3b3e49 55%, #202127 100%);
}

.membership-card.carbon {
  color: #fff;
  background: linear-gradient(135deg, #474a4d 0%, #242628 55%, #111213 100%);
}

.membership-card.ice .membership-card-watermark,
.membership-card.gold .membership-card-watermark {
  color: rgba(0, 0, 0, 0.08);
}

.membership-card.ice .membership-card-bottom > span,
.membership-card.gold .membership-card-bottom > span {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.22);
}

.member-detail-page {
  padding: 0 0 90px;
}

.member-detail-page .page-top {
  padding: 0 14px;
}

.member-detail-image {
  display: block;
  width: 100%;
  height: auto;
}

.member-detail-summary {
  padding: 18px 16px 24px;
  color: #111;
  background: #f7f4ee;
}

.member-detail-summary p {
  margin: 0;
  color: #777;
}

.member-detail-summary h1 {
  margin: 8px 0 16px;
  color: var(--accent);
  font-size: 42px;
}

.member-detail-summary small {
  color: #111;
  font-size: 22px;
}

.member-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-benefits span {
  padding: 7px 9px;
  border-radius: 6px;
  color: #9a3c17;
  background: #ffe2d5;
  font-size: 12px;
  font-weight: 850;
}

.member-detail-action {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 12px 14px 16px;
  background: #111;
}

.share-member-button {
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: transparent;
}

.share-member-button span {
  font-size: 24px;
}

.member-order-page {
  min-height: 100%;
  padding-bottom: 100px;
}

.member-order-card {
  overflow: hidden;
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #202020;
}

.member-order-summary {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
}

.member-order-icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #fff8ef, #ffcdb7);
  font-size: 62px;
}

.member-order-icon.ice {
  background: linear-gradient(145deg, #edf7ff, #b8cef0);
}

.member-order-icon.gold {
  background: linear-gradient(145deg, #fffdf1, #ffe09d);
}

.member-order-icon.navy,
.member-order-icon.slate,
.member-order-icon.carbon {
  background: linear-gradient(145deg, #536d9d, #171717);
}

.member-order-summary h1 {
  margin: 0 0 10px;
  font-size: 20px;
}

.member-order-summary p {
  margin: 5px 0;
  color: #aaa;
}

.member-select-row {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr 24px;
  align-items: center;
  border: 0;
  border-top: 1px solid #454545;
  color: #fff;
  background: transparent;
  text-align: left;
}

.member-select-row b {
  color: #e95b5b;
}

.member-select-row em {
  color: #aaa;
  font-style: normal;
}

.member-contract {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 10px;
  background: #202020;
  font-size: 14px;
}

.member-contract input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.member-contract strong {
  color: var(--accent);
}

.member-pay-action {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 12px;
  margin: 24px -14px -100px;
  padding: 14px 14px 18px;
  background: #252525;
}

.member-pay-action strong {
  color: var(--accent);
  font-size: 24px;
}

.member-pay-action button {
  height: 54px;
  border: 0;
  border-radius: 28px;
  color: #fff;
  background: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.mine-page {
  padding-top: 0;
}

.mine-hero {
  min-height: 260px;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
  position: relative;
  margin: 0 -14px -18px;
  padding: 52px 22px 72px;
  background-position: center;
  background-size: cover;
}

.mine-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), #111 100%);
}

.mine-hero > * {
  position: relative;
  z-index: 1;
}

.mine-user-avatar,
.edit-avatar > div {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid #777;
  border-radius: 50%;
  color: #777;
  background: #242424;
  font-size: 52px;
}

.mine-hero h1 {
  margin: 0 0 8px;
  font-size: 21px;
}

.mine-hero span {
  padding: 4px 7px;
  border-radius: 5px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.mine-hero button {
  height: 38px;
  padding: 0 13px;
  border: 1px solid #666;
  border-radius: 20px;
  color: #ddd;
  background: rgba(20, 20, 20, 0.55);
}

.mine-order-status {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 8px;
  border-radius: 9px;
  background: #202020;
}

.mine-orders-heading{display:flex;align-items:center;justify-content:space-between;margin:18px 2px 10px}.mine-orders-heading h2{margin:0;font-size:17px}.mine-orders-heading button{border:0;color:#aaa;background:transparent;font-size:12px}

.mine-order-status button,
.mine-tools button {
  display: grid;
  place-items: center;
  gap: 8px;
  border: 0;
  color: #ddd;
  background: transparent;
}

.mine-order-status strong,
.mine-tools strong {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
}

.mine-order-status span,
.mine-tools span {
  font-size: 12px;
}

.mine-assets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

.mine-assets button {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  padding: 16px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: #202020;
  text-align: left;
}

.mine-assets span {
  grid-column: span 2;
}

.mine-assets strong {
  font-size: 24px;
}

.mine-assets small {
  margin-left: 3px;
  color: #aaa;
  font-size: 12px;
}

.mine-assets em {
  color: var(--accent);
  font-size: 32px;
  font-style: normal;
}

.mine-tools {
  padding: 16px 12px 20px;
  border-radius: 9px;
  background: #202020;
}

.mine-tools h2 {
  margin: 0 0 18px;
  font-size: 17px;
}

.mine-tools > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 24px;
}

.profile-edit-page,
.coupon-page {
  min-height: 100%;
  padding-bottom: 100px;
}

.edit-avatar {
  display: grid;
  place-items: center;
  position: relative;
  width: 130px;
  margin: 24px auto 32px;
}

.edit-avatar > div {
  width: 120px;
  height: 120px;
  font-size: 72px;
}

.edit-avatar button {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.profile-field-list {
  overflow: hidden;
  border-radius: 10px;
  background: #202020;
}

.profile-field-list button {
  width: calc(100% - 24px);
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 22px;
  align-items: center;
  margin: 0 12px;
  border: 0;
  border-bottom: 1px solid #3a3a3a;
  color: #fff;
  background: transparent;
  text-align: left;
}

.profile-field-list button.field-separator {
  margin-top: 14px;
  border-top: 14px solid #111;
  box-sizing: content-box;
}

.profile-field-list em {
  color: #aaa;
  font-style: normal;
  text-align: right;
}

.profile-field-list strong {
  color: #aaa;
  text-align: right;
}

.profile-save-bar {
  position: sticky;
  bottom: 0;
  margin: 24px -14px -100px;
  padding: 14px 14px 18px;
  background: #242424;
}

.profile-save-bar button {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 28px;
  color: #111;
  background: #fff;
  font-size: 17px;
  font-weight: 900;
}

.coupon-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 12px -14px 14px;
  padding: 12px 14px 16px;
  background: #202020;
}

.coupon-tabs button {
  height: 46px;
  border: 0;
  color: #aaa;
  background: transparent;
  font-size: 17px;
}

.coupon-tabs button.active {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 4px;
  text-underline-offset: 13px;
}

.coupon-card {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 12px;
  align-items: center;
  padding: 22px;
  border: 1px solid #555;
  border-radius: 12px;
  background: linear-gradient(135deg, #343434, #202020);
}

.coupon-card h1 {
  margin: 0 0 12px;
  color: #fff4ca;
  font-size: 22px;
}

.coupon-card h1 span,
.coupon-card p strong {
  padding: 4px 6px;
  border-radius: 4px;
  color: #222;
  background: #fff4ca;
  font-size: 11px;
}

.coupon-card p {
  margin: 0;
  color: #aaa;
  font-size: 12px;
}

.coupon-card button {
  height: 42px;
  border: 1px solid #888;
  border-radius: 22px;
  color: #fff;
  background: transparent;
}

.empty-state {
  padding: 48px 16px;
  color: #888;
  text-align: center;
}

.search-page-box {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 8px;
  margin: 12px 0 20px;
}

.search-page-box input {
  border-color: #383838;
  color: #fff;
  background: #202020;
}

.search-page-box button,
.publish-submit,
.tool-detail-card button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.city-list {
  display: grid;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 9px;
  background: #202020;
}

.city-list button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid #383838;
  color: #fff;
  background: transparent;
  padding: 0 16px;
}

.city-list strong {
  color: var(--accent);
}

.publish-image {
  width: 100%;
  height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  margin: 14px 0;
  border: 1px dashed #555;
  border-radius: 9px;
  color: #aaa;
  background: #202020;
  font-size: 42px;
  cursor: pointer;
}

.member-contract button{padding:0;border:0;color:var(--accent);background:transparent;font:inherit;font-weight:800;cursor:pointer}

.contact-qr-backdrop{position:absolute;inset:0;z-index:80;display:grid;place-items:center;padding:18px;background:rgba(0,0,0,.78);backdrop-filter:blur(8px)}.contact-qr-modal{width:min(330px,100%);padding:24px 20px;border:1px solid #3b3b3b;border-radius:8px;background:#202020;box-shadow:0 22px 70px rgba(0,0,0,.55);text-align:center}.payment-success-mark{width:54px;height:54px;display:grid;place-items:center;margin:0 auto 12px;border-radius:50%;color:#fff;background:#35b96f;font-size:28px;font-weight:900}.contact-qr-modal h2,.contact-qr-modal h3,.contact-qr-modal p{margin:0}.contact-qr-modal h2{font-size:22px}.contact-qr-modal h3{margin:12px 0 5px;font-size:15px}.contact-qr-modal p{margin-top:7px;color:#aaa;font-size:11px;line-height:1.6}.contact-qr-image{width:190px;height:190px;display:grid;place-items:center;margin:18px auto 0;padding:12px;border-radius:8px;background:#fff}.contact-qr-image img{width:100%;height:100%;object-fit:contain}.contact-fake-qr{width:100%;height:100%;display:grid;grid-template-columns:repeat(9,1fr);gap:2px}.contact-fake-qr i{background:#fff}.contact-fake-qr i.on{background:#111}.contact-qr-modal .primary-action{width:100%;margin-top:18px}.order-contact-button{width:calc(100% - 28px);margin:0 14px 14px;padding:10px;border:1px solid #444;border-radius:6px;color:#fff;background:#292929;font-weight:750}
.demo-preview-badge{display:inline-block;margin-bottom:12px;padding:4px 8px;border-radius:4px;color:#ffd4c5;background:rgba(255,90,31,.18);font-size:10px;font-weight:800}.signup-pay-buttons{display:grid;grid-template-columns:120px 1fr;gap:8px;flex:1}.preview-success-button{border:1px solid #555;border-radius:6px;color:#fff;background:#292929;font-size:11px;font-weight:800}.signup-pay-buttons .primary-action{width:100%}

.publish-image span {
  font-size: 14px;
}

.publish-submit {
  width: 100%;
  height: 48px;
  margin-top: 14px;
}

.tool-detail-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  margin-top: 14px;
  border-radius: 9px;
  background: #202020;
}

.tool-detail-card h1,
.tool-detail-card p {
  margin: 0;
}

.tool-detail-card p {
  color: #bbb;
  line-height: 1.7;
}

.tool-detail-card button {
  height: 46px;
}

.prototype-toast {
  position: sticky;
  bottom: 86px;
  z-index: 50;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: -46px auto 12px;
  padding: 10px 16px;
  border-radius: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.86);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  text-align: center;
}

.registered-section,.leader-section{margin:22px 0}.registered-heading{display:flex;align-items:center;justify-content:space-between}.registered-heading h2{margin:0}.registered-heading span{color:#aaa;font-size:12px}.attendee-row{display:flex;overflow-x:auto;gap:12px;margin:14px 0}.attendee-row div{min-width:54px;display:grid;justify-items:center;gap:6px}.attendee-row span,.leader-avatar{width:50px;height:50px;display:grid;place-items:center;border-radius:50%;color:#fff;background:linear-gradient(135deg,var(--accent),#555);font-weight:900}.attendee-row em{font-size:11px;font-style:normal;white-space:nowrap}.gender-count{display:flex;justify-content:space-between;padding:12px 14px;border-radius:8px;background:#202020}.gender-count span:first-child{color:#7ca7ff}.gender-count span:last-child{color:#ff718c}.leader-card{display:grid;grid-template-columns:62px 1fr;gap:12px;padding:14px;border-radius:8px;background:#202020}.leader-card h3{margin:0 0 6px}.leader-card span{display:inline-block;margin:0 4px 6px 0;padding:3px 6px;border-radius:4px;color:#bbb;background:#333;font-size:11px}.leader-card p{margin:0;color:#c4c4c4;font-size:12px;line-height:1.6}.detail-tabs{position:sticky;top:64px;z-index:7;display:grid;grid-template-columns:repeat(4,1fr);margin:22px -14px 0;padding:8px 14px;background:rgba(17,17,17,.94);backdrop-filter:blur(12px)}.detail-tabs button{height:40px;border:0;color:#aaa;background:transparent;font-weight:850}.detail-tabs button:first-child{color:#fff;text-decoration:underline;text-decoration-thickness:3px;text-underline-offset:8px}.detail-content-section{scroll-margin-top:118px;padding-top:18px}.feature-poster{min-height:280px;display:flex;flex-direction:column;justify-content:flex-end;position:relative;overflow:hidden;margin-top:14px;padding:18px;border-radius:8px;background-position:center;background-size:cover}.feature-poster::after{position:absolute;inset:0;content:"";background:linear-gradient(180deg,transparent,rgba(0,0,0,.8))}.feature-poster strong,.feature-poster span{position:relative;z-index:1}.feature-poster strong{font-size:22px}.feature-poster span{margin-top:6px;color:#ccc}.itinerary-list{display:grid;gap:12px}.itinerary-list article{display:grid;grid-template-columns:62px 1fr;gap:12px;padding:14px;border-radius:8px;background:#202020}.itinerary-list article>strong{color:var(--accent);font-size:13px}.itinerary-list h3,.itinerary-list p{margin:0}.itinerary-list p{margin-top:7px;color:#bbb;line-height:1.6}.fee-box,.notice-list{margin-bottom:12px;padding:14px;border-radius:8px;background:#202020}.fee-box h3{margin:0 0 10px}.fee-box.included h3,.fee-box.included p{color:#a8e6b2}.fee-box.excluded h3,.fee-box.excluded p{color:#e6b0a8}.fee-box p,.notice-list p{margin:8px 0;line-height:1.6}.signup-section-title{display:grid;grid-template-columns:34px 1fr;gap:10px;align-items:center;margin:20px 0 10px}.signup-section-title>span{width:32px;height:32px;display:grid;place-items:center;border-radius:50%;color:#fff;background:var(--accent);font-weight:900}.signup-section-title h2,.signup-section-title p{margin:0}.signup-section-title h2{font-size:17px}.signup-section-title p{margin-top:3px;color:#888;font-size:11px}.participant-form select,.form-card select{margin-top:7px;border-color:#383838;color:#fff;background:#151515}.signup-agreement{display:flex;grid-template-columns:none;align-items:flex-start;gap:8px;margin-bottom:10px;color:#ddd;font-weight:500}.signup-agreement input{width:18px;height:18px;flex:0 0 auto;accent-color:var(--accent)}

.detail-tabs button:first-child:not(.active){color:#aaa;text-decoration:none}.detail-tabs button.active{color:#fff;text-decoration:underline;text-decoration-thickness:3px;text-underline-offset:8px;outline:0}

.benchmark-poster{min-height:460px;justify-content:flex-start;padding-top:32px;text-align:center}.benchmark-poster::after{background:linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.78))}.benchmark-poster small{position:relative;z-index:1;margin-bottom:8px;color:#fff;font-weight:800}.trip-overview{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;margin:14px 0 24px}.trip-overview div{display:grid;justify-items:center;gap:5px;text-align:center}.trip-overview b{width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:#454545;font-size:19px}.trip-overview strong{font-size:11px}.trip-overview span{color:#999;font-size:9px;line-height:1.35}.benchmark-itinerary details{border-bottom:1px solid #292929}.benchmark-itinerary summary{display:grid;grid-template-columns:auto 1fr auto;gap:9px;align-items:center;padding:14px 0;cursor:pointer;list-style:none}.benchmark-itinerary summary::-webkit-details-marker{display:none}.benchmark-itinerary summary strong{font-family:Georgia,serif;font-size:13px}.benchmark-itinerary summary b{font-size:13px}.benchmark-itinerary summary span{color:#999;font-size:11px}.trip-timeline{margin-left:34px;padding:0 0 18px 18px;border-left:1px solid #555}.trip-timeline p{margin:0 0 10px;color:#bbb;font-size:11px;line-height:1.6}.trip-timeline p b{display:block;margin-bottom:4px;color:#fff;font-size:13px}.trip-timeline img{width:100%;height:180px;margin:4px 0 12px;border-radius:6px;object-fit:cover}.fee-table{overflow:hidden;margin-bottom:14px;border:1px solid #444;border-radius:8px}.fee-table h3{margin:0;padding:13px;border-bottom:1px solid #444;font-size:13px}.fee-table div{display:grid;grid-template-columns:34% 1fr;border-bottom:1px solid #444}.fee-table div:last-child{border-bottom:0}.fee-table strong,.fee-table span{padding:12px;font-size:11px;line-height:1.55}.fee-table strong{border-right:1px solid #444;color:#aaa}.notice-menu{border-top:1px solid #333}.notice-menu button{width:100%;display:grid;grid-template-columns:28px 1fr auto;align-items:center;padding:14px 0;border:0;border-bottom:1px solid #333;color:#fff;background:transparent;text-align:left}.notice-menu button b{font-size:17px}.notice-menu button span{font-weight:750}.notice-menu button em{color:#999;font-size:20px;font-style:normal}.legal-content{padding:18px 14px 90px}.legal-content h2{font-size:16px}.legal-content p{margin:0 0 12px;color:#eee;font-size:13px;font-weight:600;line-height:1.7}

.benchmark-detail-cover{height:118px;position:relative;margin:0;background-position:center 42%;background-size:cover}.benchmark-detail-cover::after{position:absolute;inset:0;content:"";background:linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.55))}.cover-counter{position:absolute;right:10px;top:8px;z-index:1;padding:3px 7px;border-radius:10px;color:#fff;background:rgba(0,0,0,.55);font-size:11px}.benchmark-tags{display:flex;gap:5px;margin-bottom:10px}.benchmark-tags span,.activity-keywords span{padding:3px 6px;border:1px solid #444;border-radius:4px;color:#ccc;background:#242424;font-size:11px}.detail-body .activity-intro{margin:8px 0;color:#ddd;font-size:13px;font-weight:600;line-height:1.55;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3}.activity-keywords{display:flex;flex-wrap:wrap;gap:5px;margin:10px 0}.deadline-price{display:flex;align-items:center;justify-content:space-between;margin:12px 0}.deadline-price div{display:flex;align-items:center;gap:6px}.deadline-price div strong{padding:5px 7px;border-radius:4px;color:#fff;background:var(--accent);font-size:11px}.deadline-price div span{padding:5px 7px;border-radius:4px;color:#ddd;background:#292929;font-size:11px}.deadline-price em{color:var(--accent);font-size:20px;font-style:normal;font-weight:950}.date-range{display:grid;grid-template-columns:1fr 80px 1fr;align-items:center;margin:18px 0}.date-range>div:last-child{text-align:right}.date-range div span{display:block;color:#888;font-size:11px}.date-range div strong{display:block;margin-top:7px;color:#fff;font-size:14px}.range-days{position:relative;text-align:center}.range-days::before,.range-days::after{position:absolute;top:50%;width:25px;height:1px;content:"";background:#aaa}.range-days::before{left:0}.range-days::after{right:0}.range-days span{display:inline-block!important;padding:3px 7px;border:1px solid #aaa;border-radius:12px!important;color:#fff!important;background:#111!important}.benchmark-attendees{gap:8px}.benchmark-attendees div{min-width:52px}.benchmark-attendees span{width:48px;height:48px;background-position:center;background-size:cover;text-indent:-999px}.benchmark-attendees em{width:52px;overflow:hidden;padding:4px;border-radius:4px;background:#252525;text-align:center;text-overflow:ellipsis}.registered-section h2,.leader-section h2{font-size:17px}.leader-card{grid-template-columns:126px 1fr}.leader-card img{width:126px;height:126px;border-radius:7px;object-fit:cover}.leader-card h3 b{display:inline-grid;width:24px;height:24px;place-items:center;border-radius:50%;color:#fff;background:#ff5364;font-size:13px}.leader-card p strong{color:#fff}.detail-body{padding-top:12px}.detail-body>h1{font-size:20px;line-height:1.3}.registered-section{margin-top:18px}

.editor-panel {
  height: 100vh;
  overflow-y: auto;
  padding: 28px;
  background: var(--panel);
  border-left: 1px solid var(--line);
}

.editor-header h1 {
  margin: 4px 0 8px;
  font-size: 28px;
}

.editor-header p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  color: var(--accent) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editor-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 24px 0;
  padding: 6px;
  border-radius: 8px;
  background: var(--paper);
}

.tab {
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.tab.active {
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.panel-section {
  display: none;
}

.panel-section.active {
  display: grid;
  gap: 14px;
}

label,
.field-group {
  display: grid;
  gap: 7px;
  color: #3d3d3d;
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

input,
select {
  height: 42px;
  padding: 0 12px;
}

input[type="color"] {
  padding: 4px;
}

.editable-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf8;
}

.editable-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
}

.mini-button {
  height: 32px;
  padding: 0 10px;
  border: 1px solid #ddd4cc;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
}

input[readonly] {
  color: #8a817a;
  background: #f2efeb;
}

.primary-button,
.secondary-button,
.ghost-button {
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  cursor: pointer;
}

.primary-button {
  border: 0;
  color: #fff;
  background: var(--ink);
  font-weight: 850;
}

.secondary-button {
  border: 0;
  color: #fff;
  background: var(--accent);
  font-weight: 850;
}

.ghost-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

#json-output {
  min-height: 180px;
  padding: 12px;
  resize: vertical;
  color: #3a312c;
  background: #fbfaf8;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 100vh;
  }

  .editor-panel {
    height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

.points-use-row{display:grid;grid-template-columns:1fr 110px;align-items:center;gap:12px;margin-top:12px;color:#fff;font-weight:800}.points-use-row input{width:100%;height:38px;border:1px solid #3a3a3a;border-radius:8px;color:#fff;background:#151515;text-align:center;font-size:16px;font-weight:900}
.login-card{margin:14px 24px;padding:16px;border-radius:8px;background:#202020}.login-card .primary-action{width:100%;height:46px}.phone-login-form{display:grid;gap:10px;margin-top:12px}.phone-login-form input{height:42px;border:1px solid #3a3a3a;border-radius:8px;color:#fff;background:#151515;padding:0 12px;font-size:14px}.phone-login-form>div{display:grid;grid-template-columns:1fr 112px;gap:8px}.phone-login-form button{height:42px;border:0;border-radius:8px;color:#fff;background:#333;font-weight:850}.phone-login-form>button{background:var(--accent)}
.legal-shortcuts{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:14px 0}.legal-shortcuts button,.signup-agreement button,.comment-item button{border:0;color:var(--accent);background:transparent;font-weight:850}.comment-item button{padding:0;font-size:12px}
.about-runtime-page{min-height:100%;padding-bottom:28px;background:#101112}.about-brand-panel{height:190px;margin:18px 16px 0;display:flex;flex-direction:column;align-items:center;justify-content:center;background:linear-gradient(145deg,#292b2e,#101112)}.about-brand-panel strong{color:#fff;font-size:30px;font-weight:950}.about-brand-panel span{margin-top:10px;color:var(--accent);font-size:15px;letter-spacing:5px}.about-content-panel{margin:0 16px;padding:22px;border:1px solid #2b2c2e;border-radius:8px;background:#202123}.about-content-panel h1{margin:0 0 18px;color:#fff;font-size:20px}.about-content-panel p{margin:0;color:#b3b5ba;font-size:14px;line-height:1.9}.about-content-panel button{width:100%;height:48px;margin-top:20px;border:1px solid #555;border-radius:7px;color:#fff;background:transparent;font-size:14px}

@media (max-width: 460px) {
  .phone-stage {
    padding: 0;
  }

  .phone-shell {
    width: 100vw;
    height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .hero-title {
    font-size: 36px;
  }
}
.contact-qr-empty{display:grid;place-items:center;width:100%;height:100%;padding:18px;color:#666;font-size:12px;line-height:1.5}
