/* ==========================================================================
   CloudPixel — Design System
   Dark / Purple / Glassmorphism — Cloudflare × GitHub inspired
   ========================================================================== */

/* ---------- Font ---------- */
@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-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-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-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-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0B0A12;
  --bg-elevated: #0F0D18;
  --card: #17151F;
  --card-hover: #1E1B29;
  --border: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(124, 58, 237, 0.45);

  --primary: #7C3AED;
  --secondary: #A855F7;
  --accent-pink: #EC4899;
  --accent-blue: #3B82F6;
  --accent-cyan: #22D3EE;
  --primary-rgb: 124, 58, 237;
  --secondary-rgb: 168, 85, 247;

  --text: #FFFFFF;
  --muted: #A1A1AA;
  --muted-2: #71717A;

  --success: #22C55E;
  --warning: #F59E0B;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.25);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
  --container: 1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* Colorful ambient mesh — sits behind everything, visible through the whole scroll */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(680px circle at 8% 8%, rgba(124, 58, 237, 0.35), transparent 60%),
    radial-gradient(620px circle at 92% 18%, rgba(236, 72, 153, 0.22), transparent 60%),
    radial-gradient(700px circle at 85% 78%, rgba(59, 130, 246, 0.24), transparent 60%),
    radial-gradient(560px circle at 12% 85%, rgba(168, 85, 247, 0.28), transparent 60%),
    radial-gradient(500px circle at 50% 45%, rgba(34, 211, 238, 0.08), transparent 65%);
  pointer-events: none;
}

/* Ambient background noise/grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; }

::selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a33; border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }

.gradient-text {
  background: linear-gradient(90deg, var(--secondary), var(--primary) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

code, pre, .mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hover); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.btn-disabled,
.btn[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(9, 9, 11, 0.85);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.nav-logo .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
  flex-shrink: 0;
}
.nav-logo .logo-mark svg { width: 18px; height: 18px; color: #fff; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 120px) 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.hero-blob.b1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: -180px; right: -120px;
}
.hero-blob.b2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--secondary), transparent 70%);
  bottom: -200px; left: -140px;
  animation-delay: -6s;
}
.hero-blob.b3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #4C1D95, transparent 70%);
  top: 30%; left: 40%;
  animation-delay: -3s;
  opacity: 0.35;
}
.hero-blob.b4 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--accent-pink), transparent 70%);
  top: 55%; right: 8%;
  animation-delay: -9s;
  opacity: 0.3;
}
.hero-blob.b5 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--accent-blue), transparent 70%);
  bottom: 10%; right: 30%;
  animation-delay: -4.5s;
  opacity: 0.22;
}

/* ---------- Section color-wash utility ---------- */
/* Adds ambient, non-hero color blobs behind a section for visual variety while scrolling */
.section-glow {
  position: relative;
  overflow: hidden;
}
.section-glow::before,
.section-glow::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}
.section-glow.glow-purple-pink::before {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(124,58,237,0.32), transparent 70%);
  top: -120px; left: -100px;
}
.section-glow.glow-purple-pink::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(236,72,153,0.2), transparent 70%);
  bottom: -140px; right: -80px;
}
.section-glow.glow-blue-purple::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.22), transparent 70%);
  top: -160px; right: -120px;
}
.section-glow.glow-blue-purple::after {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(168,85,247,0.28), transparent 70%);
  bottom: -100px; left: -90px;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 0%, transparent 75%);
}

.hero-content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.hero h1 {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero .hero-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats .stat span { color: var(--muted-2); font-size: 13px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--card-hover);
  box-shadow: var(--shadow-md), 0 0 50px rgba(124, 58, 237, 0.3), 0 0 90px rgba(236, 72, 153, 0.12);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(168,85,247,0.1));
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--secondary); }

.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }

.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Product card specifics */
.product-card { display: flex; flex-direction: column; }
.product-card .card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}
.badge-soon {
  background: rgba(245, 158, 11, 0.12);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.badge-placeholder {
  background: rgba(161, 161, 170, 0.12);
  color: var(--muted);
  border: 1px solid rgba(161, 161, 170, 0.25);
}

.product-card.is-soon { opacity: 0.65; }
.product-card.is-soon:hover { transform: none; box-shadow: none; border-color: var(--border); }

/* Placeholder sections inside cards */
.placeholder-box {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 10px;
  background: rgba(255,255,255,0.02);
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- About ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.about-point:hover { border-color: var(--border-hover); background: rgba(124,58,237,0.05); }
.about-point .icon-wrap {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(124,58,237,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-point .icon-wrap svg { width: 19px; height: 19px; color: var(--secondary); }
.about-point strong { display: block; margin-bottom: 4px; font-size: 15px; }
.about-point span { color: var(--muted); font-size: 14px; }

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 32px;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 70%);
  filter: blur(60px);
  top: -60px; left: -60px;
}

.about-editable {
  color: var(--muted);
  font-size: 15px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.015);
  margin-top: 24px;
}

/* ---------- Terminal / Code block ---------- */
.terminal {
  background: #0C0C0F;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.terminal-head .dot { width: 11px; height: 11px; border-radius: 50%; }
.terminal-head .dot.red { background: #FF5F56; }
.terminal-head .dot.yellow { background: #FFBD2E; }
.terminal-head .dot.green { background: #27C93F; }
.terminal-head span.filename {
  margin-inline-start: 10px;
  color: var(--muted-2);
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
}
.terminal pre {
  padding: 22px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.9;
  direction: ltr;
  text-align: left;
}
.terminal code { color: #D4D4D8; }
.terminal .c-comment { color: var(--muted-2); }
.terminal .c-keyword { color: var(--secondary); }
.terminal .c-string { color: #86EFAC; }
.terminal .c-func { color: #93C5FD; }

/* ---------- Steps / How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
}
.step .step-num {
  font-size: 42px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(124,58,237,0.5);
  margin-bottom: 14px;
  display: block;
}
.step h4 { font-size: 17px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14px; }

/* ---------- Screenshots ---------- */
.screenshot-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 12px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--muted-2);
  transition: border-color .3s var(--ease);
}
.screenshot-frame:hover { border-color: var(--border-hover); }
.screenshot-frame svg { width: 34px; height: 34px; opacity: 0.5; }
.screenshot-frame span { font-size: 13px; }

/* ---------- Table (architecture / roadmap) ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.info-table th, .info-table td {
  padding: 16px 20px;
  text-align: right;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.info-table th {
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child { color: var(--text); font-weight: 600; }
.info-table td { color: var(--muted); }

/* ---------- Roadmap timeline ---------- */
.roadmap {
  position: relative;
  padding-inline-start: 32px;
  border-inline-start: 2px solid var(--border);
  display: grid;
  gap: 36px;
}
.roadmap-item { position: relative; }
.roadmap-item::before {
  content: '';
  position: absolute;
  inset-inline-start: -39px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.2);
}
.roadmap-item .status {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
  display: block;
}
.roadmap-item h4 { font-size: 17px; margin-bottom: 6px; }
.roadmap-item p { color: var(--muted); font-size: 14px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(124,58,237,0.28), rgba(236,72,153,0.12) 55%, rgba(59,130,246,0.16));
  border: 1px solid rgba(124,58,237,0.3);
}
.cta-banner h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.cta-banner p { color: var(--muted); margin-bottom: 32px; max-width: 520px; margin-inline: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Breadcrumb / page hero small ---------- */
.page-hero {
  padding: calc(var(--nav-h) + 90px) 0 80px;
  position: relative;
  overflow: hidden;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--secondary); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  background: var(--bg-elevated);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer-col h5 {
  font-size: 14px;
  margin-bottom: 18px;
  color: var(--text);
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted-2);
  font-size: 13.5px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--border-hover); color: var(--secondary); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- Feature list w/ icons (used in project pages) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.w-full { width: 100%; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-menu, .nav-actions .btn-secondary { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.is-open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(9,9,11,0.97);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-menu.is-open a { padding: 14px 16px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .section { padding: 80px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 44px 24px; }
}
