/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --black:    #0e0b18;
  --dark:     #1a1230;
  --plum:     #2a1848;
  --pink:     #ff6eb4;
  --hot-pink: #ff2d8f;
  --lavender: #c48dff;
  --peach:    #ffbc96;
  --white:    #fdfaff;
  --muted:    #c4a8dc;

  --font-display: 'Syne', 'Arial Black', sans-serif;
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;

  --section-pad: clamp(60px, 10vw, 120px);
  --max-w:       1160px;
  --radius:      18px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)) scale(var(--sc, 1)); }
  50%       { transform: translateY(-20px) rotate(var(--rot, 0deg)) scale(var(--sc, 1)); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes blob-morph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  33%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  66%  { border-radius: 20% 60% 50% 40% / 70% 30% 60% 40%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 24px rgba(255,110,180,.7), 0 0 55px rgba(255,110,180,.35); }
  50%       { text-shadow: 0 0 45px rgba(255,45,143,1), 0 0 90px rgba(255,110,180,.6), 0 0 160px rgba(255,110,180,.3); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes sparkle-pop {
  0%   { transform: scale(0) rotate(0deg); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: scale(1) rotate(180deg); opacity: 0.6; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 1; transform: scale(1.2); }
}

/* ── Hello Modal (checkbox hack) ────────────────────────────────── */
.hello-toggle { display: none; }

.rx-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 8, 16, 0.93);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.hello-toggle:checked ~ .rx-overlay {
  opacity: 1;
  pointer-events: all;
}

.rx-content {
  text-align: center;
  padding: 2.5rem 3rem;
  max-width: 460px;
  width: calc(100% - 3rem);
  border: 2px solid rgba(255,110,180,.5);
  border-radius: var(--radius);
  background: var(--dark);
  position: relative;
  animation: scale-in 0.3s ease both;
}

.rx-sparkle {
  font-size: 3.2rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

.rx-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.rx-body {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.rx-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1rem 0;
}

.rx-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.rx-link:hover {
  background: rgba(255,110,180,.12);
  border-color: rgba(255,110,180,.4);
  color: var(--pink);
}

.rx-link span { opacity: 0.5; font-size: 1.1rem; }

.rx-sig {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 0.75rem;
  font-style: italic;
}

.rx-dismiss {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 2rem;
  background: var(--pink);
  color: var(--black);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s, filter 0.2s;
}

.rx-dismiss:hover { transform: scale(1.05); filter: brightness(1.1); }

.rx-close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.rx-close:hover { color: var(--white); }

/* ── Ticker ──────────────────────────────────────────────────────── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #3e1260 0%, #2e0e4a 50%, #3e1260 100%);
  border-bottom: 1px solid rgba(255,110,180,.2);
  color: var(--pink);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ticker {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  align-items: center;
}

.ticker span { padding: 0 1.2rem; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 95% 70% at 50% 38%, #3e1460 0%, #200c34 55%, var(--black) 80%);
  text-align: center;
  padding: var(--section-pad) 1.5rem;
}

.bg-shape {
  position: absolute;
  filter: blur(65px);
  opacity: 0.13;
  animation: blob-morph 14s ease-in-out infinite;
  pointer-events: none;
}

.bg-shape--1 {
  width: 650px; height: 650px;
  background: var(--pink);
  top: -160px; left: -200px;
  animation-duration: 16s;
  opacity: 0.18;
}

.bg-shape--2 {
  width: 420px; height: 420px;
  background: var(--lavender);
  bottom: -90px; right: -100px;
  animation-delay: -5s;
  animation-duration: 18s;
  opacity: 0.15;
}

.bg-shape--3 {
  width: 300px; height: 300px;
  background: var(--peach);
  top: 38%; left: 60%;
  animation-delay: -9s;
  animation-duration: 22s;
  opacity: 0.1;
}

.bg-shape--4 {
  width: 480px; height: 220px;
  background: var(--hot-pink);
  bottom: 28%; left: 3%;
  animation-delay: -3s;
  opacity: 0.1;
}

/* Floating sparkles */
.float-spark {
  position: absolute;
  pointer-events: none;
  animation: float 7s ease-in-out infinite;
  color: var(--pink);
}

.float-spark--1 { width: 80px;  top: 9%;   left: 5%;   --rot: -12deg; opacity: 0.25; animation-duration: 7s; color: var(--pink); }
.float-spark--2 { width: 48px;  top: 14%;  right: 7%;  --rot: 18deg;  opacity: 0.35; animation-duration: 8s;   animation-delay: -2s; color: var(--lavender); }
.float-spark--3 { width: 120px; bottom: 8%; right: 9%;  --rot: 30deg;  opacity: 0.18; animation-duration: 9.5s; animation-delay: -5s; color: var(--peach); }
.float-spark--4 { width: 36px;  bottom: 22%; left: 9%;  --rot: -25deg; opacity: 0.3;  animation-duration: 6s;   animation-delay: -1s; color: var(--lavender); }
.float-spark--5 { width: 64px;  top: 52%;  left: 3%;   --rot: 10deg;  opacity: 0.2;  animation-duration: 8.5s; animation-delay: -3s; color: var(--pink); }
.float-spark--6 { width: 44px;  top: 34%;  right: 4%;  --rot: -20deg; opacity: 0.28; animation-duration: 7.5s; animation-delay: -6s; color: var(--peach); }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  animation: fade-up 0.9s ease both;
}

.hero__eyebrow {
  font-size: clamp(0.7rem, 1.3vw, 0.82rem);
  letter-spacing: 0.28em;
  color: var(--lavender);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.85;
  margin-bottom: 2rem;
}

.hero__title--manic {
  display: block;
  font-size: clamp(4rem, 13vw, 10rem);
  color: var(--white);
  letter-spacing: 0.06em;
  text-indent: 0.06em;
}

.hero__title--marie {
  display: block;
  font-size: clamp(4rem, 13vw, 10rem);
  color: var(--pink);
  letter-spacing: 0.06em;
  text-indent: 0.06em;
  letter-spacing: 0.02em;
  animation: glow-pulse 4s ease-in-out infinite;
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero__sub strong {
  color: var(--white);
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  padding: 0.95rem 2.6rem;
  background: var(--pink);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.7vw, 1rem);
  letter-spacing: 0.07em;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(255,110,180,.4);
  text-decoration: none;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.04);
  filter: brightness(1.1);
  box-shadow: 0 0 65px rgba(255,110,180,.7);
}

