@charset "UTF-8";

:root {
  --bg: #070711;
  --bg-deep: #04040a;
  --bg-soft: #0c0b18;
  --bg-elevated: #121020;
  --panel: rgba(18, 16, 32, .72);
  --panel-strong: rgba(12, 11, 24, .94);
  --white: #fbfbff;
  --text: #f1f0fa;
  --muted: rgba(229, 228, 244, .68);
  --soft: rgba(229, 228, 244, .44);
  --line: rgba(194, 201, 255, .14);
  --line-strong: rgba(194, 201, 255, .28);
  --cyan: #83f4ff;
  --blue: #7078ff;
  --violet: #9b6fff;
  --pink: #ff4fc8;
  --pink-soft: #ff89df;
  --green: #72ffad;
  --kakao: #fee500;
  --container: 1280px;
  --header-height: 82px;
  --radius-sm: 15px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow: 0 36px 110px rgba(0, 0, 0, .42);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(131, 244, 255, .42) #070711;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(112, 120, 255, .08), transparent 27%),
    radial-gradient(circle at 92% 38%, rgba(255, 79, 200, .06), transparent 24%),
    var(--bg);
  font-family: var(--sans);
  line-height: 1.65;
  word-break: keep-all;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a,
input,
summary {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

[x-cloak] { display: none !important; }

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: #030308;
  background: var(--cyan);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000000;
  padding: 10px 14px;
  border-radius: 12px;
  color: #05040a;
  background: var(--cyan);
  font-weight: 900;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

/* =========================================================
   19+ MOTION GRAPHIC SPLASH
   ========================================================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(3, 3, 9, .48), rgba(3, 3, 9, .88)),
    url("../images/haeundae-night.webp") center / cover no-repeat,
    #04040a;
  opacity: 1;
  visibility: visible;
  isolation: isolate;
  transition: opacity .7s ease .56s, visibility 0s linear 1.26s;
}

.age-gate::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: -4;
  background:
    radial-gradient(circle at 50% 46%, rgba(112, 120, 255, .22), transparent 22%),
    conic-gradient(from 130deg at 50% 50%, transparent 0 12%, rgba(131, 244, 255, .08) 18%, transparent 29% 48%, rgba(255, 79, 200, .10) 59%, transparent 72%);
  animation: age-bg-spin 25s linear infinite;
}

.age-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76), transparent 34%, transparent 66%, rgba(0, 0, 0, .76)),
    radial-gradient(circle at center, transparent 7%, rgba(4, 3, 13, .47) 56%, rgba(3, 2, 9, .94) 100%);
}

.age-gate.is-leaving {
  pointer-events: none;
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.age-gate__canvas,
.hero__canvas,
.final-cta__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.age-gate__canvas {
  z-index: -1;
  opacity: .78;
}

.age-gate__mesh {
  position: absolute;
  inset: -18%;
  z-index: -2;
  opacity: .18;
  background-image:
    linear-gradient(rgba(169, 182, 255, .24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 182, 255, .24) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(700px) rotateX(68deg) translateY(42%);
  transform-origin: center bottom;
  -webkit-mask-image: radial-gradient(circle, #000 0 25%, transparent 70%);
  mask-image: radial-gradient(circle, #000 0 25%, transparent 70%);
}

.age-gate__noise {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: .06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.64'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.age-gate__beam {
  position: absolute;
  z-index: -1;
  top: -18vh;
  width: 16vw;
  height: 140vh;
  opacity: .25;
  filter: blur(24px);
  mix-blend-mode: screen;
}

.age-gate__beam--cyan {
  left: 9vw;
  background: linear-gradient(180deg, transparent, rgba(131, 244, 255, .55), transparent);
  transform: rotate(18deg);
  animation: age-beam-cyan 10s ease-in-out infinite alternate;
}

.age-gate__beam--pink {
  right: 8vw;
  background: linear-gradient(180deg, transparent, rgba(255, 79, 200, .5), transparent);
  transform: rotate(-17deg);
  animation: age-beam-pink 12s ease-in-out infinite alternate;
}

.age-gate__stage {
  position: relative;
  z-index: 5;
  width: min(760px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  padding: 44px 28px 28px;
  text-align: center;
}

.age-gate__stage::before,
.age-gate__stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.age-gate__stage::before {
  inset: 4% -10%;
  border: 1px solid rgba(197, 204, 255, .10);
  background: radial-gradient(circle, rgba(15, 13, 31, .44), rgba(5, 4, 13, .03) 70%);
}

.age-gate__stage::after {
  width: 360px;
  aspect-ratio: 1;
  top: 27%;
  background: radial-gradient(circle, rgba(112, 120, 255, .17), transparent 68%);
  filter: blur(24px);
}

.age-gate__microcopy {
  position: absolute;
  top: 20px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .34);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .19em;
  opacity: 0;
  animation: age-fade-in .8s ease .2s forwards;
}

.age-gate__brand {
  display: grid;
  gap: 2px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(-12px);
  animation: age-brand-in .9s var(--ease) .25s forwards;
}

.age-gate__brand small {
  color: rgba(255, 255, 255, .56);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .46em;
  text-indent: .46em;
}

.age-gate__brand strong {
  color: #fff;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
}

.age-gate__brand strong span {
  color: var(--pink);
}

.age-orbit {
  position: relative;
  width: clamp(190px, 28vw, 256px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.72) rotate(-12deg);
  animation: age-orbit-in 1.25s var(--ease) .42s forwards;
}

.age-orbit__ring,
.age-orbit__glow {
  position: absolute;
  border-radius: 50%;
}

.age-orbit__ring--outer {
  inset: 0;
  padding: 1px;
  background: conic-gradient(from 0deg, transparent 0 11%, var(--cyan) 19%, transparent 32% 52%, var(--pink) 64%, transparent 78%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 16px rgba(131, 244, 255, .58));
  animation: orbit-spin 7s linear infinite;
}

.age-orbit__ring--middle {
  inset: 13px;
  border: 1px dashed rgba(255, 255, 255, .17);
  animation: orbit-spin-reverse 15s linear infinite;
}

.age-orbit__ring--inner {
  inset: 27px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-left-color: var(--pink);
  border-right-color: var(--cyan);
  animation: orbit-spin-reverse 9s linear infinite;
}

.age-orbit__ring--inner::before,
.age-orbit__ring--inner::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.age-orbit__ring--inner::before {
  top: 18px;
  left: 12px;
  box-shadow: 0 0 14px var(--cyan), 0 0 30px var(--cyan);
}

.age-orbit__ring--inner::after {
  right: 12px;
  bottom: 18px;
  box-shadow: 0 0 14px var(--pink), 0 0 30px var(--pink);
}

.age-orbit__glow {
  inset: 23%;
  background: radial-gradient(circle, rgba(112, 120, 255, .5), rgba(255, 79, 200, .13) 48%, transparent 72%);
  filter: blur(18px);
  animation: orbit-pulse 3s ease-in-out infinite;
}

.age-orbit__number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(76px, 13vw, 116px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.12em;
  text-shadow: 0 0 34px rgba(131, 244, 255, .2);
}

.age-orbit__number span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .9);
}

.age-orbit__label {
  position: absolute;
  bottom: 40px;
  color: rgba(255, 255, 255, .5);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .34em;
  text-indent: .34em;
}

.age-gate__copy {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(15px);
  animation: age-copy-in .9s var(--ease) 1.12s forwards;
}

.age-gate__copy > p:first-child {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .23em;
}

.age-gate__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 6vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.07em;
}

.age-gate__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 10px 0 8px;
}

.age-gate__rule i {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32));
}

.age-gate__rule i:last-child {
  transform: scaleX(-1);
}

.age-gate__rule span {
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.age-gate__copy > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 650;
}

.age-gate__actions {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 27px;
  opacity: 0;
  transform: translateY(14px);
  animation: age-copy-in .9s var(--ease) 1.65s forwards;
}

.age-button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.03em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.age-button:active {
  transform: scale(.98);
}

.age-button--enter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  color: #070711;
  background: linear-gradient(135deg, #eaffff 0%, var(--cyan) 35%, #a8adff 68%, var(--pink-soft) 100%);
  box-shadow: 0 18px 48px rgba(112, 120, 255, .27), 0 0 0 1px rgba(255, 255, 255, .38) inset;
}

.age-button--enter::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -45%;
  width: 35%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .68), transparent);
  transform: skewX(-22deg);
  animation: age-button-shine 3.8s ease-in-out 2.4s infinite;
}

.age-button--enter span,
.age-button--enter svg {
  position: relative;
  z-index: 1;
}

.age-button--enter svg {
  width: 19px;
}

.age-button--exit {
  min-width: 92px;
  padding-inline: 18px;
  color: rgba(255, 255, 255, .68);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(16px);
}

.age-gate__legal {
  max-width: 530px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .37);
  font-size: 10px;
  opacity: 0;
  animation: age-fade-in .8s ease 2s forwards;
}

.age-curtain {
  position: absolute;
  inset-block: 0;
  z-index: 20;
  width: 50.5%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 3, 12, .99), rgba(13, 10, 28, .99)),
    #05040c;
  transform: scaleX(0);
  transition: transform .82s var(--ease);
}

.age-curtain--left {
  left: 0;
  transform-origin: left;
}

.age-curtain--right {
  right: 0;
  transform-origin: right;
}

.age-gate.is-leaving .age-curtain {
  transform: scaleX(1);
}

.age-gate.is-leaving .age-gate__stage {
  animation: age-stage-out .52s ease forwards;
}

@keyframes age-bg-spin { to { transform: rotate(360deg); } }
@keyframes age-beam-cyan { to { transform: translateX(26vw) rotate(11deg); opacity: .42; } }
@keyframes age-beam-pink { to { transform: translateX(-23vw) rotate(-25deg); opacity: .4; } }
@keyframes age-brand-in { to { opacity: 1; transform: none; } }
@keyframes age-orbit-in { to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes age-copy-in { to { opacity: 1; transform: none; } }
@keyframes age-fade-in { to { opacity: 1; } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-reverse { to { transform: rotate(-360deg); } }
@keyframes orbit-pulse { 50% { transform: scale(1.2); opacity: .7; } }
@keyframes age-button-shine { 0%, 54% { left: -45%; } 72%, 100% { left: 125%; } }
@keyframes age-stage-out { to { opacity: 0; transform: scale(.94); filter: blur(8px); } }

/* =========================================================
   HEADER
   ========================================================= */
.site-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: rgba(194, 201, 255, .12);
  background: rgba(7, 7, 17, .78);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .17);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  position: relative;
  width: 48px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(151, 202, 255, .35);
  border-radius: 16px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(131, 244, 255, .19), rgba(112, 120, 255, .17) 46%, rgba(255, 79, 200, .18)),
    rgba(255, 255, 255, .04);
  box-shadow: 0 10px 30px rgba(112, 120, 255, .18), inset 0 1px 0 rgba(255, 255, 255, .17);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -.09em;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 11px;
}

