:root {
  --bg: #031018;
  --bg-2: #071a25;
  --surface: rgba(10, 24, 35, 0.78);
  --surface-strong: rgba(8, 20, 30, 0.92);
  --line: rgba(109, 177, 207, 0.18);
  --line-strong: rgba(112, 214, 255, 0.35);
  --text: #eef7fb;
  --muted: #95afbf;
  --soft: #6ecfed;
  --accent: #5de1ff;
  --accent-2: #ffb36b;
  --ok: #70f0cb;
  --radius: 24px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(1100px 800px at 88% -10%, rgba(31, 118, 152, 0.28) 0%, transparent 55%),
    radial-gradient(900px 720px at -4% 14%, rgba(30, 67, 90, 0.4) 0%, transparent 52%),
    linear-gradient(180deg, #04131d 0%, #020b11 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
strong {
  margin: 0;
  font-family: "Sora", sans-serif;
}

p {
  margin: 0;
}

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

button,
input,
video {
  font: inherit;
}

.shell {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.floating-inquiry {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  gap: 4px;
  min-width: 184px;
  padding: 14px 18px;
  border-radius: 22px;
  color: #031922;
  background: linear-gradient(135deg, #ffb36b 0%, #5de1ff 52%, #77ffd3 100%);
  box-shadow: 0 18px 45px rgba(93, 225, 255, 0.28), 0 8px 20px rgba(255, 179, 107, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
  animation: inquiryPulse 2.8s ease-in-out infinite;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.inquiry-modal.open {
  opacity: 1;
  visibility: visible;
}

.inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 16, 0.72);
  backdrop-filter: blur(12px);
}

.inquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 28px));
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(110, 171, 197, 0.22);
  background: linear-gradient(180deg, rgba(8, 22, 32, 0.98) 0%, rgba(4, 15, 22, 0.98) 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.inquiry-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(93, 225, 255, 0.1), transparent 38%, rgba(255, 179, 107, 0.08) 100%);
  pointer-events: none;
}

.inquiry-dialog-head,
.inquiry-form,
.inquiry-actions,
.inquiry-field,
.inquiry-file-list {
  position: relative;
  z-index: 1;
}

.inquiry-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.inquiry-kicker {
  color: var(--ok);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inquiry-dialog-head h2 {
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
}

.inquiry-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(110, 171, 197, 0.22);
  border-radius: 999px;
  background: rgba(7, 22, 31, 0.88);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease;
}

.inquiry-close:hover {
  transform: rotate(90deg);
  border-color: rgba(93, 225, 255, 0.44);
}

.inquiry-intro {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
}

.inquiry-form {
  margin-top: 22px;
}

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

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

.inquiry-field-full {
  grid-column: 1 / -1;
}

.inquiry-field span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(110, 171, 197, 0.18);
  background: rgba(7, 20, 29, 0.96);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.inquiry-field textarea {
  resize: vertical;
  min-height: 140px;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  border-color: rgba(93, 225, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(93, 225, 255, 0.08);
}

.inquiry-upload {
  padding: 16px;
  border-radius: 20px;
  border: 1px dashed rgba(110, 171, 197, 0.26);
  background: rgba(6, 19, 28, 0.66);
}

.inquiry-upload small {
  color: var(--muted);
  line-height: 1.6;
}

.inquiry-file-list {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(9, 24, 35, 0.84);
  border: 1px solid rgba(110, 171, 197, 0.14);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.inquiry-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.inquiry-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.inquiry-status.is-error {
  color: #ffb7b7;
}

.inquiry-status.is-success {
  color: #8af6ce;
}

.inquiry-submit {
  min-width: 164px;
}

.floating-inquiry::before {
  content: "";
  position: absolute;
  inset: -140% auto auto -40%;
  width: 72%;
  height: 320%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
  transform: rotate(22deg);
  animation: inquiryShine 3.6s ease-in-out infinite;
  pointer-events: none;
}

.floating-inquiry::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), inset 0 12px 24px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.floating-inquiry:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 55px rgba(93, 225, 255, 0.34), 0 12px 28px rgba(255, 179, 107, 0.24);
  filter: saturate(1.05);
}

.floating-inquiry-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.floating-inquiry strong {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.1;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 3px, 120px 120px;
  mask-image: radial-gradient(circle at center, black 52%, transparent 95%);
}

.bg-orb {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  animation: floatOrb 15s ease-in-out infinite;
}

.orb-a {
  top: -140px;
  right: 2vw;
  width: 420px;
  height: 420px;
  background: rgba(68, 179, 215, 0.22);
}

.orb-b {
  bottom: -220px;
  left: -140px;
  width: 520px;
  height: 520px;
  background: rgba(255, 148, 82, 0.14);
  animation-delay: -6s;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(135deg, rgba(248, 252, 255, 0.97), rgba(219, 241, 250, 0.9));
  box-shadow: 0 16px 34px rgba(2, 14, 22, 0.36);
}

.brand-logo {
  width: clamp(144px, 16vw, 182px);
  max-width: 36vw;
  height: auto;
  filter: saturate(1.06) contrast(1.03);
}

.brand-tag {
  color: #16364a;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.top-nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.chip:hover,
.booth-item:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #03212d;
  background: linear-gradient(135deg, var(--accent) 0%, #77ffd3 100%);
  box-shadow: 0 12px 28px rgba(93, 225, 255, 0.24);
  font-weight: 700;
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(121, 196, 226, 0.22);
  background: rgba(11, 31, 43, 0.5);
  backdrop-filter: blur(14px);
}

.hero {
  padding: 34px 0 30px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy-wrap {
  padding: 20px 4px 10px 0;
}

.hero-kicker,
.section-kicker,
.detail-kicker,
.map-view-label,
.control-intro p,
.panel-card span {
  color: var(--ok);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin-top: 18px;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

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

.stat-grid article,
.panel-card,
.feature-grid article,
.faq details,
.controls,
.map-view,
.detail {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 26, 37, 0.88) 0%, rgba(6, 18, 26, 0.92) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-grid article {
  padding: 18px;
}

.stat-grid strong {
  display: block;
  font-size: 29px;
}

.stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(115, 206, 245, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 22, 32, 0.76) 0%, rgba(5, 16, 24, 0.96) 100%),
    radial-gradient(circle at 20% 18%, rgba(110, 207, 237, 0.18) 0%, transparent 36%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(128, 211, 240, 0.08);
  pointer-events: none;
}

.panel-card {
  padding: 18px;
}

.panel-card strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.1;
}

.panel-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.panel-card-large {
  min-height: 220px;
}

.panel-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.hero-marquee {
  margin-top: 16px;
  border-radius: 999px;
  border: 1px solid rgba(109, 177, 207, 0.18);
  background: rgba(8, 22, 31, 0.6);
  overflow: hidden;
}

.hero-marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 14px 18px;
  color: #ccecf8;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: marqueeMove 20s linear infinite;
}

.map-section,
.reel-section,
.features,
.faq {
  margin-top: 28px;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.reel-card {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(109, 177, 207, 0.18);
  background: linear-gradient(180deg, rgba(8, 21, 31, 0.9) 0%, rgba(5, 15, 22, 0.96) 100%);
  box-shadow: var(--shadow);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 225, 255, 0.12), transparent 42%, rgba(255, 179, 107, 0.08) 100%);
  pointer-events: none;
  z-index: 2;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -70% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(93, 225, 255, 0.28) 0%, rgba(93, 225, 255, 0) 72%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
  z-index: 1;
}

