:root {
  --bg: #07131a;
  --bg-2: #0b1c24;
  --ink: #eef7f4;
  --muted: #9fb4ad;
  --dim: #6e8680;
  --emerald: #1ec9a4;
  --emerald-2: #149f82;
  --mint: #7eeed6;
  --gold: #d4b483;
  --gold-dim: rgba(212, 180, 131, 0.35);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-2: rgba(30, 201, 164, 0.08);
  --stroke: rgba(210, 232, 224, 0.16);
  --stroke-strong: rgba(126, 238, 214, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --display: "Plus Jakarta Sans", "Noto Sans KR", sans-serif;
  --sans: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.78;
  letter-spacing: -0.02em;
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(30, 201, 164, 0.18), transparent 58%),
    radial-gradient(700px 480px at -10% 18%, rgba(212, 180, 131, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 42%, #08151c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 20%, transparent 78%);
  z-index: 0;
}

img,
iframe {
  max-width: 100%;
  border: 0;
  display: block;
}

a {
  color: var(--mint);
  text-underline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 80;
  padding: 8px 14px;
  background: #041015;
  color: #fff;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

.rail {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 22px 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rail b {
  color: var(--gold);
  font-weight: 700;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 22px 80px;
}

.glass {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), var(--glass) 42%, var(--glass-2));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sheen {
  position: relative;
  overflow: hidden;
}

.sheen::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 46%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: rotate(18deg);
  animation: sweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sweep {
  0%,
  30% { transform: translateX(-20%) rotate(18deg); opacity: 0; }
  45% { opacity: 1; }
  70%,
  100% { transform: translateX(280%) rotate(18deg); opacity: 0; }
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 18px;
  padding: 36px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--mint);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

h3 {
  font-size: 1.12rem;
  color: var(--mint);
}

h4 {
  font-size: 1rem;
  color: var(--gold);
}

.lede,
.copy p {
  margin: 0 0 14px;
  color: #d9ebe6;
}

.note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 15px;
}

.visual {
  margin: 0;
  position: relative;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  min-height: 280px;
}

.hero .visual {
  min-height: 360px;
}

.frame {
  height: 100%;
  padding: 10px;
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  background:
    radial-gradient(380px 180px at 20% 0%, rgba(30, 201, 164, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 24, 30, 0.35));
}

.cap {
  margin: 10px 4px 0;
  color: var(--dim);
  font-size: 13px;
}

.panel {
  margin-top: 28px;
  padding: 32px;
}

.hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.hour {
  padding: 20px 18px;
  min-height: 150px;
}

.hour b {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hour strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.portrait {
  margin: 0;
}

.portrait .frame {
  max-width: 420px;
  margin-left: auto;
}

.portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  min-height: 0;
}

.carriers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.carrier {
  padding: 22px 18px;
  min-height: 210px;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke-strong);
  color: var(--mint);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(30, 201, 164, 0.12);
}

.band {
  margin-top: 28px;
  padding: 28px 32px;
}

.wide {
  margin: 22px 0 0;
}

.wide .frame {
  padding: 8px;
}

.wide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  min-height: 180px;
}

.steps {
  position: relative;
  margin: 28px 0 0;
  padding-left: 8px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--emerald));
}

.step {
  position: relative;
  margin: 0 0 16px 44px;
  padding: 18px 20px;
}

.step i {
  position: absolute;
  left: -52px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0b1d22;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 6px;
}

.step p {
  margin: 0;
  color: #d9ebe6;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

th,
td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--stroke);
}

th {
  color: var(--gold);
  font-weight: 600;
  background: rgba(212, 180, 131, 0.06);
}

td {
  color: #dceee9;
}

tr:last-child td {
  border-bottom: 0;
}

.cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.box {
  padding: 20px;
}

.cta {
  margin-top: 28px;
  padding: 42px 32px;
  text-align: center;
  background:
    radial-gradient(600px 180px at 50% 0%, rgba(30, 201, 164, 0.22), transparent 70%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), var(--glass));
}

.cta p {
  max-width: 46em;
  margin: 0 auto 22px;
  color: #d9ebe6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(126, 238, 214, 0.55);
  background: linear-gradient(180deg, #2ee0b6, var(--emerald-2));
  color: #062018;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(30, 201, 164, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(30, 201, 164, 0.38);
}

.map-frame {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  height: 380px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.2) saturate(0.85) contrast(1.05);
}

.legal {
  margin-top: 28px;
  padding: 28px 32px 36px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal p {
  margin: 0 0 10px;
}

.legal .label {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ee0b6, var(--emerald-2));
  color: #062018;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.dock:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .hours,
  .carriers,
  .cases,
  .pair {
    grid-template-columns: 1fr;
  }

  .hero,
  .panel,
  .band,
  .cta,
  .legal {
    padding: 24px 18px;
  }

  .portrait .frame {
    margin: 0 auto;
    max-width: 100%;
  }

  h1 {
    max-width: none;
  }

  .dock {
    right: 12px;
    bottom: 12px;
  }
}
