:root {
  --bg: #050506;
  --ink: #fbf8ff;
  --muted: #aaa1af;
  --dim: #746b78;
  --line: rgba(255, 255, 255, 0.1);
  --panel: rgba(16, 15, 18, 0.86);
  --panel-strong: rgba(23, 21, 27, 0.92);
  --purple: #9b5cff;
  --pink: #e255b7;
  --cyan: #48d6b8;
  --gold: #ffd262;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 17% 7%, rgba(155, 92, 255, 0.18), transparent 25%),
    radial-gradient(circle at 85% 6%, rgba(72, 214, 184, 0.09), transparent 25%),
    linear-gradient(180deg, #0b080d 0%, #050506 44%, #020202 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 760;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.58;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(1280px, calc(100% - 32px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 0 14px 0 22px;
  background: rgba(7, 6, 9, 0.84);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand,
.site-header nav,
.header-actions,
.trust-row,
.social-orbit,
.reaction-row,
footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(226, 85, 183, 0.36));
}

.site-header nav {
  gap: 28px;
  color: #c3bac7;
  font-size: 15px;
  font-weight: 850;
}

.site-header nav a:hover,
footer nav a:hover {
  color: #ffffff;
}

.header-actions {
  gap: 9px;
}

.header-login,
.header-action,
.claim-inline button,
.pricing a {
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  padding: 0 17px;
  font-weight: 950;
}

.header-login {
  color: #cfc7d5;
}

.header-action,
.claim-inline button,
.pricing a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(155, 92, 255, 0.95), rgba(226, 85, 183, 0.9));
  color: #ffffff;
  box-shadow: 0 0 28px rgba(155, 92, 255, 0.22);
}

main,
.site-header,
footer {
  position: relative;
  z-index: 1;
}

.hero,
.metric-strip,
.feature-lab,
.effects-section,
.bot-dashboard-section,
.builder-section,
.pricing,
.faq-section,
.final-cta,
footer {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 840px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 46px;
  align-items: center;
  padding: 74px 0 96px;
}

.hero-bg-card {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(155, 92, 255, 0.16);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(155, 92, 255, 0.12), rgba(72, 214, 184, 0.04));
  filter: blur(1px);
  opacity: 0.6;
}

.hero-bg-card-one {
  width: 360px;
  height: 480px;
  right: 90px;
  top: 160px;
  transform: rotate(8deg);
}

.hero-bg-card-two {
  width: 280px;
  height: 390px;
  right: 420px;
  top: 220px;
  transform: rotate(-12deg);
}

.kicker {
  margin: 0 0 14px;
  color: #d990ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(58px, 7vw, 106px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.claim-inline {
  width: min(100%, 560px);
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.claim-inline span {
  padding-left: 18px;
  color: #ffffff;
  font-weight: 950;
}

.claim-inline input {
  min-width: 0;
  height: 48px;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
}

.claim-inline input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.claim-inline button {
  border: 0;
  padding-inline: 23px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 18px;
}

.hero-links a,
.live-preview-card a,
.bot-actions a {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.hero-links a:first-child,
.bot-actions a:first-child {
  border-color: rgba(226, 85, 183, 0.52);
  background:
    radial-gradient(circle at 0% 0%, rgba(226, 85, 183, 0.22), transparent 42%),
    rgba(155, 92, 255, 0.16);
}

.hero-links a:hover,
.live-preview-card a:hover,
.bot-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
}

.trust-row span,
.social-orbit span,
.reaction-row span,
.metric-strip article,
.feature-grid article,
.effects-grid article,
.bot-dashboard-section,
.bot-console,
.builder-panel,
.pricing article,
.faq-section details,
.final-cta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.trust-row span,
.social-orbit span,
.reaction-row span {
  border-radius: 999px;
  padding: 9px 12px;
  color: #cbc2cf;
  font-size: 13px;
  font-weight: 850;
}

.trust-row b {
  color: #ffffff;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.main-card-preview {
  position: absolute;
  right: 52px;
  top: 48px;
  width: 460px;
  min-height: 610px;
  display: grid;
  justify-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  padding: 40px;
  background:
    linear-gradient(180deg, rgba(3, 6, 14, 0.34), rgba(3, 5, 9, 0.66)),
    url("./assets/card-bg.png") center / cover,
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(155, 92, 255, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(18, 20, 29, 0.72);
  box-shadow:
    0 40px 130px rgba(0, 0, 0, 0.58),
    0 0 90px rgba(155, 92, 255, 0.18);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
}

.main-card-preview::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), var(--purple), var(--cyan), var(--pink));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
}

.main-card-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(10, 14, 24, 0.34);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.card-avatar {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.08),
    0 0 52px rgba(226, 85, 183, 0.35);
  animation: avatarPulse 3.2s ease-in-out infinite;
}

