:root {
  --bg: #eff3ec;
  --paper: rgba(252, 251, 247, 0.9);
  --paper-solid: #fcfbf7;
  --paper-soft: rgba(255, 253, 249, 0.86);
  --ink: #2d2626;
  --muted: #6b6771;
  --line: rgba(27, 34, 48, 0.12);
  --line-strong: rgba(27, 34, 48, 0.24);
  --salmon: #ef7a5c;
  --teal: #3ca99b;
  --acid: #d8ea4f;
  --sky: #6bb0ff;
  --sand: #f3d8b4;
  --mint: #dceee7;
  --shadow: 0 28px 78px rgba(53, 42, 33, 0.12);
  --shadow-soft: 0 18px 48px rgba(53, 42, 33, 0.08);
  --width: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(243, 208, 133, 0.26), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(189, 231, 226, 0.24), transparent 28%),
    radial-gradient(circle at 76% 74%, rgba(219, 230, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f7f1 0%, var(--bg) 100%);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body.is-profile-open {
  overflow: hidden;
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

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

.page-wash,
.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-wash {
  background:
    radial-gradient(circle at 14% 11%, rgba(255, 243, 198, 0.68), transparent 19%),
    radial-gradient(circle at 82% 16%, rgba(221, 245, 239, 0.34), transparent 24%),
    radial-gradient(circle at 72% 82%, rgba(255, 227, 214, 0.22), transparent 22%);
}

.page-grain {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(87, 64, 50, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 64, 50, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, black 68%, transparent 100%);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: var(--shadow-soft);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.market-topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  width: var(--width);
  margin: 14px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 250, 246, 0.74);
  box-shadow: 0 18px 48px rgba(53, 42, 33, 0.08);
  backdrop-filter: blur(14px);
}

.brand-tag,
.market-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(27, 34, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.72);
  color: var(--muted);
  font-family: "IBM Plex Mono", "Noto Sans SC", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.brand-tag {
  color: var(--ink);
  background: rgba(216, 234, 79, 0.18);
}

.market-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.market-nav a:hover,
.market-nav a:focus-visible,
.brand-tag:hover,
.brand-tag:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 252, 246, 0.94);
  color: var(--ink);
  transform: translateY(-1px);
}

.market-nav a:focus-visible,
.brand-tag:focus-visible,
.profile-card:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(239, 122, 92, 0.36);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: var(--width);
  margin: 0 auto;
  padding: 24px 0 64px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 46px 48px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 244, 186, 0.44), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(216, 240, 238, 0.52), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 34%),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 32%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 34px;
  width: 220px;
  height: 120px;
  border: 1px solid rgba(130, 111, 93, 0.12);
  border-radius: 28px;
  background: rgba(236, 248, 248, 0.72);
  box-shadow: 0 20px 48px rgba(72, 54, 39, 0.08);
  transform: rotate(4deg);
}

.hero-schedule {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
  max-height: 760px;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(27, 34, 48, 0.08);
  box-shadow: 0 20px 58px rgba(53, 42, 33, 0.12);
}

.hero-board {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-topline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.22fr);
  gap: 36px;
  align-items: center;
}

.date-sticker {
  display: grid;
  gap: 3px;
  width: fit-content;
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(27, 34, 48, 0.1);
  border-radius: 24px;
  background: rgba(216, 234, 79, 0.18);
  box-shadow: 0 12px 32px rgba(53, 42, 33, 0.08);
}

.date-sticker strong {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 34px;
  line-height: 1;
}

.date-sticker span,
.location-ribbon {
  color: var(--muted);
  font-family: "IBM Plex Mono", "Noto Sans SC", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-title-block {
  display: grid;
  justify-items: start;
  align-content: center;
}

.hero-title-block h1 {
  max-width: none;
  margin-top: 22px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(56px, 7.2vw, 108px);
  line-height: 0.98;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-title-block p {
  margin-top: 16px;
  max-width: 34ch;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.6;
}

.laptop-doodle {
  min-height: 120px;
  border: 1px solid rgba(130, 111, 93, 0.12);
  border-radius: 28px;
  background: rgba(236, 248, 248, 0.76);
  box-shadow: 0 20px 48px rgba(72, 54, 39, 0.08);
  transform: rotate(4deg);
}

.location-ribbon {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 22px;
  padding: 0 14px;
  border: 1px solid rgba(27, 34, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.78);
  color: var(--ink);
}

.section-block {
  position: relative;
  margin-top: 42px;
  scroll-margin-top: 104px;
}

.section-head {
  margin-bottom: 16px;
}

.section-head-with-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  flex-wrap: wrap;
}

.section-kicker,
.hold-tip,
.note-time,
.card-id,
.chip-row span,
.wish-head strong,
.team-footer span,
.team-footer b,
.team-zone-title span,
.profile-kicker,
.profile-gate-label,
.contact-box span {
  color: var(--muted);
  font-family: "IBM Plex Mono", "Noto Sans SC", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 10px;
}

.section-head h2 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hold-tip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(27, 34, 48, 0.1);
  border-radius: 999px;
  background: rgba(239, 122, 92, 0.12);
  color: #b95d46;
}

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

