:root {
  --bg: #0d0d16;
  --bg-card: #14141f;
  --bg-card-hover: #1a1a28;
  --fg: #f0efe9;
  --fg-muted: #8a8a9a;
  --accent: #c8ff00;
  --accent-dim: rgba(200, 255, 0, 0.12);
  --border: rgba(240, 239, 233, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.nav__cta {
  background: var(--accent);
  color: #0d0d16;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav__cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  padding: 80px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  color: rgba(240, 239, 233, 0.75);
  line-height: 1.65;
  margin-bottom: 12px;
}
.hero__sub-small {
  font-size: 15px;
  color: var(--fg-muted);
}

/* Transform visual */
.hero__transform-visual {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__input {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 80px;
  font-size: 13px;
  color: var(--fg-muted);
}
.hero__input-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__arrow {
  flex-shrink: 0;
}
.hero__outputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__output-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
}
.hero__output-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.hero__output-chip--linkedin .hero__output-dot { background: #0a66c2; }
.hero__output-chip--x .hero__output-dot { background: #fff; }
.hero__output-chip--insta .hero__output-dot { background: #e1306c; }
.hero__output-chip--tiktok .hero__output-dot { background: #ff0050; }
.hero__output-chip--email .hero__output-dot { background: var(--accent); }
.hero__output-chip--blog .hero__output-dot { background: #8b5cf6; }

/* TRANSFORM SECTION */
.transform {
  padding: 80px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.transform__inner { max-width: 1200px; margin: 0 auto; }
.transform__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.transform__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 56px;
}
.transform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.transform__stat {
  background: var(--bg-card);
  padding: 40px 36px;
}
.transform__stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.transform__stat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.transform__bottom {
  font-size: 17px;
  color: rgba(240, 239, 233, 0.6);
  max-width: 540px;
}

/* HOW IT WORKS */
.how { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.how__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.how__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.how__step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.how__step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.how__step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.how__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.how__tools-label {
  font-size: 13px;
  color: var(--fg-muted);
}
.how__tool-badge {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 100px;
  color: var(--accent);
}

/* PACKAGES */
.packages {
  padding: 80px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.packages__inner { max-width: 1200px; margin: 0 auto; }
.packages__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.packages__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.packages__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.packages__card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(200,255,0,0.04) 0%, transparent 60%);
}
.packages__card-header { margin-bottom: 16px; }
.packages__tier {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.packages__card--featured .packages__tier { color: var(--accent); }
.packages__price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.packages__price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg-muted);
}
.packages__desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.packages__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.packages__features li {
  font-size: 14px;
  color: rgba(240, 239, 233, 0.8);
  padding-left: 20px;
  position: relative;
}
.packages__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.packages__card--featured .packages__features li::before { background: var(--accent); }
.packages__note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.closing__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing__sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}
.closing__visual { flex-shrink: 0; }
.closing__orbit {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing__orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 0, 0.15);
}
.closing__orbit-ring--1 { width: 180px; height: 180px; }
.closing__orbit-ring--2 { width: 120px; height: 120px; border-color: rgba(200, 255, 0, 0.25); }
.closing__orbit-ring--3 { width: 60px; height: 60px; border-color: rgba(200, 255, 0, 0.4); }
.closing__orbit-core {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer__copy {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav__tagline { display: none; }
  .hero { padding: 60px 24px; }
  .hero__layout { grid-template-columns: 1fr; gap: 48px; }
  .hero__transform-visual { flex-direction: column; align-items: flex-start; }
  .hero__outputs { flex-direction: row; flex-wrap: wrap; }
  .transform { padding: 60px 24px; }
  .transform__grid { grid-template-columns: 1fr; }
  .how { padding: 60px 24px; }
  .how__steps { grid-template-columns: 1fr; gap: 32px; }
  .packages { padding: 60px 24px; }
  .packages__grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px; }
  .closing__inner { flex-direction: column-reverse; }
  .footer { padding: 40px 24px; }
}