/* ======================================
   publie.ai — Landing Page Styles
   ====================================== */

.home-body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  overflow-x: hidden;
}

.text-center { text-align: center; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6%;
  z-index: 1000;
  background: rgba(248, 246, 242, 0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  height: 64px;
  background: rgba(248, 246, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a {
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ======================================
   HERO SECTION — Redesigned
   ====================================== */

.hero {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 0;
  padding: 100px 5% 60px;
  min-height: 100vh;
  align-items: center;
  position: relative;
  overflow: visible;
}

/* Ambient Background */
.hero-ambient-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.6; animation: float-ambient 12s ease-in-out infinite alternate; }
.orb-a { width: 50vw; height: 50vw; background: var(--accent-light); top: -20%; right: -10%; }
.orb-b { width: 40vw; height: 40vw; background: rgba(244,124,72,0.08); bottom: -10%; left: -10%; animation-delay: -6s; }
.ambient-grid { position: absolute; inset: 0; background-image: radial-gradient(var(--border) 1px, transparent 1px); background-size: 32px 32px; opacity: 0.5; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }
@keyframes float-ambient { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-40px, 40px) scale(1.1); } }

/* Floating particles */
.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  animation: particle-drift var(--dur, 9s) ease-in-out var(--d, 0s) infinite alternate;
}
@keyframes particle-drift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.35; }
  50%  { opacity: 0.6; }
  100% { transform: translate(20px, -30px) scale(1.3); opacity: 0.15; }
}


/* ── HERO LEFT ── */
@keyframes fade-in-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-left {
  padding-right: 48px;
  animation: fade-in-up 0.8s ease-out forwards;
  position: relative;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,124,72,0.08);
  border: 1px solid rgba(244,124,72,0.2);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: dot-blink 1.5s ease-in-out infinite;
}

/* Headline */
.hero-title {
  font-size: 4.4rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.045em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title-line1 {
  color: var(--text-primary);
  font-size: 1em;
}
.hero-title-line2 {
  font-size: 1.08em;
  color: var(--text-primary);
}
.hero-accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-accent-word::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(244,124,72,0.3));
  border-radius: 2px;
  opacity: 0.5;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 460px;
}

/* Pill tags */
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-pill {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.hero-pill:hover { border-color: var(--accent); color: var(--accent); }

/* CTAs */
.hero-cta-wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.btn-lg { padding: 15px 32px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.hero-cta-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 28px rgba(244,124,72,0.35);
  font-size: 1.05rem;
  padding: 15px 32px;
}
.hero-cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(244,124,72,0.45);
}
.hero-cta-secondary {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
}
.hero-cta-secondary:hover { color: var(--text-primary); }
.hero-trust { font-size: 0.85rem; color: var(--text-tertiary); font-weight: 500; }

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar-stack { display: flex; }
.hsp-av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -8px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hsp-av:first-child { margin-left: 0; }
.hsp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.hsp-stars { color: #F5A623; font-size: 0.75rem; letter-spacing: 1px; }
.hsp-text strong { color: var(--text-primary); }

/* Floating ambient badges */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  pointer-events: none;
  white-space: nowrap;
  z-index: 5;
}
.badge-published {
  position: absolute;
  top: 30%;
  left: -12px;
  animation: badge-float 5s ease-in-out infinite;
  opacity: 0.9;
}
.badge-scheduled {
  position: absolute;
  top: 50%;
  left: -12px;
  animation: badge-float 6s ease-in-out 1s infinite;
  opacity: 0.85;
}
.badge-reach {
  position: absolute;
  bottom: 15%;
  left: -12px;
  animation: badge-float 7s ease-in-out 2s infinite;
  opacity: 0.85;
}
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.fb-dot { width: 8px; height: 8px; border-radius: 50%; }
.fb-dot.green { background: #4CAF50; animation: dot-blink 2s infinite; }
.fb-sub { color: var(--text-tertiary); font-size: 0.72rem; }
.fb-val { color: #4CAF50; font-weight: 800; font-size: 0.9rem; }

@keyframes dot-blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* ── HERO RIGHT: DASHBOARD ── */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fade-in-up 1s ease-out 0.2s both;
  padding-left: 20px;
}

.hero-window-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,124,72,0.12) 0%, transparent 70%);
  filter: blur(40px);
  top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Dashboard window */
