:root {
  --bg-base: #08050f;
  --bg-deep: #10081d;
  --bg-panel: rgba(24, 15, 41, 0.9);
  --bg-panel-strong: rgba(32, 20, 55, 0.96);
  --text-main: #f7f3ff;
  --text-muted: rgba(227, 220, 243, 0.8);
  --text-soft: rgba(227, 220, 243, 0.62);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(164, 118, 255, 0.26);
  --pink: #ff78cf;
  --violet: #8d73ff;
  --blue: #5a95ff;
  --success: #67e2a3;
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.2);
  --shadow-deep: 0 28px 64px rgba(0, 0, 0, 0.28);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --site-width: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-main);
  font-family: "Poppins", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 96, 201, 0.16), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(118, 69, 255, 0.16), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(90, 149, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #12081f 0%, #07040d 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at center, black 34%, transparent 88%);
}

.site-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 118, 205, 0.2), transparent 18%),
    radial-gradient(circle at 84% 70%, rgba(96, 122, 255, 0.14), transparent 18%);
  filter: blur(80px);
  opacity: 0.8;
}

.container {
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 18px;
}

.topbar-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 118, 205, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(22, 14, 38, 0.94), rgba(11, 8, 23, 0.96));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(100, 75, 217, 0.24);
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy span,
.footer-brand p {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.nav-link,
.nav-toggle,
.footer-links a {
  color: rgba(247, 243, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-link[aria-current="page"] {
  color: #fff;
}

.nav-group {
  position: relative;
}

.nav-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 192px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(15, 11, 28, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
}

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

.button,
.button-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius-md);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button-secondary:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button {
  color: #fff;
  background: linear-gradient(90deg, #9048ff 0%, #6d57ff 48%, #4f8dff 100%);
  box-shadow: 0 16px 34px rgba(102, 84, 231, 0.28);
}

.button-secondary {
  color: rgba(247, 243, 255, 0.94);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--text-muted);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
}

.mobile-panel {
  display: none;
}

.page-hero,
.section {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 42px 0 66px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: start;
}

.eyebrow,
.panel-eyebrow,
.micro-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(242, 233, 255, 0.86);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-lead h2,
.page-intro h1,
.cta-banner h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(3.3rem, 6vw, 6rem);
  max-width: 760px;
}

.page-intro h1 {
  margin-top: 14px;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
}

.gradient-line {
  display: block;
  background: linear-gradient(90deg, var(--pink), #d7a8ff 38%, var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy p,
.page-intro p,
.section-lead p,
.panel-copy,
.placeholder-copy p,
.proof-copy p,
.plan-card p,
.faq-copy p,
.support-card p,
.workflow-card p,
.step-card p,
.cta-banner p,
.footer-note {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.hero-proof article,
.step-card,
.support-card,
.audience-card,
.proof-note,
.workflow-card {
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 118, 205, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.hero-proof strong,
.step-card strong,
.support-card strong,
.audience-card strong,
.workflow-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.hero-proof span,
.step-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-media-stack,
.proof-stack,
.workflow-board,
.page-stack,
.faq-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

.panel,
.placeholder-panel,
.cta-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 118, 205, 0.1), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(90, 149, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(30, 18, 52, 0.94), rgba(12, 9, 25, 0.96));
  box-shadow: var(--shadow-deep);
}

.panel {
  padding: 20px;
}

.panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.panel h3,
.placeholder-copy h3,
.plan-card h3,
.faq-item summary,
.support-card h3,
.audience-card h3,
.section-lead h2 {
  letter-spacing: -0.04em;
}

.panel h3,
.placeholder-copy h3,
.plan-card h3 {
  margin: 12px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.panel-copy {
  margin: 14px 0 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(243, 235, 252, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #0b0816;
}

.placeholder-panel {
  min-height: 320px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.placeholder-panel.tall {
  min-height: 100%;
}

.placeholder-panel::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 148px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(255, 120, 207, 0.08), rgba(90, 149, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.placeholder-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.placeholder-grid span {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
}

.placeholder-grid span:nth-child(1) {
  width: 180px;
  height: 180px;
  top: -40px;
  right: 12%;
  background: rgba(255, 118, 205, 0.18);
}

.placeholder-grid span:nth-child(2) {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -20px;
  background: rgba(114, 92, 255, 0.22);
}

.placeholder-grid span:nth-child(3) {
  width: 120px;
  height: 120px;
  bottom: 22%;
  right: 18%;
  background: rgba(90, 149, 255, 0.18);
}

.placeholder-copy,
.placeholder-footer {
  position: relative;
  z-index: 1;
}

.placeholder-label {
  color: #fff;
  font-weight: 700;
}

.placeholder-bars {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.placeholder-bars span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 120, 207, 0.74), rgba(90, 149, 255, 0.74));
}

.section {
  padding: 74px 0;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.split-grid,
.proof-grid,
.faq-grid,
.support-grid,
.platform-grid,
.operator-grid,
.page-intro,
.page-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.section-lead h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-note {
  border-left: 2px solid rgba(164, 118, 255, 0.38);
  background: rgba(255, 255, 255, 0.025);
}

.proof-note strong {
  display: block;
  margin-bottom: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pipeline-chain {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.pipeline-stage {
  min-height: 164px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 118, 205, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.pipeline-stage strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1rem;
}

.pipeline-stage p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.pipeline-arrow {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 120, 207, 0.6), rgba(90, 149, 255, 0.8));
}

.pipeline-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(90, 149, 255, 0.9);
  border-right: 2px solid rgba(90, 149, 255, 0.9);
  transform: rotate(45deg);
}

.micro-label {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.72rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1fr;
  gap: 18px;
}

.audience-grid,
.workflow-columns,
.plans-grid {
  display: grid;
  gap: 18px;
}

.workflow-columns {
  grid-template-columns: minmax(0, 1.14fr) repeat(2, minmax(0, 0.86fr));
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 118, 205, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(29, 18, 52, 0.92), rgba(12, 10, 24, 0.95));
  box-shadow: var(--shadow-soft);
}

.plan-card.featured {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 118, 205, 0.14), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(90, 149, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(34, 21, 60, 0.96), rgba(14, 10, 29, 0.96));
  transform: translateY(-18px);
}

.plan-card.side-plan {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 118, 205, 0.05), transparent 26%),
    linear-gradient(180deg, rgba(25, 17, 45, 0.9), rgba(11, 9, 23, 0.94));
}

.plans-grid .plan-card:first-child {
  margin-top: 24px;
}

.plans-grid .plan-card:last-child {
  margin-top: 44px;
}

.plan-kicker {
  display: block;
  margin-top: -4px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.plan-operator-note {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), var(--blue));
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border-color: var(--line-strong);
}

