:root {
  --bg: #0a0a0a;
  --panel: rgba(18, 18, 18, 0.82);
  --panel-strong: #111;
  --line: rgba(212, 255, 0, 0.18);
  --line-soft: rgba(255, 255, 255, 0.1);
  --neon: #d4ff00;
  --neon-2: #8cff00;
  --text: #fff;
  --muted: #bfbfbf;
  --dim: #7e7e7e;
  --shadow: 0 0 30px rgba(212, 255, 0, 0.16);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.landing-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 10%, rgba(212, 255, 0, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(140, 255, 0, 0.08), transparent 24rem),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 50%, #050505 100%);
}

.landing-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    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: 56px 56px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.32), transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(212, 255, 0, 0.7);
  border-radius: 8px;
  color: #0a0a0a;
  background: var(--neon);
  box-shadow: 0 0 22px rgba(212, 255, 0, 0.38);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.header-nav a,
.site-footer nav a {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.header-nav a:hover,
.site-footer nav a:hover {
  color: var(--neon);
  text-shadow: 0 0 14px rgba(212, 255, 0, 0.5);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(212, 255, 0, 0.5);
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.modal-close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.45rem;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.modal-close:hover {
  color: var(--neon);
  border-color: rgba(212, 255, 0, 0.5);
  transform: scale(1.06);
}

.header-cta,
.button-primary {
  color: #080808;
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 26px rgba(212, 255, 0, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-soft);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 34px rgba(212, 255, 0, 0.36);
}

main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 176px);
  padding: 42px 0 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--neon);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.45rem, 5.3vw, 5rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.hero-subtitle,
.section-heading p,
.visual-copy p,
.pricing-cta p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.hero-actions,
.trust-row,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 32px;
}

.button.big {
  min-height: 56px;
  padding-inline: 26px;
  font-size: 1.05rem;
}

.trust-row {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--neon);
  box-shadow: 0 0 14px rgba(212, 255, 0, 0.78);
}

.dashboard-mockup,
.visual-section,
.pricing-cta,
.site-footer,
.stats-strip {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.92), rgba(10, 10, 10, 0.92));
}

.dashboard-mockup {
  position: relative;
  overflow: hidden;
  padding: 18px;
  max-height: 560px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dashboard-mockup::before,
.pricing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(212, 255, 0, 0.13), transparent 34rem);
}

.mockup-top,
.mockup-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
}

.mockup-top {
  margin-bottom: 16px;
  color: var(--muted);
}

.mockup-top strong {
  margin-left: auto;
  color: var(--neon);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2b2b2b;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mockup-toolbar {
  justify-content: space-between;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
}

.mockup-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.preview-card,
.feature-card,
.resource-card,
.step-card,
.showcase-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.preview-card {
  overflow: hidden;
}

.preview-card:hover,
.feature-card:hover,
.resource-card:hover,
.step-card:hover,
.showcase-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(212, 255, 0, 0.48);
  box-shadow: 0 0 26px rgba(212, 255, 0, 0.13);
}

.preview-media {
  position: relative;
  aspect-ratio: 0.74;
  overflow: hidden;
  background: #1a1a1a;
}

.preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78));
}

.play-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(212, 255, 0, 0.65);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 18px rgba(212, 255, 0, 0.22);
}

.preview-body {
  padding: 12px;
}

.preview-body strong {
  display: block;
  min-height: 40px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: var(--neon);
  font-weight: 900;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 92px;
  overflow: hidden;
}

.stat-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.stat-card strong {
  display: block;
  color: var(--neon);
  font-size: clamp(1.7rem, 3vw, 3rem);
  text-shadow: 0 0 18px rgba(212, 255, 0, 0.22);
}

.stat-card span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.stat-card p {
  margin: 8px 0 0;
  color: var(--dim);
  line-height: 1.55;
}

.section,
.visual-section,
.pricing-cta {
  margin-bottom: 92px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 0;
}

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

.feature-card,
.resource-card,
.step-card {
  padding: 22px;
}

