:root {
  color-scheme: dark;
  --bg: #050609;
  --panel: #10131a;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.7);
  --cyan: #00e5ff;
  --pink: #ff4fd8;
  --lime: #9cff4f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100vw;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(5, 6, 9, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.site-footer nav {
  display: flex;
  align-items: center;
}

.header-controls,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand {
  order: 1;
  gap: 10px;
  min-width: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.brand-text {
  color: #fff;
  font-size: 1.3em;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav {
  order: 2;
  margin-left: auto;
  gap: 22px;
}

.header-controls {
  order: 3;
  gap: 10px;
  margin-left: 14px;
  flex-shrink: 0;
}

.language-switcher {
  display: flex;
  gap: 4px;
}

.language-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 950;
}

.language-switcher a.is-active {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #000;
}

@media (min-width: 961px) {
  .language-switcher {
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
  }

  .language-switcher a {
    min-width: 28px;
    height: 28px;
    font-size: 0.92rem;
  }
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--cyan);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  background: var(--cyan);
  color: #061014;
}

.site-nav a.nav-cta {
  color: #000;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 95px max(24px, calc((100vw - 1180px) / 2)) 70px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(7,8,11,.58), rgba(7,8,11,.18)), url("assets/hero.png");
  background-position: center calc(50% - 30px);
  background-size: cover;
}

.hero-content {
  max-width: min(740px, calc(100% - 390px));
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero .eyebrow {
  font-size: 2.52rem;
  line-height: 1.08;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 1.05;
  font-weight: 950;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.22rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

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

.hero-rail {
  position: absolute;
  top: 72px;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 62px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(360px, calc(100% - 48px));
}

.hero-ranking {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(0, 229, 255, 0.32);
  border-radius: 8px;
  background: rgba(5, 6, 9, 0.78);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

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

.hero-ranking-head span {
  color: var(--cyan);
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.live-ranking-time {
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.live-ranking-list {
  display: grid;
  flex: 1;
  grid-auto-flow: row;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(4, minmax(0, 1fr));
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.live-ranking-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.live-ranking-item em {
  color: var(--cyan);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 950;
}

.live-ranking-item span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-ranking-item strong {
  flex-shrink: 0;
  color: var(--pink);
  font-size: 1.05rem;
  font-weight: 950;
}

.hero-card {
  flex-shrink: 0;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 9, 0.72);
  backdrop-filter: blur(12px);
}

.hero-card span {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.35rem;
}

.hero-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #11151d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip span {
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.section,
.apply-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.overview-section {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.poster-panel {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.poster-panel img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.poster-panel figcaption {
  margin: 12px 4px 2px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.copy-stack p,
.overview-copy p,
.section-head p,
.stage-content p,
.apply-section p,
.step-grid p,
.card-grid p,
.participant-card p {
  color: var(--muted);
  line-height: 1.8;
  word-break: keep-all;
}

.overview-meta {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.overview-meta div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.overview-meta dt {
  color: var(--cyan);
  font-weight: 900;
}

.overview-meta dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.6;
  word-break: keep-all;
}

.stage-band {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background-image: linear-gradient(180deg, rgba(5,6,9,.08), rgba(5,6,9,.92)), url("assets/value-broadcast.png");
  background-position: center;
  background-size: cover;
}

.stage-content {
  max-width: 720px;
}

.participants-section {
  border-top: 1px solid var(--line);
}

.participant-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 30px;
}

.participant-filters button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.participant-filters button:hover,
.participant-filters button.is-active {
  border-color: rgba(0, 229, 255, 0.72);
  color: #041016;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
}

.participant-filters button:hover {
  transform: translateY(-1px);
}

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

.participant-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.participant-photo {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 229, 255, 0.35), transparent 26%),
    linear-gradient(135deg, rgba(0, 229, 255, 0.22), rgba(255, 79, 216, 0.18)),
    #080b12;
}

.participant-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.participant-photo span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.participant-info {
  padding: 18px;
}

.participant-info > span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
}

.participant-info h3 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
}

.participant-info p {
  min-height: 1.45em;
  margin: 0;
}

.participant-link {
  width: 100%;
  min-height: 40px;
  margin-top: 16px;
  padding: 0 12px;
  font-size: 0.84rem;
}

.participant-link[aria-disabled="true"],
.participant-link.is-disabled {
  opacity: 0.52;
  pointer-events: none;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.step-grid,
.card-grid,
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-grid article,
.card-grid article,
.criteria-grid div,
.apply-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.step-grid article,
.card-grid article {
  padding: 28px;
}

.step-grid span {
  color: var(--lime);
  font-weight: 950;
}

.step-grid h3,
.card-grid h3 {
  margin: 18px 0 12px;
  font-size: 1.35rem;
}

.section-muted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.criteria-grid div {
  padding: 24px;
}

.criteria-grid strong {
  display: block;
  font-size: 1.3rem;
}

.criteria-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.apply-box {
  padding: 28px;
}

.apply-box strong {
  font-size: 1.35rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 46px max(24px, calc((100vw - 1180px) / 2));
  background: #030407;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--pink);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
  gap: 18px;
}

.mobile-inquiry {
  display: none;
}

@media (max-width: 960px) {
  .site-header {
    min-height: 68px;
  }

  .brand,
  .site-nav,
  .header-controls {
    order: initial;
  }

  .site-nav,
  .header-controls {
    margin-left: 0;
  }

  .language-switcher {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 6, 9, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-rail {
    position: static;
    width: 100%;
    margin-top: 34px;
  }

  .hero-ranking,
  .hero-card {
    flex: none;
  }

  .signal-strip,
  .step-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split,
  .overview-section,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .poster-panel {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: 100vw;
    justify-content: space-between;
    gap: 0;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    font-size: 0.78rem;
  }

  .language-switcher a {
    min-width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  .menu-toggle {
    width: auto;
    min-height: 36px;
    padding: 0 10px;
    font-size: inherit;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero .eyebrow {
    font-size: 1.6rem;
  }

  .hero-ranking {
    width: 100%;
    padding: 16px;
  }

  .live-ranking-list {
    column-gap: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .signal-strip,
  .step-grid,
  .card-grid,
  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .participant-filters {
    gap: 8px;
    margin: -12px 0 22px;
  }

  .participant-filters button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

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

  .participant-info {
    padding: 14px;
  }

  .participant-info > span {
    font-size: 0.66rem;
  }

  .participant-info h3 {
    font-size: 0.95rem;
  }

  .participant-card p {
    font-size: 0.84rem;
  }

  .participant-link {
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .participant-info p {
    min-height: 1.35em;
  }

  .section,
  .apply-section {
    width: calc(100% - 28px);
    padding: 86px 0;
  }

  .stage-band {
    min-height: 520px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-footer {
    flex-direction: column;
    padding-right: 14px;
    padding-left: 14px;
  }

  .mobile-inquiry {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--cyan);
    color: #000;
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 14px 34px rgba(0, 229, 255, 0.26);
  }
}

/* ATA LIVE participant guide */
.site-nav a[aria-current="page"] {
  color: var(--cyan);
}

.guide-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 229, 255, 0.07), transparent 30%),
    radial-gradient(circle at 88% 44%, rgba(255, 79, 216, 0.06), transparent 28%),
    var(--bg);
}

.guide-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  align-items: end;
  gap: 64px;
  min-height: 690px;
  padding: 112px max(24px, calc((100vw - 1180px) / 2)) 82px;
  overflow: hidden;
}

.guide-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.97) 0%, rgba(5, 6, 9, 0.82) 50%, rgba(5, 6, 9, 0.54) 100%),
    linear-gradient(0deg, rgba(5, 6, 9, 0.94), transparent 58%),
    url("assets/hero.png") center 38% / cover;
}

.guide-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 26%, #000);
  pointer-events: none;
}

.guide-hero-content {
  max-width: 760px;
}

.guide-hero .eyebrow {
  margin-bottom: 20px;
  color: var(--lime);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0.13em;
}

.guide-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.98;
}

