:root {
  --yellow: #FED571;
  --soft-pink: #FAB0B5;
  --bright-blue: #72DDFF;
  --hot-pink: #FE0675;
  --indigo: #585CFE;
  --neon-magenta: #E400F8;

  --bg: #0b0b18;
  --text-main: #f9f9ff;
  --text-muted: #c6c7ff;
  --card-bg: #17172a;
  --card-alt-bg: #1f1f39;
  --border-subtle: rgba(255, 255, 255, 0.08);
}

/* Global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #181830, #050510 60%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 7vw;
  background: rgba(5, 5, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--hot-pink), var(--bright-blue), var(--yellow), var(--neon-magenta), var(--hot-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 2.1fr);
  gap: 30px;
  padding: 48px 7vw 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 3.1vw, 3rem);
  margin-bottom: 10px;
}

.hero-content p {
  color: var(--text-muted);
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 8px;
}

.hero-note {
  font-size: 14px;
  color: var(--bright-blue);
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(254, 213, 113, 0.1), #151526);
  border-radius: 22px;
  padding: 22px 20px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.hero-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero-card ul {
  margin-left: 18px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.hero-card li + li {
  margin-top: 5px;
}

.hero-card-footnote {
  font-size: 13px;
  color: var(--soft-pink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--hot-pink), var(--neon-magenta), var(--indigo));
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-full {
  width: 100%;
  margin-top: 10px;
  background: linear-gradient(120deg, var(--yellow), var(--soft-pink), var(--bright-blue));
  color: #111;
  font-weight: 700;
}

.btn-full:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-main);
  font-size: 13px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Sections */
.section {
  padding: 40px 7vw;
}

.section-alt {
  background: radial-gradient(circle at top, #151528, #050510);
}

.section-header {
  max-width: 560px;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.section-header p {
  color: var(--text-muted);
}

/* Starter Kit layout */
.starter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 26px;
}

.starter-info,
.starter-list {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid var(--border-subtle);
}

.starter-info h3,
.starter-list h3 {
  margin-bottom: 8px;
}

.starter-info p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.starter-info ul {
  margin-left: 18px;
  margin-bottom: 18px;
}

.starter-info li + li {
  margin-top: 4px;
}

.starter-list ol {
  margin-left: 18px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.starter-list li + li {
  margin-top: 4px;
}

.starter-note {
  font-size: 13px;
  color: var(--soft-pink);
}

/* Cards for income paths */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-pill {
  display: inline-flex;
  padding: 3px 10px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(250, 176, 181, 0.18);
  color: var(--soft-pink);
  margin-bottom: 6px;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.card-list {
  margin-left: 16px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 13px;
}

.card-list li + li {
  margin-top: 4px;
}

/* Subscription */
.subscription-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--card-alt-bg);
  border-radius: 22px;
  padding: 24px 20px 22px;
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.subscription-card h2 {
  margin-bottom: 8px;
}

.subscription-card p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.subscription-note {
  font-size: 13px;
  color: var(--bright-blue);
}

/* Footer */
.footer {
  padding: 18px 7vw 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.footer a {
  color: var(--bright-blue);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    order: -1;
  }
  .starter-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 30px;
  }
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .section {
    padding-inline: 5vw;
  }
  .nav {
    padding-inline: 5vw;
  }
}