.feature-icon,
.resource-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(212, 255, 0, 0.34);
  border-radius: 8px;
  color: var(--neon);
  background: rgba(212, 255, 0, 0.07);
  box-shadow: inset 0 0 16px rgba(212, 255, 0, 0.08);
}

.feature-card h3,
.resource-card h3,
.step-card h3,
.showcase-card h3 {
  margin: 0;
  font-size: 1rem;
}

.feature-card p,
.resource-card p,
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #070707;
  background: var(--neon);
  font-weight: 900;
  box-shadow: 0 0 18px rgba(212, 255, 0, 0.28);
}

.visual-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  overflow: hidden;
}

.badge-row {
  margin-top: 24px;
}

.badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(212, 255, 0, 0.3);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(212, 255, 0, 0.055);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.showcase-card {
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
}

.showcase-card div {
  padding: 12px;
}

.showcase-card span {
  display: block;
  margin-top: 8px;
  color: var(--neon);
  font-weight: 900;
}

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

.pricing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  text-align: center;
}

.pricing-heading {
  margin-inline: auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(212, 255, 0, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pricing-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(212, 255, 0, 0.52);
  box-shadow: 0 0 34px rgba(212, 255, 0, 0.16);
}

.pricing-card.is-highlighted {
  min-height: 548px;
  border-color: rgba(212, 255, 0, 0.75);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 255, 0, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(212, 255, 0, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 10, 0.94);
  box-shadow: 0 0 42px rgba(212, 255, 0, 0.22), inset 0 0 28px rgba(212, 255, 0, 0.045);
}

.pricing-card h3 {
  margin: 18px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pricing-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.plan-badge,
.plan-kicker {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-badge {
  color: #070707;
  background: var(--neon);
  box-shadow: 0 0 24px rgba(212, 255, 0, 0.42);
}

.plan-kicker {
  color: var(--neon);
  border: 1px solid rgba(212, 255, 0, 0.28);
  background: rgba(212, 255, 0, 0.055);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 26px 0 20px;
}

.plan-price strong {
  color: var(--neon);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 0.95;
  text-shadow: 0 0 22px rgba(212, 255, 0, 0.32);
}

.plan-price span {
  color: var(--muted);
  font-weight: 800;
  transform: translateY(-6px);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--neon);
  box-shadow: 0 0 12px rgba(212, 255, 0, 0.7);
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

.plan-dialog {
  width: min(980px, calc(100% - 28px));
  max-height: min(92vh, 900px);
  padding: 0;
  border: 1px solid rgba(212, 255, 0, 0.44);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  box-shadow: 0 0 70px rgba(212, 255, 0, 0.2), 0 22px 80px rgba(0, 0, 0, 0.62);
}

.plan-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.plan-modal {
  position: relative;
  overflow: auto;
  max-height: min(92vh, 900px);
  padding: clamp(22px, 4vw, 44px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 255, 0, 0.14), transparent 28rem),
    linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(8, 8, 8, 0.98));
}

.plan-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-pricing-grid {
  max-width: none;
}

.pricing-card.is-compact {
  min-height: 480px;
}

.pricing-cta h2,
.pricing-cta p,
.pricing-cta a,
.pricing-cta .eyebrow {
  position: relative;
  z-index: 1;
}

.pricing-cta p {
  max-width: 720px;
  margin: 18px auto 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 22px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
  max-width: 320px;
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 1080px) {
  .hero-section,
  .split-section,
  .visual-section {
    grid-template-columns: 1fr;
  }

  .dashboard-mockup {
    min-height: auto;
  }

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

  .stats-strip,
  .resource-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
  }

  .header-nav {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-section {
    padding-top: 48px;
  }

  .mockup-grid,
  .feature-grid,
  .steps-list,
  .resource-grid,
  .creator-showcase,
  .stats-strip,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .pricing-card.is-highlighted,
  .pricing-card.is-compact {
    min-height: auto;
  }

  .visual-section {
    padding: 18px;
  }

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

  .site-footer p {
    text-align: left;
  }
}
