@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');

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

html { scrollbar-width: thin; }
html::-webkit-scrollbar { width: 4px; }
html::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

body {
  font-family: 'Sora', sans-serif;
  transition: background-color 0.5s ease, color 0.5s ease;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.dark {
  --bg:            #05060f;
  --bg2:           #0a0c1e;
  --surface:       rgba(255,255,255,0.045);
  --surface-hover: rgba(255,255,255,0.08);
  --border:        rgba(255,255,255,0.08);
  --border-accent: rgba(129,140,248,0.55);
  --text-1:        #f5f3ff;
  --text-2:        #9997bb;
  --text-3:        #49475f;
  --accent:        #7c6cf5;
  --accent-2:      #a5b4fc;
  --accent-glow:   rgba(124,108,245,0.3);
  --accent-hot:    #f472b6;
  --gold:          #fbbf24;
  --success:       #2dd4bf;
  --danger:        #fb7185;
  --card-bg:       rgba(13,15,32,0.85);
  --mono-label:    #49475f;
}

body.light {
  --bg:            #f6f6fb;
  --bg2:           #ffffff;
  --surface:       rgba(20,18,50,0.04);
  --surface-hover: rgba(20,18,50,0.07);
  --border:        rgba(20,18,50,0.09);
  --border-accent: rgba(109,94,248,0.4);
  --text-1:        #14132a;
  --text-2:        #5a5876;
  --text-3:        #b2b0cb;
  --accent:        #6d5ef8;
  --accent-2:      #8b7cf6;
  --accent-glow:   rgba(109,94,248,0.16);
  --accent-hot:    #db2777;
  --gold:          #d97706;
  --success:       #059669;
  --danger:        #e11d48;
  --card-bg:       rgba(255,255,255,0.92);
  --mono-label:    #b2b0cb;
}

.app-root {
  background-color: var(--bg);
  color: var(--text-1);
  min-height: 100vh;
  position: relative;
}

#aurora-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.light-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-image:
    linear-gradient(rgba(99,102,241,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}
body.light .light-grid { opacity: 1; }

.app-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5,6,15,0.7);
  transition: background 0.5s ease, border-color 0.5s ease;
}
body.light .app-header { background: rgba(246,246,251,0.8); }

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wordmark {
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  color: var(--text-1);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wordmark-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}