.reel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(93, 225, 255, 0.34);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.reel-card:hover::after {
  opacity: 1;
}

.reel-card:hover .reel-media video {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.reel-card-wide {
  grid-column: span 3;
}

.reel-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #09131a;
}

.reel-media::after {
  content: none;
}

.reel-media-compact {
  aspect-ratio: 4 / 3;
}

.reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 520ms ease, filter 320ms ease;
}

.reel-copy {
  position: relative;
  z-index: 3;
  padding: 18px 18px 20px;
}

.reel-copy.compact {
  padding-top: 16px;
}

.reel-kicker {
  color: var(--ok);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reel-copy h3 {
  margin-top: 8px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.reel-copy.compact h3 {
  font-size: 22px;
}

.reel-copy p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.reel-link {
  margin-top: 16px;
}

.section-head p {
  margin-top: 8px;
  max-width: 740px;
  color: var(--muted);
  line-height: 1.7;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.map-app {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr) 320px;
  gap: 16px;
  margin-top: 18px;
  align-items: stretch;
}

.controls,
.detail {
  padding: 18px;
  min-height: 760px;
  overflow: auto;
}

.controls::before,
.detail::before,
.feature-grid article::before,
.faq details::before,
.stat-grid article::before,
.panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 225, 255, 0.08), transparent 40%, transparent 100%);
  pointer-events: none;
}

