@import "../fonts/fonts.css";
:root {
  --black: #0E0F13;
  --black-deep: #0A0B0E;
  --surface: #16171D;
  --surface-2: #1C1E26;
  --violet-fill: #7C5CFF;
  --violet-btn: #6F52E5;
  --violet-btn-hover: #5E45D0;
  --violet-text: #9B86FF;
  --violet-deep: #241A55;
  --lime: #C6F238;
  --ink: #F5F4F8;
  --muted: #B7B4C4;
  --subtle: #86829A;
  --line: rgba(124, 92, 255, .28);
  --line-soft: rgba(124, 92, 255, .14);
  --line-hair: rgba(245, 244, 248, .10);
  --brand: #7C5CFF;
  --font-display:
    "Unbounded",
    "Arial Black",
    sans-serif;
  --font-body:
    "Space Grotesk",
    "Helvetica Neue",
    Arial,
    sans-serif;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.2rem;
  --text-xl: clamp(1.5rem, 1.25rem + 1.1vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.3rem + 3vw, 4rem);
  --text-3xl: clamp(3.2rem, 1.6rem + 7vw, 8rem);
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --section: clamp(4.5rem, 4rem + 6vw, 9rem);
  --radius: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --swoop: cubic-bezier(0.6, 0, 0, 1);
  --dur: 250ms;
  --shadow-card: 0 2px 4px rgba(0, 0, 0, .35), 0 10px 28px rgba(0, 0, 0, .45);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg,
canvas {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  margin: 0 0 var(--space-4);
  font-weight: 700;
}
h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 {
  font-size: var(--text-3xl);
  letter-spacing: -0.03em;
}
h2 {
  font-size: var(--text-2xl);
}
h3 {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 var(--space-4);
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: var(--violet-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--lime);
}
:focus-visible {
  outline: 2px solid var(--violet-fill);
  outline-offset: 3px;
  border-radius: var(--radius);
}
::selection {
  background: var(--violet-deep);
  color: var(--ink);
}
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.prose {
  max-width: 62ch;
}
.prose p {
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 200;
  padding: var(--space-3) var(--space-6);
  background: var(--lime);
  color: var(--black-deep);
  font-weight: 700;
}
.skip-link:focus {
  top: var(--space-4);
  color: var(--black-deep);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: var(--space-4);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-text);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex: none;
}
.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.scroll-eq {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  height: 4px;
  display: flex;
  background: var(--black-deep);
  pointer-events: none;
}
.eq-bar {
  flex: 1;
  align-self: flex-end;
  height: 100%;
  transform-origin: bottom center;
  transform: scaleY(.16);
  opacity: .45;
  background:
    linear-gradient(
      0deg,
      var(--violet-fill) 0 78%,
      var(--lime) 78% 100%);
  animation: eq-fill linear both;
  animation-timeline: scroll(root);
  animation-range: calc(var(--i, 0) * 6%) calc(var(--i, 0) * 6% + 24%);
}
@keyframes eq-fill {
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@supports not (animation-timeline: scroll()) {
  .eq-bar {
    animation: none;
    transform: scaleY(.5);
    opacity: .7;
  }
}
.site-header {
  position: sticky;
  top: 4px;
  z-index: 50;
  background: color-mix(in srgb, var(--black-deep) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 9px;
  background:
    linear-gradient(
      135deg,
      transparent 50%,
      var(--black-deep) 50%) 0 0 / 18px 18px repeat-x,
    linear-gradient(
      45deg,
      var(--black-deep) 50%,
      transparent 50%) 9px 0 / 18px 18px repeat-x;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-3);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.brand:hover {
  color: var(--violet-text);
}
.brand-mark {
  flex: none;
  display: inline-grid;
  place-items: center;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.site-nav a:hover,
.site-nav a[aria-current=page] {
  color: var(--ink);
}
.site-nav a[aria-current=page] {
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: none;
  color: var(--ink);
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
  font: inherit;
  cursor: pointer;
}
@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
  }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--black-deep);
    border-bottom: 1px solid var(--line);
    padding: var(--space-6) clamp(1.25rem, 4vw, 2.5rem) var(--space-8);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
  .site-nav a {
    font-size: 1.05rem;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.95rem 1.8rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background-color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.btn-violet {
  background: var(--violet-btn);
  color: var(--ink);
}
.btn-violet:hover {
  background: var(--violet-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124, 92, 255, .28);
  color: var(--ink);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--line-soft);
  border-color: var(--violet-fill);
  color: var(--ink);
}
.btn-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
  margin-right: 2px;
}
.btn-eq span {
  width: 3px;
  border-radius: 1px;
  background: var(--lime);
  animation: btn-eq-idle 1.1s ease-in-out infinite;
}
.btn-eq span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}
.btn-eq span:nth-child(2) {
  height: 90%;
  animation-delay: .1s;
}
.btn-eq span:nth-child(3) {
  height: 60%;
  animation-delay: .2s;
}
.btn-eq span:nth-child(4) {
  height: 100%;
  animation-delay: .3s;
}
.btn-eq span:nth-child(5) {
  height: 55%;
  animation-delay: .4s;
}
@keyframes btn-eq-idle {
  0%, 100% {
    transform: scaleY(.55);
  }
  50% {
    transform: scaleY(1);
  }
}
.btn:hover .btn-eq span {
  animation-duration: .45s;
}
.btn:active .btn-eq span {
  animation-duration: .18s;
  transform: scaleY(1);
}
.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.9rem;
  margin: 0 0 var(--space-6);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  color: var(--muted);
}
.hours-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--subtle);
  flex-shrink: 0;
}
.hours-pill[data-status=open] {
  border-color: var(--brand);
  color: var(--ink);
}
.hours-pill[data-status=open] .dot {
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, .25);
}
.hours-pill[data-status=before] .dot {
  background: var(--violet-fill);
}
.hours-pill[data-status=closed] .dot {
  background: var(--subtle);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1100px 560px at 50% -10%,
      rgba(124, 92, 255, .16),
      transparent 65%),
    linear-gradient(
      180deg,
      var(--black-deep),
      var(--black) 70%);
  text-align: center;
}
.hero .container {
  position: relative;
  z-index: 3;
  padding-block: clamp(6.5rem, 5.5rem + 9vw, 12rem) clamp(3rem, 2rem + 5vw, 5rem);
  max-width: 920px;
}
.hero-sub {
  max-width: 54ch;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
.wf-stage {
  position: absolute;
  inset: auto 0 0 0;
  height: clamp(120px, 26vw, 260px);
  overflow: hidden;
  z-index: 1;
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 8%,
      #000 92%,
      transparent);
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 8%,
      #000 92%,
      transparent);
}
.wf-track {
  position: absolute;
  bottom: -6%;
  left: 0;
  height: 100%;
  width: auto;
  will-change: transform;
}
.wf-bar {
  fill: var(--violet-fill);
  opacity: .5;
}
.wf-bar--accent {
  fill: var(--lime);
  opacity: .85;
}
@media (prefers-reduced-motion: reduce) {
  .wf-stage {
    opacity: .55;
  }
  .wf-track {
    transform: none !important;
  }
}
.rm .wf-stage {
  opacity: .55;
}
.rm .wf-track {
  transform: none !important;
}
.marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-soft);
  padding-block: 0.9rem;
  overflow: clip;
  background: color-mix(in srgb, var(--black-deep) 70%, transparent);
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-inner {
  animation-play-state: paused;
}
.marquee-seq {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-seq span {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-seq span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  margin-inline: clamp(1.25rem, 2.5vw, 2.25rem);
  flex-shrink: 0;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.rm .marquee-inner,
.js-on.rm .marquee-inner {
  animation: none;
}
main > section {
  padding-block: var(--section);
  position: relative;
}
.blk-surface2 {
  background: var(--surface-2);
}
.blk-deep {
  background: var(--black-deep);
}
.blk-cinema {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--ink);
}
.blk-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--black-deep) 88%, transparent),
      var(--black-deep) 78%);
}
.blk-cinema > .container {
  position: relative;
  z-index: 1;
}
.usp-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 780px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}
.usp-item {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}
.usp-item .usp-no {
  display: block;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lime);
}
.usp-item h3 {
  margin-bottom: var(--space-2);
  font-size: 1.2rem;
}
.usp-item p {
  color: var(--muted);
  margin: 0;
}
.tile-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.tile-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.tile-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet-fill);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .4), 0 24px 48px rgba(124, 92, 255, .18);
}
.tile-no {
  display: block;
  margin-bottom: var(--space-3);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet-text);
}
.tile-card h3 {
  margin-bottom: var(--space-2);
}
.tile-card p {
  color: var(--muted);
  flex: 1;
}
.tile-link {
  display: inline-block;
  margin-top: var(--space-6);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.9375rem;
  text-decoration-color: var(--lime);
}
.tile-link:hover {
  color: var(--lime);
}
.js-on:not(.rm) [data-tile-group] > .tile-card {
  opacity: 0;
  transform: translateY(18px) scale(.88);
}
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split > .split-media {
    order: 2;
  }
}
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.split-media img {
  display: block;
  width: 100%;
  height: auto;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(10, 11, 14, .55));
  pointer-events: none;
}
.keyfacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line-soft);
}
.keyfacts dt {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--violet-text);
}
.keyfacts dd {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  color: var(--subtle);
}
@media (max-width: 560px) {
  .keyfacts {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}
.glow-zone {
  position: relative;
  isolation: isolate;
}
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(124, 92, 255, .5),
      transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity .4s var(--ease);
  will-change: transform;
}
.cursor-glow.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}
.gallery-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 780px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.js-on:not(.rm) [data-tile-group].gallery-grid > .gallery-item {
  opacity: 0;
  transform: translateY(18px) scale(.88);
  box-shadow: none;
}
.quote {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.quote cite {
  display: block;
  margin-top: var(--space-6);
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-text);
}
.js-on:not(.rm) .kt-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
  max-width: 680px;
  margin-inline: auto;
}
.trust-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}
.trust-list .dot-mark {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  transform: translateY(-2px);
}
.trust-list span:last-child {
  color: var(--muted);
}
.hours-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.hours-list {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
}
.hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-2);
  border-bottom: 1px dotted var(--line);
  font-size: var(--text-base);
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list .day {
  font-weight: 600;
}
.hours-list .dots {
  display: none;
}
.hours-list .time {
  color: var(--muted);
}
.hours-list .time.closed {
  font-style: italic;
  color: var(--subtle);
}
.hours-list li.is-today .day,
.hours-list li.is-today .time {
  color: var(--lime);
  font-weight: 700;
}
.hours-note {
  margin-top: var(--space-4);
  font-style: italic;
  color: var(--muted);
  font-size: var(--text-sm);
}
.faq {
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:first-child {
  border-top: 1px solid var(--line-soft);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-lg);
  text-align: left;
  cursor: pointer;
}
.faq-q:hover {
  color: var(--violet-text);
}
.faq-q .faq-icon {
  flex: none;
  color: var(--lime);
  font-family: var(--font-display);
  transition: transform var(--dur) var(--ease);
}
.faq-q[aria-expanded=true] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 0 var(--space-6);
  color: var(--muted);
  max-width: 62ch;
}
.faq-a[hidden] {
  display: none;
}
.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--violet-fill);
  border-radius: var(--radius);
  background:
    radial-gradient(
      700px 320px at 50% 0%,
      rgba(124, 92, 255, .18),
      transparent 70%),
    var(--surface-2);
}
.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
  color: var(--muted);
}
.cta-band .hero-actions {
  margin-top: var(--space-8);
}
.seo-text {
  max-width: 70ch;
  margin-inline: auto;
  color: var(--subtle);
  font-size: var(--text-sm);
  text-align: center;
}
.contact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line-soft);
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list .k {
  flex: none;
  width: 7.5rem;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  padding-top: 0.2rem;
}
.contact-list span:last-child {
  color: var(--muted);
}
.form-field {
  margin-bottom: var(--space-6);
}
.form-field label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--violet-fill);
  outline-offset: 1px;
  border-color: var(--violet-fill);
}
.form-hint {
  font-size: var(--text-sm);
  color: var(--subtle);
  margin-top: var(--space-2);
}
.pkg-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pkg-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--line-soft);
}
.pkg-list li:last-child {
  border-bottom: none;
}
.pkg-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.pkg-name {
  font-size: var(--text-lg);
}
.pkg-name em {
  color: var(--muted);
  font-size: var(--text-base);
  font-style: italic;
}
.pkg-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--violet-text);
  white-space: nowrap;
}
.pkg-note {
  margin-top: var(--space-6);
  font-style: italic;
  color: var(--muted);
}
.page-hero {
  position: relative;
  text-align: center;
  padding-block: clamp(4rem, 3rem + 6vw, 7rem);
  background:
    radial-gradient(
      800px 400px at 50% -20%,
      rgba(124, 92, 255, .14),
      transparent 65%),
    var(--black-deep);
}
.page-hero .eyebrow {
  margin-bottom: var(--space-4);
  justify-content: center;
}
.page-hero p {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: var(--text-lg);
}
.site-footer {
  background: var(--black-deep);
  border-top: 1px solid var(--line-soft);
  padding-block: var(--space-16) var(--space-8);
  font-size: var(--text-base);
}
.footer-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  margin-bottom: var(--space-12);
}
.footer-brand p {
  color: var(--muted);
  font-size: var(--text-base);
  max-width: 30ch;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-text);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col li {
  margin-bottom: var(--space-3);
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--lime);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line-soft);
  color: var(--subtle);
  font-size: var(--text-sm);
}
.footer-bottom a {
  color: var(--muted);
}
.legal {
  max-width: 72ch;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.legal h1 {
  margin-bottom: var(--space-6);
  font-size: var(--text-2xl);
}
.legal h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-12);
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal p,
.legal li,
.legal address {
  color: var(--muted);
}
.legal a {
  text-decoration: underline;
}
.error-404 {
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem);
}
.error-404 .code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 12vw, 8rem);
  color: var(--violet-fill);
  line-height: 1;
}
.js-on:not(.rm) [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}
.js-on:not(.rm) [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(16px);
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .tile-card,
  .faq-q .faq-icon {
    transition: none;
  }
  .btn-violet:hover,
  .tile-card:hover {
    transform: none;
  }
  .btn-eq span {
    animation: none;
    transform: scaleY(.8);
  }
  .eq-bar {
    animation: none !important;
    transform: scaleY(.6);
    opacity: .7;
  }
}
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .hero-actions,
  .wf-stage,
  .marquee,
  .scroll-eq,
  .cursor-glow {
    display: none;
  }
}