.hero__fine {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 1.5rem;
  opacity: 0.55;
  font-style: italic;
}

/* ── Quote section ───────────────────────────────────────────────── */
.quote-section {
  padding: var(--section-pad) 1.5rem;
  background: linear-gradient(180deg, #1e1438 0%, #221848 50%, #1a1230 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-bg-art {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  opacity: 0.025;
  pointer-events: none;
  filter: blur(4px);
  animation: spin-slow 60s linear infinite;
  white-space: nowrap;
  color: var(--pink);
}

.the-quote {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
}

.the-quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.the-quote em {
  color: var(--pink);
  font-style: normal;
}

.the-quote cite {
  font-size: clamp(0.82rem, 1.5vw, 0.97rem);
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.the-quote cite small {
  display: block;
  margin-top: 0.4rem;
  font-style: italic;
  color: var(--lavender);
  opacity: 0.8;
}

/* ── Shared section header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 0.28rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,110,180,.2);
  border-radius: 50px;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  color: var(--pink);
  text-transform: uppercase;
  font-weight: 700;
}

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.03em;
  margin: 0.6rem 0 0.4rem;
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: clamp(0.88rem, 1.8vw, 1rem);
}

/* ── Stats ───────────────────────────────────────────────────────── */
.stats-section {
  padding: var(--section-pad) 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-bottom: 1.2rem;
}

.stat-card {
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  background: #1e1638;
  border: 1px solid rgba(255,255,255,0.08);
  border-top-width: 3px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.stat-card:hover { transform: translateY(-6px); }

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  border-radius: inherit;
}

.stat-card--pink     { border-top-color: var(--pink); }
.stat-card--pink::before     { background: var(--pink); }
.stat-card--lavender { border-top-color: var(--lavender); }
.stat-card--lavender::before { background: var(--lavender); }
.stat-card--peach    { border-top-color: var(--peach); }
.stat-card--peach::before    { background: var(--peach); }
.stat-card--white    { border-top-color: rgba(253,244,255,.4); }
.stat-card--white::before    { background: var(--white); }

.stat-card__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1;
}

.stat-card--pink .stat-card__number     { color: var(--pink); }
.stat-card--lavender .stat-card__number { color: var(--lavender); }
.stat-card--peach .stat-card__number    { color: var(--peach); }
.stat-card--white .stat-card__number    { color: var(--white); }

.stat-card__label {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.87rem;
  line-height: 1.45;
}

.stat-card__icon {
  position: absolute;
  bottom: 0.9rem;
  right: 1.1rem;
  font-size: 1.9rem;
  opacity: 0.4;
}

.stats-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-style: italic;
  opacity: 0.6;
}