.card-avatar img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.main-card-preview h2 {
  margin: 24px 0 8px;
  font-size: 54px;
  line-height: 0.92;
  letter-spacing: 0;
}

.main-card-preview p {
  max-width: 310px;
  margin: 0 0 22px;
  color: #d9d1dd;
  line-height: 1.45;
  text-align: center;
}

.discord-mini {
  width: 100%;
  display: grid;
  grid-template-columns: 12px 46px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(88, 101, 242, 0.32);
  border-radius: 18px;
  padding: 14px;
  background: rgba(88, 101, 242, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.discord-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #23a55a;
  box-shadow: 0 0 18px rgba(35, 165, 90, 0.72);
}

.discord-mini strong,
.discord-mini small {
  display: block;
}

.discord-mini img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
}

.discord-mini small {
  margin-top: 2px;
  color: #b9b1c0;
}

.social-orbit,
.reaction-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.social-orbit {
  margin-top: 22px;
}

.social-pill {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 0 !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.social-pill svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.social-pill.youtube {
  background: rgba(255, 0, 0, 0.18);
  color: #ff4141 !important;
}

.social-pill.tiktok {
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.2));
}

.social-pill.discord {
  background: rgba(88, 101, 242, 0.22);
  color: #8d99ff !important;
}

.social-pill.spotify {
  background: rgba(30, 215, 96, 0.16);
  color: #1ed760 !important;
}

.reaction-row span {
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.home-link-stack {
  width: 100%;
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.home-link-stack span {
  min-height: 42px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.home-link-stack i {
  color: #cfc7d5;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.reaction-row b {
  color: #ffffff;
}

.dashboard-preview,
.live-preview-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 10, 12, 0.88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.dashboard-preview {
  left: 0;
  top: 110px;
  width: 360px;
  padding: 20px;
  transform: rotate(-8deg);
}

.dashboard-preview header,
.builder-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-preview header span,
.live-preview-card span,
.feature-grid span,
.effects-grid span,
.tier-label {
  color: #d990ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-preview header strong {
  font-size: 24px;
}

.preview-chart {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 18px 0;
}

.preview-chart i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--pink), var(--purple));
  box-shadow: 0 0 24px rgba(226, 85, 183, 0.22);
}

