:root {
  --bg: #06070a;
  --panel: #0b0d12;
  --panel-soft: #0f1117;
  --text: #f5f3f5;
  --muted: #97949e;
  --line: rgba(255, 225, 243, .13);
  --pink: #ff76c8;
  --blue: #91c8ff;
  --gradient: linear-gradient(120deg, #ff70c4, #ffc1e6 58%, #8fc6ff);
  --jp: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
  --round: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --en: "DM Sans", sans-serif;
  --tech: "Orbitron", sans-serif;
  --code-jp: "M PLUS 1 Code", "Noto Sans JP", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 68px; }

::selection {
  color: #f7fcff;
  background: rgba(60, 167, 255, .72);
  text-shadow:
    1px 0 0 rgba(255, 118, 200, .75),
    0 0 8px rgba(145, 220, 255, .9);
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--jp);
  font-size: 15px;
  line-height: 1.9;
  --mx: 50%;
  --my: 45%;
}
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  opacity: .13;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}
body::before { top: -20vw; left: -15vw; background: #d82d9c; animation: ambientPink 18s ease-in-out infinite alternate; }
body::after { right: -18vw; bottom: -21vw; background: #368dcc; animation: ambientBlue 22s ease-in-out infinite alternate; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { max-width: 100%; }
em { color: var(--pink); font-style: normal; }
.mobile-break { display: none; }
::selection { color: #190313; background: var(--pink); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  padding: 0 4.5vw;
  border-bottom: 1px solid transparent;
  transition: .3s;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(6, 7, 10, .9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font: 500 14px/1 var(--tech); letter-spacing: .12em; }
.brand strong { color: var(--pink); }
.brand-logo { width: auto; height: 38px; max-width: 185px; display: block; object-fit: contain; filter: drop-shadow(0 0 12px rgba(255,118,200,.2)); }
.brand-text { display: none; }
.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--pink);
  border: 1px solid rgba(255,118,200,.65);
  box-shadow: 0 0 15px rgba(255,118,200,.12);
  transform: rotate(45deg);
}
.brand-mark::first-letter { transform: rotate(-45deg); }
.global-nav { display: flex; gap: 2.2vw; margin-left: auto; margin-right: 3vw; }
.global-nav a { color: #aaa6af; font: 500 10px/1 var(--tech); letter-spacing: .15em; transition: color .2s; }
.global-nav a:hover { color: var(--pink); }
.header-cta { padding: 13px 18px; color: #16030f; background: var(--gradient); font-family: var(--round); font-size: 12px; font-weight: 800; }
.header-cta span { margin-left: 18px; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 8vw 70px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(145,200,255,.12), transparent 22%),
    radial-gradient(circle at 72% 35%, rgba(255, 75, 181, .13), transparent 31%),
    #050609;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  z-index: -1;
  inset: 0;
  opacity: .46;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(145,200,255,.14) 49%, transparent 56%),
    radial-gradient(circle at 18% 68%, rgba(255,118,200,.14), transparent 28%);
  mix-blend-mode: screen;
  animation: lightSweep 9s ease-in-out infinite;
}
.hero::after {
  z-index: 3;
  inset: 0;
  opacity: .14;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.22) 0 1px, transparent 1px 7px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 80%, transparent 100%);
  animation: scanFade 5.8s ease-in-out infinite;
}
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(255,118,200,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(145,200,255,.2) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, black 55%, transparent);
  transform: perspective(500px) rotateX(58deg) scale(1.4) translateY(calc(32% + var(--scroll-shift, 0px)));
  animation: gridDrift 14s ease-in-out infinite alternate;
}
.hero-orbit {
  position: absolute;
  z-index: -1;
  right: 9vw;
  top: 16%;
  width: min(48vw, 640px);
  aspect-ratio: 1;
  border: 1px solid rgba(145,200,255,.16);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(145,200,255,.045), 0 0 80px rgba(255,118,200,.08);
  animation: orbitPulse 7.5s ease-in-out infinite alternate;
}
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,118,200,.12);
  border-radius: 50%;
}
.hero-orbit::after {
  inset: 26%;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 0 34px rgba(145,200,255,.08);
}
.hero-scan {
  position: absolute;
  z-index: 1;
  left: -20%;
  right: -20%;
  top: 25%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(145,200,255,.8), rgba(255,118,200,.65), transparent);
  box-shadow: 0 0 18px rgba(145,200,255,.58);
  opacity: .0;
  animation: scanLine 6.2s ease-in-out infinite;
}
.hero-particles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.hero-particles i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dff8ff;
  box-shadow: 0 0 16px rgba(145,200,255,.95), 0 0 26px rgba(255,118,200,.35);
  opacity: .7;
  animation: particleFloat 9s ease-in-out infinite alternate;
}
.hero-particles i:nth-child(1) { left: 15%; top: 24%; animation-delay: -1.2s; }
.hero-particles i:nth-child(2) { left: 46%; top: 18%; width: 3px; height: 3px; animation-delay: -3s; }
.hero-particles i:nth-child(3) { right: 19%; top: 62%; animation-delay: -5.2s; }
.hero-particles i:nth-child(4) { left: 32%; bottom: 18%; width: 4px; height: 4px; animation-delay: -2.4s; }
.hero-particles i:nth-child(5) { right: 34%; bottom: 27%; width: 3px; height: 3px; animation-delay: -6.7s; }
.hero-photo {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -11%;
  width: 49%;
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 40%, black);
}
.hero-photo::before { content: ""; position: absolute; z-index: 2; inset: 8% 10% 7% 4%; border: 1px solid rgba(145,200,255,.16); box-shadow: inset 0 0 50px rgba(145,200,255,.045); opacity: .7; transform: skewY(-3deg); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,6,9,.05), transparent 58%, #050609), radial-gradient(circle at 48% 38%, transparent 0 24%, rgba(5,6,9,.35) 58%, rgba(5,6,9,.8)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 20%; filter: saturate(.95) brightness(.92) contrast(1.04); transform: scale(1.045) translate3d(0, var(--photo-shift, 0px), 0); animation: heroBreath 11s ease-in-out infinite alternate; will-change: transform; }
.hero-copy { position: relative; z-index: 2; width: 60%; max-width: 840px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--pink); font: 500 9px/1 var(--tech); letter-spacing: .22em; }
.eyebrow span { width: 28px; height: 1px; background: var(--pink); box-shadow: 0 0 10px var(--pink); }
.hero h1 { margin: 0 0 16px; }
.hero h1 small { display: block; margin: 0 0 16px 4px; color: #bfeeff; font: 700 12px/1 var(--round); letter-spacing: .18em; text-shadow: 0 0 16px rgba(125,210,255,.22); }
.hero h1 strong { display: block; max-width: 100%; color: #f7fdff; font: 800 clamp(34px, 3.65vw, 60px)/1.12 var(--round); letter-spacing: -.075em; text-shadow: 0 0 22px rgba(126,211,255,.25), 0 0 40px rgba(255,255,255,.08); animation: titleGlow 5s ease-in-out infinite alternate; }
.hero-lead { margin: 0 0 20px; font-family: var(--round); font-size: clamp(27px, 3vw, 43px); font-weight: 700; line-height: 1.65; letter-spacing: .035em; text-shadow: 0 0 24px rgba(255,118,200,.1); }
.hero-hook {
  width: fit-content;
  margin: 0 0 20px;
  padding: 14px 22px;
  color: #05141d;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #dff8ff 52%, #87d8ff 100%);
  box-shadow: 0 0 26px rgba(126,211,255,.3), 0 0 46px rgba(255,255,255,.08), inset 0 0 18px rgba(255,255,255,.58);
  font: 800 clamp(20px, 2vw, 32px)/1 var(--round);
  letter-spacing: .04em;
  animation: hookPulse 3.8s ease-in-out infinite alternate;
}
.hero-description { margin: 0; max-width: 560px; color: #ddd8e0; font-size: 16px; line-height: 1.75; }
.hero-sub { margin: 8px 0 0; color: #78747e; font-size: 12px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-badges span { padding: 10px 14px; color: #ebfaff; border: 1px solid rgba(134,213,255,.38); border-radius: 999px; background: rgba(134,213,255,.075); box-shadow: inset 0 0 18px rgba(134,213,255,.045); font: 700 12px/1 var(--round); letter-spacing: .03em; }
.hero-badges span:nth-child(3) { color: #06141d; border-color: rgba(255,255,255,.72); background: linear-gradient(135deg, #ffffff, #bfeeff); box-shadow: 0 0 20px rgba(126,211,255,.2); }
.hero-actions { display: flex; align-items: center; gap: 36px; margin-top: 34px; }
.button-primary {
  position: relative;
  overflow: hidden;
  min-width: 238px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 19px;
  color: #16030f;
  background: var(--gradient);
  font-family: var(--round);
  font-size: 12px;
  font-weight: 700;
  transition: transform .3s, box-shadow .3s;
}
.button-primary::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -35%;
  width: 28%;
  background: rgba(255,255,255,.55);
  filter: blur(5px);
  transform: rotate(18deg) translateX(-250%);
  transition: transform .75s ease;
}
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 13px 35px rgba(255,92,190,.22); }
.button-primary:hover::after { transform: rotate(18deg) translateX(650%); }
.text-link { padding: 8px 0; color: #c2bec6; border-bottom: 1px solid #625d68; font-size: 12px; }
.text-link span { margin-left: 13px; color: var(--pink); }
.hero-float-card {
  position: absolute;
  z-index: 4;
  min-width: 218px;
  padding: 16px 18px;
  border: 1px solid rgba(145,200,255,.24);
  background: rgba(5,6,9,.62);
  box-shadow: 0 20px 55px rgba(0,0,0,.28), inset 0 0 24px rgba(145,200,255,.035);
  backdrop-filter: blur(16px);
  pointer-events: none;
}
.hero-float-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255,118,200,.18);
  transform: translate(7px, 7px);
}
.hero-float-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font: 500 7px/1 var(--tech);
  letter-spacing: .18em;
}
.hero-float-card strong {
  display: block;
  color: #f3fbff;
  font-family: var(--round);
  font-size: 14px;
  letter-spacing: .02em;
}
.hero-float-card-a { right: 28vw; bottom: 17%; animation: floatCard 6.8s ease-in-out infinite alternate; }
.hero-float-card-b { right: 5vw; bottom: 28%; animation: floatCard 7.2s ease-in-out -2.3s infinite alternate; }
.hero-status { position: absolute; right: 5.5vw; bottom: 9%; padding: 10px 14px; color: var(--pink); border: 1px solid rgba(255,118,200,.27); background: rgba(5,6,9,.7); font: 500 8px/1 var(--tech); letter-spacing: .16em; }
.hero-status i { display: inline-block; width: 5px; height: 5px; margin-right: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 8px var(--pink); animation: blink 1.5s infinite; }
.hero-bottom { position: absolute; bottom: 27px; left: 8vw; right: 6vw; display: flex; align-items: center; gap: 13px; color: #514e57; font: 500 7px/1 var(--tech); letter-spacing: .16em; }
.hero-bottom i { width: 70px; height: 1px; background: linear-gradient(to right, var(--pink) 38%, #292831 38%); }
.hero-bottom b { margin-left: auto; font-weight: 500; }

.section { position: relative; padding: 140px 8vw; isolation: isolate; }
.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(circle at 12% 22%, rgba(255,118,200,.055), transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(145,200,255,.048), transparent 26%);
}
.section h2 { margin: 0; font-family: var(--round); font-size: clamp(37px, 4.2vw, 64px); font-weight: 800; line-height: 1.45; letter-spacing: -.01em; }
.section h2 span { display: inline-block; margin-left: .16em; color: var(--pink); white-space: nowrap; }
.section-number { position: absolute; top: 148px; left: 3vw; color: #56535c; font: 500 8px/1 var(--tech); letter-spacing: .14em; writing-mode: vertical-rl; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 70px; }
.section-heading > p { max-width: 340px; margin: 0 0 7px; color: var(--muted); }

.about { min-height: 700px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 5vw; row-gap: 42px; align-items: center; background: #090a0e; border-top: 1px solid var(--line); }
.about-heading { grid-column: 1; }
.about-copy { color: var(--muted); }
.about-copy p { margin: 0 0 22px; }
.about-copy .large-copy { color: #e4e0e5; font-size: 18px; }
.about-point { display: flex; gap: 18px; margin-top: 34px; padding: 22px 0; color: #e6e0e6; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); line-height: 1.7; }
.about-point span { color: var(--pink); font-size: 22px; }
.about-logo { position: relative; grid-column: 1 / -1; width: min(45vw, 560px); justify-self: end; overflow: hidden; aspect-ratio: 16 / 7.4; border: 1px solid var(--line); background: #09090d; }
.about-logo::before { content: "RECEPTION / CHECK-IN"; position: absolute; z-index: 3; left: 16px; bottom: 13px; padding-left: 20px; color: rgba(196, 232, 255, .72); font: 500 7px/1 var(--tech); letter-spacing: .16em; text-shadow: 0 0 6px rgba(112, 202, 255, .5); }
.about-logo::after { content: ""; position: absolute; z-index: 3; left: 16px; bottom: 16px; width: 13px; height: 1px; background: linear-gradient(90deg, var(--pink), var(--blue)); box-shadow: 0 0 7px rgba(145, 200, 255, .45); }
.about-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: brightness(1.04) saturate(.98); }

.join { overflow: hidden; isolation: isolate; background: #0a090e; border-top: 1px solid var(--line); }
.join .section-heading { position: relative; z-index: 2; width: 58%; min-height: 300px; align-items: center; }
.join .section-heading > p { display: none; }
.join-guide { position: absolute; z-index: 1; top: 78px; right: 4vw; width: min(40vw, 520px); height: 420px; margin: 0; pointer-events: none; }
.join-guide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, #0a090e 0%, transparent 28%), linear-gradient(to top, #0a090e 0%, transparent 30%); }
.join-guide img { width: 100%; height: 100%; object-fit: contain; object-position: center center; filter: brightness(1.04) saturate(.98); animation: guideFloat 6.5s ease-in-out infinite alternate; }
.join-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.join-card { position: relative; min-height: 225px; padding: 34px 27px; overflow: hidden; border-right: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,118,200,.035), transparent 58%); transition: transform .35s, border-color .35s, background .35s, box-shadow .35s; }
.join-card::after, .role-card::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 1px;
  opacity: 0;
  background: var(--gradient);
  box-shadow: 0 0 17px rgba(255,118,200,.65);
  transform: scaleX(.2);
  transition: opacity .35s, transform .35s;
}
.join-card::before, .menu-card::before, .room-card::before, .experience-card::before, .staff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,.14) 48%, transparent 58%);
  transform: translateX(-70%);
  transition: opacity .45s, transform .8s cubic-bezier(.2,.7,.2,1);
}
.join-card:hover { z-index: 1; transform: translateY(-6px); border-color: rgba(255,118,200,.38); background: linear-gradient(145deg, rgba(255,118,200,.09), rgba(145,200,255,.025) 70%); box-shadow: 0 18px 55px rgba(0,0,0,.28), 0 0 30px rgba(255,118,200,.055); }
.join-card:hover::before, .menu-card:hover::before, .room-card:hover::before, .experience-card:hover::before, .staff-card:hover::before { opacity: 1; transform: translateX(80%); }
.join-card:hover::after, .role-card:hover::after { opacity: 1; transform: scaleX(1); }
.join-card:last-child { border-right: 0; }
.join-card small { display: block; color: var(--pink); font: 500 7px/1 var(--tech); letter-spacing: .16em; }
.join-card strong { display: block; margin: 42px 0 15px; color: #e7e2e8; font-family: var(--round); font-size: 20px; font-weight: 800; }
.join-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }
.join-action { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 36px; }
.join-action p { max-width: 620px; margin: 0; color: var(--muted); }
.join-action .button-primary { flex: 0 0 auto; }

.experience { background: #06070a; border-top: 1px solid var(--line); }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.experience-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); background: #090a0e; transition: transform .45s, border-color .45s, box-shadow .45s; }
.experience-card:hover { transform: translateY(-8px); border-color: rgba(255,118,200,.36); box-shadow: 0 22px 50px rgba(0,0,0,.32), 0 0 28px rgba(255,118,200,.06); }
.experience-card img { width: 100%; aspect-ratio: 16 / 10; display: block; object-fit: cover; object-position: center; filter: brightness(1.02) saturate(.98); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .45s; }
.experience-card:hover img { transform: scale(1.045); filter: brightness(1.08) saturate(1.02); }
.experience-card > div { position: relative; z-index: 2; min-height: 260px; padding: 28px; background: linear-gradient(145deg, rgba(255,118,200,.055), rgba(145,200,255,.025)); }
.experience-card span { color: var(--pink); font: 600 30px/1 var(--tech); opacity: .5; }
.experience-card small { display: block; margin-top: 28px; color: var(--pink); font: 500 7px/1 var(--tech); letter-spacing: .16em; }
.experience-card h3 { margin: 12px 0 14px; font-family: var(--round); font-size: 22px; font-weight: 800; }
.experience-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }

.flow { background: #06070a; border-top: 1px solid var(--line); }
.flow-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flow-card { position: relative; min-height: 365px; padding: 34px 22px 30px; border-right: 1px solid var(--line); transition: background .35s, transform .35s, box-shadow .35s; overflow: hidden; }
.flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 28%, rgba(145,200,255,.09), transparent 32%);
  transition: opacity .35s;
}
.flow-card:last-child { border-right: 0; }
.flow-card:hover { z-index: 1; background: rgba(255,118,200,.055); transform: translateY(-5px); box-shadow: 0 18px 48px rgba(0,0,0,.25); }
.flow-card:hover::before { opacity: 1; }
.flow-card > span { color: var(--pink); font: 500 9px/1 var(--tech); }
.flow-card > i { width: 82px; height: 82px; position: relative; display: grid; place-items: center; margin: 42px auto 34px; color: var(--pink); border: 1px solid rgba(255,118,200,.30); box-shadow: inset 0 0 22px rgba(255,118,200,.035); transform: rotate(45deg); transition: border-color .4s, box-shadow .4s, transform .4s; }
.flow-card > i::before,
.flow-card > i::after { content: ""; position: absolute; pointer-events: none; }
.flow-card > i::before { inset: 9px; border: 1px solid rgba(128,205,255,.08); }
.flow-card > i::after { inset: -1px; background: radial-gradient(circle, rgba(255,118,200,.13), transparent 64%); opacity: 0; filter: blur(8px); transition: opacity .4s; }
.flow-card > i svg { position: relative; z-index: 1; width: 42px; height: 42px; transform: rotate(-45deg); overflow: visible; }
.flow-card > i svg path { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 5px rgba(255,118,200,.45)); }
.flow-card:hover > i { border-color: rgba(255,118,200,.78); box-shadow: 0 0 28px rgba(255,118,200,.18), inset 0 0 18px rgba(255,118,200,.09); transform: rotate(45deg) translateY(-2px); }
.flow-card:hover > i::after { opacity: 1; }
.flow-card small { color: #5b5761; font: 500 7px/1 var(--tech); letter-spacing: .17em; }
.flow-card h3 { margin: 8px 0 10px; font-family: var(--round); font-size: 19px; font-weight: 800; }
.flow-card p { margin: 0; color: #7f7b85; font-size: 12px; line-height: 1.9; }
.flow-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 55px; }
.flow-photo { position: relative; margin: 0; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: #0a0b0f; }
.flow-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,4,7,.88), transparent 42%); pointer-events: none; }
.flow-photo img { width: 100%; height: 100%; display: block; object-fit: contain; background: #08090d; filter: brightness(1.04) saturate(.98); transform: scale(1.015); transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .6s; }
.flow-photo:hover img { transform: scale(1.045); filter: brightness(1.09) saturate(1.02); }
.flow-photo figcaption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 16px; display: flex; align-items: baseline; gap: 13px; }
.flow-photo figcaption span { color: var(--pink); font: 500 9px/1 var(--tech); }
.flow-photo figcaption strong { font-family: var(--round); font-size: 17px; font-weight: 800; }
.flow-photo figcaption small { margin-left: auto; color: #aaa6ae; font: 500 7px/1 var(--tech); letter-spacing: .14em; }

.feature { min-height: 750px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: center; background: #0a0a0f; border-top: 1px solid var(--line); }
.feature-care { grid-template-columns: .85fr 1.15fr; background: #07080b; }
.feature-image { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: #0b0a10; box-shadow: 0 28px 85px rgba(0,0,0,.32); }
.feature-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(145,200,255,.14);
  pointer-events: none;
  opacity: .72;
}
.feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,4,7,.85), transparent 45%), linear-gradient(115deg, transparent 0 40%, rgba(145,200,255,.12) 48%, transparent 58%); pointer-events: none; }
.feature-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: brightness(1.04) saturate(.98); transform: scale(1.012); transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s; }
.feature-image:hover img { transform: scale(1.045); filter: brightness(1.08) saturate(1.02); }
.feature-care .feature-image img { object-position: center center; }
.care-image { display: grid; grid-template-columns: 1fr; gap: 8px; aspect-ratio: auto; overflow: visible; border: 0; background: transparent; }
.care-image::before, .care-image::after { display: none; }
.care-image img { min-width: 0; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: #0b0a10; }
.care-image > span { bottom: 14px; }
.feature-image > span { position: absolute; z-index: 2; left: 20px; bottom: 18px; color: var(--pink); font: 500 7px/1 var(--tech); letter-spacing: .15em; }
.feature-copy p:not(.eyebrow) { margin: 0 0 20px; color: var(--muted); }
.feature-copy h2 { margin-bottom: 30px; }
.feature-note { margin-top: 35px; padding: 18px 0; color: #d7d1d8; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 12px; }
.feature-note span { margin-right: 16px; color: var(--pink); font: 500 8px/1 var(--tech); letter-spacing: .13em; }
.care-caution { margin-top: 30px; color: #65616a; font-size: 11px; }

.care-system-panel {
  width: min(100%, 510px);
  margin: -4px 0 30px;
  color: #c9efff;
  border-top: 1px solid rgba(145, 200, 255, .32);
  border-bottom: 1px solid rgba(145, 200, 255, .16);
  background:
    linear-gradient(90deg, rgba(145, 200, 255, .055), transparent 68%),
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(145, 200, 255, .018) 4px 5px);
  font-family: var(--tech);
  transition: border-color .35s, background .35s, box-shadow .35s;
}

.care-system-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(145, 200, 255, .13);
  font-size: 7px;
  letter-spacing: .16em;
}

.care-system-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.care-system-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 9px var(--blue);
  animation: careStatusPulse 1.1s steps(2, end) infinite;
}

