:root {
  --orange: #ff4f00;
  --orange-dark: #d64200;
  --black: #211716;
  --ink: #2a211f;
  --gray: #b4b4b4;
  --paper: #f4f1eb;
  --white: #ffffff;
  --line: rgba(42, 33, 31, 0.14);
  --muted: rgba(42, 33, 31, 0.68);
  --green: #1d7a4b;
  --blue: #1556d1;
  --shadow: 0 18px 48px rgba(33, 23, 22, 0.18);
  --max: 1220px;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "Barlow Condensed", "Noto Sans SC", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.62;
}

body::selection {
  color: var(--white);
  background: var(--orange);
}

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

body.is-modal-open,
body.is-menu-open {
  overflow: hidden;
}

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

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

[id] {
  scroll-margin-top: 104px;
}

.hero-copy,
.launch-copy,
.section-heading,
.about-copy,
.proof-copy,
.operating-copy,
.cooperate-inner > div {
  min-width: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(33, 23, 22, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  background: rgba(33, 23, 22, 0.88);
}

.brand img {
  width: 210px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a,
.header-cta,
.button,
.menu-toggle {
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--white);
}

.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.header-cta {
  color: var(--white);
  background: var(--orange);
}

.button:hover,
.header-cta:hover,
.button:focus-visible,
.header-cta:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.menu-toggle i {
  position: absolute;
  right: 14px;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle i:first-of-type {
  top: 16px;
}

.menu-toggle i:last-of-type {
  bottom: 16px;
}

.menu-toggle.is-open i:first-of-type {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open i:last-of-type {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(760px, 94vh, 980px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero::before {
  position: absolute;
  right: -4vw;
  top: 18vh;
  z-index: 1;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.78;
  content: "HOCH";
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 79, 0, 0.34), transparent 20%),
    radial-gradient(circle at 24% 72%, rgba(255, 79, 0, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(33, 23, 22, 0.98), rgba(33, 23, 22, 0.92));
}

.hero-pattern::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-pattern::after {
  position: absolute;
  right: -8vw;
  bottom: -10vw;
  width: 54vw;
  height: 54vw;
  border: 2px solid rgba(255, 79, 0, 0.34);
  border-radius: 999px;
  content: "";
}

.hero-pattern span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 79, 0, 0.34);
  border-radius: 999px;
}

.hero-pattern span:nth-child(1) {
  right: 12%;
  top: 18%;
  width: 180px;
  height: 180px;
}

.hero-pattern span:nth-child(2) {
  right: 22%;
  top: 36%;
  width: 84px;
  height: 84px;
  background: rgba(255, 79, 0, 0.18);
}

.hero-pattern span:nth-child(3) {
  left: 9%;
  bottom: 16%;
  width: 120px;
  height: 120px;
}

.hero-pattern span:nth-child(4) {
  right: 38%;
  bottom: 18%;
  width: 14px;
  height: 14px;
  background: var(--orange);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 42px;
  width: min(calc(100% - 32px), var(--max));
  min-height: clamp(760px, 94vh, 980px);
  margin: 0 auto;
  padding: 128px 0 54px;
}

.hero-copy {
  align-self: center;
  margin-top: -86px;
}

.hero-logo {
  width: min(430px, 78vw);
  margin-bottom: 34px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 82px;
  line-height: 1.02;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-light {
  border: 1px solid rgba(33, 23, 22, 0.2);
  color: var(--black);
  background: rgba(255, 255, 255, 0.44);
}

.hero-dashboard {
  display: grid;
  gap: 10px;
}

.hero-dashboard > div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.hero-dashboard .is-live {
  border-color: rgba(255, 79, 0, 0.52);
  background: linear-gradient(135deg, rgba(255, 79, 0, 0.24), rgba(255, 255, 255, 0.08));
}

.hero-dashboard .is-live > span {
  color: rgba(255, 255, 255, 0.76);
}

.hero-dashboard .hero-season-lines {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.hero-dashboard .hero-season-lines p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: baseline;
  margin: 0;
}

.hero-dashboard .hero-season-lines em {
  grid-row: span 2;
  align-self: center;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 79, 0, 0.92);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.hero-dashboard .hero-season-lines p:first-child em {
  background: rgba(255, 255, 255, 0.16);
}

.hero-dashboard .hero-season-lines strong {
  margin: 0;
  font-size: 38px;
  line-height: 0.95;
}

.hero-dashboard .hero-season-lines small {
  margin: 0;
  line-height: 1.2;
}

.hero-dashboard span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.hero-dashboard strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 0.95;
}

.hero-dashboard small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  color: var(--white);
  background: var(--orange);
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 13px 0;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

.launch {
  position: relative;
  overflow: hidden;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(255, 79, 0, 0.1), transparent 45%),
    var(--gray);
}

.launch::before {
  position: absolute;
  left: -6vw;
  bottom: -0.36em;
  color: rgba(33, 23, 22, 0.08);
  font-family: var(--font-display);
  font-size: clamp(110px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  content: "NANJING";
}

.launch-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 64px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: 430px;
  margin: 0 auto;
  padding: 70px 0;
}

.launch-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: 54px;
  line-height: 1.06;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.launch-copy h2 span {
  display: block;
}

.launch-copy > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(33, 23, 22, 0.72);
  font-size: 20px;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.launch-copy > p:last-child span {
  display: block;
}

.countdown-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 34px;
  border: 1px solid rgba(33, 23, 22, 0.16);
  border-radius: 10px;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.countdown-card::before {
  position: absolute;
  inset: -45% -35% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 79, 0, 0.42);
  content: "";
  filter: blur(12px);
}

