:root{
  --bg: #121212;
  --text: #ffffff;
  --muted: #d0d0d0;
  --accent: #5e17eb;

  --card-bg: rgba(20, 20, 30, 0.95);
  --card-border: rgba(94, 23, 235, 0.2);
  --glass: rgba(18, 18, 18, 0.65);

  --shadow: 0 25px 50px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius2: 24px;
  --max: 1440px;
}

html[data-theme="light"]{
  --bg: #f7f7fb;
  --text: #0b0b12;
  --muted: rgba(11, 11, 18, 0.65);
  --accent: #5e17eb;

  --card-bg: rgba(255, 255, 255, 0.86);
  --card-border: rgba(94, 23, 235, 0.18);
  --glass: rgba(255, 255, 255, 0.72);

  --shadow: 0 18px 40px rgba(10,10,20,0.12);
}

@font-face{
  font-family: CloneCast;
  src: url("clonecastfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@media (max-width: 768px){
  .hero-title{
    font-size: 24px !important;
    line-height: 1.15; /* optional, usually helps at 24px */
  }
  .section-heading {
    font-size: 22px !important;
 }
  .pricing-amount {
    font-size: 30px !important;
     }
  .bottom-hero-title {
    font-size: 26px !important;
    }
  .hero-subtitle{
    font-size: 15px !important;
    line-height: 1.6; /* optional */
  }
}

@media (max-width: 768px){
  .theme-toggle{
    display: none !important;
  }
}


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

body{
  background-color: var(--bg);
  color: var(--text);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow-x:hidden;
}

main{
  width:100%;
  flex:1;
  position:relative;
  z-index:2;
}

h1,h2,h3,h4,h5,h6,.hero-title,.section-heading,.pricing-title,.bottom-hero-title{
  font-family: CloneCast, system-ui, -apple-system, "Segoe UI", sans-serif;
}

a{ color: inherit; text-decoration:none; }

/* Starfield (dark only) */
body::before, body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1;
}

