:root {
  --black: #000000;
  --black-light: #0a0a0a;
  --black-card: #0f0f0f;
  --black-border: #1a1a1a;
  --white: #ffffff;
  --blue-electric: #1d8aff;
  --blue-glow: rgba(29, 138, 255, 0.08);
  --blue-border: rgba(29, 138, 255, 0.2);
  --amber: #e8722a;
  --orange-red: #e85d3a;
  --green: #2ecc71;
  --grey-dim: rgba(255,255,255,0.45);
  --grey-soft: rgba(255,255,255,0.08);
  --grey-text: rgba(255,255,255,0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════
   UTILITIES
═══════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 140px 0;
  position: relative;
}

.section-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-electric), transparent);
  margin-bottom: 40px;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.section-title em {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}

.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.75;
  max-width: 600px;
}


/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.logo.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo svg {
  width: 24px;
  height: 24px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeIn 1s ease both;
  animation-delay: 0.15s;
}

.hero-brand svg {
  width: 32px;
  height: 32px;
}

.hero-brand span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.nav-center {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-center a {
  color: var(--grey-dim);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-center a:hover { color: var(--white); }

.nav-waitlist-btn {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
}

.nav-waitlist-btn:hover { opacity: 0.85; }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') center 30% / cover no-repeat;
  animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.15) 30%,
      rgba(0,0,0,0.3) 55%,
      rgba(0,0,0,0.8) 80%,
      var(--black) 100%
    ),
    linear-gradient(90deg,
      rgba(0,0,0,0.65) 0%,
      transparent 55%
    );
}

.hero-grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 2;
  animation: grainShift 0.5s steps(1) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-5%, -5%); }
  50% { transform: translate(3%, 7%); }
  75% { transform: translate(-7%, 2%); }
  100% { transform: translate(0, 0); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 48px 90px;
  max-width: 820px;
}

.hero-line {
  overflow: hidden;
}

.hero-line-inner {
  display: block;
  animation: revealUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-line:nth-child(1) .hero-line-inner { animation-delay: 0.3s; }
.hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.45s; }
.hero-line:nth-child(3) .hero-line-inner { animation-delay: 0.6s; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey-dim);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeIn 1s ease both;
  animation-delay: 0.8s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeIn 1s ease both;
  animation-delay: 1s;
}

.btn-main {
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 15px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.08);
}

.btn-main .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-main:hover .arrow { transform: translateX(4px); }

.btn-outline {
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease both;
  animation-delay: 2s;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-dim);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--grey-dim), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  width: 1px;
  height: 48px;
  background: var(--white);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(0); }
  100% { transform: translateY(96px); }
}

/* ═══════════════════════════════
   SECTION 2 — COS'È
═══════════════════════════════ */
#cosa .pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
}

.pillar {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.5s, background 0.5s;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-electric), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.pillar:hover::before {
  opacity: 1;
}

.pillar:hover {
  border-color: var(--blue-border);
  background: linear-gradient(170deg, rgba(29,138,255,0.05), transparent 50%);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ═══════════════════════════════
   SECTION 3 — PER CHI È
═══════════════════════════════ */
#perchi {
  background: var(--black-light);
}

.audience-grid {
  display: flex;
  gap: 0;
  margin-top: 64px;
  height: 520px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 0%;
  min-width: 0;
  border: 1px solid var(--black-border);
  cursor: pointer;
  transition: flex-grow 0.5s ease;
  will-change: flex-grow;
}

.audience-card:hover {
  flex-grow: 2.5;
}

.audience-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.5s ease;
}

.audience-card:hover .audience-card-bg {
  transform: scale(1.05);
}

.audience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

.audience-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
}

.audience-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.audience-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.audience-card:hover p {
  max-height: 80px;
  opacity: 1;
  transition: max-height 0.5s ease 0.1s, opacity 0.4s ease 0.15s;
}


/* ═══════════════════════════════
   ROLE SECTIONS
═══════════════════════════════ */
.roles-section {
  padding-bottom: 0;
  margin-bottom: 140px;
}

.role-block {
  position: relative;
}

.role-banner {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: height 0.4s ease;
  cursor: pointer;
}

.role-banner.stuck {
  height: 72px;
}

.role-banner.stuck .role-banner-desc {
  display: none;
}

.role-banner:hover {
  height: 220px;
}

.role-banner.stuck:hover {
  height: 72px;
}


.role-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.3) 100%
  );
}

.role-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.role-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blue-electric);
  text-transform: uppercase;
}

.role-banner-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

/* Role accent colors — artist (blue), producer (red), investor (green) */
/* artist = blue */
.role-artist .section-divider {
  background: linear-gradient(90deg, var(--blue-electric), transparent);
}
.role-artist .section-title em {
  color: var(--blue-electric);
}

