:root {
  --bg: #070b12;
  --bg-2: #0d1721;
  --panel: rgba(12, 22, 33, 0.78);
  --panel-strong: rgba(8, 14, 22, 0.92);
  --line: rgba(116, 231, 255, 0.18);
  --text: #eef8ff;
  --muted: #a9bfd0;
  --cyan: #4de8ff;
  --blue: #1587ff;
  --orange: #ff8a28;
  --purple: #9b4dff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(77, 232, 255, 0.16), transparent 32rem),
    radial-gradient(circle at 92% 14%, rgba(255, 138, 40, 0.14), transparent 28rem),
    linear-gradient(180deg, #07101a 0%, #05080e 45%, #090b11 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.02));
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.09;
  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='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  z-index: 20;
  mix-blend-mode: screen;
}

.parallax-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.layer-depth {
  background:
    radial-gradient(circle at 10% 86%, rgba(22, 135, 255, 0.11), transparent 18rem),
    radial-gradient(circle at 82% 88%, rgba(155, 77, 255, 0.12), transparent 22rem);
  transform: translate3d(0, var(--scroll-depth, 0px), 0);
}

.layer-glow {
  background:
    radial-gradient(circle at 28% 54%, rgba(77, 232, 255, 0.07), transparent 12rem),
    radial-gradient(circle at 70% 44%, rgba(255, 138, 40, 0.08), transparent 12rem);
  filter: blur(8px);
  transform: translate3d(0, var(--scroll-glow, 0px), 0);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(6, 12, 19, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border-radius: 22px;
}

.site-header.compact {
  position: sticky;
  transform: none;
  left: auto;
  margin: 16px auto 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, var(--orange), transparent 48%),
    linear-gradient(225deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(77,232,255,0.35);
  transform: rotate(8deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(77, 232, 255, 0.1);
}

.nav-toggle {
  display: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 1.2rem;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 20px 90px;
}

.hero-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  opacity: 0.42;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.05);
  filter: saturate(1.1) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.94) 0%, rgba(5, 7, 12, 0.75) 42%, rgba(5, 7, 12, 0.24) 100%),
    linear-gradient(180deg, rgba(5,7,12,0.2), rgba(5,7,12,0.82) 84%, #05080e 100%);
}

.hero-content {
  width: min(1180px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 9vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.hero-text {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), #ffb23d 40%, var(--cyan));
  color: #061019;
  box-shadow: 0 14px 35px rgba(255,138,40,0.24);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.quick-facts {
  width: min(1180px, calc(100% - 32px));
  margin: -62px auto 30px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(8, 15, 24, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-facts article {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  color: var(--cyan);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
}

.quick-facts span {
  font-size: 1.04rem;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 50px;
}

.split > div:first-child p:not(.eyebrow),
.panel-content p,
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

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

.feature-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(77,232,255,0.12), transparent 18rem),
    rgba(13, 24, 35, 0.76);
  box-shadow: 0 22px 50px rgba(0,0,0,0.25);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(77,232,255,0.12);
  color: var(--cyan);
  box-shadow: inset 0 0 20px rgba(77,232,255,0.12);
}

.dark-panel {
  width: min(1180px, calc(100% - 32px));
  border: 1px solid rgba(255, 138, 40, 0.22);
  border-radius: 34px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,138,40,0.14), transparent 42%),
    linear-gradient(225deg, rgba(77,232,255,0.12), transparent 38%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.panel-content {
  padding: clamp(34px, 6vw, 76px);
}

.panel-content p {
  max-width: 880px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  min-height: 240px;
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
  box-shadow: 0 24px 55px rgba(0,0,0,0.32);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.details {
  padding-top: 70px;
}

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

.detail-list div {
  padding: 20px;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(11, 21, 32, 0.76);
}

.detail-list span,
.detail-list strong {
  display: block;
}

.detail-list span {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 9px;
}

.detail-list strong {
  font-size: 1.03rem;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(6, 12, 19, 0.74);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-footer p {
  margin: 5px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
}

.lightbox {
  width: min(1120px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 0;
  background: #02050a;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  border-radius: 26px;
}

.lightbox-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(0,0,0,0.55);
  font-size: 1.5rem;
  cursor: pointer;
}

.bat {
  position: absolute;
  width: 72px;
  height: 38px;
  z-index: 1;
  opacity: 0.5;
  background: #020307;
  clip-path: polygon(0 52%, 20% 20%, 36% 52%, 50% 24%, 64% 52%, 80% 20%, 100% 52%, 76% 62%, 55% 58%, 50% 78%, 45% 58%, 24% 62%);
  filter: drop-shadow(0 0 12px rgba(155,77,255,0.55));
  animation: floatBat 8s ease-in-out infinite;
}

.bat-1 { top: 18%; left: 68%; transform: scale(1.2) rotate(-10deg); }
.bat-2 { top: 31%; left: 78%; transform: scale(0.75) rotate(15deg); animation-delay: -2s; }
.bat-3 { top: 38%; left: 58%; transform: scale(0.55) rotate(-22deg); animation-delay: -4s; }

@keyframes floatBat {
  0%, 100% { translate: 0 0; }
  45% { translate: 18px -20px; }
}

.crystal {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 82px;
  opacity: 0.72;
  clip-path: polygon(50% 0, 100% 22%, 82% 100%, 18% 100%, 0 22%);
  filter: drop-shadow(0 0 18px currentColor);
  animation: pulseCrystal 3.2s ease-in-out infinite;
}

.crystal-1 { left: 11%; bottom: 18%; color: var(--cyan); background: linear-gradient(135deg, #9fffff, #168cff); }
.crystal-2 { right: 13%; bottom: 24%; color: var(--orange); background: linear-gradient(135deg, #ffd36e, #ff6b1c); animation-delay: -1.4s; }
.crystal-3 { right: 26%; top: 32%; width: 22px; height: 52px; color: var(--purple); background: linear-gradient(135deg, #d59cff, #742dff); animation-delay: -2.1s; }

@keyframes pulseCrystal {
  0%, 100% { opacity: 0.58; transform: translateY(0); }
  50% { opacity: 0.95; transform: translateY(-8px); }
}

.policy-page {
  background:
    radial-gradient(circle at 14% 12%, rgba(77, 232, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(255, 138, 40, 0.12), transparent 26rem),
    var(--bg);
}

.policy-shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 28px;
}

.policy-hero {
  padding: 80px 0 34px;
}

.policy-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  max-width: 880px;
}

.policy-hero p:last-child {
  color: var(--muted);
}

.policy-card {
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(8, 15, 24, 0.86);
  box-shadow: var(--shadow);
}

.policy-card h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card strong {
  color: var(--text);
}

.policy-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 16px;
}

.policy-card th,
.policy-card td {
  padding: 14px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.policy-card th {
  color: var(--text);
  background: rgba(77, 232, 255, 0.08);
}

.policy-card td {
  color: var(--muted);
}

.policy-card a {
  color: var(--cyan);
  font-weight: 800;
}

@media (max-width: 920px) {
  .quick-facts,
  .detail-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts article:nth-child(2) {
    border-right: 0;
  }

  .quick-facts article:nth-child(1),
  .quick-facts article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

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

@media (max-width: 720px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 14px;
  }

  .hero {
    padding-top: 126px;
  }

  .quick-facts,
  .feature-grid,
  .gallery-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .quick-facts article,
  .quick-facts article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts article:last-child {
    border-bottom: 0;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-card {
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-cover,
  .layer-depth,
  .layer-glow {
    transform: none !important;
  }
}