.brand__mark b {
  color: var(--pink);
  font-weight: 950;
}

.brand__mark i {
  font-style: normal;
}

.brand__copy {
  display: grid;
  gap: 1px;
}

.brand__copy strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.055em;
}

.brand__copy small {
  color: rgba(255, 255, 255, .44);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, .67);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -.02em;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transition: left .25s var(--ease), right .25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  left: 0;
  right: 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(194, 201, 255, .17);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .044);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(114, 255, 173, .1), 0 0 12px rgba(114, 255, 173, .82);
  animation: status-pulse 2.2s ease-in-out infinite;
}

@keyframes status-pulse {
  50% { box-shadow: 0 0 0 7px rgba(114, 255, 173, 0), 0 0 17px rgba(114, 255, 173, .9); }
}

.header-kakao,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
}

.header-kakao {
  color: #2c2700;
  background: var(--kakao);
  box-shadow: 0 10px 28px rgba(254, 229, 0, .12);
}

.header-kakao svg {
  width: 22px;
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  gap: 4px;
  border: 1px solid rgba(194, 201, 255, .18);
  background: rgba(255, 255, 255, .045);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 16px;
  right: 16px;
  z-index: 999;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(194, 201, 255, .16);
  border-radius: 24px;
  background: rgba(10, 9, 22, .97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(.98);
  transition: opacity .22s ease, transform .22s var(--ease);
}

.mobile-menu:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-radius: 16px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .035);
  font-size: 15px;
  font-weight: 800;
}

.mobile-menu a span {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: .1em;
}

/* =========================================================
   GLOBAL COMPONENTS
   ========================================================= */
.section {
  position: relative;
  padding: 132px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .58fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.section-heading--compact {
  margin-bottom: 40px;
}

.section-heading h2,
.manifesto__copy h2,
.guide__copy h2,
.location__copy h2,
.faq__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.075em;
}

.section-heading h2 span,
.manifesto__copy h2 span,
.guide__copy h2 span,
.location__copy h2 span,
.faq__heading h2 span,
.signature-band__copy h2 span,
.final-cta__inner h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #aaa7ff 48%, var(--pink-soft));
  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading > p,
.manifesto__copy > p:last-child,
.guide__copy > p,
.location__copy > p,
.faq__heading > p {
  max-width: 550px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -.025em;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
}

.eyebrow > span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 12px rgba(131, 244, 255, .55);
}

.button {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.035em;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.button::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -44%;
  width: 28%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--ease);
}

.button:hover::after {
  left: 125%;
}

.button:active {
  transform: scale(.985);
}

.button svg {
  width: 20px;
  flex: 0 0 auto;
}

.button--primary {
  color: #070711;
  background: linear-gradient(135deg, #e4ffff 0%, var(--cyan) 35%, #9da4ff 68%, var(--pink-soft) 100%);
  box-shadow: 0 18px 46px rgba(112, 120, 255, .21), inset 0 1px 0 rgba(255, 255, 255, .56);
}

.button--primary:hover {
  box-shadow: 0 24px 62px rgba(112, 120, 255, .31), inset 0 1px 0 rgba(255, 255, 255, .68);
}

.button--glass {
  color: #fff;
  border-color: rgba(194, 201, 255, .23);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(14px);
}

.button--glass:hover,
.button--line:hover {
  border-color: rgba(131, 244, 255, .48);
  background: rgba(131, 244, 255, .07);
}

.button--line {
  min-height: 50px;
  color: #fff;
  border-color: rgba(194, 201, 255, .2);
  background: transparent;
}

.button--kakao {
  color: #292400;
  background: var(--kakao);
  box-shadow: 0 16px 40px rgba(254, 229, 0, .13);
}

.demo-badge {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .7);
  background: rgba(5, 4, 12, .42);
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s ease, transform .85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 62px) 0 104px;
  background: #05050c;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -5;
  overflow: hidden;
}

.hero-media video,
.hero-media__fallback,
.hero-media__fallback picture,
.hero-media__fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media video,
.hero-media__fallback img {
  object-fit: cover;
  object-position: center;
}

.hero-media__fallback {
  z-index: -1;
}

.hero-media__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 4, 10, .96) 0%, rgba(4, 4, 10, .86) 28%, rgba(4, 4, 10, .38) 58%, rgba(4, 4, 10, .32) 100%),
    linear-gradient(180deg, rgba(4, 4, 10, .55), rgba(4, 4, 10, .16) 42%, rgba(4, 4, 10, .87) 100%);
}

.hero-media__spectral {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .28;
  background:
    radial-gradient(circle at 75% 34%, rgba(112, 120, 255, .35), transparent 27%),
    radial-gradient(circle at 83% 66%, rgba(255, 79, 200, .25), transparent 22%);
  mix-blend-mode: screen;
  animation: spectral-pulse 8s ease-in-out infinite alternate;
}

