/* ============================================
   Vazirmatn — همان فونت پروژه اصلی
   ============================================ */
@font-face {
  font-family: 'Vazirmatn';
  src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Design Tokens — هماهنگ با index.css پروژه
   ============================================ */
:root {
  --color-primary: #6366f1;
  --color-primary-rgb: 99, 102, 241;
  --color-secondary: #8b5cf6;
  --color-surface: #030712;
  --color-surface-elevated: #0f172a;
  --color-surface-overlay: #1e293b;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.05);
  --glow-primary: 0 0 20px rgba(99, 102, 241, 0.5);
  --success: #10b981;
  --warning: #f59e0b;
  --container: min(1200px, 92vw);
  --header-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  background: var(--color-surface);
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
code {
  font-size: 0.85em;
  background: rgba(99, 102, 241, 0.15);
  padding: 0.15em 0.45em;
  border-radius: 6px;
  color: #a5b4fc;
}

.container { width: var(--container); margin-inline: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Background */
.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; top: 10%; left: 5%; background: rgba(99,102,241,0.08); }
.orb-2 { width: 500px; height: 500px; bottom: 10%; right: 5%; background: rgba(139,92,246,0.06); animation-delay: 2s; }
.orb-3 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(99,102,241,0.04); animation-delay: 4s; }
.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(99,102,241,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.5) 1px, transparent 1px);
  background-size: 50px 50px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Glass Card */
.glass-card {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 var(--glass-highlight);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(99,102,241,0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.875rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99,102,241,0.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(99,102,241,0.4);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); }
.btn.full { width: 100%; }

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}
.badge-neon {
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.35);
  color: #a5b4fc;
}
.badge-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

/* Floating Actions */
.float-actions {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.float-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.float-btn-live {
  background: linear-gradient(135deg, rgba(99,102,241,0.9), rgba(139,92,246,0.9));
  color: #fff;
}
.float-btn-live:hover { transform: translateX(-4px); box-shadow: var(--glow-primary); }
.float-btn-github {
  background: rgba(15,23,42,0.92);
  color: #fff;
}
.float-btn-github:hover {
  background: rgba(30,41,59,0.95);
  border-color: rgba(99,102,241,0.4);
  transform: translateX(-4px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(3,7,18,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}
.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 10px;
  color: var(--color-primary);
  font-size: 0.85rem;
}
.logo-text { font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.nav-desktop {
  display: flex;
  gap: 0.25rem;
}
.nav-desktop a {
  padding: 0.5rem 0.85rem;
  border-radius: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.nav-desktop a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.header-cta { display: flex; gap: 0.5rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-surface-elevated);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 899;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: rgba(255,255,255,0.8);
}
.nav-mobile a:hover { background: rgba(255,255,255,0.05); }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 1.25rem 0;
}
.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 540px;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.stat-pill {
  padding: 0.65rem 1rem;
  border-radius: 0.875rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  min-width: 90px;
}
.stat-pill strong { font-size: 1.25rem; color: var(--color-primary); }
.stat-pill span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.live-url {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.live-url a {
  color: #a5b4fc;
  border-bottom: 1px dashed rgba(165,180,252,0.4);
}
.live-url a:hover { color: #fff; }
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Browser Mockup */
.hero-mockup { position: relative; }
.browser-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 60px rgba(99,102,241,0.15);
  animation: float 6s ease-in-out infinite;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--color-surface-overlay);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.browser-dots i:first-child { background: #f87171; }
.browser-dots i:nth-child(2) { background: #fbbf24; }
.browser-dots i:nth-child(3) { background: #34d399; }
.browser-url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}
.browser-body {
  padding: 1.25rem;
  background: linear-gradient(180deg, var(--color-surface-elevated), var(--color-surface));
  min-height: 260px;
}
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mock-logo { font-weight: 700; color: var(--color-primary); font-size: 0.9rem; }
.mock-nav-links { display: flex; gap: 6px; }
.mock-nav-links i {
  display: block;
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
}
.mock-hero-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.mock-text { flex: 1; }
.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 0.6rem;
}
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w90 { width: 90%; }
.mock-line.accent { background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)); height: 10px; }
.mock-line.dim { opacity: 0.5; height: 6px; }
.mock-btns { display: flex; gap: 0.5rem; margin-top: 1rem; }
.mock-btns span {
  height: 24px;
  border-radius: 6px;
  background: rgba(99,102,241,0.3);
}
.mock-btns span:first-child { width: 60px; }
.mock-btns span:last-child { width: 45px; background: rgba(255,255,255,0.08); }
.mock-avatar {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: var(--color-surface-overlay);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}
.mock-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 1.1rem;
  border: 2px solid rgba(99,102,241,0.3);
  animation: pulse 3s infinite;
}
.mock-colors {
  display: flex;
  gap: 6px;
  margin-top: 1.25rem;
  justify-content: center;
}
.mock-colors i {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.2);
}
.mock-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 0.875rem;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  font-size: 0.8rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: float 5s ease-in-out infinite;
}
.mock-float-card strong { display: block; font-size: 0.85rem; }
.mock-float-card small { color: rgba(255,255,255,0.5); font-size: 0.7rem; }
.mock-float-card.card-1 { top: -10px; right: -20px; animation-delay: 1s; }
.mock-float-card.card-2 { bottom: 20px; left: -30px; animation-delay: 2s; }
.mock-icon { font-size: 1.25rem; }

