:root {
  --bg: #08020d;
  --bg-2: #12051b;
  --card: rgba(18, 7, 26, 0.64);
  --card-strong: rgba(20, 8, 30, 0.86);
  --text: #fff8ff;
  --muted: #d8c2dd;
  --muted-2: #a98db2;
  --pink: #ff78d6;
  --pink-2: #ffb3ea;
  --purple: #7c28ff;
  --line: rgba(255, 142, 224, 0.28);
  --shadow: 0 28px 95px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 84, 215, 0.16), transparent 34rem),
    radial-gradient(circle at 82% 38%, rgba(132, 43, 255, 0.14), transparent 30rem),
    linear-gradient(180deg, #09020e 0%, #08020d 45%, #040106 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.72) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(255, 116, 216, .42) 0 1px, transparent 1.2px),
    radial-gradient(circle at 50% 50%, rgba(255, 84, 207, .12), transparent 34%);
  background-size: 120px 120px, 190px 190px, 100% 100%;
  opacity: .34;
  animation: starDrift 28s linear infinite;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10vw -22vh -10vw;
  height: 46vh;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 80, 211, .18), rgba(70, 16, 92, .06) 42%, transparent 70%);
  filter: blur(18px);
  z-index: -2;
}

@keyframes starDrift {
  0% { background-position: 0 0, 0 0, center; }
  100% { background-position: 120px 120px, -190px 190px, center; }
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  background: var(--pink);
  color: #160019;
  padding: 10px 14px;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

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

.section { position: relative; padding: 96px 0; }
.section + .section { margin-top: -20px; }

.site-header {
  position: fixed;
  inset: 14px 0 auto 0;
  z-index: 100;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 172, 232, .18);
  border-radius: 999px;
  background: rgba(6, 1, 10, .48);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 1, 10, .76);
  border-color: rgba(255, 172, 232, .28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: .06em;
  color: #fff;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 104, 221, .38);
}
.brand span {
  text-shadow: 0 0 18px rgba(255, 102, 218, .88);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
  font-size: 14px;
}
.site-nav a:hover, .site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 127, 222, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 153, 229, .22), 0 0 24px rgba(255, 114, 220, .16);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 172, 232, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  display: block;
  margin: 3px auto;
  box-shadow: 0 0 14px rgba(255, 120, 214, .65);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .58;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8,2,13,.92) 0%, rgba(8,2,13,.72) 38%, rgba(8,2,13,.36) 64%, rgba(8,2,13,.72) 100%),
    linear-gradient(180deg, rgba(8,2,13,.35) 0%, rgba(8,2,13,.74) 100%);
}
.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  left: 9vw;
  top: 22vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 218, .25), transparent 63%);
  filter: blur(12px);
  z-index: -1;
  animation: pulseGlow 4.8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { transform: scale(1); opacity: .65; }
  50% { transform: scale(1.08); opacity: .9; }
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.88) 0 1px, transparent 1.3px), radial-gradient(circle, rgba(255,108,218,.9) 0 1.5px, transparent 1.9px);
  background-size: 94px 94px, 170px 170px;
  opacity: .34;
  mix-blend-mode: screen;
  animation: starDrift 38s linear infinite;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  justify-content: center;
}
.hero-copy {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(24px, 4.5vw, 48px);
  text-align: center;
  border: 1px solid rgba(255, 160, 226, .20);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(11, 2, 17, .76), rgba(29, 8, 42, .42));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--pink-2);
  font-size: 14px;
  letter-spacing: .04em;
  font-weight: 800;
  text-shadow: 0 0 22px rgba(255, 101, 219, .42);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 8vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h1 span {
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 113, 220, .9), 0 0 48px rgba(255, 80, 210, .54);
}
.hero-text {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.95;
}
.hero-actions, .links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 172, 232, .24);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 14px 38px rgba(0,0,0,.22);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(120%);
  transition: transform .55s ease;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 166, 230, .5);
  box-shadow: 0 18px 44px rgba(255, 85, 213, .16), inset 0 0 0 1px rgba(255,255,255,.08);
  outline: none;
}
.btn:hover::before, .btn:focus-visible::before { transform: translateX(-120%); }
.btn-primary {
  background: linear-gradient(135deg, rgba(255, 94, 213, .88), rgba(118, 42, 255, .75));
  color: #fff;
  border-color: rgba(255, 206, 246, .45);
}
.btn-support {
  background: linear-gradient(135deg, rgba(8, 2, 13, .92), rgba(65, 12, 72, .72));
  border-color: rgba(255, 124, 222, .52);
}