@keyframes spectral-pulse {
  to { opacity: .48; transform: scale(1.06); }
}

.hero__canvas {
  z-index: -2;
  opacity: .68;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .11;
  background-image:
    linear-gradient(rgba(173, 182, 255, .15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 182, 255, .15) 1px, transparent 1px);
  background-size: 84px 84px;
  -webkit-mask-image: radial-gradient(circle at 70% 50%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 70%);
  transform: perspective(720px) rotateX(65deg) translateY(36%);
  transform-origin: center bottom;
}

.hero__light {
  position: absolute;
  z-index: -1;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(86px);
  opacity: .13;
  pointer-events: none;
}

.hero__light--cyan {
  top: -20%;
  right: 2%;
  background: var(--cyan);
  animation: hero-light-cyan 13s ease-in-out infinite alternate;
}

.hero__light--pink {
  right: -16%;
  bottom: -20%;
  background: var(--pink);
  animation: hero-light-pink 16s ease-in-out infinite alternate;
}

@keyframes hero-light-cyan { to { transform: translate3d(-12%, 20%, 0) scale(1.16); opacity: .2; } }
@keyframes hero-light-pink { to { transform: translate3d(-18%, -13%, 0) scale(1.2); opacity: .19; } }

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(440px, .68fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding-top: 18px;
}

.hero__copy h1 {
  margin: 24px 0 24px;
  color: #fff;
  font-size: clamp(55px, 6.4vw, 92px);
  font-weight: 900;
  line-height: .99;
  letter-spacing: -.09em;
  text-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

.hero__copy h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .56);
}

.hero__copy h1 em {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #b5abff 46%, var(--pink-soft));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  text-shadow: none;
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(238, 237, 248, .72);
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -.03em;
}

.hero__lead strong {
  color: #fff;
  font-weight: 850;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__facts {
  display: flex;
  align-items: center;
  margin-top: 46px;
}

.hero__facts > div {
  min-width: 130px;
  padding: 0 25px;
  border-left: 1px solid rgba(194, 201, 255, .14);
}

.hero__facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.05em;
}

.hero__facts span {
  margin-top: 5px;
  color: rgba(229, 228, 244, .48);
  font-size: 11px;
  font-weight: 720;
}

.hero-hud {
  position: relative;
  width: min(100%, 500px);
  min-height: 530px;
  display: grid;
  place-items: center;
  justify-self: end;
  perspective: 1200px;
}

.hero-hud__orbit {
  position: absolute;
  z-index: 0;
  width: 94%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.hero-hud__ring {
  position: absolute;
  border-radius: 50%;
}

.hero-hud__ring--one {
  inset: 0;
  border: 1px solid rgba(131, 244, 255, .24);
  border-left-color: transparent;
  border-bottom-color: rgba(255, 79, 200, .34);
  animation: orbit-spin 18s linear infinite;
  box-shadow: 0 0 60px rgba(112, 120, 255, .08) inset;
}

.hero-hud__ring--one::before,
.hero-hud__ring--one::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.hero-hud__ring--one::before {
  top: 13%;
  right: 14%;
  box-shadow: 0 0 15px var(--cyan), 0 0 34px var(--cyan);
}

.hero-hud__ring--one::after {
  left: 11%;
  bottom: 16%;
  box-shadow: 0 0 15px var(--pink), 0 0 34px var(--pink);
}

.hero-hud__ring--two {
  inset: 11%;
  border: 1px dashed rgba(255, 255, 255, .16);
  animation: orbit-spin-reverse 25s linear infinite;
}

.hero-hud__ring--three {
  inset: 24%;
  padding: 1px;
  background: conic-gradient(from 210deg, transparent, var(--cyan), transparent 35% 60%, var(--pink), transparent 85%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 12px rgba(131, 244, 255, .42));
  animation: orbit-spin 9s linear infinite;
}

.hero-hud__core {
  color: transparent;
  background: linear-gradient(135deg, var(--cyan), #a9a3ff 48%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 76px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.12em;
  opacity: .23;
}

.hero-hud__frame {
  position: relative;
  z-index: 2;
  width: 76%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 23px 22px 20px;
  border: 1px solid rgba(194, 201, 255, .23);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(12, 10, 26, .76), rgba(8, 8, 18, .48));
  box-shadow: 0 38px 100px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .07);
  backdrop-filter: blur(18px) saturate(1.15);
  transform: rotateY(-4deg) rotateX(1deg);
  transition: transform .35s var(--ease);
}

.hero-hud__corners i {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--cyan);
  opacity: .72;
}

.hero-hud__corners i:nth-child(1) { top: 10px; left: 10px; border-top: 1px solid; border-left: 1px solid; }
.hero-hud__corners i:nth-child(2) { top: 10px; right: 10px; border-top: 1px solid; border-right: 1px solid; }
.hero-hud__corners i:nth-child(3) { bottom: 10px; left: 10px; border-bottom: 1px solid; border-left: 1px solid; }
.hero-hud__corners i:nth-child(4) { right: 10px; bottom: 10px; border-right: 1px solid; border-bottom: 1px solid; }

.hero-hud__top,
.hero-hud__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-hud__top {
  color: rgba(255, 255, 255, .54);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .035);
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}

.hero-hud__main {
  margin: auto 0;
}

.hero-hud__main small,
.hero-hud__main strong {
  display: block;
}

.hero-hud__main small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero-hud__main strong {
  margin-top: 9px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.hero-hud__main p {
  max-width: 260px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: -.02em;
}

.hero-hud__meter {
  height: 34px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-bottom: 22px;
}

.hero-hud__meter span {
  width: 4px;
  height: calc(7px + (var(--i) % 5) * 4px);
  border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 7px rgba(131, 244, 255, .38);
  animation: hud-meter 1.15s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * -90ms);
}

.hero-hud__meter span:nth-child(n+7) {
  background: linear-gradient(180deg, var(--pink-soft), var(--violet));
}

@keyframes hud-meter { to { height: calc(10px + (var(--i) % 7) * 4px); opacity: .55; } }

.hero-hud__bottom {
  padding-top: 15px;
  border-top: 1px solid rgba(194, 201, 255, .12);
}

.hero-hud__bottom small,
.hero-hud__bottom strong {
  display: block;
}

.hero-hud__bottom small {
  color: var(--soft);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .13em;
}

.hero-hud__bottom strong {
  margin-top: 2px;
  color: #fff;
  font-size: 13px;
}

.hero-hud__bottom time {
  color: var(--pink-soft);
  font-size: 13px;
  font-weight: 900;
}

.hero-hud__tag {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 10px 13px;
  border: 1px solid rgba(194, 201, 255, .16);
  border-radius: 13px;
  background: rgba(7, 7, 17, .62);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
}

.hero-hud__tag span {
  color: var(--soft);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .15em;
}

.hero-hud__tag b {
  color: #fff;
  font-size: 10px;
  letter-spacing: .04em;
}

.hero-hud__tag--left {
  left: 0;
  bottom: 12%;
}

.hero-hud__tag--right {
  top: 12%;
  right: -4px;
}

.hero__scroll {
  position: absolute;
  left: 28px;
  bottom: 78px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .34);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .2em;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.hero__scroll i {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 40%;
  background: var(--cyan);
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line { to { left: 110%; } }

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid rgba(194, 201, 255, .1);
  border-bottom: 1px solid rgba(194, 201, 255, .07);
  background: rgba(255, 255, 255, .023);
  backdrop-filter: blur(8px);
}

.hero-ticker__track {
  width: max-content;
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, .38);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .22em;
  animation: ticker 31s linear infinite;
}

.hero-ticker__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 12px rgba(131, 244, 255, .55);
}

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

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  overflow: hidden;
  background:
    linear-gradient(180deg, #070711, #0a0916 52%, #070711),
    var(--bg);
}