.countdown-card > * {
  position: relative;
  z-index: 1;
}

.countdown-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--black);
  background: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.countdown-card strong {
  display: block;
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: clamp(112px, 10vw, 148px);
  line-height: 0.78;
}

.countdown-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 24px;
  font-weight: 900;
}

.countdown-card .countdown-time {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.countdown-card small {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 800;
}

.season {
  position: relative;
  overflow: hidden;
}

.season::before {
  position: absolute;
  top: 96px;
  right: max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(33, 23, 22, 0.04);
  content: "2026";
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.season-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 34px;
}

.season-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(33, 23, 22, 0.1);
}

.season-card::after {
  position: absolute;
  inset: auto -12% -38% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(255, 79, 0, 0.11);
  content: "";
}

.season-card-live {
  align-self: start;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 79, 0, 0.46), transparent 36%),
    linear-gradient(135deg, #211716, #351a12 62%, #8b2c0b);
}

.season-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.season-card-head span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.season-card-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.season-card h3,
.season-card p,
.season-stats,
.season-meta {
  position: relative;
  z-index: 1;
}

.season-card h3 {
  margin: 52px 0 0;
  font-size: clamp(38px, 5.8vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.season-card p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.season-card-live p {
  color: rgba(255, 255, 255, 0.72);
}

.season-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.season-stats div,
.season-meta span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.season-stats div {
  min-height: 116px;
  padding: 16px;
}

.season-stats strong {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.season-stats span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
}

.season-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.season-meta span {
  padding: 12px 14px;
  border-color: var(--line);
  color: var(--black);
  background: rgba(255, 79, 0, 0.08);
  font-weight: 900;
}

.season-preview {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.season-preview div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2px 14px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 79, 0, 0.06);
}

.season-preview span {
  grid-row: span 2;
  color: var(--orange);
  font-weight: 900;
}

.season-preview strong {
  color: var(--black);
  line-height: 1.2;
}

.season-preview small {
  color: var(--muted);
  font-weight: 800;
}

.season-card .season-note {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.vendors {
  position: relative;
}

.vendors::before {
  position: absolute;
  top: 86px;
  right: max(10px, calc((100vw - var(--max)) / 2));
  z-index: -1;
  color: rgba(255, 79, 0, 0.08);
  content: "MENU";
  font-family: var(--font-display);
  font-size: clamp(110px, 17vw, 250px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.vendors-heading {
  max-width: 900px;
}

.vendor-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.vendor-stats div {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 0, 0.15), transparent 9rem),
    var(--white);
  box-shadow: 0 18px 44px rgba(33, 23, 22, 0.08);
}

.vendor-stats strong {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 0.9;
}

.vendor-stats span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 900;
}

.vendor-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--black);
  color: var(--white);
}

.vendor-toolbar span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.vendor-toolbar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-align: right;
}

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

.vendor-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.9);
  box-shadow: 0 14px 34px rgba(33, 23, 22, 0.08);
}

.vendor-card::after {
  position: absolute;
  right: -48px;
  bottom: -62px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(255, 79, 0, 0.24);
  border-radius: 999px;
  content: "";
}

.vendor-card > * {
  position: relative;
  z-index: 1;
}

.vendor-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.vendor-card-top span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 79, 0, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.vendor-card-top strong {
  color: rgba(33, 23, 22, 0.18);
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 0.9;
}

