/* =========================
   NextLisict Dance Studio
   Pure CSS (no frameworks)
   ========================= */

:root{
  --bg-0: #070b14;
  --bg-1: #0b0f1a;
  --bg-2: #0f1424;

  --paper: #ffffff;
  --muted: #94a3b8;
  --text: #0b1020;

  --accent-1: #ff4dd8;
  --accent-2: #5b8cff;
  --accent-3: #22e3b6;
  --accent-4: #ff9a3d;

  --shadow-1: 0 12px 34px rgba(5, 10, 25, 0.10);
  --shadow-2: 0 18px 48px rgba(5, 10, 25, 0.14);

  --radius-1: 14px;
  --radius-2: 22px;

  --container: 1180px;

  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Bebas Neue", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html{
  font-size: 17px;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(255, 77, 216, 0.08), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(91, 140, 255, 0.08), transparent 60%),
    radial-gradient(900px 500px at 50% 90%, rgba(34, 227, 182, 0.08), transparent 60%),
    #f6f7fb;
  overflow-x: hidden;
}

/* ===== Background blobs ===== */
.bg-blobs{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.blob{
  position: absolute;
  filter: blur(40px);
  opacity: .85;
  transform: translateZ(0);
}
.b1{
  width: 420px; height: 420px;
  left: -120px; top: -120px;
  background: radial-gradient(circle at 30% 30%, var(--accent-1), transparent 60%),
              radial-gradient(circle at 70% 70%, var(--accent-4), transparent 60%);
}
.b2{
  width: 520px; height: 520px;
  right: -160px; top: 120px;
  background: radial-gradient(circle at 30% 30%, var(--accent-2), transparent 60%),
              radial-gradient(circle at 70% 70%, var(--accent-3), transparent 60%);
}
.b3{
  width: 520px; height: 520px;
  left: 10%; bottom: -220px;
  background: radial-gradient(circle at 30% 30%, var(--accent-3), transparent 60%),
              radial-gradient(circle at 70% 70%, var(--accent-1), transparent 60%);
}

/* ===== Utilities ===== */
.container{
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section{
  padding: 4.2rem 0;
}
.section.alt{
  background: linear-gradient(135deg, rgba(91,140,255,0.06), rgba(255,77,216,0.06), rgba(34,227,182,0.06));
}

.section-head{
  max-width: 820px;
  margin-bottom: 2.2rem;
}
.section-head h2{
  margin: .6rem 0 .8rem;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #0b1020;
  color: #fff;
}
.pill.soft{
  background: #ffffff;
  color: #0b1020;
  border: 1px solid rgba(2,6,23,.08);
}

/* ===== Typography ===== */
h1, h2, h3{
  font-family: var(--font-display);
  letter-spacing: .02em;
  line-height: .98;
}
h1{
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
}
h2{
  font-size: clamp(2rem, 3.8vw, 2.8rem);
}
h3{
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
}

p{
  color: #1f2937;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.lead{
  font-size: 1.05rem;
  color: #253046;
}

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(2,6,23,.06);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: inherit;
}
.brand-dot{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: conic-gradient(from 0deg, var(--accent-1), var(--accent-4), var(--accent-3), var(--accent-2), var(--accent-1));
  box-shadow: var(--shadow-1);
}
.brand-dot.small{
  width: 20px; height: 20px;
  border-radius: 8px;
}
.brand-text{
  display: grid;
}
.brand-name{
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-sub{
  font-size: .78rem;
  color: #5b6477;
  margin-top: -2px;
}

/* Nav desktop */
.site-nav{
  display: flex;
  align-items: center;
  gap: .9rem;
}
.site-nav a{
  text-decoration: none;
  color: #0b1020;
  font-weight: 600;
  font-size: .95rem;
  padding: .35rem .1rem;
  position: relative;
  opacity: .88;
}
.site-nav a:hover{ opacity: 1; }
.site-nav .nav-cta{
  padding: .5rem .9rem;
  border-radius: 12px;
  background: #0b1020;
  color: #fff;
}

/* Mobile toggle */
.nav-toggle{
  display: none;
  width: 40px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(2,6,23,.08);
  background: #fff;
  cursor: pointer;
  gap: 5px;
  padding: 7px 8px;
}
.nav-toggle span{
  display: block;
  height: 2px;
  background: #0b1020;
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  will-change: transform;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}
.btn.primary{
  color: #0b1020;
  background:
    linear-gradient(120deg, rgba(255,77,216,.14), rgba(91,140,255,.14), rgba(34,227,182,.14)),
    #ffffff;
  border-color: rgba(2,6,23,.08);
}
.btn.ghost{
  background: #ffffff;
  border-color: rgba(2,6,23,.08);
  color: #0b1020;
}
.btn.full{ width: 100%; }

.btn.small{
  padding: .55rem .85rem;
  font-size: .9rem;
}

/* ===== Hero ===== */
.hero{
  padding: 3.6rem 0 4.6rem;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.4rem;
  align-items: center;
}

.hero-actions{
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 1.6rem;
}

.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .8rem;
}
.stat{
  background: #fff;
  border: 1px solid rgba(2,6,23,.06);
  border-radius: var(--radius-1);
  padding: .9rem 1rem;
}
.stat-num{
  font-weight: 800;
  font-size: 1.02rem;
}
.stat-text{
  font-size: .88rem;
  color: #5d667a;
  margin-top: .15rem;
}

.hero-visual{
  position: relative;
  min-height: 420px;
}
.hero-visual img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-2);
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: var(--shadow-2);
  background: #e9edf7;
}