.manifesto::before {
  content: "FIVE.O";
  position: absolute;
  top: 50%;
  right: -4vw;
  color: rgba(255, 255, 255, .016);
  font-size: 20vw;
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.1em;
  transform: translateY(-50%);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: .46fr 1.05fr .62fr;
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.manifesto__index {
  position: relative;
  min-height: 350px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 50% 50% 42px 42px;
  background:
    radial-gradient(circle at 50% 28%, rgba(131, 244, 255, .12), transparent 27%),
    linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .008));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 32px 90px rgba(0, 0, 0, .24);
}

.manifesto__index::before,
.manifesto__index::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(194, 201, 255, .11);
}

.manifesto__index::before { inset: 27px 18px 76px; }
.manifesto__index::after { inset: 52px 42px 102px; border-style: dashed; }

.manifesto__index span {
  position: relative;
  z-index: 1;
  color: var(--soft);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .3em;
  text-indent: .3em;
}

.manifesto__index strong {
  position: relative;
  z-index: 1;
  margin: 13px 0 11px;
  color: transparent;
  background: linear-gradient(135deg, var(--cyan), #aaa6ff 48%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(70px, 8vw, 112px);
  line-height: .9;
  letter-spacing: -.13em;
}

.manifesto__copy > p:last-child {
  margin-top: 26px;
}

.manifesto__quote {
  padding: 28px 0 28px 26px;
  border-left: 1px solid var(--line-strong);
}

.manifesto__quote > span {
  color: var(--pink-soft);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.manifesto__quote blockquote {
  margin: 19px 0 18px;
  color: #fff;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.36;
  letter-spacing: -.055em;
}

.manifesto__quote small {
  color: var(--soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

/* =========================================================
   SYSTEM
   ========================================================= */
.system {
  background:
    radial-gradient(circle at 85% 18%, rgba(112, 120, 255, .08), transparent 22%),
    linear-gradient(180deg, var(--bg), #0b0917 54%, var(--bg));
}

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

.system-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 27px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(15, 13, 28, .6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
  isolation: isolate;
}

.system-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 170px;
  aspect-ratio: 1;
  top: -70px;
  right: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 120, 255, .18), transparent 70%);
  transition: transform .45s var(--ease), opacity .45s ease;
}

.system-card:hover {
  transform: translateY(-9px);
  border-color: rgba(131, 244, 255, .28);
  background:
    linear-gradient(160deg, rgba(131, 244, 255, .065), rgba(255, 79, 200, .025)),
    rgba(15, 13, 28, .74);
}

.system-card:hover::before {
  transform: scale(1.5);
}

.system-card__number {
  color: rgba(255, 255, 255, .24);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.system-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-top: 42px;
  border: 1px solid rgba(131, 244, 255, .16);
  border-radius: 20px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(131, 244, 255, .1), rgba(112, 120, 255, .055));
  box-shadow: 0 16px 36px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.system-card:nth-child(2) .system-card__icon,
.system-card:nth-child(4) .system-card__icon {
  color: var(--pink-soft);
  border-color: rgba(255, 79, 200, .18);
  background: rgba(255, 79, 200, .065);
}

.system-card__icon svg {
  width: 27px;
}

.system-card h3 {
  margin: 26px 0 9px;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.045em;
}

.system-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -.02em;
}

.system-card__line {
  width: 100%;
  height: 1px;
  margin-top: auto;
  background: linear-gradient(90deg, rgba(131, 244, 255, .54), rgba(255, 79, 200, .18), transparent);
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.system-card:hover .system-card__line {
  transform: scaleX(1);
}

/* =========================================================
   MOOD CURATION
   ========================================================= */
.experience {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 79, 200, .09), transparent 24%),
    radial-gradient(circle at 10% 70%, rgba(112, 120, 255, .10), transparent 28%),
    #080713;
}

.mood-rail {
  display: grid;
  grid-template-columns: .86fr 1.18fr .86fr 1.18fr;
  gap: 16px;
  align-items: stretch;
}

.mood-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(194, 201, 255, .16);
  border-radius: 30px;
  background: #111020;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .29);
  isolation: isolate;
  transition: transform .45s var(--ease), border-color .35s ease;
}

.mood-card--landscape {
  min-height: 470px;
  align-self: center;
}

.mood-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .5s ease;
}

.mood-card--portrait img {
  object-position: center 35%;
}

@media (hover: hover) {
  .mood-card:hover {
    transform: translateY(-10px);
    border-color: rgba(131, 244, 255, .32);
  }

  .mood-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.12);
  }
}

/* 터치 기기: :active 시 배경은 두고 피사체(여성/인물)만 앞으로 튀어나오는 효과 */
@media (hover: none) {
  .mood-card {
    transition: transform 0.18s cubic-bezier(.22,1,.36,1), box-shadow 0.18s ease;
  }

  .mood-card:active {
    transform: scale(1.06) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .9), 0 0 0 2px rgba(131, 244, 255, .45);
    z-index: 10;
    border-color: rgba(131, 244, 255, .4);
  }

  .mood-card:active img {
    transform: scale(1.14);
    filter: saturate(1.18) brightness(1.06);
    transition: transform 0.18s cubic-bezier(.22,1,.36,1), filter 0.18s ease;
  }

  .mood-card:active .mood-card__overlay {
    opacity: 0.4;
    background: linear-gradient(to top, rgba(5, 4, 12, .55) 0%, transparent 55%);
  }
}

.mood-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 4, 12, .08), transparent 46%, rgba(5, 4, 12, .92) 100%),
    linear-gradient(135deg, rgba(112, 120, 255, .13), transparent 48%, rgba(255, 79, 200, .12));
}

.mood-card__copy {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.mood-card__copy > span {
  position: absolute;
  right: 0;
  bottom: 0;
  color: rgba(255, 255, 255, .24);
  font-size: 52px;
  font-weight: 300;
  line-height: .8;
  letter-spacing: -.08em;
}

.mood-card__copy small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.mood-card:nth-child(3) .mood-card__copy small,
.mood-card:nth-child(4) .mood-card__copy small {
  color: var(--pink-soft);
}

.mood-card__copy h3 {
  margin: 5px 0 4px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.065em;
}

.mood-card__copy p {
  max-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

/* =========================================================
   SIGNATURE BAND
   ========================================================= */
.signature-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(194, 201, 255, .12);
  background:
    linear-gradient(105deg, rgba(112, 120, 255, .13), transparent 28%, transparent 70%, rgba(255, 79, 200, .1)),
    #0a0815;
}

.signature-band::before {
  content: "FIVE.O";
  position: absolute;
  right: -2vw;
  top: 50%;
  color: rgba(255, 255, 255, .018);
  font-size: 18vw;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.1em;
  transform: translateY(-50%);
}

.signature-band__inner {
  min-height: 310px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.signature-band__mark {
  color: transparent;
  background: linear-gradient(135deg, var(--cyan), #a4a0ff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(92px, 11vw, 158px);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.13em;
}

.signature-band__copy p {
  margin: 0 0 10px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
}

.signature-band__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.07em;
}

.signature-band__stats {
  display: flex;
  gap: 30px;
}

.signature-band__stats div {
  min-width: 72px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.signature-band__stats strong,
.signature-band__stats span {
  display: block;
}

.signature-band__stats strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.06em;
}

.signature-band__stats span {
  margin-top: 7px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 750;
}

/* =========================================================
   GALLERY + LIGHTBOX
   ========================================================= */
.gallery {
  background:
    radial-gradient(circle at 18% 18%, rgba(131, 244, 255, .07), transparent 23%),
    linear-gradient(180deg, #080713, #0a0816 60%, #080713);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.08fr .72fr .92fr;
  grid-template-rows: 340px 290px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  cursor: zoom-in;
  background: #111020;
  isolation: isolate;
}

.gallery-item--a { grid-column: 1; grid-row: 1; }
.gallery-item--b { grid-column: 2; grid-row: 1 / span 2; }
.gallery-item--c { grid-column: 3; grid-row: 1; }
.gallery-item--d { grid-column: 1; grid-row: 2; }
.gallery-item--e { grid-column: 3; grid-row: 2; }
.gallery-item--f { display: none; }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 4, 12, .88));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .45s ease;
}

