:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --fg: #e8e6e1;
  --fg-muted: #8a8880;
  --accent: #c4ff4d;
  --accent-dim: rgba(196, 255, 77, 0.12);
  --accent-glow: rgba(196, 255, 77, 0.25);
  --card-bg: #16161f;
  --card-border: rgba(255,255,255,0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.ghost-text {
  background: linear-gradient(135deg, var(--accent), #7df5a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-platforms {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-pill {
  padding: 8px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(196, 255, 77, 0.2);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

.hero-gradient {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* === SECTION LABELS === */
.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* === PROBLEM === */
.problem {
  padding: 120px 24px;
  background: var(--bg-subtle);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 60px;
}

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

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px 28px;
}

.problem-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* === HOW === */
.how {
  padding: 120px 24px;
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 64px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 80px;
  opacity: 0.4;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* === PACKAGES === */
.packages {
  padding: 120px 24px;
  background: var(--bg-subtle);
}

.packages-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.packages h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

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

.package-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 28px;
  position: relative;
}

.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 60px rgba(196, 255, 77, 0.08);
}

.package-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 6px;
}

.package-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.1;
}

.package-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}

.package-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-card li {
  color: var(--fg-muted);
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}

.package-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.package-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  margin-top: 28px;
}

.package-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.package-btn-featured {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.package-btn-featured:hover {
  background: #d4ff62;
  border-color: #d4ff62;
  color: var(--bg);
}

/* === CLOSING === */
.closing {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
  padding: 60px 24px;
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 14px;
  margin-bottom: 4px;
  font-style: italic;
}

.footer-contact {
  color: var(--fg-muted);
  font-size: 13px;
}

/* === RESPONSIVE === */
/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--card-border);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--fg); }

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* === SAMPLES === */
.samples {
  padding: 120px 24px;
}

.samples-inner {
  max-width: 900px;
  margin: 0 auto;
}

.samples h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.samples-sub {
  color: var(--fg-muted);
  font-size: 17px;
  margin-bottom: 48px;
}

.samples-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--accent-dim);
  border-color: rgba(196, 255, 77, 0.3);
  color: var(--accent);
}

.tab-btn:hover:not(.active) { border-color: rgba(255,255,255,0.15); color: var(--fg); }

.sample-panel { display: none; }
.sample-panel.active { display: block; }

.mock-post {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
}

/* LinkedIn mock */
.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mock-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), rgba(125, 245, 160, 0.1));
  border: 1px solid rgba(196, 255, 77, 0.2);
  flex-shrink: 0;
}

.mock-meta { flex: 1; }
.mock-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.mock-handle { font-size: 13px; color: var(--fg-muted); }

.platform-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.li-badge { background: #0A66C2; color: white; }

.mock-body p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; margin-bottom: 12px; }
.mock-body p:last-child { margin-bottom: 0; }
.mock-hashtags { color: var(--accent) !important; font-size: 13px !important; }

.mock-footer {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

.mock-stat { font-size: 13px; color: var(--fg-muted); }

/* TikTok mock */
.tiktok-post { padding: 0 !important; overflow: hidden; border-radius: 16px; }

.tiktok-frame {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.tiktok-overlay { display: flex; gap: 20px; align-items: flex-end; }
.tiktok-caption { flex: 1; }
.tiktok-caption p { color: white; font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.tiktok-hook { color: var(--accent) !important; font-weight: 600; }

.tiktok-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.tiktok-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.tiktok-action span { color: white; font-size: 12px; font-family: var(--font-display); font-weight: 600; }

.tiktok-tags { position: absolute; top: 16px; left: 24px; font-size: 12px; color: rgba(255,255,255,0.6); }
.tiktok-handle { padding: 12px 20px; font-size: 13px; color: var(--fg-muted); font-family: var(--font-display); }

/* Instagram mock */
.instagram-post { padding: 0 !important; overflow: hidden; }

.insta-frame {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 32px;
}

.insta-carousel-hint {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
}

.insta-slide { text-align: center; }
.insta-slide-num { font-size: 64px; font-weight: 700; font-family: var(--font-display); color: rgba(255,255,255,0.3); line-height: 1; margin-bottom: 12px; }
.insta-slide-text { font-size: 18px; font-weight: 600; color: white; font-family: var(--font-display); line-height: 1.3; max-width: 300px; }

.insta-caption { padding: 16px 20px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }
.insta-tags { color: var(--accent); font-size: 13px; }

.insta-stats {
  padding: 0 20px 16px;
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 500;
}

.sample-label {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
}

.samples-cta { text-align: center; margin-top: 48px; }

/* === ONBOARD / FORMS === */
.portal-page {
  min-height: 100vh;
  padding: 100px 24px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.portal-inner {
  width: 100%;
  max-width: 600px;
}

.portal-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.portal-inner .lede {
  margin-bottom: 40px;
  font-size: 16px;
}

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(196, 255, 77, 0.4);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.platform-checkboxes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-check {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  user-select: none;
}

.platform-check input { display: none; }
.platform-check.checked {
  background: var(--accent-dim);
  border-color: rgba(196, 255, 77, 0.3);
  color: var(--accent);
}

.form-error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: #ff6b6b;
  font-size: 14px;
  margin-bottom: 24px;
}

.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}

.form-submit:hover { opacity: 0.9; }

/* === CALENDAR === */
.calendar-page {
  min-height: 100vh;
  padding: 88px 24px 80px;
}

.calendar-inner { max-width: 900px; margin: 0 auto; }

.calendar-header {
  margin-bottom: 48px;
  padding-top: 24px;
}

.welcome-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(196, 255, 77, 0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.calendar-header h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.calendar-header p { color: var(--fg-muted); font-size: 16px; }

.platform-section { margin-bottom: 48px; }

.platform-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.platform-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.platform-icon.linkedin { background: #0A66C2; color: white; }
.platform-icon.tiktok { background: #1a1a1a; color: white; border: 1px solid rgba(255,255,255,0.1); }
.platform-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366); color: white; }

.post-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 12px;
  position: relative;
}

.post-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-type-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(196, 255, 77, 0.15);
}

.post-date {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-display);
}

.post-content {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line;
}

.post-status {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.post-status.scheduled { background: rgba(196,255,77,0.08); color: var(--accent); border: 1px solid rgba(196,255,77,0.2); }
.post-status.published { background: rgba(100,200,100,0.08); color: #7df5a0; border: 1px solid rgba(100,200,100,0.2); }
.post-status.draft { background: rgba(255,255,255,0.04); color: var(--fg-muted); border: 1px solid var(--card-border); }

.calendar-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--fg-muted);
}

.calendar-empty h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; }

.new-alert {
  background: var(--accent-dim);
  border: 1px solid rgba(196, 255, 77, 0.25);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.new-alert-icon { font-size: 24px; flex-shrink: 0; }
.new-alert-text h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--accent); }
.new-alert-text p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 36px;
    min-width: auto;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 80px;
  }

  .problem, .how, .packages {
    padding: 80px 20px;
  }

  .closing {
    padding: 100px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.97);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }

  .form-card { padding: 28px 20px; }

  .post-card-header { flex-direction: column; gap: 8px; }
}