.section-head { max-width: 560px; }
.section-head.centered {
  text-align: center;
  margin-inline: auto;
  max-width: 760px;
}
.section-head h2, .cta-card h2, .support-card h2 {
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-intro, .section-head p:not(.eyebrow), .glass-card p, .feature-card p, .cta-card p, .support-card p {
  color: var(--muted);
  line-height: 1.95;
  font-size: 17px;
}

.split-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}
.glass-card, .feature-card, .cta-card, .support-card, .link-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-card { padding: clamp(24px, 4vw, 42px); }
.about-card p:last-child { margin-bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.feature-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 45%;
  background: radial-gradient(ellipse, rgba(255, 80, 212, .22), transparent 65%);
}
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 101, 219, .13);
  border: 1px solid rgba(255, 162, 230, .22);
  box-shadow: 0 0 34px rgba(255, 82, 210, .18);
  margin-bottom: 18px;
  font-size: 24px;
}
.feature-card h3 { font-size: 24px; margin-bottom: 10px; }
.feature-card p { margin-bottom: 0; }

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.art-card {
  position: relative;
  display: block;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(20, 8, 30, .55);
  box-shadow: 0 20px 70px rgba(0,0,0,.34), 0 0 0 1px rgba(255, 159, 229, .20);
  transition: transform .28s ease, box-shadow .28s ease;
}
.art-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.art-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 182, 236, .22), inset 0 0 35px rgba(255, 87, 211, .10);
  pointer-events: none;
}
.art-card span {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(5, 1, 8, .66);
  color: #fff;
  border: 1px solid rgba(255, 161, 230, .24);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  font-size: 14px;
}
.art-card:hover, .art-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 26px 90px rgba(0,0,0,.44), 0 0 42px rgba(255, 88, 215, .20);
  outline: none;
}
.art-card:hover img, .art-card:focus-visible img { transform: scale(1.035); filter: saturate(1.06); }
.art-card:hover span, .art-card:focus-visible span { opacity: 1; transform: translateY(0); }

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 5vw, 46px);
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 89, 216, .18), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
}
.cta-card p { max-width: 720px; margin-bottom: 0; }
.cta-card .btn { min-width: 220px; }

.support-card {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 88, 213, .24), transparent 28rem),
    linear-gradient(135deg, rgba(9,2,13,.92), rgba(36, 8, 48, .82));
}
.support-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(255, 164, 230, .18);
  pointer-events: none;
}
.support-heart {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255, 170, 231, .22);
  font-size: 34px;
  box-shadow: 0 0 40px rgba(255, 87, 211, .18);
}
.support-card p { max-width: 660px; margin: 0 auto 28px; }

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.link-card:hover, .link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 162, 230, .45);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 20px 58px rgba(255, 84, 211, .12);
  outline: none;
}
.link-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  background: rgba(255, 102, 218, .12);
  border: 1px solid rgba(255, 163, 231, .22);
  color: #fff;
  font-size: 24px;
}
.link-card strong { display: block; margin-bottom: 4px; }
.link-card small { display: block; color: var(--muted-2); line-height: 1.5; }

.site-footer {
  padding: 52px 0 38px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.36));
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 160, 226, .16);
  padding-top: 28px;
}
.footer-inner img { border-radius: 50%; box-shadow: 0 0 30px rgba(255, 96, 216, .22); }
.footer-inner p { margin: 0; color: var(--muted); line-height: 1.8; text-align: center; }
.back-top { color: var(--pink-2); font-weight: 700; }
.powered-wrap {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}
.powered-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 172, 232, .20);
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 14px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.powered-badge strong {
  color: #fff;
  font-size: 14px;
  text-shadow: 0 0 18px rgba(255, 101, 219, .36);
}
.powered-badge span { font-size: 13px; color: var(--muted-2); }
.powered-badge:hover, .powered-badge:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 172, 232, .38);
  box-shadow: 0 18px 52px rgba(255, 84, 211, .12), inset 0 0 0 1px rgba(255,255,255,.06);
  outline: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-height: min(88svh, 920px);
  width: min(100%, 680px);
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(255, 172, 232, .22), 0 0 60px rgba(255, 83, 211, .18), 0 30px 120px rgba(0,0,0,.78);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  left: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 172, 232, .3);
  background: rgba(15, 4, 20, .9);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .site-header { width: min(100% - 24px, var(--max)); }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(7, 1, 11, .92);
    border: 1px solid rgba(255, 172, 232, .18);
    box-shadow: 0 18px 70px rgba(0,0,0,.5);
    backdrop-filter: blur(18px);
    transform-origin: top;
    transform: scaleY(.92) translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: scaleY(1) translateY(0); }
  .site-nav a { text-align: center; background: rgba(255,255,255,.05); }

  .hero { padding-top: 112px; }
  .hero-inner { grid-template-columns: minmax(0, 760px); }
  .split-layout { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .art-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-card { display: grid; text-align: center; justify-items: center; }
  .links-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, var(--max)); }
  .section { padding: 72px 0; }
  .site-header { inset: 10px 0 auto 0; }
  .brand span { display: none; }
  .hero { min-height: auto; padding: 94px 0 66px; }
  .hero::before {
    background: linear-gradient(180deg, rgba(8,2,13,.34) 0%, rgba(8,2,13,.72) 45%, rgba(8,2,13,.95) 100%);
  }
  .hero-bg { opacity: .22; }
  .hero-copy { padding: 22px; text-align: center; }
  .hero-actions { justify-content: center; }
  .btn { width: 100%; }
  h1 { font-size: clamp(40px, 13vw, 64px); }
  .hero-text { font-size: 16px; line-height: 1.9; }
  .section-head.centered { text-align: right; }
  .art-grid { grid-template-columns: 1fr; gap: 14px; }
  .art-card span { opacity: 1; transform: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .lightbox { padding: 16px; }
}