.guide-hero-copy {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.75;
  word-break: keep-all;
}

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

.guide-hero-card {
  padding: 28px;
  border: 1px solid rgba(0, 229, 255, 0.38);
  border-radius: 10px;
  background: rgba(5, 6, 9, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.guide-hero-card > span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.guide-hero-card dl {
  margin: 18px 0 0;
}

.guide-hero-card dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.guide-hero-card dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 800;
}

.guide-hero-card dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
  word-break: keep-all;
}

.guide-hero-card > strong {
  display: block;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--pink), #ff785b);
  color: #fff;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 950;
}

.guide-signal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d1118;
}

.guide-signal span {
  padding: 22px 14px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 0.94rem;
  font-weight: 900;
}

.guide-signal span:last-child {
  border-right: 0;
  color: var(--pink);
}

.guide-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.guide-section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.guide-section-head h2 {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

.guide-section-head > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  word-break: keep-all;
}

.guide-notice {
  position: relative;
  max-width: 980px;
  padding: 36px 42px 36px 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.guide-notice::before {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(0, 229, 255, 0.12);
  content: "ATA";
  font-size: clamp(3.8rem, 10vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.guide-notice p {
  position: relative;
  max-width: 820px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
  word-break: keep-all;
}

.guide-notice p:first-child {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 950;
}

.guide-notice p:last-child {
  margin-bottom: 0;
}

.guide-notice strong {
  color: var(--lime);
}

.guide-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.guide-summary-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.guide-summary-grid span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.guide-summary-grid h3 {
  margin: 26px 0 12px;
  font-size: 1.38rem;
}

.guide-summary-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  word-break: keep-all;
}

.guide-route-section {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.guide-route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.guide-photo-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #0b0d12;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
}

.guide-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-entrance-photo {
  max-width: 720px;
}

.guide-entrance-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.guide-photo-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #071014;
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.guide-photo-label-left {
  bottom: 18%;
  left: 4%;
  background: rgba(0, 229, 255, 0.93);
}

.guide-photo-label-right {
  top: 52%;
  right: 4%;
  background: rgba(156, 255, 79, 0.93);
}

.guide-route-copy {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guide-route-copy > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.guide-route-copy span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.guide-route-copy strong {
  margin-top: 12px;
  font-size: 1.45rem;
}

.guide-route-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
  word-break: keep-all;
}

.guide-route-copy .guide-warning {
  border-color: rgba(255, 79, 216, 0.42);
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.16), rgba(16, 19, 26, 0.95));
}