.preview-chart i:nth-child(1) { height: 42%; }
.preview-chart i:nth-child(2) { height: 68%; }
.preview-chart i:nth-child(3) { height: 36%; }
.preview-chart i:nth-child(4) { height: 88%; }
.preview-chart i:nth-child(5) { height: 58%; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metric-grid span {
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #d5ccda;
  font-size: 12px;
}

.live-preview-card {
  right: 8px;
  bottom: 44px;
  width: 318px;
  padding: 20px;
  transform: rotate(5deg);
  background:
    radial-gradient(circle at 20% 0%, rgba(72, 214, 184, 0.12), transparent 34%),
    rgba(10, 10, 12, 0.88);
}

.live-preview-card strong {
  display: block;
  margin: 8px 0;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.05;
}

.live-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.live-preview-card a {
  width: fit-content;
  margin-top: 15px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 0 80px;
}

.metric-strip article {
  border-radius: 22px;
  padding: 22px;
}

.metric-strip b,
.metric-strip span {
  display: block;
}

.metric-strip b {
  margin-bottom: 8px;
  font-size: 30px;
}

.metric-strip span {
  color: var(--muted);
  line-height: 1.4;
}

.feature-lab,
.effects-section,
.bot-dashboard-section,
.pricing,
.faq-section {
  padding: 88px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head h2,
.section-copy h2,
.final-cta h2 {
  margin-bottom: 15px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-head p,
.section-copy p,
.feature-grid p,
.effects-grid p,
.pricing p,
.faq-section p,
footer p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}

.feature-grid article,
.effects-grid article,
.pricing article {
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

.feature-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

.feature-grid article.wide {
  grid-column: span 2;
}

.feature-grid article.tall {
  grid-row: span 2;
  background:
    radial-gradient(circle at 80% 12%, rgba(226, 85, 183, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(155, 92, 255, 0.14), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.feature-grid h3,
.effects-grid h3 {
  margin: 34px 0 10px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
}

.effects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bot-dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px;
  align-items: center;
  border-radius: 30px;
  padding: clamp(26px, 4vw, 48px);
  background:
    radial-gradient(circle at 92% 0%, rgba(88, 101, 242, 0.22), transparent 32%),
    radial-gradient(circle at 8% 100%, rgba(72, 214, 184, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.bot-copy h2 {
  max-width: 620px;
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

.bot-copy p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.56;
}

.bot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.bot-console {
  min-height: 430px;
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(88, 101, 242, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(6, 8, 13, 0.86);
}

.bot-console header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.bot-console header span {
  color: #aeb6ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bot-console header b {
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(35, 165, 90, 0.15);
  color: #a9f4c3;
  font-size: 12px;
}

.bot-command {
  min-height: 178px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(88, 101, 242, 0.24);
  border-radius: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(88, 101, 242, 0.18), transparent 42%),
    rgba(0, 0, 0, 0.24);
}

.bot-command small {
  color: #aeb6ff;
  font-size: 14px;
  font-weight: 950;
}

.bot-command strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 31px;
  line-height: 1.05;
}

.bot-command p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.bot-stats {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.bot-stats span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.bot-stats b {
  color: #ffffff;
}

.effects-grid article {
  min-height: 260px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.premium-effect {
  background:
    radial-gradient(circle at 80% 0%, rgba(72, 214, 184, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.045) !important;
}

.creator-effect {
  background:
    radial-gradient(circle at 70% 0%, rgba(226, 85, 183, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.045) !important;
}

.builder-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 88px 0;
}

.builder-panel {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 430px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0%, rgba(155, 92, 255, 0.14), transparent 32%),
    var(--panel);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

.builder-panel aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  background: rgba(0, 0, 0, 0.24);
}

.builder-panel aside span {
  border-radius: 13px;
  padding: 12px;
  color: var(--muted);
  font-weight: 900;
}

.builder-panel aside .active {
  background: rgba(155, 92, 255, 0.18);
  color: #ffffff;
}

.builder-panel section {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.builder-top {
  margin-bottom: 12px;
}

.builder-top h3 {
  margin: 0;
  font-size: 30px;
}

.builder-top b {
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(72, 214, 184, 0.13);
  color: #bff7ec;
}

.control-row {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.045);
}

.control-row span {
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  gap: 16px;
}

.pricing article {
  display: grid;
  align-content: start;
  background: var(--panel);
}

.featured-plan {
  position: relative;
  background:
    radial-gradient(circle at 80% 10%, rgba(226, 85, 183, 0.13), transparent 26%),
    var(--panel-strong) !important;
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(155, 92, 255, 0.18);
  color: #e7b3ff;
  font-size: 12px;
  font-weight: 950;
}

.pricing h3 {
  margin: 20px 0 12px;
  font-size: 34px;
}

.pricing strong {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 14px;
  font-size: 54px;
  line-height: 1;
}

.pricing strong small {
  color: var(--muted);
  font-size: 16px;
}

.pricing ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.pricing li {
  color: #eee7f2;
}

.pricing li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--pink);
}

.pricing a {
  align-self: end;
  margin-top: auto;
}

.faq-section {
  max-width: 900px;
}

.faq-section h2 {
  margin-bottom: 28px;
  text-align: center;
  font-size: clamp(34px, 4vw, 50px);
}

.faq-section details {
  margin-top: 12px;
  border-radius: 18px;
  padding: 0 20px;
}

.faq-section summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 950;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  color: #d990ff;
  font-size: 24px;
}

.faq-section details[open] summary::after {
  content: "-";
}

.faq-section p {
  margin: -4px 0 20px;
}

.final-cta {
  display: grid;
  justify-items: center;
  border-radius: 30px;
  padding: 76px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 92, 255, 0.18), transparent 28%),
    var(--panel);
  box-shadow: 0 28px 95px rgba(0, 0, 0, 0.3);
}

.final-cta .claim-inline {
  margin-top: 14px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 34px 0 48px;
}

footer p {
  margin: 0;
}

footer nav {
  gap: 18px;
  color: var(--muted);
  font-weight: 850;
}

@keyframes avatarPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(255, 255, 255, 0.08),
      0 0 52px rgba(226, 85, 183, 0.35);
  }

  50% {
    box-shadow:
      0 0 0 10px rgba(72, 214, 184, 0.12),
      0 0 76px rgba(72, 214, 184, 0.34);
  }
}

@media (max-width: 1100px) {
  .site-header nav {
    display: none;
  }

  .hero,
  .bot-dashboard-section,
  .builder-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 640px;
  }

  .main-card-preview {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .dashboard-preview {
    left: 4%;
  }

  .live-preview-card {
    right: 4%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-strip,
  .effects-grid {
    grid-template-columns: 1fr;
  }

  .bot-dashboard-section {
    padding: 30px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 20px;
  }

  .header-login {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .claim-inline {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 12px;
  }

  .claim-inline span,
  .claim-inline input,
  .claim-inline button {
    width: 100%;
  }

  .claim-inline span {
    padding: 0 0 4px;
  }

  .claim-inline input {
    padding: 0;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .main-card-preview,
  .dashboard-preview,
  .live-preview-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .feature-grid,
  .pricing-grid,
  .bot-dashboard-section,
  .builder-panel {
    grid-template-columns: 1fr;
  }

  .bot-dashboard-section {
    padding: 24px;
  }

  .bot-console {
    min-height: auto;
  }

  .feature-grid article.wide,
  .feature-grid article.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .builder-panel aside {
    display: none;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
