/* OrbitContent — Theme */
:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface-2: #1a1a26;
  --border: rgba(255,255,255,0.07);
  --text: #f5f5f7;
  --text-muted: #8888a0;
  --accent: #e879f9;
  --accent-2: #fbbf24;
  --accent-glow: rgba(232,121,249,0.15);
  --green: #4ade80;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  backdrop-filter: blur(12px);
  background: rgba(10,10,15,0.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--text);
  text-decoration: none;
}
.nav-badge {
  background: var(--accent-glow);
  border: 1px solid rgba(232,121,249,0.3);
  color: var(--accent);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 12px; }
.nav-dashboard-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-dashboard-link:hover { color: var(--accent); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,121,249,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-family: 'DM Mono', monospace;
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.02;
}
.hero-headline span { color: var(--accent); }
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  font-family: 'DM Mono', monospace;
}

/* Agent feed panel */
.hero-feed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-feed::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.feed-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.feed-status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.feed-item {
  padding: 0.75rem;
  background: var(--surface-2);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.feed-item:hover { border-color: rgba(232,121,249,0.2); }
.feed-item.faded { opacity: 0.5; }
.feed-platform {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.feed-platform.twitter { color: #e879f9; }
.feed-platform.linkedin { color: #60a5fa; }
.feed-platform.newsletter { color: var(--accent-2); }
.feed-text {
  font-size: 0.75rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.3rem;
}
.feed-time {
  font-size: 0.65rem;
  color: var(--text-muted);
}
.feed-cta {
  text-align: center;
  padding-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--accent);
  font-style: italic;
}

/* Orbital decoration */
.hero-orbit {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  pointer-events: none;
  z-index: 1;
}
.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(232,121,249,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 20s linear infinite;
}
.orbit-ring-1 { width: 200px; height: 200px; }
.orbit-ring-2 { width: 340px; height: 340px; animation-duration: 30s; animation-direction: reverse; }
.orbit-ring-3 { width: 480px; height: 480px; animation-duration: 45s; }
.orbit-core {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(232,121,249,0.3);
}
@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Sections ── */
.section { padding: 100px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-family: 'DM Mono', monospace;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  font-family: 'DM Mono', monospace;
}

/* ── Monitor section ── */
.monitor { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.monitor-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.2s;
}
.monitor-card:hover {
  border-color: rgba(232,121,249,0.2);
  box-shadow: 0 0 30px rgba(232,121,249,0.05);
}
.monitor-icon {
  width: 40px; height: 40px;
  background: var(--accent-glow);
  border: 1px solid rgba(232,121,249,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.monitor-label {
  font-size: 0.85rem;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

/* ── Write section ── */
.write { background: var(--bg); }
.write-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.write-terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.terminal-header {
  background: var(--surface-2);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }
.terminal-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.terminal-body { padding: 1.25rem; }
.terminal-line {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.terminal-line.prompt { color: var(--accent); }
.terminal-line.thinking { color: #60a5fa; }
.terminal-line.divider { color: var(--border); margin: 0.5rem 0; }
.output-label {
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.terminal-output p { font-size: 0.75rem; color: var(--text); line-height: 1.7; }
.terminal-status {
  display: flex; align-items: center; gap: 8px;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--green);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ── Publish section ── */
.publish { background: var(--surface); border-top: 1px solid var(--border); }
.publish-header { margin-bottom: 3rem; }
.publish-grid { display: grid; gap: 0.75rem; }
.publish-platform {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}
.publish-platform:hover { border-color: rgba(232,121,249,0.15); }
.platform-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.twitter-icon { background: rgba(232,121,249,0.1); color: var(--accent); }
.linkedin-icon { background: rgba(96,165,250,0.1); color: #60a5fa; }
.blog-icon { background: rgba(251,191,36,0.1); color: var(--accent-2); }
.newsletter-icon { background: rgba(74,222,128,0.1); color: var(--green); }
.platform-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}
.platform-format {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.platform-status {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.platform-status.published { color: var(--green); }

/* ── Closing section ── */
.closing {
  padding: 120px 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,121,249,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner {
  max-width: 900px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}
.closing-orb {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  pointer-events: none;
}
.closing-orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(232,121,249,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 25s linear infinite;
}
.closing-orbit-1 { width: 150px; height: 150px; }
.closing-orbit-2 { width: 260px; height: 260px; animation-duration: 40s; animation-direction: reverse; }
.closing-core {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px var(--accent);
}
.closing-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-family: 'DM Mono', monospace;
}
.closing-details {
  display: flex; justify-content: center; gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.detail-item { text-align: left; }
.detail-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.detail-value {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.closing-vision {
  font-size: 0.85rem;
  color: var(--accent);
  font-style: italic;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'DM Mono', monospace;
}

/* ── Pricing section ── */
.pricing {
  padding: 100px 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.pricing-header { margin-bottom: 3rem; }
.pricing-tag { color: var(--accent); font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.pricing-headline { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 0.75rem; }
.pricing-sub { font-size: 0.9rem; color: var(--text-muted); font-family: 'DM Mono', monospace; }

.pricing-card {
  display: inline-block;
  background: var(--bg);
  border: 1px solid rgba(232,121,249,0.25);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  text-align: left;
  max-width: 380px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 40px rgba(232,121,249,0.06);
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 20px 20px 0 0;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-amount span { font-size: 1.2rem; font-weight: 400; color: var(--text-muted); }
.pricing-period { font-size: 0.8rem; color: var(--text-muted); font-family: 'DM Mono', monospace; margin-bottom: 2rem; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.85rem;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-check { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pricing-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
}
.pricing-cta {
  display: block;
  width: 100%;
  padding: 0.875rem;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.pricing-cta:hover { background: #f0a0ff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,121,249,0.3); }

/* email capture in closing */
.closing-email-form { margin-top: 2rem; }
.email-input-row { display: flex; gap: 0.5rem; max-width: 420px; margin: 0 auto 0.75rem; }
.email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.email-input::placeholder { color: var(--text-muted); }
.email-input:focus { border-color: rgba(232,121,249,0.4); }
.email-submit {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.email-submit:hover { background: #f0a0ff; transform: translateY(-1px); }
.email-disclaimer { font-size: 0.7rem; color: var(--text-muted); font-family: 'DM Mono', monospace; }

/* ── Footer ── */
.footer {
  padding: 40px 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  color: var(--text);
}
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); }
.footer-meta { font-size: 0.75rem; color: var(--text-muted); font-style: italic; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-grid, .write-inner { grid-template-columns: 1fr; }
  .hero-orbit { display: none; }
  .monitor-grid { grid-template-columns: 1fr 1fr; }
  .closing-details { flex-direction: column; align-items: center; gap: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .publish-platform { grid-template-columns: auto 1fr; }
  .platform-status { display: none; }
  .closing-orb { display: none; }
}
@media (max-width: 480px) {
  .monitor-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-amount { font-size: 2.5rem; }
  .email-input-row { flex-direction: column; }
  .email-submit { width: 100%; }
}