.hero-dashboard {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.10),
    0 0 0 1px rgba(244,124,72,0.15),
    0 0 60px rgba(244,124,72,0.08) inset;
  z-index: 10;
  overflow: hidden;
  animation: float-os 9s ease-in-out infinite;
}
@keyframes float-os {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Title bar */
.hd-titlebar {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(250,248,245,0.8);
  gap: 12px;
}
.hd-dots { display: flex; gap: 5px; flex-shrink: 0; }
.hd-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.hd-dots span:nth-child(1) { background: #FF5F56; }
.hd-dots span:nth-child(2) { background: #FFBD2E; }
.hd-dots span:nth-child(3) { background: #27C93F; }
.hd-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.hd-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(244,124,72,0.1);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: dot-blink 1.5s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}
.hd-nav-tabs {
  display: flex;
  gap: 4px;
}
.hd-tab {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-tertiary);
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.hd-tab.active {
  background: var(--accent-light);
  color: var(--accent);
}

/* Dashboard body */
.hd-body {
  display: flex;
  gap: 0;
  min-height: 360px;
}

/* Workflow track */
.hd-track {
  width: 82px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  background: #FDFBF8;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.hd-track-line {
  position: absolute;
  top: 30px; bottom: 30px;
  left: 50%; width: 2px;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 0;
}
.hd-track-fill {
  position: absolute;
  top: 30px;
  left: 50%; width: 2px;
  height: 0%;
  background: var(--accent);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 1px;
  transition: height 0.6s ease;
  box-shadow: 0 0 8px rgba(244,124,72,0.4);
}
.hd-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.hd-step-node {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all 0.3s ease;
  z-index: 2;
}
.hd-step.active .hd-step-node {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 0 4px rgba(244,124,72,0.2);
}
.hd-step.done .hd-step-node {
  background: #4CAF50;
  border-color: #4CAF50;
  color: white;
}
.hd-step-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hd-step.active .hd-step-label { color: var(--accent); }
.hd-step.done .hd-step-label { color: #4CAF50; }

/* Content panels */
.hd-panels { flex: 1; position: relative; overflow: hidden; }
.hd-panel {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.hd-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}
.hd-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hd-panel-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hd-panel-icon.accent { background: rgba(244,124,72,0.12); }
.hd-panel-icon.green  { background: rgba(76,175,80,0.12); color: #4CAF50; font-weight: 800; }
.hd-panel-icon.blue   { background: rgba(33,150,243,0.1); }
.hd-panel-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
}
.hd-panel-sub {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  margin-top: 1px;
}
.hd-persona-chip {
  margin-left: auto;
  background: rgba(244,124,72,0.1);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  flex-shrink: 0;
}
.hd-status-chip {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  flex-shrink: 0;
}
.hd-status-chip.review   { background: rgba(244,124,72,0.1); color: var(--accent); }
.hd-status-chip.scheduled{ background: rgba(33,150,243,0.1); color: #1976D2; }
.hd-status-chip.published{ background: rgba(76,175,80,0.1);  color: #4CAF50; }

/* Panel 1: Generation */
.hd-prompt-box {
  background: #F8F6F2;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}
.hd-prompt-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.hd-prompt-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
}
.hd-generating-box {
  background: white;
  border: 1.5px solid rgba(244,124,72,0.2);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 0 20px rgba(244,124,72,0.06) inset;
}
.hd-gen-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hd-gen-line {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.5;
}
.cursor {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursor-blink 1s step-end infinite;
}
@keyframes cursor-blink { 50% { opacity: 0; } }
.hd-gen-skel {
  height: 7px;
  background: linear-gradient(90deg, #F0EDE8 25%, #E8E3DA 50%, #F0EDE8 75%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.6s ease-in-out infinite;
  border-radius: 4px;
  margin-bottom: 7px;
}
@keyframes skel-shimmer {
  0%  { background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}

/* Panel 2: Approval */
.hd-draft-preview {
  background: #F8F6F2;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.hdp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.hdp-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8C4A8, var(--accent));
  flex-shrink: 0;
}
.hdp-name { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.hdp-time { font-size: 0.7rem; color: var(--text-tertiary); }
.hdp-body {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.hdp-more {
  color: var(--accent);
  font-weight: 700;
  margin-left: 4px;
  cursor: pointer;
}
.hd-approve-actions {
  display: flex;
  gap: 10px;
}
.hd-btn-revise {
  flex: 1;
  padding: 10px;
  background: #F5F3EE;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
}
.hd-btn-revise:hover { border-color: var(--accent); color: var(--accent); }
.hd-btn-approve {
  flex: 2;
  padding: 10px;
  background: #4CAF50;
  border: none;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}
.hd-btn-approve:hover { background: #43A047; transform: translateY(-1px); }

/* Panel 3: Calendar */
.hd-calendar-mini {
  background: #F8F6F2;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.hcm-header {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.hcm-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.hcm-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.hcm-day.label { font-weight: 700; color: var(--text-tertiary); font-size: 0.65rem; cursor: default; }
.hcm-day.has-post { background: rgba(244,124,72,0.12); color: var(--accent); }
.hcm-day.selected { background: var(--accent); color: white; box-shadow: 0 3px 8px rgba(244,124,72,0.35); }
.hcm-post-pill {
  background: rgba(244,124,72,0.1);
  border: 1px solid rgba(244,124,72,0.2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 8px;
  text-align: center;
}

/* Panel 4: Analytics */
.hd-stats-row {
  display: flex;
  gap: 12px;
}
.hd-stat {
  flex: 1;
  background: #F8F6F2;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.hd-stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.hd-stat-lbl {
  font-size: 0.65rem;
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.hd-stat-delta {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 8px;
  display: inline-block;
}
.hd-stat-delta.up { background: rgba(76,175,80,0.1); color: #4CAF50; }
.hd-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
  padding: 8px;
  background: #F8F6F2;
  border: 1.5px solid var(--border);
  border-radius: 12px;
}
.hd-spark-bar {
  flex: 1;
  height: var(--bh);
  background: #E0DCD6;
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
}
.hd-spark-bar.peak {
  background: var(--accent);
  box-shadow: 0 -2px 8px rgba(244,124,72,0.4);
}

/* Progress bar at dashboard bottom */
.hd-progress-bar {
  height: 3px;
  background: var(--border-soft);
}
.hd-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #F4A261);
  border-radius: 0 2px 2px 0;
  transition: width 0.8s ease;
}

/* Unused legacy styles kept empty to avoid breaking references */
.os-window, .os-topbar, .os-body, .os-phase, .os-gen-box, .hero-cine-bg { display: none; }

/* (Old hero-right / OS-window / illustration styles removed — replaced by new dashboard styles above) */






/* Background Streams */
.cine-streams {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.c-stream {
  stroke: url(#lineGrad);
  stroke-width: 1px;
  fill: none;
  stroke-dasharray: 200 100;
  animation: stream-flow 15s linear infinite;
}
.s2 { animation-duration: 20s; opacity: 0.6; }
.s3 { animation-duration: 12s; opacity: 0.3; }
@keyframes stream-flow {
  to { stroke-dashoffset: -1000; }
}

/* ── UNIFIED OS WINDOW ── */
.os-window {
  position: relative;
  width: 480px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(244, 124, 72, 0.2),
    0 0 50px rgba(244, 124, 72, 0.12) inset;
  z-index: 10;
  overflow: hidden;
  animation: float-os 8s ease-in-out infinite;
}
@keyframes float-os {
  0%, 100% { transform: translateY(0); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(244, 124, 72, 0.2), 0 0 50px rgba(244, 124, 72, 0.12) inset; }
  50% { transform: translateY(-12px); box-shadow: 0 40px 70px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(244, 124, 72, 0.25), 0 0 60px rgba(244, 124, 72, 0.18) inset; }
}

/* Glass Reflection Overlay */
.os-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 40%);
  pointer-events: none;
  z-index: 20;
}

/* Top Bar */
.os-topbar {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.4);
}
.os-mac-dots {
  display: flex; gap: 6px; width: 60px;
}
.os-mac-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #E0DCD6;
}
.os-mac-dots span:nth-child(1) { background: #FF5F56; }
.os-mac-dots span:nth-child(2) { background: #FFBD2E; }
.os-mac-dots span:nth-child(3) { background: #27C93F; }

.os-title {
  flex: 1; text-align: center;
  font-size: 0.8rem; font-weight: 700; color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.os-live-status {
  font-size: 0.65rem; color: var(--accent); background: rgba(244,124,72,0.12);
  padding: 2px 8px; border-radius: 12px; display: flex; align-items: center; gap: 4px;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes dot-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* OS Body / Phases */
.os-body {
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}

.os-phase {
  display: flex; gap: 16px;
  position: relative;
}
.os-icon-col {
  display: flex; flex-direction: column; align-items: center; width: 32px;
}
.os-phase-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(244,124,72,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: bold;
  box-shadow: 0 0 10px rgba(244,124,72,0.2);
}
.os-flow-line {
  flex: 1; width: 2px; background: rgba(244,124,72,0.2);
  margin: 4px 0; position: relative; overflow: hidden;
  min-height: 24px;
}
.flow-dot {
  position: absolute; top: -10px; left: 0; width: 2px; height: 10px;
  background: var(--accent);
  animation: flow-down 2s linear infinite;
}
.flow-dot.d1 { animation-delay: 1s; }
@keyframes flow-down {
  0% { top: -10px; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.os-content-col {
  flex: 1; padding-bottom: 12px;
}
.os-phase.last .os-content-col { padding-bottom: 0; }
.os-phase-title {
  font-size: 0.72rem; font-weight: 800; color: var(--text-primary);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* Phase 1: Generation */
.os-gen-box {
  background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px; padding: 12px;
}
.os-gen-header { font-size: 0.65rem; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.os-gen-typing { font-size: 0.85rem; color: var(--text-primary); font-weight: 500; margin-bottom: 8px; }
.cursor { display: inline-block; width: 2px; height: 12px; background: var(--accent); margin-left: 2px; animation: cursor-blink 1s step-end infinite; }
@keyframes cursor-blink { 50% { opacity: 0; } }
.os-skel { height: 6px; background: rgba(0,0,0,0.06); border-radius: 3px; margin-bottom: 6px; }
.os-skel.w-80 { width: 80%; } .os-skel.w-50 { width: 50%; } .os-skel.w-40 { width: 40%; } .os-skel.w-20 { width: 20%; }
.os-skel.h-sm { height: 4px; } .os-skel.light { background: rgba(0,0,0,0.03); }

/* Phase 2: Refinement */
.os-tags-row { display: flex; gap: 8px; flex-wrap: wrap; }
.os-tag {
  font-size: 0.65rem; font-weight: 700; padding: 6px 10px;
  border-radius: 16px; border: 1px solid transparent;
}
.os-tag.done {
  background: rgba(76,175,80,0.1); color: #4CAF50; border-color: rgba(76,175,80,0.2);
}
.os-tag.active {
  background: rgba(244,124,72,0.1); color: var(--accent); border-color: rgba(244,124,72,0.3);
  box-shadow: 0 0 10px rgba(244,124,72,0.15);
  animation: tag-pulse 2s ease-in-out infinite;
}
@keyframes tag-pulse { 50% { box-shadow: 0 0 20px rgba(244,124,72,0.25); } }

/* Phase 3: Performance */
.os-perf-card {
  background: #FFFFFF; border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px; padding: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.os-perf-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.os-avatar { width: 32px; height: 32px; border-radius: 50%; background: #E8C4A8; }
.os-meta { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.os-pub-badge { font-size: 0.65rem; font-weight: 700; color: #4CAF50; background: rgba(76,175,80,0.1); padding: 4px 8px; border-radius: 12px; }

.os-perf-stats { display: flex; align-items: flex-end; gap: 20px; }
.os-stat-item { display: flex; flex-direction: column; gap: 2px; }
.os-stat-val { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); }
.os-stat-item:first-child .os-stat-val { color: var(--accent); }
.os-stat-lbl { font-size: 0.65rem; color: var(--text-secondary); font-weight: 600; text-transform: uppercase; }

.os-chart { flex: 1; display: flex; align-items: flex-end; justify-content: flex-end; gap: 6px; height: 36px; }
.os-bar { width: 12px; height: var(--h); background: #E0DCD6; border-radius: 3px 3px 0 0; }
.os-bar.peak { background: var(--accent); box-shadow: 0 -2px 8px rgba(244,124,72,0.3); }



/* Illustration Wrapper */
.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 100%;
}

/* Main SVG scene */
.hero-scene-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* SVG animated elements */
.content-line-1 { animation: shimmer 2.8s ease-in-out infinite; }
.content-line-2 { animation: shimmer 2.8s ease-in-out 0.4s infinite; }
.content-line-3 { animation: shimmer 2.8s ease-in-out 0.8s infinite; }
@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.cursor-blink { animation: blink-cur 1s step-end infinite; }
@keyframes blink-cur { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }





/* ---- Built For Section (Bento Grid) ---- */
.built-for { padding: 120px 6%; background: var(--bg); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(244,124,72,0.12);
  border-color: var(--border-soft);
}

.card-large { grid-column: span 3; }
.card-medium { grid-column: span 2; }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .card-large, .card-medium { grid-column: span 1; }
  .card-medium:last-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .card-large, .card-medium, .card-medium:last-child { grid-column: span 1; }
}

.bento-visual {
  height: 260px;
  background: radial-gradient(circle at center 0%, #FAF8F5 0%, var(--card-bg) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 32px;
}
.bento-content {
  padding: 32px;
  text-align: left;
}
.bento-content h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.bento-content p { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; }

/* Bento Mockups base */
.bento-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 340px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.bento-card:hover .bento-mockup { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 32px rgba(244,124,72,0.15); }

/* 1. Founder Mock */
.founder-mock .mock-header { padding: 12px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; background: #FAF8F5; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.founder-mock .dots { display: flex; gap: 4px; } .founder-mock .dot { width: 8px; height: 8px; background: #E0DCD6; border-radius: 50%; }
.founder-mock .mock-title { font-size: 0.75rem; font-weight: 800; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.founder-mock .mock-body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.ai-chat-bubble { background: rgba(244,124,72,0.1); color: var(--text-primary); font-size: 0.85rem; font-weight: 600; padding: 12px; border-radius: 12px 12px 12px 0; align-self: flex-start; max-width: 85%; }
.editor-pane { background: var(--card-bg); border: 1px solid var(--border); padding: 16px; border-radius: 8px; position: relative; }
.editor-pane .line { font-family: monospace; }
.editor-pane .title { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.editor-pane .sub { font-size: 0.8rem; color: var(--text-secondary); }
.ai-suggestion-glow { position: absolute; bottom: -12px; right: -12px; background: var(--text-primary); color: white; padding: 6px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); animation: float-ui 4s infinite; }
.ai-suggestion-glow .icon { color: var(--accent); }

/* 2. Agency Mock */
.agency-mock { display: flex; overflow: hidden; max-width: 380px; }
.mock-sidebar { width: 100px; background: #FAF8F5; border-right: 1px solid var(--border); padding: 12px 8px; }
.ws-item { display: flex; align-items: center; gap: 6px; padding: 8px 6px; font-size: 0.7rem; font-weight: 700; color: var(--text-secondary); border-radius: 6px; cursor: pointer; }
.ws-item.active { background: var(--card-bg); color: var(--text-primary); box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.ws-item .av { width: 16px; height: 16px; border-radius: 4px; }
.ws-item .c1 { background: var(--accent); } .ws-item .c2 { background: #2C2C2C; } .ws-item .c3 { background: #E0DCD6; }
.mock-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: var(--bg); }
.status-banner { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; padding: 6px; border-radius: 4px; text-align: center; }
.status-banner.review { background: #FFF4E5; color: #E65100; }
.mock-card-mini { background: var(--card-bg); border: 1px solid var(--border); padding: 12px; border-radius: 8px; }
.mini-text { font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.action-row { display: flex; gap: 6px; }
.btn-xs { flex: 1; padding: 6px; text-align: center; font-size: 0.7rem; font-weight: 700; border-radius: 4px; cursor: pointer; }
.btn-xs.reject { background: #F5F3EE; color: var(--text-secondary); } .btn-xs.approve { background: #4CAF50; color: white; }

/* 3. Team Mock */
.team-mock { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.comment-thread { display: flex; flex-direction: column; gap: 12px; }
.comment { display: flex; gap: 10px; align-items: flex-start; }
.comment.reply { margin-left: 24px; }
.comment .av { width: 24px; height: 24px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.comment .t1 { background: #2C2C2C; } .comment .t2 { background: var(--accent); }
.c-text { background: #FAF8F5; padding: 10px 12px; border-radius: 0 12px 12px 12px; font-size: 0.8rem; font-weight: 600; color: var(--text-primary); border: 1px solid var(--border); }
.comment.reply .c-text { background: rgba(244,124,72,0.05); border-color: rgba(244,124,72,0.2); }
.status-pill { align-self: flex-start; margin-left: 24px; background: #E8F5E9; color: #388E3C; padding: 4px 10px; border-radius: 12px; font-size: 0.7rem; font-weight: 800; display: inline-block; }

/* 4. Consultant Mock */
.consultant-mock { padding: 20px; position: relative; }
.cal-week { display: flex; gap: 8px; justify-content: space-between; margin-bottom: 24px; }
.cal-week .c-day { flex: 1; height: 48px; border: 1px solid var(--border); border-radius: 6px; display: flex; justify-content: center; align-items: center; background: var(--card-bg); }
.c-day.pub { border-color: #4CAF50; background: rgba(76,175,80,0.05); } .c-day.pub .dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; }
.c-day.sched { border-color: var(--accent); background: rgba(244,124,72,0.05); } .c-day.sched .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.cal-tooltip { position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); background: var(--text-primary); color: white; padding: 8px 16px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.cal-tooltip::after { content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%); border-width: 0 5px 5px; border-style: solid; border-color: transparent transparent var(--text-primary) transparent; }

/* 5. Brand Mock */
.brand-mock { padding: 24px; }
.dna-profile { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.dna-header { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: var(--text-secondary); letter-spacing: 0.05em; }
.dna-score { font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; text-shadow: 0 4px 12px rgba(244,124,72,0.2); }
.dna-bars { width: 100%; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.dna-bars .bar-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; font-weight: 700; }
.dna-bars .bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; margin-left: 12px; overflow: hidden; }
.dna-bars .fill { height: 100%; background: var(--text-primary); border-radius: 3px; }
.f-tone { width: 98%; background: var(--accent) !important; } .f-format { width: 100%; }

/* ---- Workflow Section ---- */
.workflow-section {
  padding: 120px 6%;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header { margin-bottom: 80px; }
.section-header h2 { font-size: 3rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.03em; }
.section-header p { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.workflow-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.workflow-path {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 2px;
}
.workflow-path-fill {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 0%;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent);
  transition: height 0.1s linear;
}

.workflow-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  opacity: 0.4;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.workflow-step.visible { opacity: 1; transform: translateY(0); }
.workflow-step.active-node .workflow-node {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-light);
  transform: scale(1.2) translateX(-42%);
}

.workflow-step.reverse .step-content { order: 2; }
.workflow-step.reverse .step-visual { order: 1; }

.workflow-node {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 20px;
  background: var(--card-bg);
  border: 3px solid var(--border);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.4s ease;
}

.step-content { padding: 24px; }
.step-badge {
  display: inline-block; padding: 6px 14px;
  background: var(--accent-light); color: var(--accent);
  border-radius: 20px; font-weight: 700; font-size: 0.85rem;
  margin-bottom: 20px;
}
.step-content h3 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.step-content p { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.6; }

.step-visual { display: flex; justify-content: center; align-items: center; }
.mock-ui {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}
.workflow-step:hover .mock-ui { transform: translateY(-8px) scale(1.02); }
.workflow-step.active-node .mock-ui { border-color: var(--border-soft); box-shadow: 0 12px 30px rgba(244,124,72,0.1); }

/* Mock UI Specifics */
.mock-header { font-weight: 800; font-size: 1.2rem; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.mock-item {
  padding: 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 12px;
  display: flex; gap: 12px; align-items: center; font-weight: 600;
}
.tag { padding: 4px 10px; background: var(--accent-light); color: var(--accent); border-radius: 20px; font-size: 0.75rem; font-weight: 700; }

.persona-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; font-weight: 700; font-size: 1.1rem; }
.persona-avatar { width: 48px; height: 48px; background: var(--accent-light); border-radius: 50%; }
.bar-row { margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 0.9rem; }
.bar { flex: 1; height: 10px; background: var(--border); border-radius: 5px; margin-left: 24px; overflow: hidden; }
.bar .fill { height: 100%; background: var(--accent); border-radius: 5px; transition: width 1.5s ease; }

.typing-effect { font-family: monospace; font-size: 1.1rem; color: var(--accent); border-right: 2px solid var(--accent); white-space: nowrap; overflow: hidden; animation: typing 4s steps(40, end) infinite; }
@keyframes typing { 0%, 20% { width: 0; } 80%, 100% { width: 100%; } }

.tooltip-mock { display: inline-block; background: var(--text-primary); color: white; padding: 8px 16px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.85rem; margin-bottom: 16px; position: relative; }
.tooltip-mock::after { content: ''; position: absolute; bottom: -6px; left: 24px; border-width: 6px 6px 0; border-style: solid; border-color: var(--text-primary) transparent transparent transparent; }
.text-block { background: var(--bg); padding: 20px; border-radius: var(--radius-md); font-size: 1rem; line-height: 1.6; border: 1px dashed var(--border); }

.linkedin-mock { padding: 24px; }
.li-header { display: flex; gap: 16px; margin-bottom: 16px; }
.li-avatar { width: 48px; height: 48px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 50%; }
.li-meta { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.li-name { width: 120px; height: 12px; background: var(--border); border-radius: 4px; }
.li-time { width: 80px; height: 10px; background: var(--border-soft); border-radius: 4px; }
.li-body { font-size: 1.05rem; line-height: 1.5; }

.calendar-ui .cal-header { font-weight: 800; margin-bottom: 20px; font-size: 1.2rem; }
.cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cal-day { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 0; text-align: center; font-weight: 600; font-size: 1.2rem; color: var(--text-secondary); }
.cal-day.active { background: var(--accent); color: white; border-color: var(--accent); box-shadow: var(--shadow-accent); }

.chart-ui { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.chart-bars { display: flex; align-items: flex-end; gap: 16px; height: 120px; width: 100%; justify-content: center; }
.chart-bar { width: 32px; background: var(--border); border-radius: 4px 4px 0 0; transition: height 1s ease; }
.chart-bar.h-1 { height: 30%; } .chart-bar.h-2 { height: 50%; } .chart-bar.h-3 { height: 70%; } .chart-bar.h-4 { height: 40%; }
.chart-bar.h-5 { height: 100%; background: var(--accent); }
.chart-label { padding: 8px 16px; background: #E8F5E9; color: #388E3C; border-radius: 20px; font-weight: 700; }

/* ---- New Feature Split Sections ---- */
.persona-section, .approval-section {
  padding: 120px 6%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.approval-section { background: #FDFBF8; }

.feature-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-split-container.reverse-split .fs-content { order: 2; }
.feature-split-container.reverse-split .fs-visual { order: 1; }

.fs-content h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.03em; line-height: 1.15; }
.fs-content p { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 32px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); display: flex; align-items: center; }

/* Premium UI Block (Used in feature splits) */
.premium-ui-block {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ui-block-header {
  background: #FAF8F5;
  padding: 16px 24px;
  font-weight: 800;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ui-block-body { padding: 32px; display: flex; flex-direction: column; gap: 24px; }

/* Persona UI specifics */
.ui-field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; }
.ui-input { background: var(--bg); border: 1px solid var(--border); padding: 12px 16px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; }
.ui-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.t-tag { background: #E8F5E9; color: #388E3C; padding: 6px 12px; border-radius: 16px; font-size: 0.8rem; font-weight: 700; }
.ui-tags.error .t-tag { background: #FFEBEE; color: #D32F2F; }

/* Approval UI specifics */
.review-item { border: 1px solid var(--border); border-radius: 8px; padding: 16px; background: var(--bg); display: flex; flex-direction: column; gap: 12px; }
.ri-status { align-self: flex-start; font-size: 0.75rem; font-weight: 800; padding: 4px 10px; border-radius: 12px; text-transform: uppercase; }
.review-color { background: rgba(244,124,72,0.1); color: var(--accent); }
.draft-color { background: #F5F3EE; color: var(--text-secondary); }
.ri-title { font-weight: 700; font-size: 1.05rem; }
.ri-actions { display: flex; gap: 8px; margin-top: 8px; }
.act-btn { padding: 8px 16px; border-radius: 6px; font-size: 0.85rem; font-weight: 700; cursor: pointer; text-align: center; border: 1px solid var(--border); background: var(--card-bg); }
.act-btn.primary { background: #4CAF50; color: white; border-color: #4CAF50; }


/* ---- Testimonials ---- */
.testimonials { padding: 120px 6%; }
.testimonials-carousel { display: flex; gap: 32px; overflow-x: auto; padding: 20px 0 40px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.testimonials-carousel::-webkit-scrollbar { display: none; }
.testimonial-card {
  min-width: 400px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  scroll-snap-align: start;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.t-text { font-size: 1.15rem; font-weight: 500; font-style: italic; margin-bottom: 32px; line-height: 1.7; }
.t-author { display: flex; align-items: center; gap: 16px; }
.t-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); }
.t-info { display: flex; flex-direction: column; }
.t-info strong { font-weight: 800; font-size: 1.05rem; }
.t-info span { font-size: 0.9rem; color: var(--text-secondary); }

/* ---- Integrations ---- */
.integrations { padding: 120px 6%; background: var(--card-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.integrations-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1200px; margin: 0 auto; align-items: center; position: relative; }

/* Integrations Visual */
.integrations-visual { position: relative; width: 100%; display: flex; justify-content: center; }
.integration-orbit { position: relative; width: 440px; height: 440px; display: flex; justify-content: center; align-items: center; }

/* Ambient Atmosphere */
.ambient-glow { position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(244,124,72,0.15) 0%, transparent 70%); border-radius: 50%; z-index: 0; pointer-events: none; }
.ambient-particles { position: absolute; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.a-dot { position: absolute; background: var(--accent); border-radius: 50%; opacity: 0.5; animation: float-ui 6s ease-in-out infinite alternate; }
.a-dot.d1 { width: 4px; height: 4px; top: 15%; left: 20%; animation-delay: 0s; }
.a-dot.d2 { width: 6px; height: 6px; top: 25%; right: 15%; animation-delay: 1s; }
.a-dot.d3 { width: 3px; height: 3px; bottom: 20%; left: 25%; animation-delay: 2s; }
.a-dot.d4 { width: 5px; height: 5px; bottom: 15%; right: 25%; animation-delay: 3s; }

/* Center Core (LinkedIn) */
.center-core { position: relative; width: 100px; height: 100px; background: var(--card-bg); border: 2.5px solid var(--accent); border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 10; box-shadow: 0 0 30px rgba(244,124,72,0.4); animation: core-float 4s ease-in-out infinite; }
@keyframes core-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.core-glow { position: absolute; width: 100%; height: 100%; background: var(--accent); border-radius: 50%; filter: blur(24px); opacity: 0.5; z-index: -1; }
.core-glow-pulse { position: absolute; width: 100%; height: 100%; border: 2px solid var(--accent); border-radius: 50%; opacity: 0; animation: ripple-pulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1); z-index: -2; }
@keyframes ripple-pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.8); opacity: 0; } }

.linkedin-logo { color: var(--accent); display: flex; justify-content: center; align-items: center; transform: scale(1.1); }
.linkedin-logo svg { filter: drop-shadow(0 4px 6px rgba(244,124,72,0.3)); }

/* Connect Lines */
.connect-lines { position: absolute; width: 100%; height: 100%; z-index: 2; pointer-events: none; opacity: 0.6; }

/* Orbit Rings */
.orbit-ring { position: absolute; width: 100%; height: 100%; z-index: 3; border-radius: 50%; }
.inner-ring { width: 260px; height: 260px; animation: spin-slow 30s linear infinite; }
.outer-ring { width: 360px; height: 360px; animation: spin-slow 40s linear infinite reverse; }

/* Orbiting Icons */
.int-icon { position: absolute; width: 44px; height: 44px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: var(--shadow-sm); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); color: var(--text-secondary); opacity: 0.7; }
.int-icon.secondary { filter: grayscale(100%); opacity: 0.5; }
.int-icon.secondary:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.2) !important; border-color: var(--accent); color: var(--accent); box-shadow: 0 8px 24px rgba(244,124,72,0.2); }

.inner-ring .int-icon { animation: spin-reverse 30s linear infinite; }
.outer-ring .int-icon { animation: spin-slow 40s linear infinite; /* Re-reverse to stay upright */ }

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-reverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* Positioning the icons on the rings */
.twitter { top: -22px; left: calc(50% - 22px); }
.ghost { bottom: -22px; left: calc(50% - 22px); }
.threads { left: -22px; top: calc(50% - 22px); }
.instagram { right: -22px; top: calc(50% - 22px); }

/* Orbit particles */
.orbit-particles { position: absolute; width: 100%; height: 100%; z-index: 4; pointer-events: none; }
.particle { position: absolute; background: var(--accent); border-radius: 50%; opacity: 0.6; box-shadow: 0 0 10px var(--accent); }
.p1 { width: 6px; height: 6px; top: 15%; left: 35%; animation: float-ui 4s infinite alternate; }
.p2 { width: 4px; height: 4px; bottom: 25%; right: 15%; animation: float-ui 5s infinite alternate-reverse; }
.p3 { width: 8px; height: 8px; top: 45%; left: 10%; animation: float-ui 6s infinite alternate; }

/* Integrations Content */
.integrations-content { display: flex; flex-direction: column; justify-content: center; gap: 24px; animation: fade-in-up 1s ease; }
.integrations-content h2 { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.int-subtitle { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.6; }
.int-features { list-style: none; display: flex; flex-direction: column; gap: 20px; margin: 16px 0; }
.int-features li { display: flex; align-items: flex-start; gap: 16px; }
.feat-icon { font-size: 1.5rem; background: var(--accent-light); width: 48px; height: 48px; border-radius: 12px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.int-features strong { display: block; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.int-features span { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }
.int-note { font-size: 0.9rem; color: var(--text-tertiary); font-weight: 600; padding-top: 16px; border-top: 1px solid var(--border); }

/* ---- Pricing ---- */
.pricing { padding: 120px 6%; }
.pricing-toggle { display: flex; justify-content: center; align-items: center; gap: 16px; margin-bottom: 80px; font-weight: 700; font-size: 1.1rem; }
.monthly, .yearly { color: var(--text-secondary); transition: color var(--transition); }
.monthly.active, .yearly.active { color: var(--text-primary); }
.toggle-switch { width: 64px; height: 36px; background: var(--accent); border-radius: 18px; position: relative; cursor: pointer; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); }
.toggle-switch::after { content: ''; position: absolute; top: 4px; left: 4px; width: 28px; height: 28px; background: white; border-radius: 50%; transition: transform var(--transition); box-shadow: var(--shadow-sm); }
.pricing-toggle.yearly-active .toggle-switch::after { transform: translateX(28px); }

.pricing-cards { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.pricing-card { background: var(--card-bg); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 48px; width: 100%; max-width: 380px; display: flex; flex-direction: column; position: relative; transition: all var(--transition-slow); }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border-soft); }
.pricing-card.highlighted { border-color: var(--accent); box-shadow: 0 12px 40px rgba(244,124,72,0.15); transform: scale(1.02); }
.pricing-card.highlighted:hover { transform: scale(1.02) translateY(-8px); }
.popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 6px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.02em; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 16px; font-weight: 800; }
.price { font-size: 3.5rem; font-weight: 800; margin-bottom: 16px; display: flex; align-items: baseline; letter-spacing: -0.03em; }
.price span { font-size: 1.1rem; color: var(--text-secondary); font-weight: 600; margin-left: 8px; }
.pricing-card p { margin-bottom: 40px; font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6; min-height: 54px; }
.features-list { list-style: none; margin-bottom: 48px; flex: 1; display: flex; flex-direction: column; gap: 20px; }
.features-list li { font-weight: 600; display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }

/* ---- FAQ ---- */
.faq { padding: 120px 6%; background: var(--card-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); background: var(--bg); }
.faq-item.active { border-color: var(--accent); background: var(--card-bg); box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; padding: 28px; text-align: left; font-size: 1.15rem; font-weight: 800; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-primary); }
.faq-question .icon { font-size: 1.8rem; font-weight: 300; transition: transform var(--transition); color: var(--text-secondary); }
.faq-item.active .faq-question .icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 28px; font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6; }
.faq-item.active .faq-answer { max-height: 250px; padding-bottom: 28px; }

/* ---- Final CTA ---- */
.final-cta { padding: 160px 6%; display: flex; justify-content: center; }
.cta-card { background: radial-gradient(circle at center, var(--accent-light) 0%, var(--card-bg) 100%); border: 1.5px solid var(--accent); border-radius: var(--radius-xl); padding: 100px 40px; text-align: center; width: 100%; max-width: 1000px; box-shadow: var(--shadow-lg); }
.cta-card h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.03em; }
.cta-card p { font-size: 1.25rem; margin-bottom: 48px; color: var(--text-secondary); }

/* ---- Footer ---- */
.footer { background: var(--card-bg); padding: 100px 6% 40px; border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 64px; margin-bottom: 80px; max-width: 1200px; margin-inline: auto; }
.footer-brand { max-width: 320px; }
.footer-brand p { margin-top: 20px; font-size: 1rem; color: var(--text-secondary); line-height: 1.6; }
.footer-links { display: flex; gap: 100px; flex-wrap: wrap; }
.link-group { display: flex; flex-direction: column; gap: 20px; }
.link-group h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.link-group a { color: var(--text-secondary); font-size: 1rem; font-weight: 500; transition: color var(--transition); }
.link-group a:hover { color: var(--accent); }
.footer-bottom { padding-top: 40px; border-top: 1px solid var(--border); text-align: center; color: var(--text-tertiary); font-size: 0.95rem; font-weight: 500; max-width: 1200px; margin: 0 auto; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero { padding-top: 140px; }
  .hero-title { font-size: 3.5rem; }
  .workflow-step, .workflow-step.reverse { gap: 40px; }
  .step-content h3 { font-size: 1.8rem; }
  .pricing-card.highlighted { transform: scale(1); }
  .pricing-card.highlighted:hover { transform: translateY(-8px); }
  .integrations-inner { grid-template-columns: 1fr; gap: 40px; }
  .integrations-visual { order: 2; }
  .integrations-content { order: 1; text-align: center; }
  .int-features li { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 6%; }
  .nav-links { display: none; }
  
  .hero { grid-template-columns: 1fr; text-align: center; gap: 60px; padding-top: 120px; }
  .hero-cta-wrapper { align-items: center; margin: 0 auto; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { margin: 0 auto 40px; }
  
  .workflow-path { left: 24px; }
  .workflow-step, .workflow-step.reverse { grid-template-columns: 1fr; gap: 32px; }
  .step-content { padding: 0 0 0 64px; text-align: left; }
  .step-visual { padding-left: 64px; }
  .workflow-step.reverse .step-content, .workflow-step.reverse .step-visual { order: unset; }
  .workflow-node { left: 24px; transform: translateX(-50%); }
  
  .pricing-cards { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 100%; }
  
  .cta-card { padding: 60px 24px; }
  .cta-card h2 { font-size: 2.5rem; }
  
  .footer-links { gap: 60px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .section-header h2 { font-size: 2.2rem; }
  .step-content { padding: 0 0 0 48px; }
  .step-visual { padding-left: 48px; }
  .workflow-path { left: 16px; }
  .workflow-node { left: 16px; }
  
  .integration-orbit { width: 300px; height: 300px; }
  .inner-ring { width: 220px; height: 220px; }
  .outer-ring { width: 300px; height: 300px; }
  .center-core { width: 60px; height: 60px; font-size: 20px; }
  .int-icon { width: 48px; height: 48px; }
  
  .testimonials-carousel { padding-bottom: 20px; }
  .testimonial-card { min-width: 300px; padding: 24px; }
  .footer-links { flex-direction: column; gap: 40px; }
}