.care-system-head b {
  color: #716d76;
  font-size: 6px;
  font-weight: 500;
}

.care-system-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.care-system-panel dl > div {
  min-width: 0;
  padding: 13px;
  border-right: 1px solid rgba(145, 200, 255, .1);
}

.care-system-panel dl > div:last-child {
  border-right: 0;
}

.care-system-panel dt {
  margin-bottom: 7px;
  color: #666873;
  font-size: 6px;
  line-height: 1;
  letter-spacing: .13em;
}

.care-system-panel dd {
  margin: 0;
  color: #bce8ff;
  font-size: 7px;
  line-height: 1.25;
  letter-spacing: .08em;
  white-space: nowrap;
}

.status-sealed {
  display: none;
  color: #ff98d5;
}

.feature-care.room-locked .care-system-panel {
  border-top-color: rgba(255, 118, 200, .72);
  background:
    linear-gradient(90deg, rgba(255, 118, 200, .08), rgba(145, 200, 255, .025) 72%),
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(145, 200, 255, .018) 4px 5px);
  box-shadow: 0 0 26px rgba(145, 200, 255, .07);
}

.feature-care.room-locked .care-system-head i {
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  animation: none;
}

.feature-care.room-locked .care-system-head b {
  color: #ff98d5;
}

.feature-care.room-locked .status-scanning {
  display: none;
}

.feature-care.room-locked .status-sealed {
  display: inline;
}

@keyframes careStatusPulse {
  50% { opacity: .28; }
}

@media (max-width: 680px) {
  .care-system-panel {
    margin-top: 0;
  }

  .care-system-head {
    padding: 0 10px;
  }

  .care-system-panel dl {
    grid-template-columns: 1fr;
  }

  .care-system-panel dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(145, 200, 255, .09);
  }

  .care-system-panel dl > div:last-child {
    border-bottom: 0;
  }

  .care-system-panel dt {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .care-system-head i { animation: none; }
}

.menu { background: #07080b; border-top: 1px solid var(--line); }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-card { position: relative; min-height: 255px; padding: 30px 24px; overflow: hidden; border-right: 1px solid var(--line); background: radial-gradient(circle at 85% 20%, rgba(145,200,255,.08), transparent 34%), linear-gradient(145deg, rgba(255,118,200,.05), transparent 66%); transition: transform .35s, border-color .35s, background .35s, box-shadow .35s; }
.menu-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 26px;
  width: 46px;
  height: 78px;
  border: 1px solid rgba(145,200,255,.28);
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(to top, rgba(145,200,255,.35) 0 46%, rgba(255,118,200,.18) 46% 62%, transparent 62%);
  box-shadow: 0 0 26px rgba(145,200,255,.14), inset 0 0 16px rgba(255,255,255,.06);
  animation: drinkGlow 4.5s ease-in-out infinite alternate;
}
.menu-card:last-child { border-right: 0; }
.menu-card:hover { z-index: 1; transform: translateY(-6px); border-color: rgba(145,200,255,.33); background: radial-gradient(circle at 85% 20%, rgba(145,200,255,.14), transparent 38%), linear-gradient(145deg, rgba(255,118,200,.09), rgba(145,200,255,.035)); box-shadow: 0 18px 55px rgba(0,0,0,.28), 0 0 30px rgba(145,200,255,.06); }
.menu-card small { color: var(--pink); font: 600 30px/1 var(--tech); opacity: .42; }
.menu-card h3 { margin: 58px 0 14px; font-family: var(--round); font-size: 20px; font-weight: 800; }
.menu-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

.rooms { background: #090a0e; border-top: 1px solid var(--line); }
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.room-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); background: #07080b; transition: transform .45s, border-color .45s, box-shadow .45s; }
.room-card:hover { transform: translateY(-8px); border-color: rgba(255,118,200,.34); box-shadow: 0 22px 55px rgba(0,0,0,.34), 0 0 26px rgba(145,200,255,.055); }
.room-card img { width: 100%; aspect-ratio: 4 / 3; display: block; object-fit: cover; object-position: center; filter: brightness(1.02) saturate(.98); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .45s; }
.room-card:hover img { transform: scale(1.045); filter: brightness(1.08) saturate(1.02); }
.room-card div { position: relative; z-index: 2; min-height: 225px; padding: 24px; background: linear-gradient(180deg, rgba(255,118,200,.04), rgba(145,200,255,.02)); }
.room-card small { color: var(--pink); font: 500 7px/1 var(--tech); letter-spacing: .16em; }
.room-card h3 { margin: 13px 0 14px; font-family: var(--round); font-size: 21px; font-weight: 800; }
.room-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

