/* [project]/app/t1.css [app-client] (css) */
:root {
  --ink-950: #060609;
  --ink-900: #0a0a0f;
  --ink-850: #0f1015;
  --ink-800: #15161d;
  --ink-700: #1d1f29;
  --ink-600: #292c39;
  --ink-500: #3a3e4d;
  --ink-400: #5a5f72;
  --ink-300: #8a8fa3;
  --ink-200: #b9bdcc;
  --ink-100: #e4e6ee;
  --ink-50: #f5f6fa;
  --hong-700: #90101a;
  --hong-600: #b71824;
  --hong-500: #db2b33;
  --hong-400: #f4514f;
  --hong-300: #ff7e77;
  --chung-700: #004b7c;
  --chung-600: #0068a6;
  --chung-500: #008cdd;
  --chung-400: #43acfc;
  --chung-300: #86c5fa;
  --gold-500: #e0af3b;
  --gold-400: #f2c86c;
  --bg: var(--ink-900);
  --bg-soft: var(--ink-850);
  --bg-card: var(--ink-800);
  --border: #ffffff14;
  --border-strong: #ffffff29;
  --text: var(--ink-100);
  --text-mut: var(--ink-300);
  --text-dim: var(--ink-400);
  --font-sans: "Pretendard", "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Space Grotesk", "Pretendard", sans-serif;
  --font-mono: "JetBrains Mono", "Pretendard", ui-monospace, monospace;
}

@supports (color: lab(0% 0 0)) {
  :root {
    --hong-700: lab(31.0834% 50.7648 32.8155);
    --hong-600: lab(40.057% 60.2793 38.9217);
    --hong-500: lab(49.1427% 66.5436 42.1147);
    --hong-400: lab(58.557% 63.1012 37.9167);
    --hong-300: lab(68.2765% 50.1076 28.6002);
    --chung-700: lab(29.6739% -3.27669 -44.9844);
    --chung-600: lab(41.1504% -4.62586 -54.6613);
    --chung-500: lab(55.1847% -8.24726 -58.1227);
    --chung-400: lab(67.12% -11.2763 -48.9501);
    --chung-300: lab(76.6672% -10.2857 -33.1821);
    --gold-500: lab(74.6768% 10.2723 63.231);
    --gold-400: lab(82.8346% 7.691 50.9405);
  }
}

[data-theme="light"] {
  --bg: #f4f1ec;
  --bg-soft: #ebe7df;
  --bg-card: #fff;
  --border: #0000001a;
  --border-strong: #0003;
  --text: #1a1a22;
  --text-mut: #4a4d5a;
  --text-dim: #6b6f7e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.5;
  overflow-x: hidden;
}

button {
  cursor: pointer;
  color: inherit;
  background: none;
  border: none;
  font-family: inherit;
}

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

ul, ol {
  list-style: none;
}

.nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(8px);
  background: linear-gradient(#060609d9 0%, #06060900 100%);
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

[data-theme="light"] .nav {
  background: linear-gradient(#f4f1ecd9 0%, #f4f1ec00 100%);
}

.nav-logo {
  font-family: var(--font-display);
  letter-spacing: .04em;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.nav-logo .mark {
  border: 1px solid var(--border-strong);
  place-items: center;
  width: 28px;
  height: 28px;
  display: grid;
  position: relative;
}

.nav-logo .mark:before, .nav-logo .mark:after {
  content: "";
  border: 1px solid var(--hong-500);
  position: absolute;
  inset: 4px;
}

.nav-logo .mark:after {
  border-color: var(--chung-500);
  transform: translate(2px, 2px);
}

.nav-links {
  color: var(--text-mut);
  gap: 28px;
  font-size: 13px;
  display: flex;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.lang-toggle {
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  letter-spacing: .05em;
  font-size: 11px;
  display: flex;
}

.lang-toggle button {
  color: var(--text-mut);
  padding: 6px 12px;
}

.lang-toggle button.active {
  background: var(--text);
  color: var(--bg);
}

.nav-cta, .nav-secondary {
  letter-spacing: .02em;
  box-sizing: border-box;
  cursor: pointer;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.nav-cta {
  background: var(--hong-500);
  color: #fff;
  transition: background .12s;
}

.nav-cta:hover {
  background: var(--hong-400);
}

.nav-secondary {
  color: var(--text-mut);
  border: 1px solid var(--border-strong);
  background: none;
  font-weight: 500;
  transition: color .12s, border-color .12s, background .12s;
}

.nav-secondary:hover {
  color: var(--text);
  border-color: var(--text-mut);
  background: var(--bg-soft);
}

@media (max-width: 760px) {
  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }
}

.hero {
  background: var(--ink-950);
  grid-template-columns: 1fr;
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero-blockwall {
  grid-template-columns: repeat(var(--cols, 50), 1fr);
  z-index: 1;
  grid-auto-rows: 1fr;
  gap: 2px;
  padding: 12px;
  display: grid;
  position: absolute;
  inset: 0;
}

.block {
  cursor: default;
  background: #ffffff06;
  transition: background .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.block.filled {
  background: var(--blk-fill, var(--hong-600));
  background-image: linear-gradient(180deg,
    var(--blk-fill, var(--hong-600)) 0%,
    var(--blk-fill, var(--hong-600)) 35%,
    #00000059 35%,
    #00000059 50%,
    var(--blk-fill-2, var(--hong-400)) 50%,
    var(--blk-fill-2, var(--hong-400)) 85%,
    #ffffff26 85%,
    #ffffff26 100%);
}

.block.filled.shape-hex {
  clip-path: polygon(25% 5%, 75% 5%, 95% 50%, 75% 95%, 25% 95%, 5% 50%);
}

.block.filled.shape-circle {
  background-image: radial-gradient(circle,
    var(--blk-fill-2, var(--hong-400)) 0%,
    var(--blk-fill, var(--hong-600)) 70%);
  border-radius: 50%;
}

.block.flash {
  box-shadow: 0 0 12px var(--gold-500), 0 0 24px var(--gold-400);
  background: var(--gold-400) !important;
  background-image: none !important;
}

.block.newreg {
  box-shadow: 0 0 0 0 var(--gold-400),
    0 0 24px var(--gold-500),
    0 0 48px var(--gold-400);
  z-index: 6;
  animation: 2.6s ease-out forwards newRegPulse;
  background: var(--gold-400) !important;
  background-image: linear-gradient(180deg,
    var(--gold-400) 0%,
    #ffe1a1 50%,
    var(--gold-500) 100%) !important;
}

@supports (color: lab(0% 0 0)) {
  .block.newreg {
    background-image: linear-gradient(180deg,
    var(--gold-400) 0%,
    lab(90.9639% 5.58326 40.9046) 50%,
    var(--gold-500) 100%) !important;
  }
}

.block.newreg:after {
  content: "";
  border: 1px solid var(--gold-400);
  pointer-events: none;
  animation: 2.6s ease-out forwards newRegRing;
  position: absolute;
  inset: -2px;
}

@keyframes newRegPulse {
  0% {
    filter: brightness(1.6);
    box-shadow: 0 0 0 0 var(--gold-400), 0 0 60px var(--gold-400), 0 0 100px var(--gold-500);
    transform: scale(2.4);
  }

  20% {
    filter: brightness(1.4);
    transform: scale(1.8);
  }

  60% {
    filter: brightness(1.1);
    transform: scale(1.2);
  }

  100% {
    filter: brightness();
    transform: scale(1);
    box-shadow: 0 0 #0000;
  }
}

@keyframes newRegRing {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(8);
  }
}

.counter-card.pulse {
  animation: .9s ease-out counterPulse;
}

.counter-card.pulse .big {
  color: var(--gold-400);
  transition: color .4s;
}

@keyframes counterPulse {
  0% {
    box-shadow: 0 0 0 0 var(--gold-500);
    border-color: var(--gold-400);
  }

  50% {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 8px #0000;
  }

  100% {
    box-shadow: 0 0 #0000;
  }
}

.live-ticker {
  z-index: 5;
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  min-width: 280px;
  font-family: var(--font-mono);
  pointer-events: none;
  background: #0f1015d9;
  padding: 14px 18px;
  position: absolute;
  bottom: 200px;
  right: 40px;
}

[data-theme="light"] .live-ticker {
  background: #ffffffd9;
}

.live-ticker-head {
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-100);
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

[data-theme="light"] .live-ticker-head {
  color: #1a1a22;
}

.live-dot {
  background: var(--gold-400);
  width: 7px;
  height: 7px;
  box-shadow: 0 0 8px var(--gold-400);
  border-radius: 50%;
  animation: 1.4s infinite pulse;
}

.live-ticker-list {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.live-ticker-row {
  grid-template-columns: 48px 1fr 38px;
  align-items: baseline;
  gap: 10px;
  font-size: 11px;
  transition: opacity .3s;
  animation: .4s ease-out tickerSlide;
  display: grid;
}

@keyframes tickerSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lt-id {
  color: var(--gold-400);
  letter-spacing: .05em;
}

.lt-name {
  color: var(--text);
  font-family: var(--font-sans);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
}

.lt-country {
  color: var(--ink-200);
  text-align: right;
  letter-spacing: .05em;
}

[data-theme="light"] .lt-country {
  color: #4a4d5a;
}

@media (max-width: 1000px) {
  .live-ticker {
    min-width: 220px;
    padding: 10px 14px;
    inset: 100px 20px auto auto;
  }
}

@media (max-width: 720px) {
  .live-ticker {
    display: none;
  }
}

.block.empty.shape-hex {
  clip-path: polygon(25% 5%, 75% 5%, 95% 50%, 75% 95%, 25% 95%, 5% 50%);
}

.block.empty.shape-circle {
  border-radius: 50%;
}

.block:hover.filled {
  z-index: 5;
  box-shadow: 0 0 0 2px var(--gold-400), 0 0 20px #fff3;
  transform: scale(1.4);
}

.block-tip {
  background: var(--ink-100);
  color: var(--ink-900);
  font-family: var(--font-mono);
  white-space: nowrap;
  pointer-events: none;
  z-index: 100;
  letter-spacing: .04em;
  padding: 8px 12px;
  font-size: 10px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
}

.block-tip:after {
  content: "";
  border: 4px solid #0000;
  border-top-color: var(--ink-100);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.block-tip .name {
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 12px;
}

.block-tip .meta {
  color: var(--ink-500);
  margin-top: 2px;
}

.hero-mask {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #060609c7 0%, #0606098c 35%, #06060926 60%, #06060900 80%), radial-gradient(70% 90%, #0606094d 0%, #060609a6 60%, #060609f0 100%), linear-gradient(#06060966 0%, #06060900 30% 70%, #060609f2 100%);
  position: absolute;
  inset: 0;
}

[data-theme="light"] .hero-mask {
  background: linear-gradient(90deg, #f4f1ecd9 0%, #f4f1ec99 35%, #f4f1ec33 60%, #f4f1ec00 80%), radial-gradient(70% 90%, #f4f1ec4d 0%, #f4f1eca6 60%, #f4f1ecf0 100%), linear-gradient(#f4f1ec66 0%, #f4f1ec00 30% 70%, #f4f1ecf2 100%);
}

.hero-content {
  z-index: 3;
  pointer-events: none;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: grid;
  position: relative;
}

.hero-content a, .hero-content button, .hero-content input, .hero-content select, .hero-content textarea {
  pointer-events: auto;
}

.hero-eyebrow {
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 6px 12px;
  font-size: 11px;
  display: inline-flex;
}

.hero-eyebrow .dot {
  background: var(--hong-500);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.6s infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: var(--font-display);
  letter-spacing: -.03em;
  text-shadow: 0 2px 24px #0606098c;
  margin-bottom: 28px;
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 500;
  line-height: .95;
}

.hero-title .ko {
  font-family: var(--font-sans);
  font-weight: 700;
  display: block;
}

.hero-title .en {
  color: var(--ink-200);
  letter-spacing: 0;
  text-shadow: 0 1px 14px #060609b3;
  margin-top: 16px;
  font-size: .42em;
  font-style: italic;
  font-weight: 400;
  display: block;
}

[data-theme="light"] .hero-title .en {
  color: #2a2d39;
  text-shadow: 0 1px 14px #f4f1ecb3;
}

.hero-title .accent-hong {
  color: var(--hong-400);
}

.hero-title .accent-chung {
  color: var(--chung-400);
}

.hero-sub {
  color: var(--ink-200);
  text-shadow: 0 1px 12px #060609b3;
  max-width: 480px;
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.6;
}

[data-theme="light"] .hero-sub {
  color: #2a2d39;
  text-shadow: 0 1px 12px #f4f1ecb3;
}

.hero-stats {
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-bottom: 36px;
  display: grid;
}

.hero-stat .label {
  font-family: var(--font-mono);
  color: var(--ink-200);
  text-transform: uppercase;
  letter-spacing: .12em;
  text-shadow: 0 1px 10px #060609b3;
  margin-bottom: 6px;
  font-size: 11px;
}

.hero-stat .value {
  font-family: var(--font-display);
  letter-spacing: -.01em;
  text-shadow: 0 1px 14px #06060999;
  font-size: 28px;
  font-weight: 500;
}

[data-theme="light"] .hero-stat .label {
  color: #2a2d39;
  text-shadow: 0 1px 10px #f4f1ecb3;
}

[data-theme="light"] .hero-stat .value {
  text-shadow: 0 1px 14px #f4f1ec99;
}

.hero-stat .value .small {
  color: var(--text-mut);
  font-size: 16px;
}

.hero-cta-row {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.btn {
  letter-spacing: .02em;
  border: 1px solid #0000;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .12s, background .12s;
  display: inline-flex;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--hong-500);
  color: #fff;
}

.btn-primary:hover {
  background: var(--hong-400);
}

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--text);
}

.btn .arr {
  font-family: var(--font-mono);
  transition: transform .12s;
}

.btn:hover .arr {
  transform: translateX(3px);
}

.hero-right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.athlete-stage {
  aspect-ratio: 4 / 5;
  place-items: center;
  width: 100%;
  max-width: 520px;
  display: grid;
  position: relative;
}

.athlete-stage svg {
  filter: drop-shadow(0 10px 30px #0009);
  width: 100%;
  height: 100%;
}

.athlete-stage .grid-bg {
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(60% 70%, #000 30%, #0000 80%);
  mask-image: radial-gradient(60% 70%, #000 30%, #0000 80%);
}

.athlete-tag {
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 10px;
  position: absolute;
}

.athlete-tag:before {
  content: "";
  background: var(--text-dim);
  vertical-align: middle;
  width: 24px;
  height: 1px;
  margin-right: 8px;
  display: inline-block;
}

.athlete-tag.t1 {
  top: 18%;
  right: 0;
}

.athlete-tag.t2 {
  top: 50%;
  right: -10px;
}

.athlete-tag.t3 {
  bottom: 22%;
  right: 5%;
}

.counter-card {
  z-index: 4;
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  background: #0f1015d9;
  flex-direction: column;
  gap: 10px;
  min-width: 280px;
  padding: 18px 22px;
  display: flex;
  position: absolute;
  bottom: 24px;
  right: 40px;
}

[data-theme="light"] .counter-card {
  background: #ffffffd9;
}

.counter-card .label {
  font-family: var(--font-mono);
  color: var(--ink-100);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 600;
}

[data-theme="light"] .counter-card .label {
  color: #1a1a22;
}

.counter-card .big {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  align-items: baseline;
  gap: 6px;
  font-size: 40px;
  font-weight: 500;
  display: flex;
}

.counter-card .big .total {
  color: var(--ink-200);
  font-size: 18px;
}

[data-theme="light"] .counter-card .big .total {
  color: #4a4d5a;
}

.counter-card .bar {
  background: var(--ink-700);
  height: 4px;
  position: relative;
  overflow: hidden;
}

.counter-card .bar-fill {
  background: linear-gradient(90deg, var(--hong-500), var(--gold-500));
  transform-origin: 0;
  transition: transform .8s ease-out;
  position: absolute;
  inset: 0;
}

.counter-card .meta {
  font-family: var(--font-mono);
  color: var(--ink-100);
  justify-content: space-between;
  font-size: 11px;
  display: flex;
}

[data-theme="light"] .counter-card .meta {
  color: #1a1a22;
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-right {
    order: -1;
  }

  .athlete-stage {
    max-width: 320px;
  }

  .counter-card {
    bottom: 16px;
    left: 20px;
    right: 20px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 40px;
  position: relative;
}

.section-head {
  border-bottom: 1px solid var(--border);
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
  padding-bottom: 32px;
  display: grid;
}

.section-eyebrow {
  font-family: var(--font-mono);
  color: var(--hong-400);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
}

.section-num {
  font-family: var(--font-display);
  color: var(--text-dim);
  letter-spacing: .1em;
  font-size: 14px;
}

.section-title {
  font-family: var(--font-sans);
  letter-spacing: -.02em;
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.section-title .en {
  font-family: var(--font-display);
  color: var(--text-mut);
  letter-spacing: 0;
  margin-top: 8px;
  font-size: .42em;
  font-style: italic;
  font-weight: 300;
  display: block;
}

.section-desc {
  color: var(--text-mut);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .section {
    padding: 80px 20px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.overview-grid {
  background: var(--border);
  border: 1px solid var(--border);
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  display: grid;
}

.overview-cell {
  background: var(--bg);
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
  padding: 32px 28px;
  display: flex;
}

.overview-cell .k {
  font-family: var(--font-mono);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
}

.overview-cell .v {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.overview-cell .v .ko {
  font-family: var(--font-sans);
  font-weight: 700;
}

.overview-cell .desc {
  color: var(--text-mut);
  margin-top: auto;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.timeline {
  flex-direction: column;
  display: flex;
  position: relative;
}

.timeline-row {
  border-top: 1px solid var(--border);
  grid-template-columns: 200px 1fr 240px;
  align-items: baseline;
  gap: 32px;
  padding: 28px 0;
  display: grid;
  position: relative;
}

.timeline-row:last-child {
  border-bottom: 1px solid var(--border);
}

.timeline-row .date {
  font-family: var(--font-mono);
  color: var(--text-mut);
  letter-spacing: .04em;
  font-size: 13px;
}

.timeline-row .what {
  font-family: var(--font-sans);
  letter-spacing: -.01em;
  font-size: 22px;
  font-weight: 600;
}

.timeline-row .what .en {
  font-family: var(--font-display);
  color: var(--text-dim);
  letter-spacing: 0;
  margin-top: 4px;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  display: block;
}

.timeline-row .when {
  font-family: var(--font-mono);
  color: var(--text-dim);
  text-align: right;
  font-size: 12px;
}

.timeline-row.active:before {
  content: "";
  background: var(--hong-500);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 12px var(--hong-500);
  border-radius: 50%;
  position: absolute;
  top: 32px;
  left: -16px;
}

.timeline-row.active .what {
  color: var(--hong-400);
}

@media (max-width: 760px) {
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-row .when {
    text-align: left;
  }
}

.divisions {
  border: 1px solid var(--border);
  overflow-x: auto;
}

.divisions table {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px;
  font-size: 13px;
}

.divisions th, .divisions td {
  text-align: left;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 14px 18px;
}

.divisions th:last-child, .divisions td:last-child {
  border-right: none;
}

.divisions thead th {
  font-family: var(--font-mono);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .12em;
  background: var(--bg-soft);
  font-size: 10px;
  font-weight: 500;
}

.divisions td {
  font-family: var(--font-mono);
  color: var(--text-mut);
}

.divisions tr:hover td {
  background: var(--bg-soft);
  color: var(--text);
}

.divisions td.div-name {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.divisions td.div-age {
  font-family: var(--font-mono);
  color: var(--text-mut);
}

.steps {
  background: var(--border);
  border: 1px solid var(--border);
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  display: grid;
}

.step {
  background: var(--bg);
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  padding: 32px 28px 36px;
  display: flex;
  position: relative;
}

.step .num {
  font-family: var(--font-display);
  color: var(--hong-400);
  letter-spacing: -.04em;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.step .step-title {
  font-size: 18px;
  font-weight: 700;
}

.step .step-desc {
  color: var(--text-mut);
  font-size: 13px;
  line-height: 1.6;
}

.step .step-date {
  font-family: var(--font-mono);
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding-top: 12px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.ai-section {
  background: var(--ink-950);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
  margin: 0;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .ai-section {
  background: var(--ink-100);
}

.ai-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.ai-grid {
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  display: grid;
}

.ai-viz {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  place-items: center;
  display: grid;
  position: relative;
}

.ai-viz svg {
  width: 100%;
  height: 100%;
}

.ai-features {
  background: var(--border);
  border: 1px solid var(--border);
  flex-direction: column;
  gap: 1px;
  display: flex;
}

.ai-feat {
  background: var(--bg);
  padding: 24px 28px;
}

.ai-feat .ftit {
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  display: flex;
}

.ai-feat .ftit .n {
  font-family: var(--font-mono);
  color: var(--chung-400);
  letter-spacing: .1em;
  font-size: 11px;
}

.ai-feat .ftit .t {
  letter-spacing: -.01em;
  font-size: 18px;
  font-weight: 700;
}

.ai-feat .fdesc {
  color: var(--text-mut);
  font-size: 13px;
  line-height: 1.6;
}

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

.faq {
  flex-direction: column;
  display: flex;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  cursor: pointer;
  text-align: left;
  letter-spacing: -.01em;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.faq-q .qn {
  font-family: var(--font-mono);
  color: var(--hong-400);
  letter-spacing: .1em;
  flex-shrink: 0;
  font-size: 11px;
}

.faq-q .qt {
  flex: 1;
}

.faq-q .qx {
  font-family: var(--font-mono);
  color: var(--text-dim);
  flex-shrink: 0;
  font-size: 18px;
  transition: transform .2s;
}

.faq-item.open .qx {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  color: var(--text-mut);
  padding-left: 56px;
  font-size: 14px;
  line-height: 1.7;
  transition: max-height .28s;
  overflow: hidden;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 16px;
}

.apply {
  text-align: center;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, var(--hong-700) 0%, transparent 60%),
    var(--ink-950);
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 100px 40px 140px;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .apply {
  background: radial-gradient(ellipse 60% 80% at 50% 0%, #ffb8b1 0%, transparent 60%),
    var(--ink-100);
}

@supports (color: lab(0% 0 0)) {
  [data-theme="light"] .apply {
    background: radial-gradient(ellipse 60% 80% at 50% 0%, lab(81.6511% 30.9962 17.0515) 0%, transparent 60%),
    var(--ink-100);
  }
}

.apply:before {
  content: "";
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  pointer-events: none;
  background-size: 80px 80px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000, #0000 70%);
  mask-image: linear-gradient(#000, #0000 70%);
}

.apply-inner {
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.apply h2 {
  letter-spacing: -.02em;
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
}

.apply h2 .en {
  font-family: var(--font-display);
  color: var(--text-mut);
  letter-spacing: 0;
  margin-top: 12px;
  font-size: .4em;
  font-style: italic;
  font-weight: 300;
  display: block;
}

.apply p {
  color: var(--text-mut);
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.65;
}

.apply-form {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  text-align: left;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px;
  display: grid;
}

.apply-form .full {
  grid-column: 1 / -1;
}

.apply-form label {
  font-family: var(--font-mono);
  color: var(--text-mut);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
  font-size: 11px;
  display: block;
}

.apply-form input, .apply-form select {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  outline: none;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .12s;
}

.apply-form input:focus, .apply-form select:focus {
  border-color: var(--hong-500);
}

.apply-form button {
  background: var(--hong-500);
  color: #fff;
  letter-spacing: .04em;
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  transition: background .12s;
}

.apply-form button:hover {
  background: var(--hong-400);
}

.apply-form button[disabled] {
  opacity: .55;
  cursor: not-allowed;
  background: var(--hong-500);
}

.apply-tabs {
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  gap: 4px;
  margin: 0 auto 16px;
  padding: 4px;
  display: inline-flex;
}

.apply-tabs button {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  color: var(--text-mut);
  cursor: pointer;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 11px;
  transition: color .12s, background .12s;
}

.apply-tabs button.active {
  color: #fff;
  background: var(--hong-500);
}

.apply-dojang {
  position: relative;
}

.apply-dojang-label {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  display: flex !important;
}

.apply-dojang-label .aside {
  font-family: var(--font-sans, inherit);
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mut);
  font-size: 11px;
}

.apply-dojang-control {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  cursor: text;
  align-items: center;
  gap: 6px;
  min-height: 46px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .12s;
  display: flex;
}

.apply-dojang-control:focus-within {
  border-color: var(--hong-500);
}

.apply-dojang-control input {
  color: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  flex: 1;
  width: 100%;
  padding: 0;
}

.apply-dojang-control .selected-flag {
  font-size: 16px;
}

.apply-dojang-control .selected-name {
  font-weight: 600;
}

.apply-dojang-control .selected-meta {
  color: var(--text-dim);
  font-size: 12px;
}

.apply-dojang-control .clear {
  color: var(--text-dim);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  letter-spacing: .08em;
  cursor: pointer;
  background: none;
  flex-shrink: 0;
  margin-left: auto;
  padding: 4px 9px;
  font-size: 11px;
}

.apply-dojang-control .clear:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.apply-dojang-dropdown {
  z-index: 30;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  max-height: 240px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  overflow-y: auto;
}

.apply-dojang-dropdown li {
  cursor: pointer;
  color: var(--text);
  align-items: baseline;
  gap: 6px;
  padding: 10px 14px;
  font-size: 14px;
  display: flex;
}

.apply-dojang-dropdown li:hover, .apply-dojang-dropdown li[aria-selected="true"] {
  background: var(--bg-soft);
}

.apply-dojang-dropdown li .dim {
  color: var(--text-dim);
  font-size: 12px;
}

.apply-dojang-dropdown .empty {
  color: var(--text-dim);
  text-align: center;
  font-size: 13px;
  font-family: var(--font-mono);
  padding: 14px;
}

.apply-phone {
  align-items: stretch;
  gap: 8px;
  display: flex;
}

.apply-phone select {
  width: 220px;
  font-family: var(--font-mono);
  letter-spacing: .04em;
  flex: none;
  font-size: 13px;
}

@media (max-width: 720px) {
  .apply-phone {
    flex-direction: column;
  }

  .apply-phone select {
    width: 100%;
  }
}

.apply-phone input {
  flex: 1;
}

.apply-form .err {
  color: var(--hong-400);
  font-family: var(--font-mono);
  letter-spacing: .08em;
  grid-column: 1 / -1;
  margin-top: -4px;
  font-size: 11px;
}

.apply-form .hint {
  color: var(--text-dim);
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.6;
}

.apply-form button.apply-link, .apply-link {
  width: auto;
  height: auto;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  grid-column: auto;
  margin: 0;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
  transition: color .12s;
  display: inline;
}

.apply-form button.apply-link:hover, .apply-link:hover {
  color: var(--text);
  background: none;
}

.apply-pledged label {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  display: flex !important;
}

.apply-pledged label .aside {
  font-family: var(--font-sans, inherit);
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mut);
  font-size: 11px;
}

.apply-pledged-row {
  align-items: center;
  gap: 12px;
  display: flex;
}

.apply-pledged-row input[type="range"] {
  appearance: none;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  cursor: pointer;
  outline: none;
  flex: 1;
  height: 6px;
  padding: 0;
}

.apply-pledged-row input[type="range"]:focus {
  border-color: var(--hong-500);
}

.apply-pledged-row input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  background: var(--hong-500);
  border: 2px solid var(--bg-card);
  cursor: pointer;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: 0 1px 3px #0006;
}

.apply-pledged-row input[type="range"]::-moz-range-thumb {
  background: var(--hong-500);
  border: 2px solid var(--bg-card);
  cursor: pointer;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.apply-pledged-row input[type="number"] {
  text-align: right;
  font-variant-numeric: tabular-nums;
  width: 100px;
  font-weight: 600;
}

.apply-pledged-unit {
  font-family: var(--font-mono);
  color: var(--text-mut);
  letter-spacing: .04em;
  font-size: 12px;
}

.apply-verify-method-row {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
  display: grid;
}

.apply-verify-radio {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  transition: border-color .12s, background .12s;
  display: flex;
}

.apply-verify-radio.active {
  border-color: var(--hong-500);
  background: #dc26260f;
}

.apply-verify-radio input {
  display: none;
}

.apply-verify-radio .title {
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 600;
}

.apply-verify-radio .desc {
  color: var(--text-mut);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

.apply-verify-warning {
  border-left: 3px solid var(--hong-500);
  color: var(--text);
  background: #dc262614;
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .apply-verify-method-row {
    grid-template-columns: 1fr;
  }
}

.apply-phone-verify-row {
  align-items: stretch;
  gap: 8px;
  display: flex;
}

.apply-phone-verify-row input {
  flex: 1;
  min-width: 0;
}

.apply-phone-verify-row .verified {
  color: #4ade80;
  font-family: var(--font-mono);
  letter-spacing: .04em;
  white-space: nowrap;
  background: #22c55e14;
  border: 1px solid #4ade8066;
  align-items: center;
  padding: 0 14px;
  font-size: 12px;
  display: inline-flex;
}

.apply-form button.aux {
  letter-spacing: .04em;
  width: auto;
  height: auto;
  color: var(--text);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  grid-column: auto;
  margin: 0;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  transition: background .12s, color .12s, border-color .12s;
}

.apply-form button.aux:hover {
  background: var(--bg-soft);
  border-color: var(--text-mut);
}

.apply-form button.aux:disabled {
  opacity: .45;
  cursor: not-allowed;
  background: none;
}

.apply-form button.aux.primary {
  background: var(--hong-500);
  color: #fff;
  border-color: var(--hong-500);
}

.apply-form button.aux.primary:hover {
  background: var(--hong-400);
  border-color: var(--hong-400);
}

.apply-verify {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  text-align: center;
  margin-top: 24px;
  padding: 56px 32px;
}

.apply-verify-mark {
  color: #4ade80;
  background: #22c55e24;
  border-radius: 999px;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  font-size: 30px;
  font-weight: 700;
  display: grid;
}

.apply-verify h3 {
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
}

.apply-verify p {
  color: var(--text-mut);
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.apply-verify p strong {
  color: var(--text);
}

.apply-verify .hint {
  color: var(--text-dim);
  margin-top: 18px;
  font-size: 12px;
}

.apply-verify-actions {
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 13px;
  display: inline-flex;
}

.apply-verify-divider {
  color: var(--text-dim);
}

@media (max-width: 720px) {
  .apply-form {
    grid-template-columns: 1fr;
  }
}

.footer {
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: .05em;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 40px;
  font-size: 11px;
  display: flex;
}

.tw-panel {
  font-family: var(--font-sans) !important;
}

.promo-grid {
  background: var(--border);
  border: 1px solid var(--border);
  grid-template-columns: 1.6fr 1fr;
  gap: 1px;
  display: grid;
}

.promo-player, .promo-side {
  background: var(--bg);
}

.promo-player {
  padding: 28px;
}

.promo-side {
  flex-direction: column;
  gap: 28px;
  padding: 36px 32px;
  display: flex;
}

.promo-stage {
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #070e16, #020306);
  background: linear-gradient(160deg, lab(3.66811% -.860922 -5.02954), lab(.898048% -.187442 -.952324));
  position: relative;
  overflow: hidden;
}

.promo-frame {
  position: absolute;
  inset: 0;
}

.promo-rec {
  font-family: var(--font-mono);
  color: var(--hong-300);
  letter-spacing: .18em;
  z-index: 5;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  display: flex;
  position: absolute;
  top: 16px;
  left: 16px;
}

.rec-dot {
  background: var(--hong-500);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--hong-500);
  border-radius: 50%;
  animation: 1.4s infinite pulse;
}

.promo-tc {
  font-family: var(--font-mono);
  color: var(--gold-400);
  letter-spacing: .1em;
  z-index: 5;
  font-size: 10px;
  position: absolute;
  top: 16px;
  right: 16px;
}

.promo-bg-figure {
  z-index: 1;
  place-items: center;
  display: grid;
  position: absolute;
  inset: 0;
}

.promo-bg-figure svg {
  height: 75%;
}

.promo-scan {
  z-index: 2;
  background-image: repeating-linear-gradient(0deg, #0000, #0000 2px, #ffffff05 2px 3px), radial-gradient(60% 50%, #0000 0%, #00000073 100%);
  position: absolute;
  inset: 0;
}

.promo-overlay {
  z-index: 4;
  background: linear-gradient(#0000 0%, #0000008c 100%);
  align-items: flex-end;
  gap: 18px;
  padding: 28px 32px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.promo-play {
  border: 1px solid var(--border-strong);
  color: var(--text);
  cursor: pointer;
  background: #ffffff0a;
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  width: 64px;
  height: 64px;
  transition: transform .12s, background .12s, border-color .12s;
  display: grid;
}

.promo-play:hover {
  background: var(--hong-500);
  border-color: var(--hong-500);
  color: #fff;
  transform: scale(1.04);
}

.promo-overlay-meta {
  flex: 1;
}

.promo-overlay-eyebrow {
  font-family: var(--font-mono);
  color: var(--gold-400);
  letter-spacing: .18em;
  margin-bottom: 6px;
  font-size: 10px;
}

.promo-overlay-title {
  font-family: var(--font-sans);
  letter-spacing: -.01em;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.bracket {
  z-index: 5;
  pointer-events: none;
  width: 22px;
  height: 22px;
  position: absolute;
}

.bracket:before, .bracket:after {
  content: "";
  background: var(--gold-400);
  position: absolute;
}

.bracket:before {
  width: 100%;
  height: 1px;
}

.bracket:after {
  width: 1px;
  height: 100%;
}

.br-tl {
  top: 12px;
  left: 12px;
}

.br-tl:before, .br-tl:after {
  top: 0;
  left: 0;
}

.br-tr {
  top: 12px;
  right: 12px;
}

.br-tr:before, .br-tr:after {
  top: 0;
  right: 0;
}

.br-bl {
  bottom: 12px;
  left: 12px;
}

.br-bl:before, .br-bl:after {
  bottom: 0;
  left: 0;
}

.br-br {
  bottom: 12px;
  right: 12px;
}

.br-br:before, .br-br:after {
  bottom: 0;
  right: 0;
}

.promo-chips {
  background: var(--border);
  border: 1px solid var(--border);
  gap: 1px;
  margin-top: 20px;
  display: flex;
  overflow-x: auto;
}

.promo-chip {
  background: var(--bg);
  cursor: pointer;
  color: var(--text);
  text-align: left;
  border: none;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  gap: 6px;
  min-width: 130px;
  padding: 14px 16px;
  transition: background .12s;
  display: flex;
}

.promo-chip:hover {
  background: var(--bg-soft);
}

.promo-chip.active {
  background: var(--bg-soft);
  border-bottom: 2px solid var(--gold-400);
}

.promo-chip .cn {
  font-family: var(--font-mono);
  color: var(--gold-400);
  letter-spacing: .1em;
  font-size: 10px;
}

.promo-chip .ct {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.promo-side-block {
  border-left: 2px solid var(--hong-500);
  padding-left: 16px;
}

.promo-side-block .psb-k {
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 10px;
}

.promo-side-block .psb-v {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.promo-meta {
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.promo-meta li {
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  justify-content: space-between;
  padding: 12px 0;
  font-size: 12px;
  display: flex;
}

.promo-meta li:last-child {
  border-bottom: none;
}

.pm-k {
  color: var(--text-dim);
  letter-spacing: .08em;
}

.pm-v {
  color: var(--text);
}

.promo-side-cta {
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  display: flex;
}

.promo-side-cta .btn {
  justify-content: space-between;
  width: 100%;
}

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

.live-section {
  background: linear-gradient(#0000 0%, #0c040366 100%);
  background: linear-gradient(#0000 0%, lab(1.49699% 2.26143 .98035 / .4) 100%);
}

.live-hero {
  border: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 60% at 100% 0%, #5c01094d 0%, transparent 60%),
    var(--bg-card);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 32px;
  display: grid;
}

@supports (color: lab(0% 0 0)) {
  .live-hero {
    background: radial-gradient(ellipse 80% 60% at 100% 0%, lab(17.5663% 38.1208 23.5304 / .3) 0%, transparent 60%),
    var(--bg-card);
  }
}

.live-status {
  border-right: 1px solid var(--border);
  flex-direction: column;
  gap: 10px;
  padding-right: 32px;
  display: flex;
}

.live-status-dot {
  background: var(--hong-500);
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 0 var(--hong-500);
  border-radius: 50%;
  transition: box-shadow .2s;
}

.live-status-dot.pulse {
  box-shadow: 0 0 0 8px #dc3c3c00;
}

.live-status-label {
  font-family: var(--font-mono);
  color: var(--hong-400);
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
}

.live-status-meta {
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: .05em;
  font-size: 11px;
}

.live-headline h3 {
  font-family: var(--font-sans);
  letter-spacing: -.02em;
  text-wrap: pretty;
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

.live-headline p {
  font-family: var(--font-sans);
  color: var(--text-mut);
  max-width: 560px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.live-countdown {
  background: var(--border);
  border: 1px solid var(--border);
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  min-width: 280px;
  display: grid;
}

.lcd-cell {
  background: var(--bg);
  text-align: center;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  display: flex;
}

.lcd-num {
  font-family: var(--font-mono);
  color: var(--gold-400);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  font-weight: 600;
}

.lcd-lbl {
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: .18em;
  font-size: 9px;
}

.live-feature-grid {
  background: var(--border);
  border: 1px solid var(--border);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 40px;
  display: grid;
}

.live-feat {
  background: var(--bg);
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.live-feat:after {
  content: "";
  background: linear-gradient(225deg, var(--hong-500) 0%, transparent 60%);
  opacity: .1;
  pointer-events: none;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  right: 0;
}

.live-feat-1:after {
  background: linear-gradient(225deg, var(--chung-500) 0%, transparent 60%);
}

.live-feat-2:after {
  background: linear-gradient(225deg, var(--gold-500) 0%, transparent 60%);
}

.live-feat-0:after {
  background: linear-gradient(225deg, var(--hong-500) 0%, transparent 60%);
}

.lf-tag {
  font-family: var(--font-mono);
  color: var(--gold-400);
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 600;
}

.lf-title {
  font-family: var(--font-sans);
  letter-spacing: -.01em;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.lf-desc {
  font-family: var(--font-sans);
  color: var(--text-mut);
  text-wrap: pretty;
  font-size: 13px;
  line-height: 1.65;
}

.lf-meta {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  display: flex;
}

.lf-meta-pill {
  font-family: var(--font-mono);
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  letter-spacing: .05em;
  padding: 4px 8px;
  font-size: 10px;
}

.live-channels {
  border: 1px solid var(--border);
}

.lc-head {
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  align-items: baseline;
  gap: 16px;
  padding: 18px 24px;
  display: flex;
}

.lc-eye {
  font-family: var(--font-mono);
  color: var(--gold-400);
  letter-spacing: .18em;
  font-size: 10px;
}

.lc-title {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.lc-list {
  flex-direction: column;
  display: flex;
}

.lc-row {
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  grid-template-columns: 60px 1.6fr 1.4fr 110px 80px;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  font-size: 12px;
  transition: background .12s;
  display: grid;
}

.lc-row:first-child {
  border-top: none;
}

.lc-row:hover {
  background: var(--bg-soft);
}

.lc-num {
  color: var(--text-dim);
  letter-spacing: .08em;
}

.lc-name {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.lc-stage {
  color: var(--text-mut);
}

.lc-time {
  color: var(--gold-400);
  letter-spacing: .05em;
  text-align: right;
}

.lc-state {
  letter-spacing: .15em;
  border: 1px solid var(--hong-500);
  color: var(--hong-400);
  text-align: center;
  text-transform: uppercase;
  padding: 4px 8px;
  font-size: 10px;
}

@media (max-width: 1000px) {
  .live-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .live-status {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    align-items: center;
    padding-bottom: 24px;
    padding-right: 0;
  }

  .live-feature-grid {
    grid-template-columns: 1fr;
  }

  .lc-row {
    grid-template-columns: 50px 1fr 90px 70px;
  }

  .lc-stage {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 15px;
  }

  .section {
    padding: 64px 16px;
  }

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

  .section-head .title {
    font-size: clamp(22px, 6vw, 30px);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  body {
    overflow-x: hidden;
  }

  .nav {
    padding: 12px 14px;
  }

  .nav-logo {
    gap: 8px;
    font-size: 10px;
  }

  .nav-logo .mark {
    width: 22px;
    height: 22px;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-toggle button {
    padding: 5px 8px;
    font-size: 10px;
  }

  .nav-cta {
    padding: 7px 12px;
    font-size: 11px;
  }

  .hero {
    padding: 88px 16px 56px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-eyebrow {
    gap: 6px;
    padding: 5px 10px;
    font-size: 10px;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: .96 !important;
  }

  .hero-sub {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stats .label {
    font-size: 9px;
  }

  .hero-stats .value {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-cta .btn {
    justify-content: center;
    width: 100%;
  }

  .blocks-wall {
    padding: 16px;
  }

  .blocks-grid {
    grid-template-columns: repeat(20, 1fr) !important;
  }

  .counter-card {
    width: 100%;
    min-width: 0;
    margin: 20px 0 0;
    padding: 14px 16px;
    position: static;
  }

  .counter-card .big {
    font-size: 26px;
  }

  .counter-card .big .total {
    font-size: 14px;
  }

  .counter-card .label {
    font-size: 9px;
  }

  .live-ticker {
    display: none;
  }

  .section-head {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 36px !important;
    padding-bottom: 20px !important;
  }

  .section-head .num {
    font-size: 26px;
  }

  .section-head .eyebrow {
    font-size: 10px;
  }

  .section-head .title {
    font-size: 22px;
  }

  .section-head .title-en {
    font-size: 11px;
  }

  .section-head .desc {
    font-size: 13px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-cell {
    padding: 20px 18px;
  }

  .overview-cell .v {
    font-size: 16px;
  }

  .timeline-row {
    padding: 18px 0;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .timeline-row .date {
    font-size: 11px;
  }

  .timeline-row .what {
    font-size: 16px;
  }

  .timeline-row .what-en {
    font-size: 11px;
  }

  .timeline-row .when {
    text-align: left;
    white-space: pre-line;
    font-size: 11px;
  }

  .timeline-row.active:before {
    top: 22px;
    left: -8px;
  }

  .divisions {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }

  .divisions table {
    min-width: 640px;
  }

  .divisions th, .divisions td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 22px 18px;
  }

  .step .num {
    font-size: 38px;
  }

  .step .stitle {
    font-size: 16px;
  }

  .ai {
    padding: 72px 16px;
  }

  .ai-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ai-viz {
    max-width: 320px;
    margin: 0 auto;
  }

  .ai-feat {
    padding: 18px 20px;
  }

  .faq-q {
    align-items: flex-start;
    gap: 12px;
  }

  .faq-q .qn {
    font-size: 10px;
  }

  .faq-q .qt {
    flex: 1;
    font-size: 14px;
    line-height: 1.45;
  }

  .faq-q .qa {
    font-size: 16px;
  }

  .faq-a {
    font-size: 13px;
    line-height: 1.6;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-player {
    padding: 16px;
  }

  .promo-side {
    gap: 20px;
    padding: 24px 20px;
  }

  .promo-stage {
    aspect-ratio: 4 / 3;
  }

  .promo-rec, .promo-tc {
    font-size: 9px;
    top: 10px;
  }

  .promo-rec {
    left: 10px;
  }

  .promo-tc {
    right: 10px;
  }

  .promo-overlay {
    gap: 12px;
    padding: 16px;
  }

  .promo-play {
    width: 48px;
    height: 48px;
  }

  .promo-play svg {
    width: 32px;
    height: 32px;
  }

  .promo-overlay-eyebrow {
    font-size: 9px;
  }

  .promo-overlay-title {
    font-size: 15px;
    line-height: 1.3;
  }

  .bracket {
    width: 14px;
    height: 14px;
  }

  .br-tl, .br-tr {
    top: 8px;
  }

  .br-bl, .br-br {
    bottom: 8px;
  }

  .br-tl, .br-bl {
    left: 8px;
  }

  .br-tr, .br-br {
    right: 8px;
  }

  .promo-chips {
    flex-direction: column;
  }

  .promo-chip {
    min-width: 0;
    padding: 10px 14px;
  }

  .promo-chip .ct {
    font-size: 12px;
  }

  .promo-meta li {
    padding: 10px 0;
    font-size: 11px;
  }

  .live-hero {
    padding: 22px 18px;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .live-status {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-flow: wrap;
    align-items: center;
    gap: 8px 12px;
    padding-bottom: 16px;
    padding-right: 0;
  }

  .live-status-label, .live-status-meta {
    font-size: 10px;
  }

  .live-headline h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .live-headline p {
    font-size: 12px;
    line-height: 1.55;
  }

  .live-countdown {
    grid-template-columns: repeat(4, 1fr);
    min-width: 0;
  }

  .lcd-cell {
    padding: 10px 6px;
  }

  .lcd-num {
    font-size: 16px;
  }

  .lcd-lbl {
    letter-spacing: .12em;
    font-size: 8px;
  }

  .live-feature-grid {
    grid-template-columns: 1fr;
  }

  .live-feat {
    gap: 10px;
    padding: 22px 20px;
  }

  .lf-title {
    font-size: 16px;
  }

  .lf-desc {
    font-size: 12px;
    line-height: 1.55;
  }

  .lf-meta-pill {
    padding: 3px 6px;
    font-size: 9px;
  }

  .lc-head {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
  }

  .lc-title {
    font-size: 12px;
  }

  .lc-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "num state"
                         "name name"
                         "stage time";
    gap: 6px 10px;
    padding: 14px 16px;
    font-size: 11px;
  }

  .lc-num {
    grid-area: num;
  }

  .lc-state {
    grid-area: state;
    padding: 3px 6px;
    font-size: 9px;
  }

  .lc-name {
    grid-area: name;
    font-size: 13px;
  }

  .lc-stage {
    grid-area: stage;
    display: block;
  }

  .lc-time {
    text-align: right;
    grid-area: time;
  }

  .apply {
    margin-top: 32px;
    padding: 80px 16px;
  }

  .apply-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .apply-form input, .apply-form select {
    padding: 14px 16px;
    font-size: 15px;
  }

  .footer {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 28px 18px;
    font-size: 10px;
  }

  .tw-panel {
    width: calc(100vw - 24px) !important;
    max-width: 320px !important;
    bottom: 12px !important;
    right: 12px !important;
  }
}

@media (max-width: 380px) {
  html {
    font-size: 13px;
  }

  .nav {
    padding: 10px 12px;
  }

  .nav-logo span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 6px 10px;
    font-size: 10px;
  }

  .hero {
    padding: 76px 14px 48px;
  }

  .hero-title {
    font-size: clamp(28px, 12vw, 40px) !important;
  }

  .hero-sub {
    font-size: 12px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stats .value {
    font-size: 16px;
  }

  .blocks-grid {
    grid-template-columns: repeat(16, 1fr) !important;
  }

  .blocks-wall {
    padding: 12px;
  }

  .section {
    padding: 56px 14px;
  }

  .section-head .num {
    font-size: 22px;
  }

  .section-head .title {
    font-size: 20px;
  }

  .overview-cell {
    padding: 16px 14px;
  }

  .step {
    padding: 18px 14px;
  }

  .step .num {
    font-size: 32px;
  }

  .step .stitle {
    font-size: 15px;
  }

  .promo-player {
    padding: 12px;
  }

  .promo-side {
    padding: 20px 16px;
  }

  .promo-overlay-title {
    font-size: 13px;
  }

  .live-hero {
    padding: 18px 14px;
  }

  .live-headline h3 {
    font-size: 16px;
  }

  .lcd-num {
    font-size: 14px;
  }

  .lcd-cell {
    padding: 8px 4px;
  }

  .lf-title {
    font-size: 15px;
  }

  .live-feat {
    padding: 18px 14px;
  }

  .apply {
    padding: 64px 14px;
  }

  .apply-form input, .apply-form select {
    padding: 12px 14px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn, .nav-cta, .promo-play, .promo-chip, .apply-form button, .lang-toggle button {
    min-height: 44px;
  }
}

/*# sourceMappingURL=app_t1_0.l5dqh.css.map*/