.cta-banner h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.footer {
  padding: 26px 0 54px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.brand-banner-frame {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1200px) {
  .container {
    width: min(var(--site-width), calc(100% - 28px));
  }

  .hero-grid,
  .split-grid,
  .proof-grid,
  .faq-grid,
  .support-grid,
  .platform-grid,
  .operator-grid,
  .page-intro,
  .page-summary,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .steps-grid,
  .pipeline-chain,
  .showcase-grid,
  .workflow-columns,
  .audience-grid,
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pipeline-arrow {
    display: none;
  }

  .plan-card.featured,
  .plans-grid .plan-card:first-child,
  .plans-grid .plan-card:last-child {
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 920px) {
  .topbar-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-row,
  .topbar-actions .button,
  .topbar-actions .text-link {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .mobile-panel.is-open {
    display: block;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background: rgba(12, 9, 23, 0.95);
    box-shadow: var(--shadow-soft);
  }

  .mobile-panel nav {
    display: grid;
    gap: 8px;
  }

  .mobile-panel a {
    padding: 10px 0;
    text-decoration: none;
    font-weight: 600;
  }

  .page-hero {
    padding: 34px 0 58px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-proof,
  .steps-grid,
  .pipeline-chain,
  .showcase-grid,
  .workflow-columns,
  .audience-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .action-row {
    justify-content: flex-start;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

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

@media (max-width: 640px) {
  .container {
    width: calc(100% - 18px);
  }

  .topbar {
    padding-top: 12px;
  }

  .topbar-shell,
  .panel,
  .placeholder-panel,
  .plan-card,
  .cta-banner {
    padding: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .page-intro h1,
  .section-lead h2,
  .cta-banner h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }
}