html[data-theme="dark"] body::before{
  opacity:0.9;
  background:
    radial-gradient(1px 1px at 20px 30px, #ffffff, transparent),
    radial-gradient(0.8px 0.8px at 40px 70px, #f0f0ff, transparent),
    radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
    radial-gradient(0.7px 0.7px at 130px 80px, #e0e0ff, transparent),
    radial-gradient(1px 1px at 160px 30px, #ffffff, transparent);
  background-repeat: repeat;
  background-size: 200px 140px;
  transform: translateZ(0);
  animation: sparkle-fast 20s linear infinite, drift1 60s ease-in-out infinite alternate, twinkle 3s ease-in-out infinite alternate;
}

html[data-theme="dark"] body::after{
  opacity:0.5;
  background-image:
    radial-gradient(2px 2px at 10px 90px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 70px 110px, rgba(120,200,255,0.4), transparent),
    radial-gradient(3px 3px at 120px 50px, rgba(255,200,255,0.3), transparent),
    radial-gradient(1px 1px at 180px 120px, rgba(255,255,255,0.5), transparent);
  background-repeat: repeat;
  background-size: 240px 180px;
  transform: translateZ(0);
  animation: sparkle-medium 35s linear infinite reverse, nebula-float 80s ease-in-out infinite;
}

html[data-theme="light"] body::before,
html[data-theme="light"] body::after{
  opacity:0;
  background:none;
  animation:none;
}

@keyframes sparkle-fast{
  0%,100%{ transform: translateX(0) translateY(0) scale(1); filter: brightness(1) drop-shadow(0 0 2px #fff); }
  25%{ transform: translateX(-50px) translateY(-35px) scale(1.1); filter: brightness(1.4) drop-shadow(0 0 4px #fff); }
  50%{ transform: translateX(-100px) translateY(-70px) scale(0.9); filter: brightness(1.2) drop-shadow(0 0 3px #a0d0ff); }
  75%{ transform: translateX(-150px) translateY(-105px) scale(1.15); filter: brightness(1.6) drop-shadow(0 0 6px #fff); }
}
@keyframes sparkle-medium{
  0%,100%{ transform: translateX(0) translateY(0) scale(1); filter: brightness(0.8) blur(0.5px); }
  33%{ transform: translateX(60px) translateY(-40px) scale(1.2); filter: brightness(1.3) blur(0.3px); }
  66%{ transform: translateX(-80px) translateY(-90px) scale(0.85); filter: brightness(1.1) blur(0.7px); }
}
@keyframes twinkle{ 0%,100%{ opacity:0.9; } 50%{ opacity:1; } }
@keyframes drift1{ 0%,100%{ background-position:0 0; } 50%{ background-position:10px 8px; } }
@keyframes nebula-float{ 0%,100%{ background-position:100px 100px; } 50%{ background-position:95px 92px; } }

/* Loader */
.loader{
  position:fixed; inset:0;
  background: #000;
  display:flex; align-items:center; justify-content:center;
  z-index:9999;
  transition:opacity .5s ease;
}
html[data-theme="light"] .loader{ background: #fff; }
.loader.hidden{ opacity:0; pointer-events:none; }
.loader-mark{
  font-family: CloneCast, system-ui, sans-serif;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
}
html[data-theme="light"] .loader-mark{ color: #0b0b12; }

/* Header */
.site-header{
  position:fixed;
  top:0; left:0;
  width:100%;
  padding:20px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background: transparent !important;
  border-bottom: 1px solid transparent;
  transition: all .35s ease;
  z-index:1000;
}
.site-header.scrolled{
  background: var(--glass) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 16px 48px;
}
.site-logo-link{ display:flex; align-items:center; }
.site-logo{
  height: 40px;
  width: auto;
  display:block;
}

.header-nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.header-nav a{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color .15s ease;
}
.header-nav a:hover{ color: var(--text); }

.header-actions{
  display:flex;
  gap:12px;
  align-items:center;
}

/* Toggle */
.theme-toggle{
  display:inline-flex;
  gap:10px;
  align-items:center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
  font-weight: 700;
}
html[data-theme="light"] .theme-toggle{ border-color: rgba(0,0,0,0.12); }
.theme-toggle:hover{
  color: var(--text);
  border-color: rgba(94,23,235,0.45);
}
.toggle-track{
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  position: relative;
}
html[data-theme="light"] .toggle-track{ background: rgba(0,0,0,0.10); }
.toggle-thumb{
  width: 14px; height: 14px;
  border-radius: 999px;
  background: #fff;
  position:absolute;
  top: 2px;
  left: 2px;
  transition: transform .18s ease;
}
html[data-theme="light"] .toggle-thumb{ background: var(--accent); }
html[data-theme="light"] .theme-toggle .toggle-thumb{ transform: translateX(16px); }
.toggle-label{
  font-size: 11px;
  font-weight: 700;
}

/* Buttons */
.header-cta,
.primary-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 22px;
  border-radius:3px;
  background: var(--accent);
  color:#fff;
  font-family: CloneCast, system-ui, sans-serif;
  font-size:9px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  border:1px solid var(--accent);
  cursor:pointer;
  transition: background .15s ease, color .15s ease, transform .1s ease;
}
.header-cta:hover,
.primary-cta:hover{
  background:#fff;
  color:#000;
  border:none;
  transform: translateY(-1px);
}

/* Hero */
.hero{
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 48px 72px;
  text-align:center;
}
.hero-title{
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.06;
}
.hero-vision{ color: var(--accent); }
.hero-anytime{ color: var(--accent); }

.hero-subtitle{
  max-width: 860px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 600;
}

/* Audience switcher */
.audience-switch{
  display:inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  margin: 0 auto 18px;
}
html[data-theme="light"] .audience-switch{
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}
.audience-tab{
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  transition: background .15s ease, color .15s ease, transform .1s ease;
}
.audience-tab:hover{ transform: translateY(-1px); color: var(--text); }
.audience-tab.active{
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
}
.audience-panel{ display:none; }
.audience-panel.active{ display:block; }

/* Search (brands) */
.hero-search{ max-width: 860px; margin: 0 auto 18px; }
.search-pill{
  display:flex;
  gap:10px;
  align-items:center;
  padding: 10px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.search-input{
  flex:1;
  background: transparent;
  border:none;
  outline:none;
  color: var(--text);
  font-size: 14px;
  padding: 10px 12px;
  font-weight: 600;
}
.search-input::placeholder{ color: rgba(208,208,208,0.75); }
html[data-theme="light"] .search-input::placeholder{ color: rgba(11,11,18,0.45); }

.search-btn{
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  border: none;
  color: #fff;
  font-family: CloneCast, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .1s ease, filter .15s ease;
}
.search-btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }

.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top: 14px;
}
.chip{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor:pointer;
  transition: transform .1s ease, border-color .15s ease, background .15s ease;
}
html[data-theme="light"] .chip{
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}
.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(94,23,235,0.4);
}

/* Hero CTA row */
.hero-cta-row{
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:center;
  margin: 18px 0 18px;
}
.secondary-cta{
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.secondary-cta:hover{ color: var(--text); }

/* Hero metrics */
.hero-metrics{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 18px auto 22px;
}
.metric{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 14px;
}
html[data-theme="light"] .metric{
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.08);
}
.metric-value{
  font-family: CloneCast, system-ui, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}
.metric-label{
  color: var(--muted);
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
}

/* Creator quick */
.creator-quick{
  max-width: 860px;
  margin: 0 auto 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quick-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 14px;
  text-align:left;
}
html[data-theme="light"] .quick-card{
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.08);
}
.quick-title{
  font-family: CloneCast, system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 800;
}
.quick-desc{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

/* Creator preview cards */
.creator-preview{
  max-width: 1200px;
  margin: 12px auto 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.creator-card{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.creator-card:hover{
  transform: translateY(-6px);
  border-color: rgba(94,23,235,0.55);
}
.creator-top{
  display:flex;
  align-items:center;
  gap:12px;
}
.avatar-img{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,0.12);
}
html[data-theme="light"] .avatar-img{
  border-color: rgba(0,0,0,0.10);
}

.creator-meta{ flex:1; text-align:left; }
.creator-name{ font-weight: 800; }
.creator-niche{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  font-weight: 700;
}
.creator-price{
  font-family: CloneCast, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.9;
}
.creator-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 14px;
}
.tag{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
}
html[data-theme="light"] .tag{
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}

/* Sections */
.section{ width:100%; }
.section-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 48px;
  display:flex;
  gap: 24px;
  align-items:stretch;
}

.section-heading{
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-body{
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
  font-weight: 600;
}

/* Split CTA */
.split-cta{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.split-card{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius2);
  padding: 28px;
  box-shadow: var(--shadow);
}

.checklist{
  list-style:none;
  margin: 18px 0 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.checklist li{
  padding-left: 26px;
  position: relative;
  color: var(--text);
  font-weight: 700;
}
.checklist li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 900;
}

/* How section simplified */
.how-simple{
  justify-content: center;
}
.how-simple .section-text{
  max-width: 900px;
  margin: 0 auto;
}

/* Steps */
.steps{ margin-top: 18px; display:flex; flex-direction:column; gap: 14px; }
.step{
  display:flex;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
html[data-theme="light"] .step{
  border-color: rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.85);
}
.step-num{
  font-family: CloneCast, system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 900;
}
.step-title{ font-weight: 900; }
.step-desc{
  color: var(--muted);
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
}

/* Pricing */
.pricing-inner{
  flex-direction: column;
  text-align:center;
}
.pricing-header{ max-width: 640px; margin: 0 auto 30px; }

.pricing-grid{
  width:100%;
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(260px, 380px));
  gap: 22px;
  justify-content:center;
}
.pricing-card{
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 2px solid var(--card-border);
  padding: 34px 28px 44px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  min-height: 520px;
  transition: transform .25s ease, border-color .25s ease;
}
.pricing-card:hover{
  transform: translateY(-10px);
  border-color: rgba(94,23,235,0.6);
}
.pricing-card-featured{
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 35px 70px rgba(94,23,235,0.22);
}
html[data-theme="light"] .pricing-card-featured{
  border-color: rgba(94,23,235,0.28);
  box-shadow: 0 35px 70px rgba(94,23,235,0.14);
}

.pricing-title{
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-tagline{ color: var(--muted); margin-bottom: 18px; font-weight: 700; }
.pricing-price{ margin-bottom: 18px; }

.pricing-amount{
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
}
.pricing-period{ color: var(--muted); margin-left: 6px; font-weight: 700; }

.pricing-features{
  list-style:none;
  margin: 0 0 22px;
  padding: 0;
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:flex-start;
  text-align:left;
  flex:1;
}
.pricing-features li{
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
  position: relative;
  padding-left: 22px;
}
.pricing-features li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#10b981;
  font-weight:900;
}

/* Red cross for struck-through (<s>) pricing features (uses :has) */
.pricing-features li:has(s)::before{
  content: "✕";
  color: #ef4444;
}
.pricing-features li:has(s){
  color: rgba(255,255,255,0.55);
}
html[data-theme="light"] .pricing-features li:has(s){
  color: rgba(11,11,18,0.55);
}

/* Tooltip popup on disabled pricing items */
.pricing-features li.has-popup{
  cursor: help;
}
.pricing-features li.has-popup::after{
  content: attr(data-popup);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);

  /* allow your \n line breaks from &#10; */
  white-space: pre-line;

  background: rgba(0,0,0,0.92);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 12px;

  width: min(360px, 86vw);

  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;

  opacity: 0;
  pointer-events: none;
  z-index: 60;

  transition: opacity .12s ease, transform .12s ease;
}
html[data-theme="light"] .pricing-features li.has-popup::after{
  background: rgba(11,11,18,0.92);
  border-color: rgba(0,0,0,0.10);
}
.pricing-features li.has-popup:hover::after,
.pricing-features li.has-popup:focus-within::after{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Pricing button */
.pricing-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 16px 26px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  font-family: CloneCast, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .12s ease, filter .15s ease;
}
.pricing-button:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Tooltip popup on pricing buttons */
.pricing-button.has-btn-popup{
  position: relative;
}
.pricing-button.has-btn-popup::after{
  content: attr(data-popup);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);

  white-space: pre-line;

  background: rgba(0,0,0,0.92);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 12px;

  width: min(420px, 90vw);

  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;

  opacity: 0;
  pointer-events: none;
  z-index: 80;

  transition: opacity .12s ease, transform .12s ease;
}
html[data-theme="light"] .pricing-button.has-btn-popup::after{
  background: rgba(11,11,18,0.92);
  border-color: rgba(0,0,0,0.10);
}
.pricing-button.has-btn-popup:hover::after,
.pricing-button.has-btn-popup:focus-visible::after{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* FAQ */
.faq-container{
  width: 75%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 0;
}
.center-text{ text-align:center; }
.faq-item{
  border-bottom: 1px solid rgba(94, 23, 235, 0.25);
  padding: 22px 0;
  cursor:pointer;
  transition: all .3s ease;
}
.faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-question h3{
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
}
.faq-icon{
  color: var(--accent);
  font-size: 24px;
  transition: transform .3s ease;
  font-weight: 900;
}
.faq-answer{
  max-height: 0;
  overflow:hidden;
  transition: max-height .4s cubic-bezier(0,1,0,1);
}
.faq-answer p{
  padding-top: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 600;
}
.faq-item.active .faq-answer{
  max-height: 800px;
  transition: max-height .4s ease-in;
}
.faq-item.active .faq-icon{ transform: rotate(45deg); }

/* Bottom hero */
.bottom-hero{
  max-width: var(--max);
  margin: 0 auto 60px;
  padding: 60px 24px 60px;
  text-align:center;
}
.bottom-hero-title{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.bottom-hero-subtitle{
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 600;
}

/* Footer */
.site-footer{
  width:100%;
  min-height: 56px;
  background-color: var(--accent);
  color: #fff;
  display:flex;
  align-items:center;
  font-family: CloneCast, system-ui, sans-serif;
  font-size: 8px;
  position:relative;
  z-index:2;
}
.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
}
.footer-left{ font-weight: 800; }
.footer-right a{ color:#fff; font-weight: 800; }
.footer-right a:hover{ text-decoration: underline; }
.footer-separator{ margin: 0 6px; }

/* Back to top */
.back-to-top{
  position:fixed;
  bottom:72px;
  right:32px;
  width:44px;
  height:44px;
  border-radius:5px;
  background: var(--accent);
  border:none;
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}
.back-to-top .caret-up{
  width:0;height:0;
  border-left:7px solid transparent;
  border-right:7px solid transparent;
  border-bottom:10px solid #fff;
}

/* Fade utilities */
.fade-on-scroll{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.fade-on-scroll.visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px){
  .header-nav{ display:none; }
  .site-header{ padding: 16px 20px; }
  .site-header.scrolled{ padding: 14px 20px; }
  .hero{ padding: 132px 20px 62px; }
  .hero-title{ font-size: 2.4rem; }

  .creator-preview{ grid-template-columns: 1fr; max-width: 680px; }
  .section-inner{ padding: 60px 20px; }
  .split-cta{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}

@media (max-width: 768px){
  .hero-title{ font-size: 32px; }
  .hero-metrics{ grid-template-columns: 1fr; }
  .hero-cta-row{ flex-direction: column; }

  .creator-quick{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; max-width: 420px; }

  .faq-container{ width: 100%; padding: 40px 20px; }

  .footer-inner{
    padding: 0 20px;
    flex-direction: column;
    gap: 10px;
    text-align:center;
  }
  .site-footer{ padding: 14px 0; }
}

/* Mobile perf for starfield */
@media (max-width: 768px){
  html[data-theme="dark"] body::before,
  html[data-theme="dark"] body::after{
    background-size: 160px 120px !important;
  }
}