.vendor-card h3 {
  margin: 30px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.vendor-products {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.vendor-products li {
  padding: 11px 12px;
  border: 1px solid rgba(33, 23, 22, 0.1);
  border-radius: 12px;
  color: rgba(33, 23, 22, 0.78);
  background: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  line-height: 1.32;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 104px 0 0;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.proof-copy h2,
.cooperate h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  margin-top: 42px;
}

.about-copy {
  font-size: 22px;
  font-weight: 700;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 24px;
}

.origin-timeline {
  border-top: 2px solid var(--black);
}

.origin-timeline div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.origin-timeline time {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.origin-timeline h3 {
  margin: 0;
  font-size: 24px;
}

.origin-timeline p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.proof {
  width: 100%;
  margin-top: 104px;
  padding: 0;
  color: var(--white);
  background: var(--black);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.identity-card {
  display: grid;
  align-content: space-between;
  min-height: 250px;
  padding: 24px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.identity-card img {
  justify-self: center;
  width: 100%;
  max-width: 300px;
  height: 136px;
  object-fit: contain;
  object-position: center center;
}

.identity-card span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 900;
}

.identity-card-dark {
  background: var(--black);
}

.identity-card-dark span {
  color: rgba(255, 255, 255, 0.72);
}

.identity-card-gray {
  background: var(--gray);
}

.identity-mark img {
  width: 100%;
  max-width: 150px;
  height: 142px;
  object-fit: contain;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 620px;
}

.proof-map {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 62% 54%, rgba(255, 79, 0, 0.2), transparent 32%);
  background-color: #2b211f;
  background-size: 42px 42px, 42px 42px, auto;
}

.proof-map::before {
  position: absolute;
  left: 10%;
  top: 14%;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  line-height: 0.8;
  content: "8 CITY";
}

.proof-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.proof-map span::before {
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(32px, calc((100vw - var(--max)) / 2)) 72px 72px;
}

.proof-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.proof-numbers div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.proof-numbers strong {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.98;
}

.proof-numbers span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.standard {
  padding-top: 0;
}

.standard-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 79, 0, 0.08), transparent 54%),
    var(--white);
}

.standard-card h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
}

.standard-card p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.standard-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.standard-list span {
  display: grid;
  min-height: 88px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-align: center;
}

.operating-board {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  min-height: 520px;
  margin-top: 36px;
  overflow: hidden;
  padding: 34px;
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 79, 0, 0.22), transparent 30%),
    linear-gradient(135deg, #211716, #140e0d);
}

.operating-board::before {
  position: absolute;
  right: -0.08em;
  bottom: -0.24em;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--font-display);
  font-size: clamp(120px, 17vw, 240px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  content: "SYSTEM";
}

.operating-board > * {
  position: relative;
  z-index: 1;
}

.operating-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 452px;
}

.operating-copy > span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.operating-copy h3 {
  max-width: 500px;
  margin: auto 0 0;
  font-size: 48px;
  line-height: 1.06;
}

.operating-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 800;
}

.operating-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.operating-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
  font-weight: 900;
}

.operating-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.operating-steps article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.operating-steps span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
}

.operating-steps h3 {
  margin: 28px 0 0;
  font-size: 24px;
}

.operating-steps p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.tour-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.tour-summary div {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 79, 0, 0.1), transparent 64%),
    var(--white);
}

.tour-summary span {
  color: var(--muted);
  font-weight: 900;
}

.tour-summary strong {
  display: block;
  margin-top: 18px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 0.95;
}