/* ── About cards ─────────────────────────────────────────────────── */
.about-section {
  padding: var(--section-pad) 1.5rem;
  background: linear-gradient(160deg, #1c1435 0%, #221840 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-card {
  padding: 2rem;
  background: #120e22;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform 0.3s, border-color 0.3s;
}

.about-card--pink     { background: linear-gradient(145deg, #1a0e28 0%, #260e30 100%); }
.about-card--lavender { background: linear-gradient(145deg, #120e28 0%, #1a1240 100%); }
.about-card--peach    { background: linear-gradient(145deg, #1a1018 0%, #241624 100%); }

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,110,180,.3);
}

.about-card__icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.about-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.about-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-card__tag {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.22rem 0.75rem;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 4px;
  text-transform: uppercase;
}

.about-card--pink     .about-card__tag { background: rgba(255,110,180,.15); color: var(--pink); }
.about-card--lavender .about-card__tag { background: rgba(192,132,252,.15); color: var(--lavender); }
.about-card--peach    .about-card__tag { background: rgba(255,184,140,.15); color: var(--peach); }

/* ── Manifesto ───────────────────────────────────────────────────── */
.manifesto-section {
  padding: var(--section-pad) 1.5rem;
  background: linear-gradient(160deg, #2e1850 0%, #3a2060 50%, #261448 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28rem;
  opacity: 0.04;
  pointer-events: none;
  filter: blur(6px);
  animation: spin-slow 70s linear infinite;
  line-height: 1;
  color: var(--pink);
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.manifesto-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  letter-spacing: 0.06em;
  color: var(--pink);
  margin: 0.75rem 0 2rem;
}

.manifesto-list {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.manifesto-list li {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  padding: 0.7rem 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  transition: color 0.2s, padding-left 0.2s;
}

.manifesto-list li:last-child { border-bottom: none; }
.manifesto-list li:hover { color: var(--pink); padding-left: 0.4rem; }

.manifesto-list li::before {
  content: '✦';
  font-size: 0.75em;
  flex-shrink: 0;
  color: var(--pink);
  opacity: 0.7;
}

.manifesto-list em {
  color: var(--lavender);
  font-style: normal;
  font-weight: 700;
}

/* ── CTA ─────────────────────────────────────────────────────────── */
.cta-section {
  padding: var(--section-pad) 1.5rem;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--pink);
  top: -260px; left: 50%;
  transform: translateX(-50%);
  filter: blur(120px);
  opacity: 0.14;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: var(--lavender);
  bottom: -100px; right: 8%;
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}

.cta-sparkle {
  font-size: 4.5rem;
  display: block;
  margin: 0 auto 1.2rem;
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.05;
}

.cta-section p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: clamp(0.93rem, 2vw, 1.08rem);
  position: relative;
  z-index: 1;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  padding: 3rem 1.5rem 2.5rem;
  background: var(--dark);
  border-top: 1px solid rgba(255,110,180,.08);
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-icon {
  font-size: 2rem;
  opacity: 0.5;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}

.footer-tagline {
  font-size: 0.97rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-tagline strong { color: var(--pink); }

.footer-copy {
  font-size: 0.77rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.footer-disclaimer {
  font-size: 0.69rem;
  color: var(--muted);
  opacity: 0.42;
  font-style: italic;
  line-height: 1.65;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero__title--manic { font-size: clamp(3rem, 16vw, 5.5rem); }
  .hero__title--marie { font-size: clamp(3rem, 16vw, 5.5rem); }
  .rx-content { padding: 2rem 1.5rem; }
  .manifesto-bg { font-size: 12rem; }
  .quote-bg-art { font-size: 10rem; }
}

/* ── Marie Dancer ────────────────────────────────────────────────── */
.hero__dancer {
  position: absolute;
  bottom: 0;
  right: 3%;
  width: 230px;
  z-index: 2;
  filter: drop-shadow(0 8px 28px rgba(255,110,180,0.35));
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero__dancer { display: none; }
}