/* Green Online Pop-Up Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
  animation: pulseBadge 2.5s infinite ease-in-out;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 6px #10b981;
}
.status-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  font-weight: 500;
  color: #10b981;
  letter-spacing: 0.12em;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
  50% { transform: scale(1.04); box-shadow: 0 0 16px rgba(16, 185, 129, 0.4); }
}

.mode-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mode-toggle:hover { border-color: var(--border-accent); }

.toggle-pill {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-3);
}
.toggle-pill.active {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 12px var(--accent-glow);
}

.hero {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
  padding-top: 64px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5vw;
  border-right: 1px solid var(--border);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 5vw 5rem 4rem;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 6px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  animation: slideDown 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.eyebrow-badge {
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--accent);
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: white;
}
.eyebrow span {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--text-3);
}

.hero-h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: 1.5rem;
  animation: slideDown 0.7s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--accent-2);
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 40ch;
  margin-bottom: 2.5rem;
  animation: slideDown 0.7s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: slideDown 0.7s 0.25s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-stats .stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--accent-2);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stats .stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--text-3);
  margin-top: 4px;
}

.section-grid-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  animation: slideDown 0.7s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
.preview-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.preview-chip:hover {
  background: var(--surface-hover);
  border-color: var(--border-accent);
  transform: translateX(3px);
}
.chip-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--accent-2);
  flex-shrink: 0;
}
.chip-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.input-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  animation: slideDown 0.7s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
body.light .input-card { box-shadow: 0 20px 60px rgba(0,0,0,0.06); }

.input-card:focus-within {
  border-color: var(--border-accent);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 3px var(--accent-glow);
}

.input-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.input-bar-dots {
  display: flex;
  gap: 6px;
}
.input-bar-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: block;
}
body.light .input-bar-dots span {
  background: rgba(0,0,0,0.1);
}
.input-bar-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--text-3);
}
.input-bar-chars {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.input-bar-chars.has-chars { color: var(--text-2); }

.main-textarea {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  font-family: 'Sora', sans-serif;
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-1);
  line-height: 1.8;
  caret-color: var(--accent);
  min-height: 160px;
  display: block;
}
.main-textarea::placeholder { color: var(--text-3); }

.input-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.hint-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.btn-gen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.btn-gen:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-gen:active:not(:disabled) {
  transform: scale(0.98);
}
.btn-gen:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.spin { animation: spinAnim 0.65s linear infinite; }
@keyframes spinAnim { to { transform: rotate(360deg); } }

.examples-wrap {
  margin-top: 1.25rem;
  animation: slideDown 0.7s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
.examples-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  color: var(--text-3);
  margin-bottom: 0.6rem;
}
.examples-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.example-btn {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-align: left;
  justify-content: flex-start;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.example-btn .arrow { color: var(--accent-2); font-size: 0.65rem; flex-shrink: 0; }

.right-heading {
  text-align: center;
  margin-bottom: 2rem;
  animation: slideDown 0.7s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
.right-heading .eyebrow-mono {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}
.right-heading .serif-line {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  color: var(--text-1);
  letter-spacing: -0.02em;
}

.pitch-preview {
  margin-top: 2.5rem;
  padding: 1.2rem 1.4rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  max-width: 340px;
  width: 100%;
  animation: slideDown 0.7s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
.pitch-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.pitch-preview-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  opacity: 0.8;
}
.pitch-preview-idx {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: var(--text-3);
}
.pitch-preview-title {
  font-family: 'Instrument Serif', serif;
  font-size: 0.95rem;
  color: var(--text-1);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.pitch-preview-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border-accent), transparent);
  margin-bottom: 0.75rem;
}
.pitch-preview-body {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
}
.pitch-preview-tags {
  display: flex;
  gap: 6px;
  margin-top: 1rem;
}
.pitch-preview-tags span {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  color: var(--text-3);
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.results-section {
  position: relative;
  z-index: 10;
  padding: 2rem 5vw 6rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: none;
}
.results-section.visible { display: block; }

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.results-header-left { flex: 1; }
.results-header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.results-header-top .label-accent {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--accent-2);
}
.results-header-top .label-dim {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: var(--text-3);
}
.results-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.prog-track {
  height: 3px;
  width: 100%;
  max-width: 300px;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.prog-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 8px var(--accent-glow);
  width: 0%;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cards-grid { grid-template-columns: 1fr; } }

.report-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  backdrop-filter: blur(16px);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.report-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hot) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.report-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.report-card:hover::before { opacity: 1; }
body.light .report-card:hover { box-shadow: 0 12px 40px rgba(99,102,241,0.12); }

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  opacity: 0.8;
}
.card-index {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-3);
}
.card-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.card-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border-accent), transparent);
}
.card-body {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.85;
  flex: 1;
  white-space: pre-wrap;
}

.skel {
  border-radius: 4px;
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-hover) 40%, var(--surface) 80%);
  background-size: 600px 100%;
  animation: shimAnim 1.8s infinite linear;
}
@keyframes shimAnim {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.skel-lines { display: flex; flex-direction: column; gap: 8px; }

.error-card {
  background: var(--card-bg);
  border: 1px solid rgba(248,113,113,0.25);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  backdrop-filter: blur(16px);
}
.error-card-top {
  display: flex;
  justify-content: space-between;
}
.error-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  color: var(--danger);
}
.error-card-msg {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
}
.btn-retry {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(248,113,113,0.3);
  background: rgba(248,113,113,0.07);
  color: var(--danger);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.18s;
}
.btn-retry:hover { background: rgba(248,113,113,0.14); border-color: rgba(248,113,113,0.5); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.18s;
}
.btn-outline:hover { border-color: var(--border-accent); color: var(--text-1); background: var(--surface-hover); }

.error-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
  font-size: 0.78rem;
  color: var(--danger);
}

.app-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  padding: 1.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-mono {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--text-3);
}
.team-credit {
  color: var(--accent-2);
  font-weight: 500;
  letter-spacing: 0.16em;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.4s cubic-bezier(0.16,1,0.3,1) forwards; }

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift 20s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.6s ease, background 0.6s ease;
}

.orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(124,108,245,0.2) 0%, transparent 70%);
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  top: 20%; right: -200px;
  background: radial-gradient(circle, rgba(244,114,182,0.14) 0%, transparent 70%);
  animation-delay: -7s;
}
.orb-3 {
  width: 400px; height: 400px;
  bottom: -100px; left: 30%;
  background: radial-gradient(circle, rgba(165,180,252,0.16) 0%, transparent 70%);
  animation-delay: -14s;
}

/* Vibrant Orbs for Light Mode */
body.light .orb-1 {
  background: radial-gradient(circle, rgba(109, 94, 248, 0.12) 0%, transparent 70%);
}
body.light .orb-2 {
  background: radial-gradient(circle, rgba(219, 39, 119, 0.10) 0%, transparent 70%);
}
body.light .orb-3 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.08); }
  66%       { transform: translate(-25px, 20px) scale(0.95); }
}

.scroll-section {
  position: relative;
  z-index: 10;
}