.tour-summary p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.tour-switcher {
  display: inline-flex;
  gap: 6px;
  margin-top: 28px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.tour-switch {
  min-width: 96px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.tour-switch.is-active {
  color: var(--white);
  background: var(--orange);
}

.tour-panel[hidden] {
  display: none;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.tour-grid-2026 {
  grid-template-columns: repeat(3, 1fr);
}

.tour-card {
  display: flex;
  min-height: 392px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  flex-direction: column;
}

.tour-card.is-featured,
.tour-card.is-shanghai {
  color: var(--white);
  background: var(--black);
}

.tour-card span {
  display: block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.tour-card h3 {
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 0.95;
  font-weight: 900;
}

.tour-card .tour-unit {
  margin: 10px 0 16px;
  color: var(--muted);
  font-weight: 800;
}

.tour-card.is-featured .tour-unit,
.tour-card.is-shanghai .tour-unit {
  color: rgba(255, 255, 255, 0.72);
}

.tour-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(42, 33, 31, 0.1);
}

.tour-card.is-featured .tour-meter,
.tour-card.is-shanghai .tour-meter {
  background: rgba(255, 255, 255, 0.16);
}

.tour-meter span {
  display: block;
  width: var(--heat);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffb18c);
}

.tour-card .tour-role {
  min-height: 54px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.tour-card.is-featured .tour-role,
.tour-card.is-shanghai .tour-role {
  color: rgba(255, 255, 255, 0.8);
}

.tour-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
  margin-top: auto;
}

.tour-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.tour-card.is-featured dl div,
.tour-card.is-shanghai dl div {
  border-color: rgba(255, 255, 255, 0.16);
}

.tour-card dt,
.tour-card dd {
  margin: 0;
  font-weight: 800;
}

.tour-card dt {
  color: var(--muted);
}

.tour-card.is-featured dt,
.tour-card.is-shanghai dt {
  color: rgba(255, 255, 255, 0.58);
}

.rhythm-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.rhythm-board article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  min-height: 124px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rhythm-board time {
  display: grid;
  place-items: center;
  gap: 1px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.rhythm-board time::after {
  display: block;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  content: "\573A\6B21";
}

.rhythm-board strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
  line-height: 1.1;
}

.rhythm-board span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 40px;
}

.audience-copy > p {
  max-width: 760px;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.audience-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.audience-stats div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.audience-stats strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.audience-stats span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.audience-profile {
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: 560px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.profile-ring {
  display: grid;
  place-items: center;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 999px;
  background:
    conic-gradient(var(--orange) 0 40%, #ffd8c5 40% 75%, #bda173 75% 95%, #8794a1 95% 100%);
}

.profile-ring span {
  display: grid;
  place-items: center;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.audience-profile ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-profile li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.audience-profile li span {
  color: var(--orange);
}

.behavior-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.behavior-grid article {
  min-height: 260px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 79, 0, 0.08), transparent 46%),
    var(--white);
}

.behavior-grid span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
}

.delivery-grid span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--black);
  background: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.behavior-grid h3,
.delivery-grid h3 {
  margin: 28px 0 0;
  font-size: 24px;
}

.behavior-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.capability-grid article {
  min-height: 260px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.capability-grid span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
}

.capability-grid h3 {
  margin: 28px 0 0;
  font-size: 24px;
}

.capability-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.delivery-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
}

.delivery-grid ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-grid li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 800;
}

.city-language {
  padding-top: 104px;
}

.city-language-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  margin: 36px 0 0;
}

.city-language-grid div {
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.city-language-grid span {
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
}

.city-language-grid p {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 800;
}

.materials {
  position: relative;
  overflow: hidden;
  padding-bottom: 104px;
  border-top: 1px solid rgba(42, 33, 31, 0.08);
  background: var(--paper);
}

.materials::before {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  top: 86px;
  color: rgba(33, 23, 22, 0.026);
  font-family: var(--font-display);
  font-size: clamp(90px, 13vw, 190px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.8;
  content: "KIT";
  pointer-events: none;
}

.materials-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  max-width: none;
  align-items: stretch;
}

.materials-heading h2 {
  max-width: 760px;
}

.materials-heading h2 span {
  display: block;
}

.materials-heading h2 span:first-child {
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.materials-heading h2 span:last-child {
  margin-top: 10px;
  color: var(--orange);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.materials-heading > div > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.materials-brief {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(42, 33, 31, 0.12);
  border-radius: 14px;
  color: rgba(42, 33, 31, 0.72);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 0, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(33, 23, 22, 0.06);
  backdrop-filter: blur(12px);
}

.materials-brief span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.materials-brief strong {
  display: block;
  margin-top: auto;
  color: var(--black);
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.materials-brief p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.materials-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  margin: 30px 0 0;
}

.materials-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(33, 23, 22, 0.06);
  backdrop-filter: blur(12px);
}

.materials-card::after {
  position: absolute;
  right: -28px;
  bottom: -44px;
  color: rgba(255, 79, 0, 0.07);
  font-family: var(--font-display);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  content: attr(data-index);
}

.materials-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.materials-card h3 {
  position: relative;
  z-index: 1;
  margin: 48px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.materials-card p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 800;
}

.materials-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin: 28px 0 0;
}

.materials-status {
  position: relative;
  width: 100%;
  margin: 14px 0 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  padding: 20px;
  cursor: pointer;
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.partner-value {
  padding-bottom: 104px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.value-card {
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-card-major {
  grid-column: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 79, 0, 0.42), transparent 36%),
    var(--black);
}

.value-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.value-card h3 {
  margin: 34px 0 0;
  font-size: 24px;
  line-height: 1.18;
}

.value-card-major h3 {
  max-width: 560px;
  font-size: 36px;
  line-height: 1.1;
}

.value-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.value-card-major p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.cooperate {
  color: var(--black);
  background: var(--gray);
}

.cooperate-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.cooperate-inner img {
  width: 340px;
}

.cooperate-qr-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 340px;
  padding: 18px;
  border: 1px solid rgba(33, 23, 22, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 48px rgba(33, 23, 22, 0.12);
}

.cooperate-qr-card img {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
}

.cooperate-qr-card span {
  color: var(--black);
  font-weight: 900;
}

.cooperate-inner > div > p:not(.eyebrow) {
  max-width: 740px;
  margin: 20px 0 0;
  color: rgba(33, 23, 22, 0.72);
  font-size: 20px;
  font-weight: 800;
}

.partner-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.partner-types span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(33, 23, 22, 0.2);
  border-radius: 999px;
  color: rgba(33, 23, 22, 0.76);
  background: rgba(255, 255, 255, 0.28);
  font-weight: 900;
}

.cooperate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cooperate-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--green);
  font-weight: 900;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px max(16px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--black);
}