.agenda-note,
.intro-note,
.wish-note,
.team-note {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.agenda-note {
  min-height: 220px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(252, 250, 246, 0.78)),
    var(--paper);
}

.agenda-note:nth-child(1),
.note-tone-green {
  background:
    linear-gradient(180deg, rgba(60, 169, 155, 0.13), rgba(252, 250, 246, 0.9)),
    var(--paper);
}

.agenda-note:nth-child(2),
.note-tone-pink {
  background:
    linear-gradient(180deg, rgba(239, 122, 92, 0.15), rgba(252, 250, 246, 0.9)),
    var(--paper);
}

.agenda-note:nth-child(3),
.note-tone-blue {
  background:
    linear-gradient(180deg, rgba(107, 176, 255, 0.18), rgba(252, 250, 246, 0.9)),
    var(--paper);
}

.agenda-note:nth-child(4),
.note-tone-yellow {
  background:
    linear-gradient(180deg, rgba(243, 216, 180, 0.36), rgba(252, 250, 246, 0.9)),
    var(--paper);
}

.agenda-note:nth-child(5),
.note-tone-mint {
  background:
    linear-gradient(180deg, rgba(220, 238, 231, 0.7), rgba(252, 250, 246, 0.9)),
    var(--paper);
}

.agenda-note:nth-child(6),
.note-tone-red {
  background:
    linear-gradient(180deg, rgba(239, 122, 92, 0.2), rgba(252, 250, 246, 0.9)),
    var(--paper);
}

.note-time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(27, 34, 48, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.72);
  color: var(--ink);
}

.agenda-note h3 {
  margin-top: 20px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: 0;
}

.agenda-note > p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.agenda-note p,
.intro-note p,
.wish-note p,
.team-note p {
  overflow-wrap: anywhere;
}

.intro-wall,
.wish-wall {
  columns: 3 320px;
  column-gap: 14px;
}

.intro-note,
.wish-note {
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  padding: 18px;
  break-inside: avoid;
  cursor: pointer;
  background: var(--paper);
}

.intro-note:hover,
.intro-note:focus-visible,
.wish-note:hover,
.wish-note:focus-visible,
.team-note:hover,
.team-note:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 28px 74px rgba(27, 34, 48, 0.18);
  transform: translateY(-2px);
}

.intro-note {
  min-height: 212px;
}

