/* ═══════════════════════════════════════════════════════════════════
   QoreFlow Landing Page — Complete Stylesheet
   Palette: Cyber Pink #EC4899 / Neon Cyan #22D3EE / Deep Space #020617
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #020617;
  --surface: #0f172a;
  --card-bg: rgba(255, 255, 255, 0.025);
  --card-hover: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.14);
  --white: #fff;
  --text: #eeeeee;
  --text-sec: #94a3b8;
  --text-muted: #475569;
  --accent: #EC4899;
  --accent-cyan: #22D3EE;
  --gradient: linear-gradient(135deg, #EC4899 0%, #a855f7 40%, #22D3EE 100%);
  --font: 'Inter', -apple-system, system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1120px;
}

/* ═══ RESET ═══ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: rgba(236, 72, 153, 0.15);
  color: var(--accent);
}

/* ═══ UTILITY ═══ */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-sec);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 12px auto 0;
}

/* ═══ SHINY TEXT ═══ */
.shiny-text {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 60%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shiny 3s infinite;
}

@keyframes shiny {
  0% {
    background-position: 100%
  }

  100% {
    background-position: -100%
  }
}

/* ═══ BLUR TEXT ═══ */
.blur-text {
  animation: blur-in 1s var(--ease) forwards;
}

@keyframes blur-in {
  from {
    filter: blur(12px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

/* ═══ STAR BORDER ═══ */
.star-border {
  position: relative;
  overflow: hidden;
}

.star-border-glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: -1;
  background: conic-gradient(from var(--angle, 0deg), transparent 60%, var(--accent) 80%, var(--accent-cyan) 100%);
  animation: star-rotate 3s linear infinite;
}

@keyframes star-rotate {
  to {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* ═══ PULSE DOT ═══ */
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* ═══ SCROLL ANIMATIONS ═══ */
.scroll-scale {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.scroll-scale.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-scale[data-delay="1"] {
  transition-delay: 0.08s;
}

.scroll-scale[data-delay="2"] {
  transition-delay: 0.16s;
}

.scroll-scale[data-delay="3"] {
  transition-delay: 0.24s;
}

.scroll-scale[data-delay="4"] {
  transition-delay: 0.32s;
}

.scroll-scale[data-delay="5"] {
  transition-delay: 0.4s;
}

.scroll-float {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.scroll-float.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 28px;
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom-color: var(--border);
  padding: 10px 28px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo em {
  font-style: normal;
  color: var(--accent);
}

.nav-logo-img {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.88rem;
}

.nav-links a {
  color: var(--text-sec);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient);
  color: #000 !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.nav-cta svg {
  stroke: #000;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

#aurora-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.45;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 120px 28px 60px;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Hero Logo (Animated Ring + Star) */
.hero-logo-area {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
}

.hero-ring {
  width: 100px;
  height: 100px;
  animation: slow-rotate 20s linear infinite;
  filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.25));
}

.hero-star {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: slow-rotate-reverse 15s linear infinite;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.3));
}

@keyframes slow-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slow-rotate-reverse {
  to {
    transform: rotate(-360deg);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 12px;
  font-size: 0.8rem;
  color: var(--text-sec);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.split-line {
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-sec);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #000;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(236, 72, 153, 0.25), 0 2px 12px rgba(255, 255, 255, 0.1);
}

.btn-primary svg {
  stroke: #000;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-sec);
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--white);
}

.btn-large {
  padding: 18px 38px;
  font-size: 1.05rem;
  border-radius: 14px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.hero-stat {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ═══ SCROLL VELOCITY ═══ */
.scroll-velocity-section {
  position: relative;
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.scroll-velocity-section::before,
.scroll-velocity-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.scroll-velocity-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.scroll-velocity-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.velocity-row {
  overflow: hidden;
  white-space: nowrap;
}

.velocity-track {
  display: inline-flex;
  gap: 24px;
  will-change: transform;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.velocity-track span {
  flex-shrink: 0;
}

/* ═══ FEATURES GRID ═══ */
.features-section {
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Spotlight Card */
.spotlight-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.3s var(--ease);
}

.spotlight-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.spotlight-effect {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(236, 72, 153, 0.07), transparent 60%);
}

.spotlight-card:hover .spotlight-effect {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--icon-color);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.spotlight-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.spotlight-card p {
  color: var(--text-sec);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══ ORBIT SECTION ═══ */
.orbit-section {
  padding: 120px 0;
}

.orbit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.orbit-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.orbit-text p {
  color: var(--text-sec);
  font-size: 1rem;
  line-height: 1.7;
}

.orbit-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.core-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent 70%);
  animation: core-p 3s infinite;
}

@keyframes core-p {
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.orbit-core-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  animation: orbit-spin 40s linear infinite;
}

.orbit-ring.inner {
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
}

.orbit-ring.outer {
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  animation-duration: 55s;
  animation-direction: reverse;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-item {
  position: absolute;
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translateX(calc(50% + 90px)) rotate(calc(-1 * var(--angle)));
}

.orbit-ring.outer .orbit-item {
  transform: rotate(var(--angle)) translateX(calc(50% + 160px)) rotate(calc(-1 * var(--angle)));
}

/* Counter-rotate to keep icons upright */
.orbit-ring .orbit-item {
  animation: counter-orbit 40s linear infinite;
}

.orbit-ring.outer .orbit-item {
  animation-duration: 55s;
  animation-direction: reverse;
}

@keyframes counter-orbit {
  to {
    transform: rotate(calc(var(--angle) - 360deg)) translateX(calc(50% + 90px)) rotate(calc(-1 * (var(--angle) - 360deg)));
  }
}

.orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ═══ BENTO GRID ═══ */
.bento-section {
  padding: 120px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.4s, transform 0.3s var(--ease);
}

.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.bento-card.large {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card.tall {
  grid-column: 2;
}

.bento-card.medium {
  grid-column: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(236, 72, 153, 0.1);
  color: var(--accent);
  margin-bottom: 12px;
}

.badge-pill.cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent-cyan);
}

.badge-pill.purple {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-card p {
  color: var(--text-sec);
  font-size: 0.88rem;
  line-height: 1.6;
}

.bento-mockup {
  margin-top: 20px;
}

/* Notification Mockup */
.notification-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  max-width: 320px;
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.notif-time {
  margin-left: auto;
}

.notif-body strong {
  font-size: 0.85rem;
  display: block;
  margin-bottom: 2px;
}

.notif-body p {
  font-size: 0.78rem;
  color: var(--text-sec);
  margin: 0;
}

/* Summary Mockup */
.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-line {
  height: 10px;
  border-radius: 4px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.summary-line.short {
  width: 60%;
}

.ai-done {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--accent-cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Tap Button */
.tap-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 10px;
}

/* ═══ WORKFLOW BUILDER ═══ */
.workflow-section {
  padding: 120px 0;
}

.workflow-builder {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.builder-chat,
.builder-graph {
  padding: 32px 28px;
}

.builder-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.5;
  min-height: 60px;
}

.user-bubble {
  background: rgba(236, 72, 153, 0.06);
  border-color: rgba(236, 72, 153, 0.15);
}

.user-bubble::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--accent);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.builder-connector {
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.energy-flow {
  position: absolute;
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.3;
}

.connector-icon {
  color: var(--accent);
  font-size: 1.4rem;
  z-index: 1;
  background: var(--bg);
  padding: 8px;
  border-radius: 50%;
}

/* Workflow Nodes */
.workflow-nodes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wf-node {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-sec);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s var(--ease);
}

.wf-node.visible {
  opacity: 1;
  transform: translateX(0);
}

.wf-node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--node-color, var(--accent));
}

.wf-connector-line {
  width: 2px;
  height: 12px;
  margin-left: 14px;
  background: linear-gradient(180deg, var(--border), rgba(34, 211, 238, 0.2));
}

/* ═══ STEPS ═══ */
.steps-section {
  padding: 120px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.4s, transform 0.3s var(--ease);
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.step-num {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-sec);
  font-size: 0.85rem;
  line-height: 1.6;
}

.step-visual-mini {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
}

.mini-bubble {
  font-size: 0.75rem;
  color: var(--text-sec);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
}

.success-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.85rem;
}

.step-divider {
  width: 40px;
  height: 2px;
  background: var(--border);
  align-self: center;
  margin: 0 -4px;
}

/* ═══ FAQ ═══ */
.faq-section {
  padding: 120px 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}

.faq-answer p {
  color: var(--text-sec);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  position: relative;
  padding: 120px 28px;
  text-align: center;
  overflow: hidden;
}

#ribbons-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  mix-blend-mode: screen;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.3));
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-sub {
  color: var(--text-sec);
  margin-bottom: 32px;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 28px 28px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-sec);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  color: var(--text-muted);
  font-size: 1rem;
}

.social-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .orbit-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .orbit-visual {
    max-width: 360px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.large {
    grid-row: auto;
  }

  .workflow-builder {
    grid-template-columns: 1fr;
  }

  .builder-connector {
    width: 100%;
    height: 60px;
    flex-direction: row;
  }

  .energy-flow {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .orbit-visual {
    max-width: 280px;
  }

  .orbit-ring .orbit-item,
  .orbit-ring.outer .orbit-item {
    width: 30px;
    height: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}