.footer img {
  width: 260px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.footer-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  gap: 8px;
}

.floating-actions button {
  min-width: 96px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(33, 23, 22, 0.88);
  box-shadow: 0 12px 32px rgba(33, 23, 22, 0.18);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-actions button:first-child {
  background: var(--orange);
}

.floating-actions button:hover,
.floating-actions button:focus-visible {
  transform: translateY(-1px);
}

.section-highlight {
  animation: sectionPulse 1200ms ease;
}

.contact-dialog {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ink);
  background: rgba(20, 14, 13, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.contact-dialog[hidden] {
  display: none;
}

.contact-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
}

.dialog-panel {
  position: relative;
  overflow: auto;
  width: min(100%, 720px);
  max-height: calc(100vh - 32px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 0, 0.18), transparent 30%),
    var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}

.dialog-heading {
  max-width: 620px;
  padding-right: 48px;
}

.dialog-heading h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
}

.dialog-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(33, 23, 22, 0.12);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(33, 23, 22, 0.12);
}

.contact-qr {
  width: 180px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(33, 23, 22, 0.12);
}

.contact-info-card span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-card strong {
  display: block;
  margin-top: 10px;
  color: var(--black);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.contact-info-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
}

.contact-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form span {
  color: var(--black);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-result textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--black);
  background: var(--white);
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea,
.contact-result textarea {
  min-height: 116px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-result textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 79, 0, 0.14);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-result {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.contact-result > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.contact-result textarea {
  min-height: 170px;
  margin-top: 14px;
}

.contact-result .form-actions {
  margin-top: 14px;
}

.contact-result p {
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 900;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes sectionPulse {
  0% {
    outline: 0 solid rgba(255, 79, 0, 0);
  }
  34% {
    outline: 8px solid rgba(255, 79, 0, 0.18);
  }
  100% {
    outline: 0 solid rgba(255, 79, 0, 0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 210px 1fr auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .mobile-menu {
    position: fixed;
    top: 92px;
    left: 50%;
    z-index: 39;
    display: grid;
    gap: 14px;
    width: min(calc(100% - 32px), var(--max));
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    color: var(--white);
    background: rgba(33, 23, 22, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .mobile-menu nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .mobile-menu a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 900;
  }

  .mobile-menu a.is-active {
    color: var(--white);
    border-color: rgba(255, 79, 0, 0.72);
    background: rgba(255, 79, 0, 0.16);
  }

  .mobile-menu .button {
    width: 100%;
  }

  .hero-inner,
  .launch-inner,
  .about-grid,
  .materials-heading,
  .standard-card,
  .operating-board,
  .proof-grid,
  .season-grid,
  .audience-grid,
  .cooperate-inner {
    grid-template-columns: 1fr;
  }

  .hero-dashboard,
  .proof-numbers,
  .standard-list,
  .audience-stats,
  .identity-grid,
  .capability-grid,
  .behavior-grid,
  .delivery-grid,
  .materials-grid,
  .rhythm-board,
  .season-stats,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .proof-copy {
    padding: 64px max(32px, calc((100vw - var(--max)) / 2));
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    grid-template-columns: 1fr auto;
    padding-right: 64px;
    transform: none;
  }

  .brand img {
    width: 174px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 44px;
    padding: 0;
    border-color: rgba(255, 79, 0, 0.82);
    background: var(--orange);
    transform: translateY(-50%);
  }

  .menu-toggle span {
    display: none;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: translateY(-50%);
  }

  .mobile-menu {
    top: 82px;
    width: min(calc(100% - 20px), var(--max));
  }

  .mobile-menu nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    align-items: start;
    padding: 112px 0 70px;
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero::before {
    top: 24vh;
    right: -18vw;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-text,
  .cooperate-inner > div > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-text {
    max-width: 330px;
  }

  .hero-logo {
    width: min(330px, 88vw);
  }

  .section {
    padding-top: 78px;
  }

  .section-heading h2,
  .launch-copy h2,
  .standard-card h2,
  .proof-copy h2,
  .cooperate h2 {
    font-size: 36px;
    word-break: break-all;
  }

  .hero-dashboard,
  .tour-summary,
  .tour-grid,
  .vendor-grid,
  .vendor-stats,
  .operating-steps,
  .proof-numbers,
  .standard-list,
  .audience-stats,
  .identity-grid,
  .capability-grid,
  .behavior-grid,
  .delivery-grid,
  .materials-grid,
  .rhythm-board,
  .season-stats,
  .value-grid,
  .city-language-grid {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .audience-copy > p,
  .launch-copy > p:last-child {
    font-size: 18px;
  }

  .launch-inner {
    min-height: auto;
    padding: 58px 0;
  }

  .season::before {
    top: 52px;
    right: 12px;
  }

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

  .season-card h3 {
    margin-top: 42px;
    font-size: 38px;
    line-height: 1.04;
  }

  .season-card p {
    font-size: 16px;
  }

  .vendor-toolbar {
    display: grid;
  }

  .vendor-toolbar p {
    text-align: left;
  }

  .vendor-card {
    min-height: auto;
  }

  .operating-board {
    min-height: auto;
    padding: 24px;
  }

  .operating-copy {
    min-height: auto;
  }

  .operating-copy h3,
  .value-card-major h3 {
    font-size: 34px;
  }

  .operating-copy h3 {
    margin-top: 70px;
  }

  .operating-steps article,
  .behavior-grid article,
  .delivery-grid article,
  .materials-card,
  .value-card {
    min-height: auto;
  }

  .value-card-major {
    grid-column: auto;
  }

  .partner-value {
    padding-bottom: 78px;
  }

  .materials {
    padding-bottom: 78px;
  }

  .materials-heading {
    gap: 22px;
  }

  .materials-heading h2 span:first-child {
    font-size: 40px;
    letter-spacing: -0.05em;
  }

  .materials-heading h2 span:last-child {
    font-size: 24px;
  }

  .materials-heading > div > p:last-child,
  .materials-brief {
    padding: 18px;
  }

  .materials-heading > div > p:last-child {
    padding: 0;
  }

  .materials-brief {
    min-height: auto;
  }

  .materials-brief strong {
    margin-top: 34px;
    font-size: 28px;
  }

  .materials-card h3 {
    margin-top: 38px;
    font-size: 30px;
  }

  .materials-actions {
    display: grid;
  }

  .standard-card {
    padding: 24px;
  }

  .countdown-card {
    min-height: 280px;
    padding: 24px;
  }

  .countdown-card strong {
    font-size: 86px;
  }

  .countdown-card .countdown-time {
    font-size: 24px;
  }

  .contact-info-card {
    grid-template-columns: 1fr;
  }

  .contact-qr {
    width: min(220px, 100%);
  }

  .origin-timeline div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .origin-timeline p {
    grid-column: auto;
    margin-top: 0;
  }

  .audience-profile {
    min-height: auto;
  }

  .city-language-grid {
    grid-template-columns: 1fr;
  }

  .cooperate-inner {
    gap: 34px;
  }

  .cooperate-inner img {
    width: min(320px, 90vw);
  }

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer img {
    width: 230px;
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-actions button {
    width: 100%;
  }

  .contact-dialog {
    padding: 10px;
  }

  .dialog-panel {
    max-height: calc(100vh - 20px);
    padding: 24px;
  }

  .dialog-heading h2 {
    font-size: 34px;
  }

  .contact-info-card strong {
    font-size: 30px;
  }

  .contact-info-actions {
    display: grid;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