.intro-note h3 {
  margin-top: 12px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-copy {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.card-id {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 0 9px;
  border: 1px solid rgba(27, 34, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.68);
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.chip-row span,
.wish-head strong,
.team-footer span,
.team-footer b,
.team-zone-title span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(27, 34, 48, 0.09);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.72);
}

.wish-note {
  min-height: 188px;
}

.wish-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.wish-head span {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.wish-head strong {
  flex: 0 0 auto;
  background: rgba(216, 234, 79, 0.24);
  color: var(--ink);
}

.wish-note p {
  margin-top: 18px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

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

.people-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.people-card:hover,
.people-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 28px 74px rgba(27, 34, 48, 0.18);
  transform: translateY(-2px);
}

.people-card-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.people-card h3 {
  min-width: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.people-card-topline span,
.people-field span {
  color: var(--muted);
  font-family: "IBM Plex Mono", "Noto Sans SC", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.people-card-topline span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(27, 34, 48, 0.09);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.76);
}

.people-field {
  display: grid;
  gap: 8px;
}

.people-field p {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.people-build-field {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(27, 34, 48, 0.09);
}

.people-team-field {
  position: relative;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 34, 48, 0.14);
  border-radius: 8px;
  background: rgba(216, 234, 79, 0.2);
  box-shadow: inset 0 -12px 24px rgba(255, 255, 255, 0.22);
}

.people-team-field span {
  color: var(--ink);
}

.people-team-field p {
  font-size: 16px;
  line-height: 1.5;
}

.people-team-tech {
  border-color: rgba(79, 144, 210, 0.36);
  background: rgba(204, 229, 255, 0.52);
}

.people-team-design {
  border-color: rgba(232, 126, 156, 0.34);
  background: rgba(255, 223, 232, 0.62);
}

.people-team-content {
  border-color: rgba(213, 161, 48, 0.32);
  background: rgba(255, 239, 186, 0.62);
}

.people-team-need,
.people-team-free {
  border-color: rgba(104, 157, 110, 0.34);
  background: rgba(217, 243, 214, 0.58);
}

.team-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.team-zone {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

.team-zone-title {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.team-zone-title h3 {
  min-height: 58px;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: 0;
}

.team-zone-title span {
  justify-self: start;
  background: rgba(216, 234, 79, 0.2);
  color: var(--ink);
}

.team-note-stack {
  display: grid;
  gap: 12px;
}

.team-note {
  min-height: 166px;
  padding: 15px;
  cursor: grab;
  background: var(--paper);
}

.team-note.is-pressing,
.intro-note.is-pressing,
.wish-note.is-pressing,
.people-card.is-pressing {
  border-color: rgba(239, 122, 92, 0.72);
  box-shadow: 0 18px 54px rgba(239, 122, 92, 0.22);
  transform: translateY(1px);
}

.team-need {
  margin: 12px 0 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
}

.team-footer {
  display: flex;
  gap: 7px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.team-footer b {
  background: rgba(239, 122, 92, 0.13);
  color: #b95d46;
}

.team-mode-tag {
  background: rgba(107, 176, 255, 0.16) !important;
}

.awards-section {
  padding-bottom: 10px;
}

.award-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  grid-template-rows: repeat(3, minmax(168px, 1fr));
  align-items: stretch;
  gap: 16px;
}

.award-card {
  position: relative;
  min-height: 188px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 30px;
  border: 2px solid rgba(23, 23, 23, 0.22);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--shadow);
}

.award-card-grand {
  grid-row: 1 / span 3;
  min-height: 590px;
  padding: 46px;
}

.award-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.award-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.award-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: 100%;
}

.award-emoji {
  margin: 0;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 46px;
  line-height: 1;
}

.award-card h3 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: 0;
}

.award-count {
  display: inline-block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.42em;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-0.18em);
}

.award-card-grand h3 {
  max-width: 8.5ch;
  font-size: 82px;
}

.award-copy {
  max-width: 15ch;
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.42;
}

.award-card-grand .award-copy {
  max-width: 16ch;
  color: rgba(23, 23, 23, 0.82);
  font-size: 30px;
  line-height: 1.22;
}

.award-card[data-tone="grand"] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 203, 89, 0.1)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 242, 255, 0.92));
}

.award-card[data-tone="grand"]::before {
  inset: 0;
  background:
    repeating-linear-gradient(
      -26deg,
      transparent 0,
      transparent 26px,
      rgba(255, 203, 89, 0.14) 26px,
      rgba(255, 203, 89, 0.14) 34px
    );
  opacity: 0.9;
}

.award-card[data-tone="grand"]::after {
  top: 44px;
  right: 54px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(156, 239, 253, 0.5);
  border-radius: 999px;
  transform: skewX(-18deg);
}

.award-card[data-tone="idea"] {
  background:
    radial-gradient(circle at 78% 22%, rgba(156, 239, 253, 0.24) 0%, rgba(156, 239, 253, 0) 24%),
    radial-gradient(circle at 18% 18%, rgba(255, 106, 61, 0.15) 0%, rgba(255, 106, 61, 0) 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 239, 0.94));
}

.award-card[data-tone="idea"]::before {
  top: 54px;
  right: 56px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 255, 84, 0.34) 0%, rgba(216, 255, 84, 0) 66%);
}

.award-card[data-tone="idea"]::after {
  inset: 0;
  background: radial-gradient(circle, rgba(23, 23, 23, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.14;
}

.award-card[data-tone="beauty"] {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 106, 61, 0.13) 0%, rgba(255, 106, 61, 0) 28%),
    radial-gradient(circle at 76% 18%, rgba(156, 239, 253, 0.18) 0%, rgba(156, 239, 253, 0) 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 252, 0.92));
}

.award-card[data-tone="beauty"]::before {
  top: 46px;
  right: 52px;
  width: 170px;
  height: 170px;
  border: 2px solid rgba(255, 106, 61, 0.18);
  border-radius: 44% 56% 50% 50%;
  transform: rotate(16deg);
}

.award-card[data-tone="beauty"]::after {
  right: 58px;
  bottom: 58px;
  width: 148px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 203, 89, 0.3);
  transform: rotate(-7deg);
}