.hero-card{
  position: absolute;
  width: min(240px, 70%);
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  padding: .9rem 1rem;
  box-shadow: var(--shadow-1);
}
.hero-card .tag{
  font-weight: 800;
  font-size: .95rem;
}
.hero-card .small{
  font-size: .88rem;
  color: #5c6578;
  margin-top: .25rem;
}
.hero-card.c1{
  left: -18px; bottom: 34px;
  border-left: 4px solid var(--accent-1);
}
.hero-card.c2{
  right: -18px; top: 26px;
  border-left: 4px solid var(--accent-2);
}

/* ===== Cards ===== */
.cards{
  display: grid;
  gap: 1.1rem;
}
.cards.three{
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.card{
  background: #fff;
  border: 1px solid rgba(2,6,23,.06);
  border-radius: var(--radius-2);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: var(--shadow-1);
}
.card h3{ margin: .1rem 0 .6rem; }

.card.gradient-a{
  background:
    linear-gradient(140deg, rgba(255,77,216,.08), rgba(91,140,255,.06), rgba(34,227,182,.06)),
    #fff;
}
.card.gradient-b{
  background:
    linear-gradient(140deg, rgba(34,227,182,.08), rgba(255,154,61,.06), rgba(91,140,255,.06)),
    #fff;
}
.card.gradient-c{
  background:
    linear-gradient(140deg, rgba(91,140,255,.08), rgba(255,77,216,.06), rgba(255,154,61,.06)),
    #fff;
}

.list{
  padding-left: 1.1rem;
  margin: .8rem 0 0;
}
.list li{
  margin: .28rem 0;
  color: #3b4456;
}

/* ===== Split layouts ===== */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.media-stack{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.media-stack img,
.media-single img{
  width: 100%;
  border-radius: var(--radius-2);
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: var(--shadow-1);
  object-fit: cover;
  min-height: 220px;
  background: #e9edf7;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.1rem 0 .9rem;
}
.chips span{
  padding: .4rem .7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  font-weight: 600;
  font-size: .9rem;
}

.mini-note{
  background: #fff;
  border: 1px dashed rgba(2,6,23,.14);
  border-radius: var(--radius-1);
  padding: .9rem 1rem;
  color: #4a5366;
}

/* ===== Features ===== */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}
.feature{
  background: #fff;
  border: 1px solid rgba(2,6,23,.06);
  border-radius: var(--radius-1);
  padding: 1.15rem 1.1rem 1rem;
}
.feature-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255,77,216,.18), rgba(91,140,255,.18), rgba(34,227,182,.18)),
    #fff;
  border: 1px solid rgba(2,6,23,.06);
  margin-bottom: .7rem;
}

/* ===== Profiles ===== */
.card.profile{
  padding: 1.2rem 1.2rem 1.35rem;
}
.card.profile img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.08);
  margin-bottom: 1rem;
  background: #e9edf7;
}
.role{
  font-weight: 600;
  font-size: .9rem;
  color: #5f687b;
  margin-bottom: .5rem;
}

/* ===== Quotes ===== */
.card.quote{
  position: relative;
}
.card.quote p{
  font-size: 1.02rem;
}
.who{
  margin-top: .8rem;
  font-weight: 700;
  font-size: .92rem;
  color: #0b1020;
}