.gallery-item--b img,
.gallery-item--e img {
  object-position: center 35%;
}

@media (hover: hover) {
  .gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.12) contrast(1.04);
  }
}

.gallery-item figcaption {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: end;
}

.gallery-item figcaption > span {
  grid-row: 1 / span 2;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

.gallery-item figcaption strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: .04em;
}

.gallery-item figcaption small {
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
}

.lightbox {
  width: min(1080px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(194, 201, 255, .22);
  border-radius: 26px;
  color: #fff;
  background: rgba(7, 6, 17, .94);
  box-shadow: 0 40px 140px rgba(0, 0, 0, .68);
  backdrop-filter: blur(22px);
}

.lightbox::backdrop {
  background: rgba(2, 2, 7, .82);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  max-height: calc(100svh - 100px);
  object-fit: contain;
  border-radius: 24px;
}

.lightbox figcaption {
  padding: 12px 18px;
  color: var(--muted);
  font-size: 13px;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 4, 12, .62);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox__close {
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  font-size: 28px;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 34px;
  transform: translateY(-50%);
}

.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }

/* =========================================================
   GUIDE
   ========================================================= */
.guide {
  background:
    radial-gradient(circle at 88% 34%, rgba(112, 120, 255, .10), transparent 24%),
    #080713;
}

.guide__layout {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.guide__copy {
  position: sticky;
  top: 130px;
}

.guide__copy > p {
  margin-top: 26px;
}

.guide-contact {
  margin-top: 38px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(131, 244, 255, .055), rgba(255, 79, 200, .025));
}

.guide-contact small,
.guide-contact a,
.guide-contact span {
  display: block;
}

.guide-contact small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.guide-contact a {
  margin-top: 7px;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.06em;
}

.guide-contact span {
  margin-top: 4px;
  color: var(--soft);
  font-size: 12px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  min-height: 168px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

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

.step > span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .38);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.08em;
}

.step small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
}

.step:nth-child(even) small {
  color: var(--pink-soft);
}

.step h3 {
  margin: 7px 0 6px;
  color: #fff;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.05em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step i {
  position: absolute;
  left: 39px;
  top: 95px;
  width: 1px;
  height: calc(100% - 47px);
  background: linear-gradient(180deg, rgba(131, 244, 255, .35), rgba(255, 79, 200, .12));
}

/* =========================================================
   MESSAGE REVIEW
   ========================================================= */
.reviews {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 55%, rgba(255, 79, 200, .08), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(131, 244, 255, .07), transparent 25%),
    linear-gradient(180deg, #070711, #0a0816, #070711);
}

.review-stage {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  padding: 70px clamp(26px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(112, 120, 255, .06), transparent 38%, rgba(255, 79, 200, .045)),
    rgba(13, 11, 26, .66);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.review-phone {
  position: relative;
  width: min(100%, 365px);
  min-height: 690px;
  justify-self: center;
  overflow: hidden;
  border: 8px solid #171620;
  border-radius: 48px;
  color: #181820;
  background: #f5f5f8;
  box-shadow: 0 42px 110px rgba(0, 0, 0, .46), inset 0 0 0 1px rgba(255, 255, 255, .65);
}

.review-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(112, 120, 255, .08), transparent 22%),
    linear-gradient(180deg, #fff, #f4f3f8 65%, #eeeef4);
}

.review-phone > * {
  position: relative;
  z-index: 1;
}

.review-phone__island {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 50%;
  width: 106px;
  height: 28px;
  border-radius: 999px;
  background: #0b0b0e;
  transform: translateX(-50%);
}

.review-phone__bar {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #111117;
  font-size: 10px;
  font-weight: 800;
}

.review-phone__bar > div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-phone__bar i {
  width: 11px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.review-phone__bar i:nth-child(2) {
  width: 9px;
  border-radius: 99px 99px 2px 2px;
}

.review-phone__bar b {
  font-size: 8px;
}

.review-phone__head {
  min-height: 72px;
  display: grid;
  grid-template-columns: 36px 42px 1fr 36px;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-top: 1px solid rgba(0, 0, 0, .035);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(12px);
}

.review-phone__head button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #50505e;
  background: transparent;
  cursor: pointer;
}

.review-phone__head button svg {
  width: 21px;
}

.review-phone__head strong,
.review-phone__head small {
  display: block;
}

.review-phone__head strong {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.review-phone__head small {
  margin-top: 3px;
  color: #8d8d99;
  font-size: 9px;
}

.blur-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(80, 80, 95, .7), rgba(210, 210, 220, .7)),
    #aaa;
  filter: blur(3px);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.blur-avatar--small {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.review-phone__date {
  width: fit-content;
  margin: 15px auto 5px;
  padding: 4px 8px;
  border-radius: 99px;
  color: #92929c;
  background: rgba(0, 0, 0, .045);
  font-size: 9px;
}

.review-phone__chat {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 11px 13px 18px;
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  animation: chat-pop .42s var(--ease) forwards;
}

.chat-row--me {
  justify-content: flex-end;
}

.chat-row > div {
  max-width: 77%;
}

.chat-row p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 17px;
  font-size: 12px;
  line-height: 1.48;
  letter-spacing: -.02em;
}

.chat-row time {
  display: block;
  margin-top: 4px;
  color: #9a9aa5;
  font-size: 8px;
}