.control-intro {
  padding: 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(114, 200, 233, 0.14);
  background: rgba(9, 24, 33, 0.52);
  margin-bottom: 18px;
}

.control-intro strong {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
  font-size: 15px;
}

.control-block {
  margin-bottom: 18px;
}

label,
.block-title {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  border-radius: 14px;
  border: 1px solid rgba(110, 171, 197, 0.18);
  background: rgba(7, 20, 29, 0.92);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input[type="search"]:focus {
  border-color: rgba(93, 225, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(93, 225, 255, 0.08);
}

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

.chip {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(112, 177, 205, 0.18);
  background: rgba(12, 34, 46, 0.8);
  color: #dbf5ff;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.chip.active {
  color: #022230;
  font-weight: 700;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
}

.booth-list {
  display: grid;
  gap: 10px;
  max-height: 470px;
  overflow: auto;
  padding-right: 4px;
}

.booth-item {
  display: block;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(111, 176, 203, 0.16);
  background: rgba(7, 22, 31, 0.88);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booth-item.active {
  border-color: rgba(93, 225, 255, 0.48);
  background: linear-gradient(135deg, rgba(13, 52, 67, 0.92) 0%, rgba(10, 25, 36, 0.96) 100%);
  box-shadow: inset 0 0 0 1px rgba(93, 225, 255, 0.16);
}

.booth-item b {
  display: block;
  font-size: 15px;
}

.booth-item span,
#resultCount,
.detail-meta,
.detail-description,
.feature-grid p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.booth-item span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
}

.map-view {
  position: relative;
  min-height: 760px;
  padding: 12px;
  overflow: hidden;
}

.map-view::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 107, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(93, 225, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.map-view::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% 24%;
  width: 22%;
  background: linear-gradient(180deg, transparent, rgba(93, 225, 255, 0.08), transparent);
  transform: skewX(-16deg);
  animation: scanLine 8s linear infinite;
  pointer-events: none;
}

.map-view-label {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 3;
}

.camera-dock {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: grid;
  justify-items: end;
  gap: 8px;
  max-width: 260px;
}

.camera-btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(110, 171, 197, 0.24);
  background: rgba(6, 20, 30, 0.88);
  color: #e6f8ff;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.camera-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(93, 225, 255, 0.42);
}

.camera-btn.active {
  color: #03212d;
  background: linear-gradient(135deg, var(--accent) 0%, #77ffd3 100%);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(93, 225, 255, 0.22);
}

.camera-btn:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
}

.camera-status {
  margin: 0;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(6, 18, 26, 0.82);
  border: 1px solid rgba(110, 171, 197, 0.16);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
  backdrop-filter: blur(14px);
}

.mapbox-canvas,
#boothMap {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(112, 177, 205, 0.16);
  background: linear-gradient(180deg, rgba(9, 24, 35, 0.96) 0%, rgba(4, 12, 19, 0.98) 100%);
}

.mapbox-canvas {
  display: none;
  z-index: 1;
}

.mapbox-canvas.show {
  display: block;
  animation: fadeUp 420ms ease both;
}

#boothMap {
  z-index: 2;
}

#boothMap.hide {
  display: none;
}

.mapboxgl-map,
.mapboxgl-canvas {
  width: 100% !important;
  height: 100% !important;
}