/* ===== FAQ ===== */
.faq{
  max-width: 920px;
}
.faq details{
  background: #fff;
  border: 1px solid rgba(2,6,23,.06);
  border-radius: var(--radius-1);
  padding: .9rem 1rem;
  margin-bottom: .7rem;
}
.faq summary{
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq-body{
  color: #4a5366;
  padding: .7rem 0 .2rem;
}

/* ===== Contact ===== */
.contact-card{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.4rem;
  background:
    linear-gradient(135deg, rgba(255,77,216,.08), rgba(91,140,255,.08), rgba(34,227,182,.08)),
    #fff;
  border: 1px solid rgba(2,6,23,.06);
  border-radius: var(--radius-2);
  padding: 1.6rem;
  box-shadow: var(--shadow-1);
}
.contact-lines{
  display: grid;
  gap: .7rem;
  margin-top: 1.2rem;
}
.line{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: .7rem;
  align-items: baseline;
}
.label{
  font-size: .82rem;
  color: #667085;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.line a{
  color: #0b1020;
  font-weight: 600;
  text-decoration: none;
}

.contact-form{
  background: #fff;
  border: 1px solid rgba(2,6,23,.06);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1rem;
}
.field{
  display: grid;
  gap: .35rem;
  margin-bottom: .9rem;
}
label{
  font-weight: 700;
  font-size: .92rem;
}
input, textarea{
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .75rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(2,6,23,.12);
  background: #fff;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(91,140,255,.5);
  box-shadow: 0 0 0 4px rgba(91,140,255,.12);
}
.form-hint{
  min-height: 1.1rem;
  margin-top: .6rem;
  font-size: .92rem;
  font-weight: 600;
}

/* ===== Footer ===== */
.site-footer{
  background:
    radial-gradient(700px 280px at 10% 10%, rgba(255,77,216,.18), transparent 60%),
    radial-gradient(800px 320px at 90% 20%, rgba(91,140,255,.18), transparent 60%),
    #050712;
  color: #e5e7eb;
  padding: 3.2rem 0 1.2rem;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 1.2rem;
  align-items: start;
}
.brand-inline{
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.foot-name{
  font-weight: 800;
  font-size: 1.05rem;
}
.foot-sub{
  color: #aab4c2;
  font-size: .92rem;
  margin-top: .25rem;
}
.foot-col{
  display: grid;
  gap: .35rem;
}
.foot-title{
  font-size: .8rem;
  color: #9aa4b2;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: .25rem;
}
.site-footer a{
  color: #d6dbe4;
  text-decoration: none;
  font-weight: 500;
}
.site-footer a:hover{ color: #ffffff; }
.foot-line{
  color: #cbd5e1;
  font-size: .95rem;
}

.foot-bottom{
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  color: #aab4c2;
  font-size: .9rem;
}
.foot-sep{ opacity: .5; }

/* ===== Cookie banner ===== */
.cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 0 0 1rem 0;
  display: none;
  z-index: 100;
}
.cookie-banner.show{ display: block; }

.cookie-inner{
  width: min(92%, 980px);
  margin: 0 auto;
  background: #0b1020;
  color: #f8fafc;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 18px 50px rgba(2,6,23,.35);
}
.cookie-text{
  display: grid;
  gap: .25rem;
  font-size: .95rem;
}
.cookie-text strong{
  letter-spacing: .04em;
}
.cookie-text span{
  color: #cbd5e1;
}
.cookie-actions{
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.cookie-actions .btn{
  border-color: rgba(255,255,255,.12);
}
.cookie-actions .btn.ghost{
  background: transparent;
  color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .feature-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .hero-visual img{
    height: 380px;
  }
  .split{
    grid-template-columns: 1fr;
  }
  .cards.three{
    grid-template-columns: 1fr 1fr;
  }
  .contact-card{
    grid-template-columns: 1fr;
  }
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px){
  .site-nav{
    position: absolute;
    top: 100%;
    right: 4%;
    left: 4%;
    background: #ffffff;
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 16px;
    padding: .9rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    box-shadow: var(--shadow-1);
  }
  .site-nav.open{ display: flex; }

  .site-nav a{
    padding: .6rem .65rem;
    border-radius: 10px;
  }
  .site-nav .nav-cta{
    text-align: center;
  }

  .nav-toggle{
    display: inline-grid;
  }

  .hero-stats{
    grid-template-columns: 1fr;
  }
  .cards.three{
    grid-template-columns: 1fr;
  }
  .feature-grid{
    grid-template-columns: 1fr;
  }
  .cookie-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px){
  .hero-card{
    position: static;
    width: 100%;
    margin-top: .8rem;
  }
}