.chat-row--them p {
  border-bottom-left-radius: 5px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.chat-row--me p {
  border-bottom-right-radius: 5px;
  color: #fff;
  background: linear-gradient(135deg, #737cff, #a56cf4 62%, #e861bd);
  box-shadow: 0 7px 20px rgba(112, 120, 255, .2);
}

.chat-row--me time {
  text-align: right;
}

@keyframes chat-pop { to { opacity: 1; transform: none; } }

.review-phone__watermark {
  margin: 0 13px 10px;
  padding: 7px 10px;
  border: 1px dashed rgba(102, 83, 180, .24);
  border-radius: 10px;
  color: #8d83b4;
  background: rgba(112, 120, 255, .04);
  text-align: center;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
}

.review-phone__input {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 8px 10px 10px 15px;
  border-top: 1px solid rgba(0, 0, 0, .07);
  color: #aaaab4;
  background: rgba(255, 255, 255, .84);
  font-size: 11px;
}

.review-phone__input button {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

.review-phone__input svg {
  width: 17px;
}

.review-notes__label {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(131, 244, 255, .16);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(131, 244, 255, .045);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.review-notes h3 {
  margin: 22px 0 18px;
  color: #fff;
  font-size: clamp(35px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -.075em;
}

.review-notes > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -.025em;
}

.review-notes ul {
  display: grid;
  gap: 9px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.review-notes li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.review-notes li span {
  color: var(--pink-soft);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.review-notes li b {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   LOCATION / MAP
   ========================================================= */
.location {
  background:
    radial-gradient(circle at 18% 72%, rgba(112, 120, 255, .10), transparent 27%),
    #080713;
}

.location__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.location-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px 38px 110px 38px;
  background: #0b0a16;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.location-map__image {
  position: absolute;
  inset: 0;
  background: url("../images/haeundae-night.webp") center / cover no-repeat;
  filter: grayscale(.45) contrast(1.1) brightness(.55) saturate(.8);
  transform: scale(1.08);
}

.location-map__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 4, 12, .4), rgba(5, 4, 12, .15) 50%, rgba(5, 4, 12, .7)),
    linear-gradient(180deg, rgba(112, 120, 255, .14), rgba(255, 79, 200, .08));
}

.location-map__grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(188, 200, 255, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 200, 255, .22) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: screen;
}

.map-route {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  box-shadow: 0 0 12px rgba(131, 244, 255, .5);
  transform-origin: left center;
}

.map-route--one {
  width: 53%;
  left: 15%;
  top: 50%;
  transform: rotate(-17deg);
}

.map-route--two {
  width: 42%;
  left: 43%;
  top: 42%;
  transform: rotate(42deg);
}

.map-route::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 22px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 12px var(--cyan), 0 0 26px var(--cyan);
  animation: route-dot 3.4s linear infinite;
}

@keyframes route-dot { to { left: calc(100% - 22px); } }

.map-label {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 9px;
  color: rgba(255, 255, 255, .72);
  background: rgba(5, 4, 12, .46);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 750;
}

.map-label--station { left: 12%; top: 28%; }
.map-label--beach { left: 38%; bottom: 21%; }
.map-label--marine { right: 9%; top: 22%; }

.map-pin {
  position: absolute;
  z-index: 4;
  left: 57%;
  top: 43%;
  display: grid;
  justify-items: center;
  color: #fff;
  transform: translate(-50%, -50%);
}

.map-pin i {
  width: 19px;
  height: 19px;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(255, 79, 200, .12), 0 0 24px var(--pink);
  transform: rotate(-45deg);
}

.map-pin strong {
  margin-top: 17px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(5, 4, 12, .68);
  backdrop-filter: blur(10px);
  font-size: 11px;
}

.location__copy h2 {
  margin-bottom: 26px;
}

.location__copy dl {
  display: grid;
  gap: 0;
  margin: 34px 0;
}

.location__copy dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.location__copy dl > div:last-child {
  border-bottom: 1px solid var(--line);
}

.location__copy dt {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.location__copy dd {
  margin: 0;
  color: rgba(255, 255, 255, .77);
  font-size: 14px;
  font-weight: 650;
}

.location__copy dd a {
  color: #fff;
  font-weight: 850;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background:
    radial-gradient(circle at 80% 80%, rgba(255, 79, 200, .07), transparent 25%),
    linear-gradient(180deg, #080713, #0a0916);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.faq__heading > p {
  margin-top: 25px;
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.035em;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform .3s var(--ease), border-color .3s ease;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .3s ease;
}

.accordion details[open] summary span {
  border-color: rgba(131, 244, 255, .5);
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details > div {
  overflow: hidden;
}

.accordion details p {
  max-width: 750px;
  margin: -2px 0 0;
  padding: 0 58px 27px 5px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: -.02em;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #05050b;
  isolation: isolate;
}

.final-cta__media {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(4, 4, 10, .86), rgba(4, 4, 10, .46) 50%, rgba(4, 4, 10, .74)),
    linear-gradient(180deg, rgba(4, 4, 10, .26), rgba(4, 4, 10, .86)),
    url("../images/bridge-night.webp") center / cover no-repeat;
  filter: saturate(.88);
  transform: scale(1.04);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .17;
}

.final-cta::before {
  width: 45vw;
  aspect-ratio: 1;
  left: -10%;
  bottom: -40%;
  background: var(--blue);
}

.final-cta::after {
  width: 35vw;
  aspect-ratio: 1;
  right: -6%;
  top: -30%;
  background: var(--pink);
}

.final-cta__canvas {
  z-index: -1;
  opacity: .6;
}

.final-cta__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta__inner > p {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .23em;
}

.final-cta__inner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.085em;
  text-shadow: 0 22px 70px rgba(0, 0, 0, .4);
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.final-cta__inner > small {
  margin-top: 19px;
  color: rgba(255, 255, 255, .44);
  font-size: 10px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding: 58px 0 40px;
  border-top: 1px solid rgba(194, 201, 255, .09);
  background: #05050b;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand--footer .brand__mark {
  width: 54px;
}

.brand--footer .brand__copy strong {
  font-size: 21px;
}

.site-footer__contact {
  display: grid;
  justify-items: end;
}

.site-footer__contact small {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
}

.site-footer__contact a {
  margin-top: 3px;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.055em;
}

.site-footer__contact span {
  margin-top: 4px;
  color: var(--soft);
  font-size: 11px;
}

.site-footer__bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(194, 201, 255, .09);
}

.site-footer__bottom p {
  max-width: 760px;
  margin: 0;
  color: rgba(229, 228, 244, .35);
  font-size: 10px;
}

.site-footer__bottom > div {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}

.site-footer__bottom button,
.site-footer__bottom a {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .53);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

/* =========================================================
   FLOATING CONTACT / MOBILE TAB BAR
   ========================================================= */
.desktop-contact {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: stretch;
  gap: 8px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s var(--ease);
}

.desktop-contact.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.desktop-contact__call,
.desktop-contact__kakao {
  border: 1px solid rgba(194, 201, 255, .17);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
}

.desktop-contact__call {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 17px;
  border-radius: 18px;
  color: #fff;
  background: rgba(9, 8, 20, .84);
}

.desktop-contact__call svg {
  width: 22px;
  color: var(--cyan);
}

.desktop-contact__call span {
  display: grid;
  gap: 1px;
}

.desktop-contact__call small {
  color: var(--soft);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .15em;
}

.desktop-contact__call strong {
  font-size: 13px;
}

.desktop-contact__kakao {
  width: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #282300;
  background: var(--kakao);
}

.desktop-contact__kakao svg {
  width: 25px;
  fill: currentColor;
  stroke: none;
}

.bottom-nav {
  display: none;
}

/* =========================================================
   RESPONSIVE: LAPTOP
   ========================================================= */
@media (max-width: 1180px) {
  :root { --container: 1080px; }

  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 13px; }
  .header-call { display: none; }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .66fr);
    gap: 38px;
  }

  .hero-hud { min-height: 490px; }
  .hero__copy h1 { font-size: clamp(54px, 7.2vw, 80px); }

  .manifesto__grid { grid-template-columns: .5fr 1fr .57fr; gap: 40px; }
  .mood-rail { grid-template-columns: .85fr 1.1fr .85fr 1.1fr; }
}

/* =========================================================
   RESPONSIVE: TABLET
   ========================================================= */