.staff { background: #090a0e; border-top: 1px solid var(--line); }
.staff-intro { max-width: 760px; margin: -20px 0 60px auto; color: var(--muted); }
.staff-gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 55px; }
.staff-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); background: #08090d; transition: transform .45s, border-color .45s, box-shadow .45s; }
.staff-card:hover { transform: translateY(-8px); border-color: rgba(255,118,200,.38); box-shadow: 0 18px 45px rgba(0,0,0,.3), 0 0 25px rgba(255,118,200,.07); }
.staff-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,4,7,.88), transparent 38%); pointer-events: none; }
.staff-card img { width: 100%; aspect-ratio: .66; display: block; object-fit: cover; object-position: center top; filter: saturate(.98) brightness(1.08); transition: transform .45s, filter .45s; }
.staff-card:hover img { transform: scale(1.045); filter: saturate(1.02) brightness(1.02); }
.staff-card > div { position: absolute; z-index: 2; left: 17px; right: 17px; bottom: 15px; }
.staff-card small { color: var(--pink); font: 500 6px/1 var(--tech); letter-spacing: .14em; }
.staff-card h3 { margin: 7px 0 0; font-family: var(--round); font-size: 16px; font-weight: 800; }
.staff-caption { margin: -35px 0 45px; color: #67636c; font-size: 10px; text-align: right; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.role-card { position: relative; min-height: 270px; padding: 28px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,118,200,.035), transparent 55%); transition: transform .35s, border-color .35s, background .35s; }
.role-card:hover { transform: translateY(-6px); border-color: rgba(145,200,255,.32); background: linear-gradient(145deg, rgba(255,118,200,.07), rgba(145,200,255,.035)); }
.role-card > span { float: right; color: #37343c; font: 600 34px/1 var(--tech); }
.role-card small { display: block; margin-top: 55px; color: var(--pink); font: 500 7px/1 var(--tech); letter-spacing: .16em; }
.role-card h3 { margin: 12px 0 16px; font-family: var(--round); font-size: 19px; font-weight: 800; }
.role-card p { margin: 0; color: #7d7982; font-size: 12px; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; background: #06070a; border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); transition: background .3s, padding .3s; }
.faq-list details:hover, .faq-list details[open] { background: linear-gradient(90deg, rgba(255,118,200,.045), transparent 70%); }
.faq-list summary { position: relative; padding: 24px 45px 24px 4px; cursor: pointer; list-style: none; font-family: var(--round); font-size: 14px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 7px; color: var(--pink); font-size: 20px; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 4px 24px; color: var(--muted); font-size: 13px; }

.coming { min-height: 650px; display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: center; overflow: hidden; background: radial-gradient(circle at 25% 45%, rgba(255,118,200,.11), transparent 30%), #090a0f; border-top: 1px solid rgba(255,118,200,.2); }
.coming-bg { position: absolute; left: -3%; top: 50%; color: transparent; -webkit-text-stroke: 1px rgba(255,118,200,.055); font: 600 12vw/1 var(--tech); white-space: nowrap; transform: translateY(-50%); }
.coming-copy, .coming-actions { position: relative; z-index: 1; }
.coming-copy h2 { margin-bottom: 25px; }
.coming-copy h2 em { color: #dff8ff; text-shadow: 0 0 22px rgba(126,211,255,.18); }
.coming-copy > p:not(.eyebrow) { color: var(--muted); }
.coming-actions { border-top: 1px solid var(--line); }
.social-link { display: flex; align-items: center; justify-content: space-between; padding: 23px 6px; border-bottom: 1px solid var(--line); transition: padding .2s, color .2s; }
.social-link:hover { padding-left: 14px; color: var(--pink); }
.social-link small { display: block; margin-bottom: 5px; color: #5e5b63; font: 500 7px/1 var(--tech); letter-spacing: .15em; }
.social-link b { color: var(--pink); font-size: 19px; font-weight: 400; }
.social-link.primary { position: relative; overflow: hidden; padding: 25px 21px; color: #17020f; background: var(--gradient); border: 0; }
.social-link.primary::after { content: ""; position: absolute; inset: -60% auto -60% -30%; width: 18%; background: rgba(255,255,255,.5); filter: blur(5px); transform: rotate(18deg); animation: buttonSweep 5.8s ease-in-out infinite; }
.social-link.primary:hover { padding-left: 28px; color: #17020f; }
.social-link.primary small, .social-link.primary b { color: #6d174c; }

footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 40px; padding: 52px 5vw; background: #030406; border-top: 1px solid #15141a; }
footer > p { margin: 0; color: #514e57; font-size: 10px; line-height: 1.8; }
footer > div { display: flex; justify-content: flex-end; gap: 30px; color: #5f5b64; font: 500 8px/1 var(--tech); letter-spacing: .1em; }
footer > div a { color: #9a969e; }

.toast { position: fixed; z-index: 40; left: 50%; bottom: 24px; padding: 12px 19px; color: #17020f; background: var(--gradient); font-size: 12px; font-weight: 700; transform: translate(-50%, 120px); transition: transform .3s; }
.toast.show { transform: translate(-50%, 0); }
.floating-reserve {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  color: #07141d;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #bfeeff 56%, #ffb9e2);
  box-shadow: 0 16px 44px rgba(0,0,0,.32), 0 0 28px rgba(145,200,255,.2);
  font: 800 12px/1 var(--round);
  transform: translateY(0);
  transition: transform .25s, box-shadow .25s;
}
.floating-reserve:hover { transform: translateY(-4px); box-shadow: 0 20px 54px rgba(0,0,0,.38), 0 0 34px rgba(255,118,200,.18); }
.floating-reserve span { color: #7c1c57; }
.reveal { opacity: 0; filter: blur(5px); transform: translateY(34px) scale(.992); transition: opacity 1s ease, filter 1s ease, transform 1s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.visible { filter: blur(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

@keyframes blink { 50% { opacity: .25; } }
@keyframes heroBreath { from { transform: scale(1.045) translate3d(0, var(--photo-shift, 0px), 0); } to { transform: scale(1.085) translate3d(-1.2%, calc(var(--photo-shift, 0px) - 5px), 0); } }
@keyframes gridDrift { from { background-position: 0 0, 0 0; } to { background-position: 0 34px, 34px 0; } }
@keyframes ambientPink { to { transform: translate3d(12vw, 7vh, 0) scale(1.15); } }
@keyframes ambientBlue { to { transform: translate3d(-10vw, -8vh, 0) scale(1.2); } }
@keyframes buttonSweep { 0%, 68% { transform: rotate(18deg) translateX(-260%); } 88%, 100% { transform: rotate(18deg) translateX(900%); } }
@keyframes guideFloat { from { transform: translate3d(0, 2px, 0) scale(1.01); } to { transform: translate3d(0, -9px, 0) scale(1.025); } }
@keyframes titleGlow { from { text-shadow: 0 0 22px rgba(126,211,255,.25), 0 0 40px rgba(255,255,255,.08); } to { text-shadow: 0 0 28px rgba(126,211,255,.42), 0 0 56px rgba(255,118,200,.14); } }
@keyframes hookPulse { from { box-shadow: 0 0 26px rgba(126,211,255,.3), 0 0 46px rgba(255,255,255,.08), inset 0 0 18px rgba(255,255,255,.58); } to { box-shadow: 0 0 38px rgba(126,211,255,.46), 0 0 62px rgba(255,118,200,.12), inset 0 0 22px rgba(255,255,255,.7); } }
@keyframes lightSweep { 0%, 38% { transform: translateX(-8%); opacity: .22; } 58% { opacity: .55; } 100% { transform: translateX(8%); opacity: .28; } }
@keyframes scanFade { 0%, 100% { opacity: .08; } 50% { opacity: .18; } }
@keyframes scanLine { 0%, 38% { transform: translateY(-28vh); opacity: 0; } 48% { opacity: .7; } 62%, 100% { transform: translateY(52vh); opacity: 0; } }
@keyframes orbitPulse { from { transform: rotate(-5deg) scale(.98); opacity: .55; } to { transform: rotate(5deg) scale(1.04); opacity: .9; } }
@keyframes particleFloat { from { transform: translate3d(0, 0, 0); opacity: .25; } to { transform: translate3d(20px, -34px, 0); opacity: .85; } }
@keyframes floatCard { from { transform: translate3d(0, 8px, 0) rotate(-1deg); } to { transform: translate3d(0, -12px, 0) rotate(1deg); } }
@keyframes drinkGlow { from { filter: hue-rotate(0deg); opacity: .72; transform: translateY(0); } to { filter: hue-rotate(38deg); opacity: 1; transform: translateY(-4px); } }

@media (max-width: 1000px) {
  .global-nav { display: none; }
  .menu-button { display: block; order: 3; width: 38px; height: 38px; margin-left: 14px; padding: 0; border: 0; background: transparent; }
  .menu-button span { display: block; width: 21px; height: 1px; margin: 6px auto; background: #fff; transition: transform .2s; }
  .menu-button.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .global-nav.open { position: fixed; top: 68px; left: 0; right: 0; display: flex; flex-direction: column; gap: 0; margin: 0; padding: 18px 8vw 28px; background: rgba(6,7,10,.97); border-bottom: 1px solid var(--line); }
  .global-nav.open a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .site-header .brand { margin-right: auto; }
  .hero-copy { width: 61%; }
  .hero-photo { width: 55%; right: -18%; opacity: .74; }
  .hero-float-card { display: none; }
  .about { grid-template-columns: 1fr 1fr; }
  .join .section-heading { width: 63%; }
  .join-guide { right: -3vw; width: 48vw; }
  .flow-grid, .role-grid, .join-grid, .menu-grid, .rooms-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .join-card:nth-child(2) { border-right: 0; }
  .join-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .menu-card:nth-child(2) { border-right: 0; }
  .menu-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .flow-photos { grid-template-columns: 1fr 1fr; }
  .staff-gallery { grid-template-columns: repeat(3, 1fr); }
  .flow-card:nth-child(even) { border-right: 0; }
  .flow-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature, .feature-care { grid-template-columns: 1fr; }
  .feature-care .feature-copy { order: 2; }
  .faq { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 14px; }
  .site-header { height: 65px; padding: 0 5vw; }
  .site-header.scrolled { height: 62px; }
  .brand { font-size: 11px; }
  .brand-logo { height: 32px; max-width: 148px; }
  .brand-mark { width: 27px; height: 27px; }
  .header-cta { display: none; }
  .menu-button { margin-left: auto; }
  .global-nav.open { top: 62px; }
  .hero { min-height: 820px; height: 100svh; padding: 275px 7vw 65px; align-items: flex-start; }
  .hero-photo { top: 0; right: -8%; width: 96%; height: 52%; opacity: .52; mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%); }
  .hero-photo::after { background: linear-gradient(to bottom, transparent 25%, #050609 100%); }
  .hero-photo img { object-position: 62% 14%; }
  .hero-copy { width: 100%; }
  .hero h1 { margin-bottom: 28px; }
  .hero h1 strong { width: 100%; font-size: clamp(28px, 8vw, 38px); letter-spacing: -.08em; }
  .mobile-break { display: block; }
  .hero-hook { margin-bottom: 17px; padding: 12px 17px; font-size: clamp(18px, 5.2vw, 25px); }
  .hero-lead { font-size: 25px; }
  .hero-description { line-height: 1.85; overflow-wrap: anywhere; }
  .hero-description { color: #d0ccd3; text-shadow: 0 1px 12px #050609; }
  .hero-description br { display: block; }
  .hero-sub { max-width: 95%; color: #99959e; text-shadow: 0 1px 12px #050609; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 29px; }
  .button-primary { min-width: 230px; }
  .hero-status { display: none; }
  .hero-bottom { left: 7vw; bottom: 20px; }
  .hero-bottom b { display: none; }
  .hero-orbit { right: -28vw; top: 5%; width: 95vw; opacity: .42; }
  .hero-particles i:nth-child(n+4) { display: none; }
  .floating-reserve { right: 14px; bottom: 14px; padding: 12px 15px; font-size: 11px; }
  .section { padding: 95px 7vw; }
  .section-number { display: none; }
  .section h2 { font-size: 34px; }
  .section-heading { display: block; margin-bottom: 45px; }
  .section-heading > p { margin-top: 22px; }
  .about { display: block; min-height: 0; }
  .about-heading { margin-bottom: 37px; }
  .about-copy .large-copy { font-size: 16px; }
  .about-logo { width: 100%; margin-top: 38px; aspect-ratio: 16 / 9; }
  .join .section-heading { width: 100%; min-height: 0; }
  .join .section-heading > p { display: block; }
  .join-guide { position: relative; top: auto; right: auto; width: calc(100% + 8vw); height: auto; aspect-ratio: 1 / .84; margin: -10px -4vw 30px; }
  .join-guide::after { background: linear-gradient(to top, #0a090e 0%, transparent 34%); }
  .join-guide img { object-position: center top; }
  .flow-grid, .role-grid, .join-grid, .menu-grid, .rooms-grid { grid-template-columns: 1fr; }
  .join-card { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .join-card:last-child { border-bottom: 0; }
  .join-card strong { margin-top: 30px; }
  .experience-card > div { min-height: 230px; padding: 24px; }
  .menu-card { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .menu-card:last-child { border-bottom: 0; }
  .menu-card h3 { margin-top: 36px; }
  .room-card div { min-height: 190px; }
  .join-action { display: block; }
  .join-action .button-primary { margin-top: 25px; }
  .flow-photos { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .flow-card { min-height: 310px; border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-card:last-child { grid-column: auto; border-bottom: 0; }
  .feature { gap: 55px; }
  .feature-image { aspect-ratio: 16 / 9; }
  .care-image { aspect-ratio: auto; }
  .feature-lobby .feature-image img { object-position: center center; }
  .feature-care .feature-image img { object-position: center center; }
  .staff-intro { margin: -5px 0 45px; }
  .staff-gallery { display: flex; gap: 12px; margin-right: -7vw; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .staff-gallery::-webkit-scrollbar { display: none; }
  .staff-card { flex: 0 0 70vw; scroll-snap-align: start; }
  .staff-card img { aspect-ratio: .72; }
  .staff-caption { margin-top: -35px; text-align: left; }
  .role-card { min-height: 220px; }
  .coming { grid-template-columns: 1fr; gap: 45px; min-height: 0; }
  footer { grid-template-columns: 1fr; gap: 26px; }
  footer > div { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v15: brand-first VRC CLINIC layout */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.brand-logo-wide {
  width: 205px;
  max-width: 23vw;
  height: 42px;
  object-fit: contain;
}

.hero-brand {
  min-height: 900px;
  height: 100vh;
  justify-content: center;
  text-align: center;
}

.hero-brand .hero-orbit {
  top: 8%;
  right: 50%;
  width: min(58vw, 690px);
  transform: translateX(50%);
}

.hero-brand-stage {
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 50%;
  width: min(92vw, 1120px);
  height: 500px;
  display: grid;
  justify-items: center;
  align-content: start;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-lockup {
  position: relative;
  z-index: 2;
  width: min(76vw, 870px);
  filter: drop-shadow(0 0 32px rgba(145, 200, 255, .12));
  animation: logoFloat 7s ease-in-out infinite alternate;
}

.hero-silhouettes {
  position: absolute;
  z-index: 1;
  top: 55%;
  width: min(88vw, 1050px);
  opacity: .21;
  filter: blur(.15px) drop-shadow(0 0 24px rgba(145, 200, 255, .14));
  mask-image: linear-gradient(to bottom, black 0 70%, transparent 100%);
  animation: silhouettesBreathe 8s ease-in-out infinite alternate;
}

.hero-brand-copy {
  z-index: 4;
  width: min(92vw, 940px);
  max-width: none;
  margin-top: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand-copy .hero-description {
  max-width: 680px;
  font-size: 17px;
}

.hero-brand-copy .hero-badges,
.hero-brand-copy .hero-actions {
  justify-content: center;
}

.hero-brand-copy .hero-badges span:nth-child(2) {
  color: #06141d;
  border-color: rgba(255, 255, 255, .72);
  background: linear-gradient(135deg, #ffffff, #bfeeff);
  box-shadow: 0 0 20px rgba(126, 211, 255, .2);
}

.hero-brand-copy .hero-badges span:nth-child(3) {
  color: #ebfaff;
  border-color: rgba(134, 213, 255, .38);
  background: rgba(134, 213, 255, .075);
  box-shadow: inset 0 0 18px rgba(134, 213, 255, .045);
}

.about-logo img,
.feature-lobby .feature-image img {
  object-fit: cover;
  filter: brightness(1.16) saturate(1.04);
}

.feature-copy h2 {
  font-size: clamp(36px, 3.35vw, 55px);
}

.feature-copy h2 em {
  white-space: nowrap;
}

.prescription-note {
  position: relative;
  margin-top: 34px;
  padding: 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(145, 200, 255, .25);
  background:
    radial-gradient(circle at 90% 20%, rgba(145, 200, 255, .12), transparent 28%),
    linear-gradient(135deg, rgba(255, 118, 200, .07), rgba(145, 200, 255, .035));
  box-shadow: inset 0 0 30px rgba(145, 200, 255, .025);
}

.prescription-note::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 22px;
  width: 34px;
  height: 56px;
  border: 1px solid rgba(145, 200, 255, .42);
  border-radius: 13px 13px 9px 9px;
  background: linear-gradient(to top, rgba(145, 200, 255, .42) 0 48%, rgba(255, 118, 200, .25) 48% 67%, transparent 67%);
  box-shadow: 0 0 25px rgba(145, 200, 255, .16);
  animation: drinkGlow 4.5s ease-in-out infinite alternate;
}

.prescription-note small {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font: 500 7px/1 var(--tech);
  letter-spacing: .16em;
}

.prescription-note strong {
  display: block;
  max-width: calc(100% - 58px);
  margin-bottom: 10px;
  color: #f4faff;
  font: 800 20px/1.5 var(--round);
}

.prescription-note p {
  max-width: calc(100% - 50px);
  margin: 0 !important;
  font-size: 12px;
}

.world-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 75%, rgba(69, 137, 255, .1), transparent 34%),
    #07080c;
  border-top: 1px solid var(--line);
}

.world-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(145, 200, 255, .18);
  background: #05060a;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.world-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(6, 7, 10, .08), transparent 60%, rgba(6, 7, 10, .5)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(145, 200, 255, .06), transparent 24%);
}

.world-visual img {
  width: 100%;
  display: block;
  filter: brightness(1.1) saturate(1.04) contrast(1.02);
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1), filter .5s;
}

.world-visual:hover img {
  transform: scale(1.018);
  filter: brightness(1.14) saturate(1.08) contrast(1.03);
}

.world-tag {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  color: #dff8ff;
  border: 1px solid rgba(145, 200, 255, .5);
  background: rgba(4, 10, 17, .7);
  box-shadow: 0 0 22px rgba(145, 200, 255, .13);
  backdrop-filter: blur(9px);
  font: 500 8px/1 var(--tech);
  letter-spacing: .15em;
}

.world-tag::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--blue), transparent);
}

.tag-recognition .world-tag {
  opacity: 0;
  transform: translateY(16px) scale(.55);
}

.tag-recognition .world-tag::before {
  transform: scaleY(0);
  transform-origin: top;
}

.tag-recognition .world-tag::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 24px);
  width: 11px;
  height: 11px;
  border: 1px solid #c9f1ff;
  border-radius: 50%;
  opacity: 0;
  box-shadow:
    0 0 0 2px rgba(255, 118, 200, .25),
    0 0 13px rgba(145, 200, 255, .92);
  transform: translate(-50%, -50%) scale(.2);
}

.tag-recognition.visible .world-tag {
  animation: worldTagDeploy 1.05s cubic-bezier(.16, 1, .3, 1) var(--tag-delay) both;
}

.tag-recognition.visible .world-tag::before {
  animation: worldTagLine .65s ease-out calc(var(--tag-delay) + .38s) both;
}

.tag-recognition.visible .world-tag::after {
  animation: worldTargetPulse 1.15s ease-out var(--tag-delay) both;
}

.tag-recognition .world-tag:nth-child(1) { --tag-delay: .3s; }
.tag-recognition .world-tag:nth-child(2) { --tag-delay: 1.12s; }
.tag-recognition .world-tag:nth-child(3) { --tag-delay: 1.94s; }

@keyframes worldTagDeploy {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(.55);
    filter: brightness(2.4);
  }
  24% {
    opacity: 1;
  }
  52% {
    opacity: 1;
    transform: translateY(0) scale(1.18);
    border-color: rgba(198, 239, 255, .95);
    box-shadow:
      0 0 0 2px rgba(255, 118, 200, .36),
      0 0 38px rgba(145, 200, 255, .68);
  }
  76% {
    transform: translateY(0) scale(.96);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes worldTagLine {
  from { opacity: 0; transform: scaleY(0); }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes worldTargetPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.2);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(.65);
  }
  52% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2.8);
    border-color: #ff8bd0;
    box-shadow:
      0 0 0 5px rgba(145, 200, 255, .12),
      0 0 22px rgba(255, 118, 200, .78);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tag-recognition .world-tag {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .tag-recognition .world-tag::before {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .tag-recognition .world-tag::after {
    display: none;
  }
}

.tag-bar { left: 42%; top: 48%; }
.tag-stage { right: 15%; top: 33%; }
.tag-rooms { left: 12%; top: 27%; }

.feature-care .care-image {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #08090d;
}

.feature-care .care-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border: 0;
  filter: brightness(1.08) saturate(.98);
}

.care-lock {
  isolation: isolate;
}

.care-lock img {
  transition:
    transform 1.1s cubic-bezier(.2, .7, .2, 1),
    filter .6s ease;
}

.feature-care .care-lock:not(.is-locked) img {
  filter: brightness(.78) saturate(.72) contrast(1.13);
}

.feature-care .care-lock.is-locked img {
  transform: scale(1.025);
  filter: brightness(1.12) saturate(1.02) contrast(1.02);
}

.care-lock > span {
  z-index: 6;
}

.care-scan-ui,
.care-scan-ui > i {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.care-scan-ui {
  z-index: 3;
  overflow: hidden;
}

.care-scan-noise {
  z-index: 1;
  opacity: .18;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' seed='7' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  animation: careSignalNoise .22s steps(2, end) infinite;
  transition: opacity .45s ease;
}

.care-scan-lines {
  z-index: 2;
  opacity: .25;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(145, 200, 255, .11) 0,
      rgba(145, 200, 255, .11) 1px,
      transparent 1px,
      transparent 4px
    );
}

.care-scan-sweep {
  z-index: 3;
  top: -20%;
  bottom: auto;
  height: 18%;
  opacity: 1;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(145, 200, 255, .08) 30%,
    rgba(201, 241, 255, .9) 52%,
    rgba(255, 118, 200, .38) 56%,
    transparent
  );
  filter: drop-shadow(0 0 15px rgba(145, 200, 255, .8));
  animation: careRoomSweep 2.6s linear infinite;
}

.care-scan-frame {
  z-index: 4;
  inset: 18px;
  border: 1px solid rgba(145, 200, 255, .22);
  box-shadow: inset 0 0 24px rgba(145, 200, 255, .06);
  transition: border-color .35s, box-shadow .35s;
}

.care-lock-status {
  position: absolute;
  z-index: 5;
  top: 34px;
  left: 34px;
  min-width: 225px;
  padding: 12px 15px 11px;
  color: #a4ddff;
  border-left: 2px solid rgba(145, 200, 255, .72);
  background: linear-gradient(90deg, rgba(3, 10, 18, .88), rgba(3, 10, 18, .08));
  font: 500 8px/1.35 var(--tech);
  letter-spacing: .14em;
  transition: color .35s, border-color .35s, filter .35s;
}

.care-lock-status span,
.care-lock-status strong {
  display: block;
}

.care-status-locked,
.care-lock-status strong {
  position: absolute;
  opacity: 0;
  transform: translateY(5px);
}

.care-lock-status strong {
  position: absolute;
  margin-top: 7px;
  color: #ff91d2;
  font-size: 7px;
}

.care-lock.is-locked .care-scan-noise {
  opacity: .045;
  animation-play-state: paused;
}

.care-lock.is-locked .care-scan-sweep {
  animation-play-state: paused;
}

.care-lock.is-locked .care-scan-frame {
  border-color: rgba(201, 241, 255, .72);
  box-shadow:
    inset 0 0 30px rgba(145, 200, 255, .08),
    0 0 22px rgba(145, 200, 255, .12);
}

.care-lock.is-locked .care-lock-status {
  color: #e3f8ff;
  border-color: var(--pink);
  filter: drop-shadow(0 0 10px rgba(145, 200, 255, .28));
}

.care-lock.is-locked .care-status-idle {
  position: absolute;
  opacity: 0;
}

.care-lock.is-locked .care-status-locked,
.care-lock.is-locked .care-lock-status strong {
  position: relative;
  opacity: 1;
  transform: none;
  transition: opacity .28s ease, transform .35s ease;
}

@keyframes careSignalNoise {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1.04); }
  33% { transform: translate3d(1%, .5%, 0) scale(1.05); }
  66% { transform: translate3d(-.5%, 1.5%, 0) scale(1.04); }
  100% { transform: translate3d(1.5%, -1%, 0) scale(1.05); }
}

@keyframes careRoomSweep {
  0% { top: -20%; }
  100% { top: 105%; }
}

@media (max-width: 680px) {
  .care-scan-frame { inset: 10px; }
  .care-lock-status {
    top: 20px;
    left: 20px;
    min-width: 190px;
    padding: 9px 11px;
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .care-scan-noise { animation: none; }
  .care-scan-sweep { animation: none; opacity: 0; }
}

.join .section-heading {
  width: 100%;
  min-height: 0;
}

.join-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.join-grid-three .join-card:last-child {
  border-right: 0;
}

.join-social {
  width: min(100%, 760px);
  margin: 60px auto 0;
}

/* v16: cyber clinic typography and custom patient-flow HUD */
.section h2,
.feature-copy h2,
.flow-card h3,
.join-card strong,
.staff-card h3,
.faq-list summary {
  letter-spacing: .035em;
}

.section h2,
.feature-copy h2 {
  font-weight: 900;
}

.hero-hook {
  border-radius: 2px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  letter-spacing: .075em;
}

.hero-badges span,
.floating-reserve {
  border-radius: 2px;
}

.button-primary,
.header-cta,
.floating-reserve {
  letter-spacing: .07em;
}

.flow-card {
  min-height: 390px;
  padding: 30px 24px 32px;
  background:
    linear-gradient(180deg, rgba(145, 200, 255, .018), transparent 35%),
    #06070a;
}

.flow-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  opacity: 0;
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(145, 200, 255, .35);
  transform: scaleX(.25);
  transition: opacity .35s, transform .45s;
}

.flow-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.flow-card:hover {
  background:
    radial-gradient(circle at 50% 30%, rgba(145, 200, 255, .08), transparent 31%),
    linear-gradient(180deg, rgba(255, 118, 200, .035), transparent 70%),
    #08090d;
}

.flow-card > span {
  color: #ff79cb;
  letter-spacing: .18em;
}

.flow-card > i {
  width: 104px;
  height: 92px;
  margin: 39px auto 37px;
  color: #ff75c7;
  border: 1px solid transparent;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  background:
    linear-gradient(#080a10, #080a10) padding-box,
    linear-gradient(120deg, rgba(255, 118, 200, .48), rgba(145, 200, 255, .36)) border-box;
  box-shadow: inset 0 0 30px rgba(145, 200, 255, .035), 0 0 22px rgba(255, 118, 200, .05);
  transform: none;
}

.flow-card > i::before {
  inset: 8px;
  border: 1px solid rgba(145, 200, 255, .14);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.flow-card > i::after {
  inset: auto 11px;
  top: 18%;
  height: 1px;
  opacity: .42;
  filter: none;
  background: linear-gradient(90deg, transparent, #91c8ff, #ff76c8, transparent);
  box-shadow: 0 0 9px rgba(145, 200, 255, .55);
  animation: iconScan 3.7s ease-in-out infinite;
}

.flow-card > i svg {
  width: 54px;
  height: 54px;
  transform: none;
}

.flow-card > i svg path {
  stroke-width: 1.8;
  filter: drop-shadow(0 0 5px rgba(255, 118, 200, .4));
}

.flow-card > i svg .accent-path {
  stroke: #91c8ff;
  filter: drop-shadow(0 0 6px rgba(145, 200, 255, .58));
}

.flow-card:hover > i {
  border-color: transparent;
  box-shadow: inset 0 0 30px rgba(145, 200, 255, .07), 0 0 28px rgba(145, 200, 255, .13);
  transform: translateY(-4px);
}

.flow-card small {
  color: #777986;
  font-size: 7px;
  letter-spacing: .2em;
}

.flow-card h3 {
  margin: 11px 0 12px;
  color: #f2f8fc;
  font-size: 20px;
  font-weight: 900;
}

@keyframes iconScan {
  0%, 12% { top: 18%; opacity: 0; }
  24% { opacity: .55; }
  72% { opacity: .45; }
  88%, 100% { top: 82%; opacity: 0; }
}

@keyframes logoFloat {
  from { transform: translate3d(0, 2px, 0) scale(.995); }
  to { transform: translate3d(0, -7px, 0) scale(1.012); }
}

@keyframes silhouettesBreathe {
  from { opacity: .18; transform: translateY(4px) scale(.99); }
  to { opacity: .3; transform: translateY(-6px) scale(1.015); }
}

@media (max-width: 1000px) {
  .hero-brand-copy { margin-top: 380px; }
  .join-grid-three { grid-template-columns: 1fr 1fr; }
  .join-grid-three .join-card:nth-child(2) { border-right: 0; }
  .join-grid-three .join-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .brand-logo-wide {
    width: 155px;
    max-width: 62vw;
    height: 34px;
  }

  .hero-brand {
    min-height: 880px;
    height: 100svh;
    padding: 340px 7vw 65px;
    align-items: flex-start;
  }

  .hero-brand-stage {
    top: 70px;
    width: 100%;
    height: 320px;
  }

  .hero-lockup { width: 96vw; }

  .hero-silhouettes {
    top: 36%;
    width: 135vw;
    opacity: .24;
  }

  .hero-brand-copy {
    width: 100%;
    margin-top: 0;
  }

  .hero-brand-copy .hero-hook {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-brand-copy .hero-description {
    font-size: 14px;
    text-align: left;
  }

  .hero-brand-copy .hero-actions {
    align-items: stretch;
    width: 100%;
  }

  .hero-brand-copy .button-primary { width: 100%; }
  .hero-brand-copy .text-link { align-self: center; }

  .prescription-note { padding: 22px 20px; }
  .prescription-note strong { font-size: 17px; }
  .world-showcase .section-heading > p { display: none; }
  .world-visual { margin-left: -7vw; margin-right: -7vw; border-left: 0; border-right: 0; }
  .world-visual img { min-height: 360px; object-fit: cover; object-position: center; }
  .world-tag { padding: 7px 8px; font-size: 7px; }
  .tag-bar { left: 36%; top: 52%; }
  .tag-stage { right: 8%; top: 30%; }
  .tag-rooms { left: 5%; top: 22%; }

  .join-grid-three { grid-template-columns: 1fr; }
  .join-grid-three .join-card,
  .join-grid-three .join-card:last-child {
    grid-column: auto;
    border-right: 0;
  }
}

/* v17: luxury serif x clinical HUD typography */
.section h2,
.feature-copy h2,
.faq-heading h2,
.coming-copy h2 {
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .085em;
  text-wrap: balance;
  text-shadow: 0 0 24px rgba(255, 255, 255, .035);
}

.section h2 span,
.section h2 em,
.feature-copy h2 em,
.coming-copy h2 em {
  position: relative;
  font-family: var(--round);
  font-weight: 700;
  letter-spacing: .035em;
  text-shadow:
    1px 0 0 rgba(145, 200, 255, .3),
    -1px 0 0 rgba(255, 118, 200, .22),
    0 0 20px rgba(255, 118, 200, .1);
}

.section-heading h2::after,
.about-heading h2::after,
.feature-copy h2::after,
.faq-heading h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin-top: 22px;
  background:
    linear-gradient(90deg, var(--pink) 0 38%, transparent 38% 46%, var(--blue) 46% 100%);
  box-shadow: 0 0 12px rgba(145, 200, 255, .24);
}

.hero-hook {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .085em;
}

/* v40: terminal-style hero message */
.hero-terminal-label {
  display: block;
  margin: 0 0 13px;
  color: rgba(145, 200, 255, .78);
  font: 500 8px/1 var(--tech);
  letter-spacing: .2em;
  text-shadow: 0 0 9px rgba(112, 202, 255, .48);
}

.hero-hook.hero-typewriter {
  position: relative;
  display: block;
  width: fit-content;
  min-height: 2.7em;
  margin: 0 0 22px;
  padding: 0 18px 7px 0;
  color: #eefaff;
  border: 0;
  border-radius: 0;
  clip-path: none;
  background: none;
  box-shadow: none;
  font: 500 clamp(25px, 2.6vw, 40px)/1.36 var(--code-jp);
  letter-spacing: .075em;
  text-align: left;
  text-shadow:
    0 0 12px rgba(145, 200, 255, .18),
    0 0 30px rgba(255, 255, 255, .05);
  animation: none;
}

.hero-hook.hero-typewriter::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), rgba(145, 200, 255, .75) 45%, transparent 92%);
  box-shadow: 0 0 8px rgba(145, 200, 255, .28);
  opacity: .72;
}

.hero-hook.hero-typewriter span {
  display: block;
  min-height: 1.36em;
  white-space: nowrap;
}

.hero-hook.hero-typewriter .type-accent {
  color: transparent;
  background: linear-gradient(100deg, #ff7dca 4%, #f8c5e7 48%, #9dd5ff 96%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
  text-shadow: none;
  filter: drop-shadow(0 0 8px rgba(255, 118, 200, .2));
}

.hero-hook.hero-typewriter i {
  display: none;
  position: relative;
  width: 1px;
  height: 1.08em;
  margin: 0 0 -.12em .12em;
  background: #bdeaff;
  box-shadow: 0 0 8px rgba(112, 202, 255, .85);
  animation: terminalCaret .72s steps(1, end) infinite;
}

.hero-hook.hero-typewriter.is-typing i {
  display: inline-block;
}

.hero-hook.hero-typewriter.is-complete i {
  opacity: 0;
  transition: opacity .4s ease 1.2s;
}

@keyframes terminalCaret {
  50% { opacity: 0; }
}

/* v42: horizontal scanner reveal for the concept headline */
.scan-heading {
  position: relative;
  overflow: hidden;
}

.scan-heading .eyebrow {
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity .32s ease .08s,
    transform .48s cubic-bezier(.2, .8, .2, 1) .08s;
}

.scan-heading h2 {
  clip-path: inset(0 100% 0 0);
  filter: blur(5px);
  transition:
    clip-path 1.68s cubic-bezier(.18, .78, .2, 1) .22s,
    filter 1.42s ease .28s;
}

.scan-heading::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: -5%;
  top: 45px;
  bottom: 12px;
  width: 2px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to bottom, transparent, #ff8bd0 18%, #dff7ff 52%, #91c8ff 82%, transparent);
  box-shadow:
    0 0 8px rgba(255, 118, 200, .72),
    0 0 18px rgba(145, 200, 255, .62);
}

.scan-heading.visible .eyebrow {
  opacity: 1;
  transform: none;
}

.scan-heading.visible h2 {
  clip-path: inset(0);
  filter: blur(0);
}

.scan-heading.visible::after {
  animation: conceptScanBeam 1.8s cubic-bezier(.18, .78, .2, 1) .16s both;
}

@keyframes conceptScanBeam {
  0% { left: -5%; opacity: 0; }
  10% { opacity: .95; }
  82% { opacity: .95; }
  100% { left: 101%; opacity: 0; }
}

@media (max-width: 680px) {
  .hero-terminal-label {
    margin-bottom: 10px;
    font-size: 7px;
  }

  .hero-hook.hero-typewriter {
    width: 100%;
    min-height: 3em;
    margin-bottom: 18px;
    padding-right: 0;
    font-size: clamp(20px, 6vw, 25px);
    line-height: 1.48;
    letter-spacing: .035em;
  }

  .hero-hook.hero-typewriter span {
    min-height: 1.48em;
  }

  .scan-heading::after {
    top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scan-heading .eyebrow {
    opacity: 1;
    transform: none;
  }

  .scan-heading h2 {
    clip-path: none;
    filter: none;
  }

  .scan-heading::after {
    display: none;
  }
}

.flow-card h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .105em;
}

.flow-card h3::before,
.flow-card h3::after {
  color: var(--blue);
  font: 500 12px/1 var(--tech);
  text-shadow: 0 0 8px rgba(145, 200, 255, .4);
}

.flow-card h3::before { content: "["; }
.flow-card h3::after { content: "]"; }

.join-card strong,
.faq-list summary {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .075em;
}

.staff-card h3 {
  font-family: var(--tech);
  font-weight: 500;
  letter-spacing: .08em;
}

.prescription-note strong {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .07em;
}

/* v18: cursor-local CLINIC X-RAY */
.xray-target {
  position: relative;
  isolation: isolate;
}

.xray-lens {
  position: absolute;
  z-index: 8;
  left: var(--scan-x, 50%);
  top: var(--scan-y, 50%);
  width: clamp(178px, 16vw, 238px);
  aspect-ratio: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(136, 213, 255, .92);
  border-radius: 50%;
  background: rgba(5, 39, 72, .78);
  box-shadow:
    0 0 0 1px rgba(123, 202, 255, .22),
    0 0 32px rgba(94, 191, 255, .48),
    inset 0 0 38px rgba(94, 191, 255, .3);
  transform: translate(-50%, -50%) scale(.72);
  transition: opacity .18s ease, transform .32s cubic-bezier(.2, .8, .2, 1);
  will-change: left, top, transform;
}

.xray-target.is-scanning .xray-lens {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.xray-lens::before,
.xray-lens::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.xray-lens::before {
  inset: 0;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, rgba(157, 218, 255, .075) 0 1px, transparent 1px 4px),
    radial-gradient(circle at center, transparent 44%, rgba(74, 173, 255, .14) 62%, rgba(2, 17, 36, .72) 100%),
    linear-gradient(rgba(0, 110, 184, .32), rgba(0, 43, 90, .5));
}

.xray-lens::after {
  left: 8%;
  right: 8%;
  top: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a8e6ff 20% 80%, transparent);
  box-shadow: 0 0 10px #70caff;
  animation: xraySweep 1.8s ease-in-out infinite;
}

.xray-lens-image {
  position: absolute;
  z-index: 1;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: .72;
  filter:
    grayscale(1)
    contrast(1.9)
    brightness(.8)
    sepia(1)
    hue-rotate(152deg)
    saturate(5);
  mix-blend-mode: normal;
}

.xray-hud {
  position: absolute;
  z-index: 4;
  inset: 0;
  color: #c6efff;
  font-family: var(--tech);
  text-shadow: 0 0 8px rgba(93, 197, 255, .8);
}

.xray-hud::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    conic-gradient(
      from -38deg,
      rgba(181, 233, 255, .9) 0 15%,
      transparent 15% 34%,
      rgba(255, 112, 194, .96) 34% 54%,
      transparent 54% 72%,
      rgba(181, 233, 255, .78) 72% 87%,
      transparent 87% 100%
    );
  -webkit-mask: radial-gradient(circle, transparent 61%, #000 63% 70%, transparent 72%);
  mask: radial-gradient(circle, transparent 61%, #000 63% 70%, transparent 72%);
  filter: drop-shadow(0 0 5px rgba(112, 202, 255, .68));
  transform: translate(-50%, -50%);
  animation: xrayReticle 4s linear infinite;
}

.xray-hud::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(215, 245, 255, .95);
  border-radius: 50%;
  background: #ff75c7;
  box-shadow:
    0 0 0 3px rgba(145, 200, 255, .14),
    0 0 10px rgba(112, 202, 255, .95);
  transform: translate(-50%, -50%);
}

.xray-hud span,
.xray-hud b,
.xray-hud em {
  position: absolute;
  font-size: 8px;
  line-height: 1;
  letter-spacing: .13em;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}

.xray-hud span {
  left: 13%;
  top: 14%;
}

.xray-hud em {
  left: 53%;
  top: 49%;
  color: #c6efff;
  transform: translateY(-50%);
}

.xray-hud b {
  left: 18%;
  bottom: 13%;
  color: #ff92d2;
}

.xray-hud i {
  display: block;
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 0;
  background: none;
  filter: none;
  transform: none;
}

.xray-hud i::before,
.xray-hud i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(215, 243, 255, .96);
  box-shadow: 0 0 5px rgba(112, 202, 255, .72);
  transform: translate(-50%, -50%);
}

.xray-hud i::before {
  width: 100%;
  height: 1px;
}

.xray-hud i::after {
  width: 1px;
  height: 100%;
}

@keyframes xraySweep {
  0%, 100% { top: 12%; opacity: .35; }
  50% { top: 86%; opacity: 1; }
}

@keyframes xrayPulse {
  50% { opacity: .25; }
}

@keyframes xrayReticle {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .xray-lens { display: none; }
}

/* v20: site-wide clinical point cursor */
.has-custom-cursor,
.has-custom-cursor body,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor summary {
  cursor: none !important;
}

.site-cursor {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 5px;
  height: 5px;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  background: #bdeaff;
  box-shadow:
    0 0 0 3px rgba(145, 200, 255, .08),
    0 0 10px rgba(112, 202, 255, .9);
  translate: -50% -50%;
  transition:
    width .18s ease,
    height .18s ease,
    opacity .15s ease,
    background-color .18s ease,
    box-shadow .18s ease;
  will-change: transform;
}

.site-cursor::before,
.site-cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
}

.site-cursor::before {
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-top-color: rgba(173, 229, 255, .8);
  border-right-color: rgba(173, 229, 255, .18);
  border-bottom-color: rgba(255, 133, 203, .62);
  border-radius: 50%;
  box-shadow:
    inset 0 0 8px rgba(112, 202, 255, .08),
    0 0 8px rgba(112, 202, 255, .16);
  transform: translate(-50%, -50%);
  animation: cursorScouterSpin 3.8s linear infinite;
  transition: width .2s ease, height .2s ease, border-color .2s ease;
}

.site-cursor::after {
  width: 9px;
  height: 5px;
  border-top: 1px solid rgba(173, 229, 255, .78);
  border-right: 1px solid rgba(173, 229, 255, .78);
  transform: translate(14px, -15px);
  filter: drop-shadow(0 0 4px rgba(112, 202, 255, .65));
  transition: transform .2s ease, border-color .2s ease;
}

.cursor-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  pointer-events: none;
  border-radius: 50%;
  background:
    conic-gradient(
      from 20deg,
      transparent 0 12%,
      rgba(145, 200, 255, .48) 12% 20%,
      transparent 20% 49%,
      rgba(255, 118, 200, .5) 49% 57%,
      transparent 57% 83%,
      rgba(145, 200, 255, .3) 83% 88%,
      transparent 88% 100%
    );
  -webkit-mask: radial-gradient(circle, transparent 62%, #000 64%);
  mask: radial-gradient(circle, transparent 62%, #000 64%);
  filter: drop-shadow(0 0 4px rgba(112, 202, 255, .35));
  transform: translate(-50%, -50%);
  animation: cursorScouterReverse 6.2s linear infinite;
  transition: width .22s ease, height .22s ease, opacity .2s ease;
}

.cursor-readout {
  position: absolute;
  left: 27px;
  top: -6px;
  width: max-content;
  padding-left: 17px;
  color: rgba(181, 228, 255, .72);
  font: 500 6px/1 var(--tech);
  letter-spacing: .15em;
  text-shadow: 0 0 6px rgba(112, 202, 255, .65);
  opacity: .72;
  transform: translateY(-50%);
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.cursor-readout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 13px;
  height: 1px;
  background: linear-gradient(90deg, rgba(145, 200, 255, .12), rgba(145, 200, 255, .9));
  box-shadow: 0 0 5px rgba(112, 202, 255, .5);
}

.site-cursor.visible { opacity: 1; }

.site-cursor.active {
  width: 8px;
  height: 8px;
  background: #ff85cb;
  box-shadow:
    0 0 0 4px rgba(255, 118, 200, .09),
    0 0 13px rgba(255, 118, 200, .85);
}

.site-cursor.active::before {
  width: 40px;
  height: 40px;
  border-top-color: rgba(255, 154, 216, .92);
  border-bottom-color: rgba(173, 229, 255, .76);
}

.site-cursor.active::after {
  border-color: rgba(255, 154, 216, .92);
  transform: translate(18px, -19px);
}

.site-cursor.active .cursor-orbit {
  width: 55px;
  height: 55px;
}

.site-cursor.active .cursor-readout {
  color: rgba(255, 154, 216, .86);
  opacity: 1;
  transform: translate(4px, -50%);
}

.site-cursor.active .cursor-readout::before {
  background: linear-gradient(90deg, rgba(255, 118, 200, .1), rgba(255, 118, 200, .92));
}

.site-cursor.scanning {
  width: 4px;
  height: 4px;
  background: #ff85cb;
  box-shadow:
    0 0 0 3px rgba(145, 200, 255, .14),
    0 0 10px rgba(112, 202, 255, .95);
}

.site-cursor.scanning::before {
  width: 46px;
  height: 46px;
  border-top-color: #c7efff;
  border-right-color: rgba(145, 200, 255, .38);
  border-bottom-color: #ff85cb;
  animation-duration: 2.1s;
}

.site-cursor.scanning::after {
  transform: translate(21px, -21px);
}

.site-cursor.scanning .cursor-orbit {
  width: 64px;
  height: 64px;
  background:
    conic-gradient(
      from 0deg,
      transparent 0 8%,
      rgba(190, 235, 255, .86) 8% 20%,
      transparent 20% 42%,
      rgba(255, 118, 200, .82) 42% 55%,
      transparent 55% 78%,
      rgba(190, 235, 255, .66) 78% 88%,
      transparent 88% 100%
    );
  animation-duration: 2.4s;
}

.site-cursor.scanning .cursor-readout {
  color: #c7efff;
  opacity: 0;
  transform: translate(8px, -50%);
}

.site-cursor.selecting {
  width: 178px;
  height: 178px;
  overflow: visible;
  border: 1px solid rgba(136, 213, 255, .92);
  background:
    repeating-linear-gradient(0deg, rgba(157, 218, 255, .075) 0 1px, transparent 1px 4px),
    radial-gradient(circle at center, rgba(0, 86, 150, .28), rgba(3, 28, 58, .88));
  box-shadow:
    0 0 0 1px rgba(123, 202, 255, .22),
    0 0 32px rgba(94, 191, 255, .48),
    inset 0 0 38px rgba(94, 191, 255, .3);
  translate: -50% -50%;
}

.site-cursor.selecting::before {
  width: 76px;
  height: 76px;
  left: 50%;
  border: 0;
  background:
    conic-gradient(
      from -38deg,
      rgba(199, 239, 255, .95) 0 15%,
      transparent 15% 34%,
      rgba(255, 133, 203, .95) 34% 54%,
      transparent 54% 72%,
      rgba(145, 200, 255, .82) 72% 87%,
      transparent 87% 100%
    );
  -webkit-mask: radial-gradient(circle, transparent 61%, #000 63% 70%, transparent 72%);
  mask: radial-gradient(circle, transparent 61%, #000 63% 70%, transparent 72%);
  animation-duration: 2.1s;
}

.site-cursor.selecting::after {
  left: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(215, 245, 255, .95);
  border-radius: 50%;
  background: #ff75c7;
  box-shadow:
    0 0 0 3px rgba(145, 200, 255, .14),
    0 0 10px rgba(112, 202, 255, .95);
  filter: none;
  transform: translate(-50%, -50%);
}

.site-cursor.selecting .cursor-orbit {
  display: none;
}

.site-cursor.selecting .cursor-readout {
  left: 116px;
  top: 50%;
  color: #d9f5ff;
  opacity: 1;
  transform: translateY(-50%);
  text-shadow:
    1px 0 0 rgba(255, 118, 200, .65),
    0 0 8px rgba(112, 202, 255, .85);
}

.cursor-title,
.cursor-scan,
.cursor-sweep,
.cursor-aim {
  display: none;
}

.site-cursor.selecting .cursor-title,
.site-cursor.selecting .cursor-scan,
.site-cursor.selecting .cursor-sweep,
.site-cursor.selecting .cursor-aim {
  display: block;
  position: absolute;
  z-index: 4;
  font-family: var(--tech);
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.site-cursor.selecting .cursor-aim {
  display: block;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: none;
  filter: none;
  transform: translate(-50%, -50%);
}

.site-cursor.selecting .cursor-aim::before,
.site-cursor.selecting .cursor-aim::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(215, 243, 255, .96);
  box-shadow: 0 0 5px rgba(112, 202, 255, .72);
  transform: translate(-50%, -50%);
}

.site-cursor.selecting .cursor-aim::before {
  width: 100%;
  height: 1px;
}

.site-cursor.selecting .cursor-aim::after {
  width: 1px;
  height: 100%;
}

.site-cursor.selecting .cursor-title {
  left: 15px;
  top: 17px;
  color: #c6efff;
  font-size: 7px;
  letter-spacing: .13em;
  text-shadow: 0 0 8px rgba(93, 197, 255, .8);
}

.site-cursor.selecting .cursor-scan {
  left: 21px;
  bottom: 17px;
  color: #ff92d2;
  font-size: 7px;
  letter-spacing: .13em;
  text-shadow: 0 0 8px rgba(255, 118, 200, .7);
}

.site-cursor.selecting .cursor-sweep {
  left: 9%;
  right: 9%;
  top: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a8e6ff 20% 80%, transparent);
  box-shadow: 0 0 10px #70caff;
  animation: xraySweep 1.8s ease-in-out infinite;
}

.site-cursor.scanning {
  opacity: 0 !important;
}

@keyframes cursorScouterSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes cursorScouterReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .site-cursor { display: none; }
}

/* v24: lounge as the main event visual */
.feature-lobby {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 58px;
  min-height: 0;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 118, 200, .09), transparent 28%),
    radial-gradient(circle at 14% 72%, rgba(84, 164, 255, .09), transparent 30%),
    #08090d;
}

.feature-lobby::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18px;
  pointer-events: none;
  opacity: .11;
  background:
    repeating-radial-gradient(circle at 24% 37%, rgba(225, 247, 255, .8) 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle at 76% 63%, rgba(255, 137, 207, .7) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(205, 237, 255, .55) 0 1px, transparent 1px 4px);
  background-size: 6px 6px, 9px 9px, 100% 5px;
  mix-blend-mode: screen;
  animation: loungeAmbientNoise .56s steps(7, end) infinite;
}

.feature-lobby::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: -90px;
  height: 90px;
  pointer-events: none;
  opacity: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(177, 229, 255, .14) 3px 4px),
    linear-gradient(90deg, transparent, rgba(255, 118, 200, .11) 28%, rgba(145, 200, 255, .14) 68%, transparent);
  box-shadow:
    0 0 22px rgba(145, 200, 255, .08),
    inset 0 0 26px rgba(255, 118, 200, .05);
  mix-blend-mode: screen;
  animation: loungeInterferenceBand 4.2s linear infinite;
}

@keyframes loungeAmbientNoise {
  0% { transform: translate(0); background-position: 0 0, 0 0, 0 0; }
  18% { transform: translate(-3px, 2px); background-position: 5px -3px, -4px 2px, 0 1px; }
  36% { transform: translate(2px, -2px); background-position: -2px 4px, 3px -5px, 0 -1px; }
  54% { transform: translate(-1px, -3px); background-position: 4px 1px, -2px 5px, 0 2px; }
  72% { transform: translate(3px, 1px); background-position: -5px -2px, 4px 1px, 0 -2px; }
  100% { transform: translate(0); background-position: 0 0, 0 0, 0 0; }
}

@keyframes loungeInterferenceBand {
  0%, 12% { top: -90px; opacity: 0; }
  15% { opacity: .75; }
  38% { opacity: .42; }
  48% { top: calc(100% + 10px); opacity: 0; }
  100% { top: calc(100% + 10px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .feature-lobby::before {
    animation: none;
  }

  .feature-lobby::after {
    display: none;
  }
}

.feature-lobby .feature-copy {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr);
  column-gap: 9vw;
  align-items: end;
}

.feature-lobby .feature-copy .eyebrow,
.feature-lobby .feature-copy h2 {
  grid-column: 1;
}

.feature-lobby .feature-copy h2 {
  margin-bottom: 0;
}

.feature-lobby .feature-copy > p:not(.eyebrow) {
  grid-column: 2;
  margin-bottom: 12px;
  max-width: 520px;
}

.feature-lobby .feature-copy > p:nth-of-type(2) {
  align-self: end;
}

.feature-lobby .feature-image {
  grid-row: 2;
  width: calc(100% + 14vw);
  min-height: 600px;
  margin-left: -7vw;
  aspect-ratio: 16 / 7.1;
  border-right: 0;
  border-left: 0;
  box-shadow: 0 38px 110px rgba(0, 0, 0, .42);
}

.feature-lobby .feature-image::before {
  inset: 24px 3vw;
  border-color: rgba(145, 200, 255, .2);
}

.feature-lobby .feature-image::after {
  background:
    linear-gradient(to top, rgba(3, 4, 8, .84), transparent 35%),
    linear-gradient(90deg, rgba(3, 4, 8, .42), transparent 24% 76%, rgba(3, 4, 8, .38)),
    linear-gradient(115deg, transparent 0 43%, rgba(145, 200, 255, .13) 49%, transparent 57%);
}

.feature-lobby .feature-image img {
  object-fit: cover;
  object-position: center 42%;
  filter: brightness(1.12) saturate(1.08) contrast(1.02);
}

.feature-lobby .feature-image > span {
  left: 4vw;
  bottom: 34px;
  font-size: 8px;
}

.feature-lobby .prescription-note {
  position: absolute;
  z-index: 6;
  right: 2vw;
  top: calc(100% + 135px);
  width: min(460px, 36vw);
  margin: 0;
  border-color: rgba(145, 200, 255, .4);
  background:
    radial-gradient(circle at 92% 18%, rgba(145, 200, 255, .2), transparent 28%),
    linear-gradient(135deg, rgba(8, 13, 25, .92), rgba(22, 8, 22, .84));
  backdrop-filter: blur(14px);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, .45),
    inset 0 0 35px rgba(145, 200, 255, .035),
    0 0 25px rgba(145, 200, 255, .07);
}

.feature-lobby .prescription-note strong {
  max-width: calc(100% - 40px);
  font-size: 19px;
}

.clinic-ticker {
  position: relative;
  z-index: 7;
  overflow: hidden;
  border-top: 1px solid rgba(145, 200, 255, .2);
  border-bottom: 1px solid rgba(255, 118, 200, .18);
  background:
    linear-gradient(90deg, rgba(255, 118, 200, .08), rgba(145, 200, 255, .07)),
    #08090d;
  box-shadow: 0 0 28px rgba(85, 170, 255, .055);
}

.clinic-ticker::before,
.clinic-ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 8vw;
  pointer-events: none;
}

.clinic-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #08090d, transparent);
}

.clinic-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #08090d, transparent);
}

.clinic-ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 17px 0;
  color: rgba(205, 235, 255, .76);
  font: 500 10px/1 var(--tech);
  letter-spacing: .19em;
  text-shadow: 0 0 8px rgba(112, 202, 255, .45);
  animation: clinicTicker 30s linear infinite;
}

.clinic-ticker span:nth-of-type(even) {
  color: rgba(255, 145, 211, .78);
  text-shadow: 0 0 8px rgba(255, 118, 200, .38);
}

.clinic-ticker i {
  color: rgba(255, 118, 200, .62);
  font-style: normal;
}

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

@media (max-width: 980px) {
  .feature-lobby {
    display: block;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .feature-lobby .feature-copy {
    display: block;
    margin-bottom: 52px;
  }

  .feature-lobby .feature-copy h2 {
    margin-bottom: 28px;
  }

  .feature-lobby .feature-copy > p:not(.eyebrow) {
    max-width: 620px;
  }

  .feature-lobby .feature-image {
    width: calc(100% + 14vw);
    min-height: 0;
    margin-left: -7vw;
    aspect-ratio: 16 / 9;
  }

  .feature-lobby .prescription-note {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 520px);
    margin-top: 34px;
  }
}

@media (max-width: 680px) {
  .feature-lobby {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .feature-lobby .feature-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .feature-lobby .feature-image::before {
    inset: 12px;
  }

  .feature-lobby .feature-image > span {
    display: none;
  }

  .feature-lobby .prescription-note strong {
    max-width: calc(100% - 45px);
    font-size: 17px;
  }

  .clinic-ticker > div {
    gap: 22px;
    padding: 14px 0;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clinic-ticker > div { animation: none; }
}

/* v25: moving cast showcase */
@media (min-width: 981px) {
  .staff {
    overflow: hidden;
    background:
      radial-gradient(circle at 16% 40%, rgba(255, 118, 200, .07), transparent 26%),
      radial-gradient(circle at 86% 72%, rgba(87, 168, 255, .07), transparent 25%),
      #090a0e;
  }

  .staff-gallery.is-marquee {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: staffMarquee 42s linear infinite;
    will-change: transform;
  }

  .staff-gallery.is-marquee:hover {
    animation-play-state: paused;
  }

  .staff-gallery.is-marquee .staff-card {
    flex: 0 0 clamp(230px, 18vw, 300px);
  }

  .staff-gallery.is-marquee .staff-card:nth-child(odd) {
    transform: translateY(18px);
  }

  .staff-gallery.is-marquee .staff-card:nth-child(odd):hover {
    transform: translateY(10px);
  }
}

@keyframes staffMarquee {
  to { transform: translateX(calc(-50% - 7px)); }
}

@media (prefers-reduced-motion: reduce) {
  .staff-gallery.is-marquee { animation: none; }
}

/* Cast profile recognition */
.staff-card::before {
  inset: auto 0;
  top: -16%;
  z-index: 3;
  height: 15%;
  opacity: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(92, 255, 190, .1) 28%,
    rgba(190, 255, 224, .96) 50%,
    rgba(70, 255, 174, .48) 55%,
    transparent
  );
  filter: drop-shadow(0 0 13px rgba(79, 255, 180, .88));
  transform: none;
  transition: none;
}

.staff-card:hover::before {
  opacity: 1;
  transform: none;
  animation: staffIdentifyScan 1.65s cubic-bezier(.4, 0, .2, 1) both;
}

.staff-card:hover {
  box-shadow:
    inset 0 0 0 1px rgba(145, 200, 255, .28),
    0 18px 45px rgba(0, 0, 0, .35),
    0 0 28px rgba(255, 118, 200, .1);
}

.staff-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) brightness(1.12) contrast(1.025);
}

.staff-card > div {
  transition: transform .42s cubic-bezier(.2, .75, .2, 1);
}

.staff-card:hover > div {
  transform: translateY(-8px);
}

.staff-card > div::before,
.staff-card > div::after {
  position: absolute;
  bottom: calc(100% + 13px);
  padding: 6px 8px;
  opacity: 0;
  color: #d7f4ff;
  border-left: 1px solid var(--blue);
  background: rgba(3, 9, 16, .72);
  backdrop-filter: blur(7px);
  font: 500 6px/1 var(--tech);
  letter-spacing: .13em;
  transform: translateY(7px);
  transition: opacity .28s .3s, transform .35s .3s;
}

.staff-card > div::before {
  content: "STAFF IDENTIFIED";
  left: 0;
}

.staff-card > div::after {
  content: "PROFILE VERIFIED";
  right: 0;
  color: #ff9bd8;
  border-right: 1px solid var(--pink);
  border-left: 0;
}

.staff-card:hover > div::before,
.staff-card:hover > div::after {
  opacity: 1;
  transform: none;
}

.staff-card h3::after {
  content: "  /  ON DUTY";
  color: #9bd8ff;
  font-size: 6px;
  font-weight: 500;
  letter-spacing: .12em;
}

@keyframes staffIdentifyScan {
  0% { top: -16%; opacity: 0; }
  7% { opacity: 1; }
  46% { top: 102%; opacity: 1; }
  54% { top: 102%; opacity: 1; }
  93% { opacity: 1; }
  100% { top: -16%; opacity: 0; }
}

@media (hover: none), (pointer: coarse) {
  .staff-card > div::before,
  .staff-card > div::after,
  .staff-card h3::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .staff-card:hover::before { animation: none; opacity: 0; }
}

/* Lounge surveillance capture */
.feature-lobby .lounge-capture img {
  animation: loungeCameraDrift 8s ease-in-out infinite alternate;
  will-change: transform;
}

.feature-lobby .lounge-capture:hover img {
  animation-play-state: paused;
  filter: brightness(1.2) saturate(1.1) contrast(1.025);
}

.lounge-capture-status {
  position: absolute;
  z-index: 7;
  top: 38px;
  right: 4vw;
  min-width: 190px;
  padding: 10px 13px;
  opacity: 0;
  color: #d8f4ff;
  border-top: 1px solid rgba(145, 200, 255, .72);
  border-right: 1px solid rgba(255, 118, 200, .55);
  background: linear-gradient(135deg, rgba(4, 12, 21, .88), rgba(17, 5, 17, .58));
  box-shadow: 0 0 25px rgba(145, 200, 255, .1);
  backdrop-filter: blur(9px);
  font-family: var(--tech);
  transform: translateY(-8px);
  transition: opacity .3s, transform .4s cubic-bezier(.2, .75, .2, 1);
  pointer-events: none;
}

.lounge-capture-status span,
.lounge-capture-status b {
  display: block;
}

.lounge-capture-status span {
  color: #8ed6ff;
  font-size: 6px;
  letter-spacing: .16em;
}

.lounge-capture-status b {
  margin-top: 7px;
  color: #ff98d5;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .12em;
}

.lounge-capture:hover .lounge-capture-status {
  opacity: 1;
  transform: none;
}

.feature-lobby.lounge-paused::before {
  opacity: .035;
  animation-play-state: paused;
}

.feature-lobby.lounge-paused::after {
  opacity: 0;
  animation: none;
}

@keyframes loungeCameraDrift {
  0% { transform: scale(1.012) translate3d(-.22%, -.12%, 0); }
  100% { transform: scale(1.026) translate3d(.22%, .12%, 0); }
}

@media (max-width: 680px) {
  .lounge-capture-status {
    top: 18px;
    right: 18px;
    min-width: 160px;
    padding: 8px 10px;
  }
}

@media (hover: none), (pointer: coarse) {
  .feature-lobby .lounge-capture img {
    animation-play-state: paused;
  }

  .lounge-capture-status {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-lobby .lounge-capture img { animation: none; }
}

/* Electronic patient route */
.flow-grid {
  position: relative;
}

.flow-route {
  position: absolute;
  z-index: 5;
  top: 38px;
  right: 24px;
  left: 24px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(145, 200, 255, .18), rgba(255, 118, 200, .24));
}

.flow-route span {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(145, 200, 255, .38);
  border-radius: 50%;
  background: #06070a;
  box-shadow: 0 0 0 3px rgba(145, 200, 255, .04);
  transform: translate(-50%, -50%);
}

.flow-route span:nth-child(1) { left: 0; }
.flow-route span:nth-child(2) { left: 33.333%; }
.flow-route span:nth-child(3) { left: 66.666%; }
.flow-route span:nth-child(4) { left: 100%; }

.flow-route b {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  opacity: 0;
  border-radius: 50%;
  background: #d8f5ff;
  box-shadow:
    0 0 0 4px rgba(145, 200, 255, .12),
    0 0 18px rgba(145, 200, 255, .9),
    0 0 28px rgba(255, 118, 200, .55);
  transform: translate(-50%, -50%);
}

.flow-card > span {
  position: relative;
  z-index: 6;
  padding-right: 8px;
  background: #06070a;
}

.flow-card small::after {
  content: " / CURRENT STEP";
  opacity: 0;
  color: #9edcff;
  transition: opacity .25s;
}

.flow-card:hover small::after {
  opacity: 1;
}

.flow-grid.route-active .flow-route b {
  animation: flowRouteTravel 3.5s cubic-bezier(.35, .02, .22, 1) .18s both;
}

.flow-grid.route-active .flow-route span {
  animation: flowCheckpoint .46s ease-out both;
}

.flow-grid.route-active .flow-route span:nth-child(1) { animation-delay: .2s; }
.flow-grid.route-active .flow-route span:nth-child(2) { animation-delay: 1.22s; }
.flow-grid.route-active .flow-route span:nth-child(3) { animation-delay: 2.24s; }
.flow-grid.route-active .flow-route span:nth-child(4) { animation-delay: 3.25s; }

.flow-grid.route-active .flow-card {
  animation: flowCardSignal .58s ease-out both;
}

.flow-grid.route-active .flow-card:nth-of-type(1) { animation-delay: .16s; }
.flow-grid.route-active .flow-card:nth-of-type(2) { animation-delay: 1.18s; }
.flow-grid.route-active .flow-card:nth-of-type(3) { animation-delay: 2.2s; }
.flow-grid.route-active .flow-card:nth-of-type(4) { animation-delay: 3.2s; }

.flow-card:last-child {
  background:
    radial-gradient(circle at 50% 29%, rgba(255, 118, 200, .055), transparent 33%),
    linear-gradient(180deg, rgba(145, 200, 255, .02), transparent 38%),
    #06070a;
}

.flow-card:last-child > span {
  color: #a9dfff;
}

@keyframes flowRouteTravel {
  0% { left: 0; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes flowCheckpoint {
  0% {
    border-color: rgba(145, 200, 255, .38);
    box-shadow: 0 0 0 3px rgba(145, 200, 255, .04);
    transform: translate(-50%, -50%) scale(.65);
  }
  55% {
    border-color: #d8f5ff;
    box-shadow:
      0 0 0 7px rgba(145, 200, 255, .1),
      0 0 18px rgba(145, 200, 255, .8);
    transform: translate(-50%, -50%) scale(1.45);
  }
  100% {
    border-color: rgba(255, 118, 200, .7);
    box-shadow: 0 0 10px rgba(255, 118, 200, .35);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes flowCardSignal {
  0% { filter: brightness(.78); }
  48% { filter: brightness(1.34); }
  100% { filter: none; }
}

@media (max-width: 980px) {
  .flow-route { display: none; }
}

@media (hover: none), (pointer: coarse) {
  .flow-card small::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .flow-grid.route-active .flow-route b,
  .flow-grid.route-active .flow-route span,
  .flow-grid.route-active .flow-card {
    animation: none;
  }
}

/* Neon illustrated patient-flow panels */
.flow-card {
  display: flex;
  min-height: 590px;
  flex-direction: column;
}

.flow-card > span { order: 1; }
.flow-card > .flow-mark { display: none; }
.flow-card > small { order: 3; }
.flow-card > h3 { order: 4; }
.flow-card > p { order: 5; }

.flow-neon-art {
  order: 2;
  width: min(100%, 205px);
  margin: 20px auto;
  aspect-ratio: 4 / 7;
  background-image: url("assets/images/flow-neon-panels.webp");
  background-repeat: no-repeat;
  background-size: 400% auto;
  background-position-y: 40%;
  filter: brightness(.72) saturate(.92);
  transform: translateZ(0);
  animation: neonIdleFlicker 7.8s steps(1, end) infinite;
  transition: transform .55s cubic-bezier(.2, .75, .2, 1);
  will-change: filter, transform;
}

.flow-neon-art.neon-01 {
  background-position-x: 0;
  animation-delay: -1.2s;
}

.flow-neon-art.neon-02 {
  background-position-x: 33.333%;
  animation-delay: -4.8s;
}

.flow-neon-art.neon-03 {
  background-position-x: 66.666%;
  animation-delay: -2.7s;
}

.flow-neon-art.neon-04 {
  background-position-x: 100%;
  animation-delay: -6.1s;
}

.flow-card:hover .flow-neon-art {
  animation: neonPowerStable .94s steps(1, end) both;
  transform: scale(1.025) translateZ(0);
}

@keyframes neonIdleFlicker {
  0%, 6%, 9%, 53%, 56%, 100% { filter: brightness(.72) saturate(.92); }
  7% { filter: brightness(.38) saturate(.7); }
  8% { filter: brightness(.92) saturate(1.03); }
  54% { filter: brightness(.52) saturate(.8); }
  55% { filter: brightness(.8) saturate(.97); }
}

@keyframes neonPowerStable {
  0% { filter: brightness(.72) saturate(.9); }
  14% { filter: brightness(1.34) saturate(1.14); }
  24% { filter: brightness(.48) saturate(.72); }
  34% { filter: brightness(1.52) saturate(1.2); }
  43% { filter: brightness(.65) saturate(.86); }
  55% { filter: brightness(1.38) saturate(1.16); }
  100% { filter: brightness(1.12) saturate(1.06); }
}

@media (max-width: 980px) {
  .flow-card {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .flow-card {
    min-height: 0;
    padding-bottom: 35px;
  }

  .flow-neon-art {
    width: min(100%, 225px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-neon-art,
  .flow-card:hover .flow-neon-art {
    animation: none;
    filter: brightness(1) saturate(1);
  }
}

/* Entry control terminal */
.global-nav a[href="#flow"] {
  font-family: var(--jp);
  font-weight: 600;
  letter-spacing: .09em;
}

.join {
  position: relative;
  background:
    linear-gradient(rgba(145, 200, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 200, 255, .018) 1px, transparent 1px),
    radial-gradient(circle at 16% 24%, rgba(255, 118, 200, .09), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(85, 168, 255, .08), transparent 26%),
    #07080c;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.entry-terminal-head {
  width: min(100%, 1000px);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 18px;
  color: #bdeaff;
  border: 1px solid rgba(145, 200, 255, .25);
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(145, 200, 255, .07), rgba(255, 118, 200, .025));
  font-family: var(--tech);
  transition: border-color .35s, box-shadow .35s, background .35s;
}

.entry-terminal-head > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 8px;
  letter-spacing: .15em;
}

.entry-terminal-head > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  animation: entryStatusBlink 1.25s steps(2, end) infinite;
}

.entry-terminal-head > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.entry-terminal-head small {
  color: #5f6873;
  font-size: 6px;
  letter-spacing: .14em;
}

.entry-terminal-head b {
  color: #8ed6ff;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .12em;
}

.entry-terminal-head .entry-ready {
  display: none;
  color: #ff99d6;
}

.join .join-grid-three {
  width: min(100%, 1000px);
  margin: 0 auto;
  border-right: 1px solid rgba(145, 200, 255, .18);
  border-left: 1px solid rgba(145, 200, 255, .18);
}

.join-grid-three .join-card:nth-child(2) {
  order: -1;
  border-top: 2px solid rgba(255, 118, 200, .8);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 118, 200, .13), transparent 30%),
    linear-gradient(145deg, rgba(255, 118, 200, .09), rgba(145, 200, 255, .025) 70%);
  box-shadow: inset 0 0 34px rgba(255, 118, 200, .035);
}

.join-grid-three .join-card:nth-child(2)::after {
  opacity: 1;
  transform: scaleX(1);
}

.join-grid-three .join-card:nth-child(2) small::after {
  content: " / PRIORITY";
  color: #9edcff;
}

.join .join-social {
  width: min(100%, 1000px);
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, .85fr);
  gap: 12px;
  margin: 28px auto 0;
  border: 0;
}

.join .join-social .social-link {
  min-height: 86px;
  padding: 20px 24px;
  border: 1px solid rgba(145, 200, 255, .25);
  background: rgba(6, 10, 16, .74);
  box-shadow: inset 0 0 26px rgba(145, 200, 255, .03);
}

.join .join-social .social-link.primary {
  color: #16040f;
  border-color: rgba(255, 255, 255, .62);
  background: linear-gradient(115deg, #ff7ccb, #ffd0eb 55%, #9ed7ff);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .3),
    0 0 30px rgba(255, 118, 200, .13);
  font-size: 17px;
  font-weight: 800;
}

.join .join-social .social-link:not(.primary):hover {
  border-color: rgba(145, 200, 255, .6);
  background: rgba(13, 23, 35, .88);
  box-shadow: 0 0 24px rgba(145, 200, 255, .09);
}

.join.entry-ready-state .entry-terminal-head {
  border-color: rgba(255, 118, 200, .64);
  background: linear-gradient(90deg, rgba(255, 118, 200, .1), rgba(145, 200, 255, .05));
  box-shadow: 0 0 26px rgba(145, 200, 255, .08);
}

.join.entry-ready-state .entry-terminal-head > span i {
  background: var(--pink);
  box-shadow: 0 0 11px var(--pink);
  animation: none;
}

.join.entry-ready-state .entry-standby {
  display: none;
}

.join.entry-ready-state .entry-ready {
  display: inline;
}

@keyframes entryStatusBlink {
  50% { opacity: .3; }
}

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

  .join-grid-three .join-card,
  .join-grid-three .join-card:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .join .join-social {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .entry-terminal-head {
    min-height: 70px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 12px;
  }

  .entry-terminal-head > div {
    width: 100%;
    justify-content: space-between;
  }

  .join .join-social .social-link.primary {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-terminal-head > span i { animation: none; }
}

/* Simplified participation guidance */
.join-summary {
  width: min(100%, 1000px);
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  padding: 22px 24px;
  border-top: 1px solid rgba(145, 200, 255, .25);
  border-bottom: 1px solid rgba(145, 200, 255, .16);
  background: linear-gradient(90deg, rgba(145, 200, 255, .055), rgba(255, 118, 200, .025));
}

.join-summary > span {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: #08131c;
  background: linear-gradient(120deg, #dff7ff, #ffb9e1);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .06em;
}

.join-summary p {
  margin: 0;
  color: #8b8b95;
  font-size: 13px;
  line-height: 1.85;
}

.join-summary strong {
  color: #eef9ff;
  font-size: 16px;
  font-weight: 700;
}

.join .join-social {
  margin-top: 24px;
}

@media (max-width: 680px) {
  .join-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 19px 17px;
  }

  .join-summary strong {
    font-size: 15px;
  }
}

/* FAQ medical-record accordion */
.faq-list {
  counter-reset: clinicFaq;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  counter-increment: clinicFaq;
  border-left: 1px solid transparent;
  transition: background .35s, border-color .35s, box-shadow .35s;
}

.faq-list details::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  width: 18%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(145, 200, 255, .15), transparent);
}

.faq-list summary {
  padding-left: 58px;
  transition: color .28s, padding-left .3s;
}

.faq-list summary::before {
  content: "[" counter(clinicFaq, decimal-leading-zero) "]";
  position: absolute;
  left: 7px;
  top: 50%;
  color: #62788a;
  font: 500 8px/1 var(--tech);
  letter-spacing: .12em;
  transform: translateY(-50%);
  transition: color .28s, text-shadow .28s;
}

.faq-list details:hover summary {
  color: #e9f8ff;
  padding-left: 64px;
}

.faq-list details[open] {
  border-left-color: rgba(145, 200, 255, .65);
  background:
    linear-gradient(90deg, rgba(145, 200, 255, .08), rgba(255, 118, 200, .025) 72%, transparent);
  box-shadow: inset 20px 0 40px rgba(145, 200, 255, .025);
}

.faq-list details[open]::after {
  animation: faqRecordScan .72s ease-out both;
}

.faq-list details[open] summary {
  color: #f1fbff;
}

.faq-list details[open] summary::before {
  color: #9ee1ff;
  text-shadow: 0 0 9px rgba(145, 200, 255, .62);
}

.faq-list details[open] summary span {
  color: #9edfff;
  text-shadow: 0 0 10px rgba(145, 200, 255, .45);
}

.faq-list details[open] p {
  animation: faqAnswerReveal .42s ease-out both;
}

@keyframes faqRecordScan {
  0% { left: -18%; opacity: 0; }
  14% { opacity: 1; }
  86% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes faqAnswerReveal {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 680px) {
  .faq-list summary {
    padding-left: 48px;
  }

  .faq-list details:hover summary {
    padding-left: 48px;
  }

  .faq-list summary::before {
    left: 4px;
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-list details[open]::after,
  .faq-list details[open] p {
    animation: none;
  }
}

/* Opening-soon closing visual */
.coming {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(126, 211, 255, .1), transparent 24%),
    radial-gradient(circle at 68% 62%, rgba(255, 118, 200, .09), transparent 28%),
    linear-gradient(135deg, #05070a 0%, #080b12 52%, #05070a 100%);
}

.coming::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(126, 211, 255, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 211, 255, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 5, 8, .18), rgba(3, 5, 8, .58));
  background-size: 56px 56px, 56px 56px, auto;
}

.coming-bg {
  z-index: 1;
  left: 5vw;
  top: 18%;
  font-size: clamp(62px, 10vw, 164px);
  transform: none;
  -webkit-text-stroke-color: rgba(145, 200, 255, .1);
}

.coming-copy,
.coming-actions {
  position: relative;
  z-index: 3;
  width: min(48vw, 620px);
}

.coming-copy h2 {
  font-size: clamp(48px, 5.2vw, 78px);
}

.coming-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: #aaaab2;
  font-size: 14px;
}

.coming-actions {
  width: min(48vw, 500px);
  margin-top: 30px;
  border-top: 0;
}

.coming-actions .social-link.primary {
  min-height: 82px;
  box-shadow:
    0 20px 55px rgba(0, 0, 0, .35),
    0 0 34px rgba(255, 118, 200, .13);
}

.coming-heartbeat {
  position: absolute;
  z-index: 2;
  left: 5vw;
  bottom: 15%;
  width: min(55vw, 900px);
  height: 80px;
  overflow: hidden;
  opacity: .72;
  pointer-events: none;
}

.coming-heartbeat svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.coming-heartbeat path {
  fill: none;
  stroke: url("#comingPulse");
  stroke: #a9e4ff;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 920;
  stroke-dashoffset: 920;
  filter:
    drop-shadow(0 0 5px rgba(145, 200, 255, .72))
    drop-shadow(0 0 10px rgba(255, 118, 200, .3));
  animation: comingHeartbeat 5.4s ease-in-out infinite;
}

@keyframes comingHeartbeat {
  0%, 12% { stroke-dashoffset: 920; opacity: 0; }
  20% { opacity: 1; }
  68% { stroke-dashoffset: 0; opacity: 1; }
  82%, 100% { stroke-dashoffset: -920; opacity: 0; }
}

@media (max-width: 800px) {
  .coming {
    min-height: 680px;
    background-position: 68% center;
  }

  .coming::before {
    background:
      linear-gradient(90deg, rgba(3, 5, 8, .95), rgba(3, 5, 8, .7) 65%, rgba(3, 5, 8, .24)),
      linear-gradient(to top, rgba(3, 5, 8, .78), transparent 50%);
  }

  .coming-copy,
  .coming-actions {
    width: min(100%, 560px);
  }

  .coming-bg {
    left: 7vw;
    top: 14%;
    font-size: clamp(48px, 15vw, 90px);
  }

  .coming-heartbeat {
    left: 7vw;
    bottom: 11%;
    width: 86vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-heartbeat path {
    animation: none;
    stroke-dashoffset: 0;
    opacity: .45;
  }
}