.award-card[data-tone="wild"] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(191, 231, 163, 0.16)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 226, 0.92));
}

.award-card[data-tone="wild"]::before {
  right: 46px;
  bottom: 44px;
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(23, 23, 23, 0.2);
  border-radius: 18px;
  transform: rotate(-8deg);
}

.award-card[data-tone="wild"]::after {
  top: 34px;
  left: 48px;
  width: 132px;
  height: 18px;
  border-radius: 999px;
  background: rgba(216, 255, 84, 0.58);
  transform: rotate(-5deg);
}

.team-empty {
  margin: 0;
  padding: 14px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(45, 38, 38, 0.36);
  backdrop-filter: blur(10px);
}

.profile-panel {
  position: relative;
  width: min(780px, 100%);
  max-height: min(780px, calc(100vh - 40px));
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 244, 186, 0.44), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 34%),
    var(--paper-solid);
  box-shadow: var(--shadow);
}

.profile-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(27, 34, 48, 0.12);
  border-radius: 999px;
  background: rgba(239, 122, 92, 0.14);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.profile-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(27, 34, 48, 0.1);
  border-radius: 999px;
  background: rgba(216, 234, 79, 0.22);
  color: var(--ink);
}

.profile-title {
  margin: 18px 58px 12px 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: 0;
}

.profile-gate-desc,
.profile-one-line {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.profile-gate-form {
  display: grid;
  gap: 12px;
}

.profile-gate-label {
  color: var(--muted);
}

.profile-gate-input {
  width: 100%;
  min-height: 54px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.86);
  color: var(--ink);
  font-size: 22px;
}

.profile-gate-error {
  margin: 0;
  color: #b95d46;
  font-weight: 700;
}

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

.profile-submit,
.profile-cancel {
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid rgba(27, 34, 48, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(53, 42, 33, 0.08);
  cursor: pointer;
}

.profile-submit {
  background: rgba(216, 234, 79, 0.28);
}

.profile-cancel {
  background: rgba(255, 252, 246, 0.82);
}

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

.profile-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(27, 34, 48, 0.09);
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.62);
}

.profile-row dt,
.profile-row dd {
  margin: 0;
}

.profile-row dt {
  color: var(--muted);
  font-weight: 700;
}

.profile-row dd {
  overflow-wrap: anywhere;
  line-height: 1.55;
}

.contact-box {
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid rgba(27, 34, 48, 0.09);
  border-radius: 14px;
  background: rgba(107, 176, 255, 0.14);
}

.contact-box span,
.contact-box strong {
  display: block;
}

.contact-box strong {
  margin-top: 8px;
  font-size: 26px;
  overflow-wrap: anywhere;
}

@media (max-width: 1240px) {
  .team-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --width: min(100vw - 32px, 1200px);
  }

  .market-topbar {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

  .market-nav {
    justify-content: flex-start;
  }

  .hero-section {
    min-height: auto;
    padding: 24px;
  }

  .hero-section::after {
    display: none;
  }

  .hero-topline {
    grid-template-columns: minmax(0, 1fr);
  }

  .date-sticker {
    width: fit-content;
  }

  .laptop-doodle {
    display: none;
  }

  .agenda-grid,
  .people-wall,
  .team-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .award-card-grand {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  :root {
    --width: min(100vw - 24px, 1200px);
  }

  .page-shell {
    padding: 16px 0 42px;
  }

  .market-topbar {
    position: static;
    margin-top: 10px;
  }

  .brand-tag,
  .market-nav a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px;
  }

  .hero-section {
    padding: 14px;
    border-radius: 26px;
  }

  .hero-schedule {
    border-radius: 18px;
  }

  .section-block {
    margin-top: 34px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .hero-title-block h1 {
    font-size: clamp(36px, 12vw, 44px);
  }

  .agenda-grid,
  .people-wall,
  .award-grid,
  .team-board {
    grid-template-columns: 1fr;
  }

  .award-card-grand {
    grid-column: auto;
    min-height: 300px;
  }

  .award-card {
    min-height: auto;
    padding: 22px;
  }

  .award-card h3 {
    font-size: 30px;
  }

  .award-card-grand h3 {
    font-size: 52px;
  }

  .award-card-grand .award-copy {
    font-size: 24px;
  }

  .intro-wall,
  .wish-wall {
    columns: 1;
  }

  .agenda-note,
  .intro-note,
  .wish-note,
  .people-card,
  .award-card,
  .team-note {
    box-shadow: var(--shadow-soft);
  }

  .profile-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .profile-title {
    font-size: 30px;
  }

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