/* producer = red */
.role-producer .section-divider {
  background: linear-gradient(90deg, var(--orange-red), transparent);
}
.role-producer .section-title em {
  color: var(--orange-red);
}

/* investor = green */
.role-investor .section-divider {
  background: linear-gradient(90deg, var(--green), transparent);
}
.role-investor .section-title em {
  color: var(--green);
}

.role-banner-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-dim);
  line-height: 1.5;
  opacity: 0.8;
}

.role-body {
  position: relative;
  z-index: 10;
  background: var(--black);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.roles-section.open .role-body {
  grid-template-rows: 1fr;
}

.role-body-inner {
  overflow: hidden;
}

.role-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 48px;
  padding-bottom: 32px;
}

.role-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--black-border);
  position: relative;
}

.role-step:last-child {
  border-bottom: 1px solid var(--black-border);
}

.role-step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--black-border);
  line-height: 1;
  letter-spacing: -2px;
  transition: color 0.5s;
}

.role-step:hover .role-step-num {
  color: var(--blue-electric);
}

.role-step-content h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.role-step-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.75;
  max-width: 560px;
}

/* Role sub-sections (crowdfunding, distribution, pricing inside artist) */
.role-sub {
  padding: 200px 48px;
  margin-left: -48px;
  margin-right: -48px;
}

.role-sub:nth-child(1) {
  background: var(--black);
}

.role-sub:nth-child(2) {
  background: var(--black-card);
}

.role-sub:nth-child(3) {
  background: var(--black);
}

.role-sub .section-title {
  margin-bottom: 24px;
}

.role-sub .section-desc {
  margin-bottom: 0;
}

.role-sub .platforms {
  margin-top: 32px;
}

.role-sub .pricing-grid {
  margin-top: 48px;
}

.role-sub .pricing-note {
  margin-top: 32px;
}

/* ═══════════════════════════════
   SECTION 4 — COME FUNZIONA (legacy)
═══════════════════════════════ */
.steps {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--black-border);
  position: relative;
}

.step:last-child {
  border-bottom: 1px solid var(--black-border);
}

.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--black-border);
  line-height: 1;
  letter-spacing: -2px;
  transition: color 0.5s;
}

.step:hover .step-num {
  color: var(--blue-electric);
}

.step-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.75;
  max-width: 560px;
}

/* ═══════════════════════════════
   SECTION 5 — CROWDFUNDING
═══════════════════════════════ */
#crowdfunding {
  background: var(--black-light);
}

.crowd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.crowd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.crowd-list li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.75;
  padding: 18px 0;
  border-bottom: 1px solid var(--black-border);
  padding-left: 20px;
  position: relative;
}

.crowd-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 27px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-electric);
}

.crowd-note {
  padding: 32px;
  border: 1px solid var(--blue-border);
  background: var(--blue-glow);
}

.crowd-note p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.75;
}

.crowd-note strong {
  color: var(--white);
  font-weight: 500;
}

/* ═══════════════════════════════
   ECOSISTEMA
═══════════════════════════════ */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.eco-card {
  padding: 44px 36px;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  transition: border-color 0.5s;
}

.eco-card:hover {
  border-color: rgba(255,255,255,0.1);
}

.eco-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.eco-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ═══════════════════════════════
   COLLABORAZIONE
═══════════════════════════════ */
.collab-points {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
}

.collab-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
  border-top: 1px solid var(--black-border);
}

.collab-item:last-child {
  border-bottom: 1px solid var(--black-border);
}

.collab-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-electric);
  letter-spacing: 1px;
  flex-shrink: 0;
  padding-top: 3px;
}

.collab-item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.collab-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.7;
  max-width: 500px;
}

/* ═══════════════════════════════
   SECTION 6 — DISTRIBUZIONE
═══════════════════════════════ */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}

.platform-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--black-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  transition: border-color 0.3s;
}

.platform-tag:hover {
  border-color: rgba(255,255,255,0.2);
}

.platform-tag img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.platform-tag span {
  position: relative;
  z-index: 1;
}

.platform-tag.more {
  border-style: dashed;
  color: var(--grey-dim);
  font-weight: 400;
}

.dist-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.dist-point {
  padding: 36px 32px;
  border: 1px solid var(--black-border);
  background: var(--black-card);
}

.dist-point h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.dist-point p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-dim);
  line-height: 1.65;
}

/* ═══════════════════════════════
   SECTION 7 — PRICING
═══════════════════════════════ */
#pricing {
  background: var(--black-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.price-card {
  padding: 48px 36px;
  border: 1px solid var(--black-border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.5s;
}

.price-card.featured {
  border-color: var(--blue-electric);
  background: linear-gradient(170deg, rgba(29,138,255,0.06), transparent 50%);
  position: relative;
}

.price-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.price-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 16px;
}

.price-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 6px;
  line-height: 1;
}