@media (max-width: 960px) {
  :root { --header-height: 70px; }

  .container { width: min(100% - 36px, 860px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }

  .section { padding: 100px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .section-heading > p { max-width: 680px; }

  .hero {
    min-height: 980px;
    align-items: start;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-media__shade {
    background:
      linear-gradient(90deg, rgba(4, 4, 10, .91) 0%, rgba(4, 4, 10, .68) 42%, rgba(4, 4, 10, .34) 100%),
      linear-gradient(180deg, rgba(4, 4, 10, .5), rgba(4, 4, 10, .18) 50%, rgba(4, 4, 10, .92));
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero__copy {
    max-width: 690px;
  }

  .hero-hud {
    width: min(100%, 500px);
    min-height: 430px;
    justify-self: end;
    margin-top: -28px;
  }

  .hero-hud__frame { min-height: 300px; }
  .hero-hud__tag--left { left: 5%; }
  .hero-hud__tag--right { right: 5%; }
  .hero__scroll { display: none; }

  .manifesto__grid {
    grid-template-columns: .58fr 1fr;
  }

  .manifesto__quote {
    grid-column: 1 / -1;
    margin-left: calc(36% + 20px);
  }

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

  .mood-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow-x: visible;
    margin-inline: 0;
    padding: 0 0 20px;
    scroll-snap-type: none;
    scrollbar-width: auto;
    cursor: auto;
    touch-action: auto;
    -webkit-overflow-scrolling: auto;
  }

  .mood-rail.is-dragging { cursor: auto; }

  .mood-card,
  .mood-card--landscape {
    min-width: unset;
    min-height: unset;
    height: 190px;
    aspect-ratio: unset;
    align-self: start;
    scroll-snap-align: none;
    border-radius: 20px;
  }

  /* 지그재그: 짝수 카드 25px 아래로 오프셋 */
  .mood-card:nth-child(1) { height: 195px; }
  .mood-card:nth-child(2) { height: 158px; margin-top: 25px; }
  .mood-card:nth-child(3) { height: 158px; }
  .mood-card:nth-child(4) { height: 195px; margin-top: 25px; }

  .signature-band__inner {
    grid-template-columns: auto 1fr;
    gap: 38px;
    padding: 55px 0;
  }

  .signature-band__stats {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 310px 260px;
  }

  .gallery-item--a { grid-column: 1; grid-row: 1; }
  .gallery-item--b { grid-column: 2; grid-row: 1 / span 2; }
  .gallery-item--c { grid-column: 1; grid-row: 2; }
  .gallery-item--d { grid-column: 1; grid-row: 3; }
  .gallery-item--e { grid-column: 2; grid-row: 3; }

  .guide__layout,
  .location__layout,
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .guide__copy { position: static; }
  .guide__copy > p { max-width: 690px; }
  .guide-contact { max-width: 480px; }

  .review-stage {
    grid-template-columns: .75fr 1fr;
    gap: 45px;
    padding: 50px 34px;
  }

  .review-phone { min-height: 670px; }
  .review-notes h3 { font-size: 40px; }

  .location-map { min-height: 500px; }
  .location__copy { max-width: 680px; }
  .faq__heading { max-width: 650px; }
}

/* =========================================================
   RESPONSIVE: MOBILE
   ========================================================= */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --radius: 20px;
  }

  html { scroll-padding-bottom: 92px; }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .container {
    width: calc(100% - 28px);
  }

  .site-header {
    height: 64px;
  }

  .site-header.is-scrolled {
    height: 60px;
  }

  .brand { gap: 9px; }
  .brand__mark { width: 40px; border-radius: 13px; font-size: 12px; }
  .brand__copy strong { font-size: 15px; }
  .brand__copy small { font-size: 6px; letter-spacing: .12em; }
  .header-kakao { width: 40px; height: 40px; }
  .header-kakao svg { width: 20px; }
  .menu-toggle { width: 40px; height: 40px; }
  .mobile-menu { top: 62px; }

  .section { padding: 84px 0; }
  .section-heading { gap: 18px; margin-bottom: 30px; }
  .section-heading h2,
  .manifesto__copy h2,
  .guide__copy h2,
  .location__copy h2,
  .faq__heading h2 {
    font-size: clamp(34px, 10.2vw, 48px);
    line-height: 1.1;
  }

  .section-heading > p,
  .manifesto__copy > p:last-child,
  .guide__copy > p,
  .location__copy > p,
  .faq__heading > p {
    font-size: 14px;
  }

  .section-kicker { margin-bottom: 12px; font-size: 8px; }

  /* mobile age gate */
  .age-gate {
    background:
      linear-gradient(180deg, rgba(3, 3, 9, .44), rgba(3, 3, 9, .91)),
      url("../images/haeundae-night-mobile.webp") center / cover no-repeat,
      #04040a;
  }

  .age-gate__stage {
    width: calc(100% - 26px);
    padding: 42px 14px 22px;
  }

  .age-gate__microcopy {
    top: 12px;
    left: 12px;
    right: 12px;
    font-size: 6px;
  }

  .age-gate__brand { margin-bottom: 19px; }
  .age-gate__brand strong { font-size: 28px; }
  .age-orbit { width: min(54vw, 218px); }
  .age-orbit__number { font-size: 88px; }
  .age-orbit__label { bottom: 34px; }
  .age-gate__copy { margin-top: 20px; }
  .age-gate__copy h2 { font-size: 34px; }
  .age-gate__actions { grid-template-columns: 1fr; width: min(100%, 360px); margin-top: 22px; }
  .age-button { min-height: 54px; }
  .age-button--exit { min-width: 0; min-height: 44px; }
  .age-gate__legal { max-width: 340px; margin-top: 12px; font-size: 8px; line-height: 1.5; }
  .age-gate__beam { width: 28vw; }

  /* mobile hero */
  .hero {
    min-height: 900px;
    align-items: end;
    padding: 112px 0 150px;
  }

  .hero-media video,
  .hero-media__fallback img {
    object-position: center 28%;
  }

  .hero-media__shade {
    background:
      linear-gradient(180deg, rgba(4, 4, 10, .34) 0%, rgba(4, 4, 10, .3) 30%, rgba(4, 4, 10, .78) 56%, rgba(4, 4, 10, .98) 88%),
      linear-gradient(90deg, rgba(4, 4, 10, .48), rgba(4, 4, 10, .18));
  }

  .hero__grid { display: none; }
  .hero__light { width: 70vw; }

  .hero__inner {
    display: block;
  }

  .hero__copy {
    padding: 0 2px;
  }

  .eyebrow {
    font-size: 7px;
    letter-spacing: .13em;
  }

  .eyebrow > span { width: 24px; }

  .hero__copy h1 {
    margin: 17px 0 18px;
    font-size: clamp(43px, 13vw, 61px);
    line-height: 1.01;
  }

  .hero__lead {
    max-width: 520px;
    font-size: 14px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 23px;
  }

  .hero__actions .button {
    min-height: 52px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero__actions .button svg { width: 17px; }

  .hero__facts {
    margin-top: 26px;
  }

  .hero__facts > div {
    min-width: 0;
    flex: 1;
    padding: 0 11px;
  }

  .hero__facts strong { font-size: 18px; }
  .hero__facts span { font-size: 8px; }

  .hero-hud {
    position: absolute;
    top: 92px;
    right: 13px;
    width: 182px;
    min-height: 182px;
    margin: 0;
    opacity: .92;
  }

  .hero-hud__orbit { width: 100%; }
  .hero-hud__core { font-size: 36px; }
  .hero-hud__frame {
    width: 67%;
    min-height: 118px;
    padding: 10px 9px;
    border-radius: 16px;
  }

  .hero-hud__top { font-size: 5px; }
  .live-pill { gap: 3px; padding: 3px 4px; font-size: 4px; }
  .live-pill i { width: 3px; height: 3px; }
  .hero-hud__main small { font-size: 5px; }
  .hero-hud__main strong { margin-top: 3px; font-size: 11px; }
  .hero-hud__main p,
  .hero-hud__meter,
  .hero-hud__tag,
  .hero-hud__bottom div { display: none; }
  .hero-hud__bottom { justify-content: flex-end; padding-top: 6px; }
  .hero-hud__bottom time { font-size: 7px; }
  .hero-hud__corners i { width: 10px; height: 10px; }

  .hero-ticker__track { min-height: 40px; gap: 22px; font-size: 7px; }

  /* mobile manifesto */
  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .manifesto__index {
    width: min(76vw, 310px);
    min-height: 300px;
    justify-self: center;
  }

  .manifesto__copy { order: -1; }
  .manifesto__quote {
    grid-column: auto;
    margin-left: 0;
    padding: 23px 0 23px 20px;
  }

  .manifesto__quote blockquote { font-size: 25px; }

  /* system */
  .system-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .system-card {
    min-height: 260px;
    padding: 17px 15px 16px;
    border-radius: 19px;
  }

  .system-card__number { font-size: 8px; }
  .system-card__icon { width: 49px; height: 49px; margin-top: 25px; border-radius: 16px; }
  .system-card__icon svg { width: 22px; }
  .system-card h3 { margin-top: 19px; font-size: 17px; }
  .system-card p { font-size: 11px; line-height: 1.55; }

  /* mood rail */
  .mood-rail {
    margin-inline: -14px;
    padding: 4px 14px 20px;
  }

  .mood-card,
  .mood-card--landscape {
    min-width: unset;
    min-height: unset;
    border-radius: 18px;
  }

  .mood-card__copy { left: 12px; right: 12px; bottom: 12px; }
  .mood-card__copy > span { font-size: 8px; }
  .mood-card__copy h3 { font-size: 16px; margin-top: 2px; }
  .mood-card__copy p { font-size: 10px; margin-top: 2px; }

  /* band */
  .signature-band__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 52px 0;
    text-align: center;
  }

  .signature-band__mark { font-size: 98px; }
  .signature-band__copy h2 { font-size: 32px; }
  .signature-band__stats { grid-column: auto; gap: 17px; justify-content: center; }
  .signature-band__stats div { min-width: 65px; padding-left: 13px; }
  .signature-band__stats div:first-child { padding-left: 0; border-left: 0; }

  /* gallery mobile zigzag grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow-x: visible;
    margin-inline: 0;
    padding: 4px 0 22px;
    scroll-snap-type: none;
    scrollbar-width: auto;
    touch-action: auto;
    -webkit-overflow-scrolling: auto;
  }

  .gallery-item,
  .gallery-item--a,
  .gallery-item--b,
  .gallery-item--c,
  .gallery-item--d,
  .gallery-item--e,
  .gallery-item--f {
    display: block;
    min-width: unset;
    width: auto;
    height: 200px;
    grid-column: auto;
    grid-row: auto;
    border-radius: 18px;
    scroll-snap-align: none;
  }

  /* 지그재그: 짝수 항목 30px 아래로 오프셋 + 높이 변화 */
  .gallery-item:nth-child(odd)  { height: 230px; }
  .gallery-item:nth-child(even) { height: 175px; margin-top: 30px; }
  .gallery-item--f { display: block; }
  .gallery-item figcaption { left: 10px; right: 10px; bottom: 10px; font-size: 11px; }

  .lightbox__nav { width: 40px; height: 40px; }

  /* guide */
  .guide__layout { gap: 45px; }
  .guide-contact { margin-top: 28px; }
  .step { min-height: 150px; grid-template-columns: 59px 1fr; gap: 15px; padding: 25px 0; }
  .step > span { font-size: 36px; }
  .step h3 { font-size: 21px; }
  .step p { font-size: 12px; }
  .step i { left: 28px; top: 78px; }

  /* reviews */
  .review-stage {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 33px 16px 38px;
    border-radius: 28px;
  }

  .review-phone {
    width: min(100%, 355px);
    min-height: 675px;
    border-width: 7px;
    border-radius: 42px;
  }

  .review-phone__chat { min-height: 440px; }
  .review-notes { padding: 0 5px; }
  .review-notes h3 { font-size: 35px; }
  .review-notes > p { font-size: 14px; }
  .review-notes li { padding: 0 12px; }
  .review-notes li b { font-size: 11px; }

  /* location */
  .location__layout { gap: 42px; }
  .location-map { min-height: 430px; border-radius: 28px 28px 76px 28px; }
  .map-label { font-size: 7px; }
  .map-label--station { left: 7%; }
  .map-label--marine { right: 4%; }
  .map-pin strong { font-size: 9px; }
  .location__copy dl > div { grid-template-columns: 82px 1fr; }

  /* faq */
  .faq__layout { gap: 35px; }
  .accordion summary { min-height: 74px; font-size: 16px; }
  .accordion summary span { width: 27px; height: 27px; }
  .accordion details p { padding: 0 44px 24px 3px; font-size: 13px; }

  /* final cta */
  .final-cta { min-height: 590px; }
  .final-cta__media { background-position: 61% center; }
  .final-cta__inner > p { font-size: 7px; }
  .final-cta__inner h2 { font-size: clamp(39px, 12vw, 57px); }
  .final-cta__buttons { width: 100%; display: grid; grid-template-columns: 1fr; gap: 9px; }
  .final-cta__buttons .button { min-height: 54px; }

  /* footer */
  .site-footer { padding: 48px 0 30px; }
  .site-footer__top { align-items: flex-start; }
  .brand--footer .brand__mark { width: 46px; }
  .site-footer__contact a { font-size: 19px; }
  .site-footer__bottom { display: grid; gap: 20px; }
  .site-footer__bottom > div { justify-content: space-between; }

  /* mobile bottom nav */
  .desktop-contact { display: none; }

  .bottom-nav {
    position: fixed;
    z-index: 950;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    height: 68px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    padding: 6px 5px;
    border: 1px solid rgba(194, 201, 255, .18);
    border-radius: 24px;
    background: rgba(10, 9, 21, .88);
    box-shadow: 0 22px 62px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
  }

  .bottom-nav__indicator {
    position: absolute;
    z-index: -1;
    top: 6px;
    left: 5px;
    width: calc((100% - 10px) / 5);
    height: 56px;
    border: 1px solid rgba(131, 244, 255, .14);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(131, 244, 255, .10), rgba(112, 120, 255, .07) 56%, rgba(255, 79, 200, .06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 9px 24px rgba(112, 120, 255, .08);
    transform: translateX(calc(var(--nav-index, 0) * 100%));
    transition: transform .44s var(--ease), border-color .3s ease;
  }

  .bottom-nav a {
    position: relative;
    min-width: 0;
    height: 56px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    color: rgba(255, 255, 255, .46);
    transition: color .25s ease, transform .32s var(--ease);
  }

  .bottom-nav a.is-active {
    color: #fff;
    transform: translateY(-2px);
  }

  .bottom-nav__icon {
    position: relative;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
  }

  .bottom-nav__icon svg {
    width: 20px;
    transition: transform .35s var(--ease), filter .35s ease;
  }

  .bottom-nav a.is-active .bottom-nav__icon svg {
    transform: scale(1.13);
    filter: drop-shadow(0 0 7px rgba(131, 244, 255, .64));
  }

  .bottom-nav a.is-active .bottom-nav__icon::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: -3px;
    right: 1px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 9px var(--pink);
    animation: nav-dot-pop .42s var(--ease);
  }

  @keyframes nav-dot-pop {
    from { transform: scale(0); }
    70% { transform: scale(1.4); }
    to { transform: scale(1); }
  }

  .bottom-nav small {
    font-size: 8px;
    font-weight: 750;
  }

  .bottom-nav__contact .bottom-nav__icon {
    width: 36px;
    height: 36px;
    margin-top: -19px;
    border-radius: 14px;
    color: #080711;
    background: linear-gradient(135deg, var(--cyan), #aaa5ff 55%, var(--pink-soft));
    box-shadow: 0 11px 28px rgba(112, 120, 255, .32), inset 0 1px 0 rgba(255, 255, 255, .6);
    animation: call-float 2.8s ease-in-out infinite;
  }

  .bottom-nav__contact .bottom-nav__icon svg {
    width: 18px;
  }

  .bottom-nav__contact small {
    margin-top: -4px;
  }

  @keyframes call-float {
    50% { transform: translateY(-3px); box-shadow: 0 15px 34px rgba(112, 120, 255, .42), inset 0 1px 0 rgba(255, 255, 255, .7); }
  }
}

@media (max-width: 420px) {
  .hero__actions { grid-template-columns: 1fr; }
  .hero { min-height: 940px; }
  .hero__copy h1 { font-size: 46px; }
  .hero-hud { width: 162px; top: 88px; }
  .system-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .system-card { min-height: 200px; padding: 14px 12px 14px; border-radius: 16px; }
  .system-card__icon { width: 42px; height: 42px; border-radius: 13px; margin-top: 18px; }
  .system-card__icon svg { width: 20px; }
  .system-card h3 { font-size: 14px; margin-top: 15px; }
  .system-card p { font-size: 10.5px; }
  .review-phone { min-height: 665px; }
  .chat-row p { font-size: 11px; }
  .site-footer__top { display: grid; }
  .site-footer__contact { justify-items: start; }
}

/* =========================================================
   REDUCED MOTION / PRINT
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero-media video { display: none; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .age-gate,
  .site-header,
  .desktop-contact,
  .bottom-nav,
  .hero-media video,
  .hero__canvas,
  .final-cta__canvas {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }
}