.guide-route-copy .guide-warning span {
  color: var(--pink);
}

.guide-lounge-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.045), transparent 42%),
    #090c11;
}

.guide-lounge-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.guide-lounge-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 6, 9, 0.78);
  backdrop-filter: blur(14px);
}

.guide-lounge-photo figcaption strong {
  color: var(--lime);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.guide-lounge-photo figcaption span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-align: right;
}

.guide-flow-section {
  background: #050609;
}

.guide-flow-section .guide-main {
  padding-bottom: 130px;
}

.guide-flow-section h2 {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

.guide-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.guide-flow li {
  position: relative;
  min-height: 150px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.guide-flow li:last-child {
  border-right: 0;
}

.guide-flow span {
  display: block;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.guide-flow strong {
  display: block;
  margin-top: 32px;
  font-size: 1.12rem;
  line-height: 1.45;
  word-break: keep-all;
}

.guide-final-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 26px;
  padding: 24px 28px;
  border-radius: 8px;
  background: linear-gradient(100deg, var(--cyan), var(--lime));
  color: #061014;
}

.guide-final-note strong {
  font-size: 1.25rem;
  font-weight: 950;
  white-space: nowrap;
}

.guide-final-note p {
  margin: 0;
  color: rgba(6, 16, 20, 0.78);
  font-weight: 850;
  text-align: right;
  word-break: keep-all;
}

@media (max-width: 960px) {
  .guide-hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding-top: 86px;
  }

  .guide-hero-card {
    max-width: 620px;
  }

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

  .guide-signal span:nth-child(2) {
    border-right: 0;
  }

  .guide-signal span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .guide-route-layout {
    grid-template-columns: 1fr;
  }

  .guide-entrance-photo {
    max-width: 660px;
  }

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

  .guide-route-copy .guide-warning {
    grid-column: 1 / -1;
  }

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

  .guide-flow li:nth-child(2) {
    border-right: 0;
  }

  .guide-flow li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .guide-hero {
    padding: 70px 14px 54px;
  }

  .guide-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .guide-hero-copy {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .guide-hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .guide-hero-card {
    padding: 22px;
  }

  .guide-signal span {
    padding: 18px 8px;
    font-size: 0.8rem;
  }

  .guide-main {
    width: calc(100% - 28px);
    padding: 78px 0;
  }

  .guide-section-head {
    margin-bottom: 28px;
  }

  .guide-section-head h2,
  .guide-flow-section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .guide-section-head > p:not(.section-kicker) {
    margin-top: 18px;
    font-size: 1rem;
  }

  .guide-notice {
    padding: 28px 22px 28px 26px;
  }

  .guide-notice::before {
    top: 18px;
    right: 18px;
    font-size: 4rem;
  }

  .guide-notice p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .guide-notice p:first-child {
    font-size: 1.18rem;
  }

  .guide-summary-grid {
    gap: 10px;
    margin-top: 24px;
  }

  .guide-summary-grid article {
    min-height: 176px;
    padding: 20px 16px;
  }

  .guide-summary-grid h3 {
    margin-top: 20px;
    font-size: 1.16rem;
  }

  .guide-summary-grid p {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .guide-route-section {
    padding-top: 24px;
  }

  .guide-photo-label {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .guide-route-copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .guide-route-copy .guide-warning {
    grid-column: auto;
  }

  .guide-route-copy > div {
    padding: 22px;
  }

  .guide-route-copy strong {
    font-size: 1.26rem;
  }

  .guide-lounge-photo figcaption {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 18px;
    border: 0;
    border-radius: 0;
    background: #10131a;
  }

  .guide-lounge-photo figcaption span {
    font-size: 0.88rem;
    line-height: 1.55;
    text-align: left;
  }

  .guide-flow {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .guide-flow li {
    min-height: auto;
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-flow li:last-child {
    border-bottom: 0;
  }

  .guide-flow strong {
    margin-top: 14px;
  }

  .guide-final-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
  }

  .guide-final-note strong {
    font-size: 1.1rem;
    white-space: normal;
  }

  .guide-final-note p {
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: left;
  }
}