.price-card h3 .period {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--grey-dim);
  letter-spacing: 0;
}

.price-card .desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  border-top: 1px solid var(--black-border);
  padding-top: 24px;
}

.price-features li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-text);
  padding: 8px 0 8px 22px;
  position: relative;
}

.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--blue-electric);
  font-weight: 600;
  font-size: 0.8rem;
}

.price-features li.disabled {
  color: rgba(255,255,255,0.2);
}

.price-features li.disabled::before {
  content: '\2014';
  color: rgba(255,255,255,0.15);
}

.pricing-note {
  margin-top: 40px;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey-dim);
  line-height: 1.7;
}

.pricing-cta {
  margin-top: 48px;
}

.btn-blue {
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-electric);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-blue:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   SECTION 8 — FAQ
═══════════════════════════════ */
.faq-list {
  margin-top: 64px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--black-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--blue-electric); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before {
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0;
}

.faq-icon::after {
  width: 1px;
  height: 20px;
  left: 50%;
  top: 0;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.75;
  padding-bottom: 28px;
  max-width: 640px;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey-dim);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 300px;
}

.footer-brand a {
  color: var(--grey-dim);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-brand a:hover { color: var(--white); }

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-dim);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  color: var(--grey-text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid var(--black-border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

.footer-disclaimer {
  max-width: 500px;
}

/* ═══════════════════════════════
   WAITLIST
═══════════════════════════════ */
#waitlist {
  background: var(--black-light);
  text-align: center;
}

#waitlist .section-divider {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--blue-electric), transparent);
}

#waitlist .section-title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#waitlist .section-desc {
  max-width: 480px;
  margin: 0 auto 48px;
}

.waitlist-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.waitlist-form input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 16px 20px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-right: none;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.waitlist-form input::placeholder {
  color: var(--grey-dim);
}

.waitlist-form input:focus {
  border-color: var(--blue-electric);
}

.waitlist-form button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 16px 28px;
  background: var(--blue-electric);
  color: var(--white);
  border: 1px solid var(--blue-electric);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.waitlist-form button:hover {
  opacity: 0.85;
}

.waitlist-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--grey-dim);
  font-weight: 300;
}

.waitlist-success {
  display: none;
  padding: 20px;
  border: 1px solid var(--blue-border);
  background: var(--blue-glow);
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-success p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.waitlist-success.show {
  display: block;
}

@media (max-width: 768px) {
  .waitlist-form {
    flex-direction: column;
    gap: 0;
  }

  .waitlist-form input {
    border-right: 1px solid var(--black-border);
    border-bottom: none;
  }
}

/* ═══════════════════════════════
   FLOATING CTA
═══════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  opacity: 0;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  pointer-events: none;
}

.floating-cta.visible {
  bottom: 32px;
  opacity: 1;
  pointer-events: auto;
}

.floating-cta a {
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  padding: 14px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.8);
}

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .pillars,
  .audience-grid,
  .eco-grid,
  .dist-points,
  .pricing-grid,
  .role-sub .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .role-banner-desc {
    display: none;
  }

  .crowd-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  section { padding: 100px 0; }
  nav { padding: 0 24px; }
  .nav-center { display: none; }
  .nav-waitlist-btn { font-size: 0.75rem; padding: 7px 16px; }

  .hero-content {
    padding: 0 24px 60px;
  }

  .hero h1 { letter-spacing: -1.5px; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .scroll-hint { display: none; }

  .pillars,
  .eco-grid,
  .dist-points,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pillars { margin-top: 40px; }
  .pillar { padding: 32px 24px; }
  .pillar-number { margin-bottom: 20px; }
  .pillar h3 { font-size: 1.2rem; }

  .audience-grid {
    flex-direction: column;
    height: auto;
    margin-top: 40px;
  }
  .audience-card {
    height: 220px;
    flex: none;
  }
  .audience-card:hover {
    flex-grow: 1;
  }
  .audience-card p {
    max-height: 80px;
    opacity: 1;
  }

  .eco-grid { margin-top: 40px; }
  .eco-card { padding: 32px 24px; }

  .section-title { letter-spacing: -1px; }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .step-num { font-size: 2rem; }

  .role-banner {
    height: 100px;
  }
  .role-banner:hover {
    height: 120px;
  }
  .role-banner-content {
    padding: 0 24px;
  }
  .role-step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 32px 0;
  }
  .role-step-num {
    font-size: 2rem;
  }
  .role-step-content h4 {
    font-size: 1.1rem;
  }
  .role-sub {
    padding: 120px 24px;
    margin-left: -24px;
    margin-right: -24px;
  }
  .role-sub .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