/* Section */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.section-divider span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(99,102,241,0.5);
  box-shadow: 0 0 10px rgba(99,102,241,0.5);
}

.section {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section-header p {
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-inline: auto;
}

/* Highlights */
.highlights { position: relative; z-index: 1; padding-bottom: 2rem; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.highlight-card {
  padding: 1.5rem;
  text-align: center;
}
.highlight-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.highlight-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.highlight-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.feature-card {
  padding: 1.75rem;
}
.feature-card.compact { padding: 1.25rem; }
.feature-card.compact p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; }
.feature-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(99,102,241,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  color: #fff;
}
.feature-card ul li {
  position: relative;
  padding-right: 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.feature-card ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* Mockups Showcase */
.mockups-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ui-mock { padding: 1.25rem; }
.ui-mock-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Podcast mock */
.podcast-mock { display: flex; gap: 1rem; align-items: center; }
.podcast-cover {
  width: 90px;
  height: 90px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(139,92,246,0.3));
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.podcast-cover-inner { font-size: 2rem; }
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  color: #fff;
  font-size: 0.75rem;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.podcast-cover:hover .play-btn { opacity: 1; }
.podcast-cover:hover .podcast-cover-inner { opacity: 0.3; }
.podcast-info { flex: 1; min-width: 0; }
.podcast-info h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.podcast-meta { display: flex; gap: 0.75rem; font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.progress-fill {
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
  animation: progressAnim 4s ease-in-out infinite;
}
@keyframes progressAnim {
  0%, 100% { width: 35%; }
  50% { width: 70%; }
}
.podcast-controls {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.podcast-controls button {
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 6px;
  padding: 0.25rem 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  cursor: default;
}
.podcast-controls .main-play {
  background: var(--color-primary);
  color: #fff;
  padding: 0.35rem 0.55rem;
}

/* Wizard mock */
.wizard-mock { }
.wizard-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
}
.wizard-steps span {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
}
.wizard-steps span.active {
  background: rgba(99,102,241,0.2);
  color: #a5b4fc;
}
.wizard-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.wizard-card {
  padding: 0.65rem 0.25rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.wizard-card small { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.wizard-card.selected {
  border-color: var(--color-primary);
  background: rgba(99,102,241,0.15);
  box-shadow: 0 0 15px rgba(99,102,241,0.2);
}
.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan-badge {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
}
.plan-badge.gold {
  background: rgba(245,158,11,0.2);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.35);
}

/* Project mock */
.project-mock { overflow: hidden; border-radius: 0.75rem; }
.project-thumb {
  height: 100px;
  position: relative;
  background: var(--color-surface-overlay);
}
.project-thumb-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  opacity: 0.6;
}
.project-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.project-body { padding: 1rem; }
.project-body h4 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.project-body p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.65rem; }
.project-tags { display: flex; gap: 0.35rem; margin-bottom: 0.75rem; }
.project-tags span {
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(99,102,241,0.15);
  color: #a5b4fc;
}

/* Form mock */
.form-mock { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.form-field label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 0.35rem; }
.input-mock {
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.input-mock.textarea { height: 60px; margin-bottom: 0.75rem; }

/* Color mock */
.color-mock p { font-size: 0.85rem; margin-bottom: 0.75rem; }
.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.color-grid i {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: default;
  transition: transform 0.2s;
}
.color-grid i:hover { transform: scale(1.1); }
.color-grid i.selected {
  border-color: #fff;
  box-shadow: 0 0 12px rgba(99,102,241,0.6);
}
.color-mock code { display: block; font-size: 0.7rem; text-align: center; }

/* Phone mock */
.phone-mock-wrap { display: flex; flex-direction: column; align-items: center; }
.phone-frame {
  width: 140px;
  border-radius: 1.5rem;
  border: 3px solid rgba(255,255,255,0.15);
  background: var(--color-surface-overlay);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.phone-notch {
  width: 50px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 0 0 6px 6px;
  margin: 6px auto 0;
}
.phone-screen { padding: 0.75rem; }
.phone-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.phone-logo { color: var(--color-primary); font-weight: 700; }
.phone-line {
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}
.phone-line.short { width: 60%; }
.phone-card {
  height: 40px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

/* Admin layout mock */
.admin-section { background: rgba(15,23,42,0.3); }
.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  margin-bottom: 2rem;
  min-height: 280px;
}
.admin-sidebar-mock {
  padding: 1.25rem;
  background: rgba(0,0,0,0.25);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.admin-sidebar-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-sidebar-mock ul li {
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-sidebar-mock ul li.active {
  background: rgba(99,102,241,0.2);
  color: #fff;
}
.admin-sidebar-mock ul li.sub {
  padding-right: 1.5rem;
  font-size: 0.75rem;
}
.notif {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}
.admin-main-mock { padding: 1.25rem; }
.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.admin-stat {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.admin-stat span { display: block; font-size: 1.35rem; font-weight: 700; color: var(--color-primary); }
.admin-stat small { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.admin-chart-mock {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
  margin-bottom: 0.5rem;
}
.chart-bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--color-primary), rgba(99,102,241,0.3));
  animation: barGrow 2s ease-out forwards;
}
@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); }
}
.admin-chart-mock > span { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.admin-features { margin-top: 0; }

/* Architecture */
.arch-diagram { padding: 2rem; text-align: center; margin-bottom: 1.5rem; }
.arch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.arch-node {
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.1);
  font-weight: 600;
  font-size: 0.95rem;
}
.arch-node small { display: block; font-weight: 400; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.arch-arrow { color: var(--color-primary); font-size: 1.5rem; }
.arch-endpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.arch-endpoints span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-family: monospace;
}

/* Stack */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.stack-group { padding: 1.5rem; }
.stack-group h4 {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.stack-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.stack-tags span {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}

/* CTA */
.cta-section { position: relative; z-index: 1; padding: 3rem 0 5rem; }
.cta-box {
  padding: 3rem 2rem;
  text-align: center;
}
.cta-box h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.cta-box > p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 1.5rem; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.cta-note { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.cta-note strong { color: #a5b4fc; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a:hover { color: var(--color-primary); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mockup { max-width: 480px; margin-inline: auto; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .mockups-showcase { grid-template-columns: repeat(2, 1fr); }
  .stack-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar-mock { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .mockups-showcase { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
  .wizard-cards { grid-template-columns: repeat(2, 1fr); }
  .float-btn span { display: none; }
  .float-btn { padding: 0.85rem; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .mock-float-card { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions .btn-lg { width: 100%; }
  .cta-actions .btn-lg { width: 100%; }
}