.hall-base {
  fill: url(#hallGlow);
  stroke: rgba(124, 203, 237, 0.35);
}

.hall-east,
.hall-west {
  fill: rgba(8, 28, 40, 0.94);
  stroke: rgba(111, 188, 221, 0.28);
  stroke-width: 2;
}

.corridor {
  fill: rgba(20, 51, 67, 0.92);
}

.hall-label {
  fill: rgba(145, 218, 245, 0.74);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.map-booth {
  cursor: pointer;
  transition: transform 180ms ease;
}

.map-booth:hover {
  transform: translateY(-2px);
}

.map-booth rect {
  fill: rgba(89, 210, 255, 0.16);
  stroke: rgba(102, 215, 255, 0.92);
  stroke-width: 1.4;
  rx: 8;
}

.map-booth text {
  fill: #dff8ff;
  font-size: 11px;
  text-anchor: middle;
  pointer-events: none;
}

.map-booth.active rect {
  fill: rgba(255, 179, 107, 0.3);
  stroke: rgba(255, 209, 162, 1);
}

.detail h3 {
  margin-top: 10px;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.08;
}

.detail-meta {
  margin-top: 12px;
}

.detail-description {
  margin-top: 10px;
}

.detail-image {
  display: grid;
  place-items: center;
  min-height: 216px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(110, 171, 197, 0.18);
  background: #0a2432 center/cover no-repeat;
  color: #d9f2fd;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.detail-image.is-empty {
  background-image:
    linear-gradient(135deg, rgba(93, 225, 255, 0.1), rgba(255, 179, 107, 0.06)),
    radial-gradient(circle at top, rgba(93, 225, 255, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(10, 37, 50, 0.96), rgba(6, 18, 26, 0.98));
}

.detail-video-wrap {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(110, 171, 197, 0.18);
  background: #05161f;
}

.detail-video-wrap.hidden,
.detail-link.hidden {
  display: none;
}

#detailVideo {
  width: 100%;
  display: block;
  min-height: 220px;
  background: #07141c;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.detail-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(18, 54, 72, 0.92);
  color: #d4f5ff;
  font-size: 12px;
  border: 1px solid rgba(110, 171, 197, 0.14);
}

.detail-link {
  margin-top: 18px;
}

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

.feature-grid article {
  padding: 22px;
}

.feature-grid h3 {
  font-size: 22px;
}

.feature-grid p {
  margin-top: 12px;
}

.faq details {
  padding: 16px 18px;
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 28px, 0) scale(1.04);
  }
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scanLine {
  0% {
    transform: translateX(-180%) skewX(-16deg);
  }
  100% {
    transform: translateX(420%) skewX(-16deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes inquiryPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 45px rgba(93, 225, 255, 0.28), 0 8px 20px rgba(255, 179, 107, 0.22);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(93, 225, 255, 0.34), 0 14px 30px rgba(255, 179, 107, 0.28);
  }
}

@keyframes inquiryShine {
  0% {
    transform: translateX(-220%) rotate(22deg);
    opacity: 0;
  }
  18% {
    opacity: 0.95;
  }
  42% {
    transform: translateX(320%) rotate(22deg);
    opacity: 0;
  }
  100% {
    transform: translateX(320%) rotate(22deg);
    opacity: 0;
  }
}

@media (max-width: 1160px) {
  .hero-layout,
  .map-app,
  .feature-grid,
  .reel-grid {
    grid-template-columns: 1fr;
  }

  .reel-card,
  .reel-card-wide {
    grid-column: auto;
  }

  .controls,
  .detail,
  .map-view {
    min-height: 0;
  }

  .map-view {
    min-height: 680px;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .top-nav a {
    font-size: 13px;
  }

  .brand-tag {
    display: none;
  }

  .hero-actions,
  .panel-stack,
  .stat-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-marquee-track {
    gap: 20px;
    font-size: 11px;
  }

  .reel-card {
    border-radius: 22px;
  }

  .reel-copy {
    padding: 16px;
  }

  .map-view {
    min-height: 540px;
  }

  .floating-inquiry {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .inquiry-dialog {
    padding: 20px;
    width: min(100vw - 16px, 760px);
  }

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

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

  .inquiry-submit {
    width: 100%;
  }

  .camera-dock {
    top: 58px;
    left: 22px;
    right: 22px;
    justify-items: stretch;
    max-width: none;
  }

  .camera-status {
    text-align: left;
  }

  .detail h3 {
    font-size: 28px;
  }
}
