/* ─────────────────────────────────────────────────────────────
   Alfa Dev — Design Tokens & Component Styles
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter+Tight:wght@400;450;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans:    "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --indigo-50:  #eef0ff;
  --indigo-100: #dfe3ff;
  --indigo-200: #c4cbff;
  --indigo-400: #7c8aff;
  --indigo-500: #4f46e5;
  --indigo-600: #4338ca;
  --indigo-700: #3730a3;

  --violet-500: #7c3aed;
  --violet-600: #6d28d9;
  --violet-700: #5b21b6;
  --violet-900: #2e1065;
  --violet-950: #1a0a3d;

  --ink-0:   #ffffff;
  --ink-50:  #f7f8fb;
  --ink-100: #eef0f5;
  --ink-200: #dfe2eb;
  --ink-300: #c2c8d6;
  --ink-400: #8b93a7;
  --ink-500: #5b6478;
  --ink-600: #3d4458;
  --ink-700: #252a3a;
  --ink-800: #161927;
  --ink-900: #0a0c17;

  --bg:        var(--ink-0);
  --bg-soft:   var(--ink-50);
  --bg-card:   var(--ink-0);
  --fg:        var(--ink-900);
  --fg-muted:  var(--ink-500);
  --fg-faint:  var(--ink-400);
  --border:    var(--ink-200);
  --border-strong: var(--ink-300);

  --accent:        var(--indigo-500);
  --accent-strong: var(--indigo-600);
  --accent-soft:   var(--indigo-50);
  --accent-2:      var(--violet-600);

  --deep:   #14102b;
  --deep-2: #1d1640;
  --deep-3: #2a1f5c;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15,18,30,.04), 0 1px 1px rgba(15,18,30,.03);
  --shadow:    0 6px 24px rgba(20,16,43,.06), 0 2px 6px rgba(20,16,43,.04);
  --shadow-lg: 0 24px 60px rgba(20,16,43,.10), 0 8px 24px rgba(20,16,43,.06);

  --maxw: 1280px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

/* ─── Container ─── */
.alfa-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 768px) {
  .alfa-container { padding: 0 20px; }
}

/* ─── Eyebrow labels ─── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}
.eyebrow-dot::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: 2px;
}

/* ─── Buttons ─── */
/* .btn + .btn-* uses double specificity to beat Bootstrap without !important */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px !important; /* must override Bootstrap's 0.375rem */
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn.btn-primary { background: var(--fg); color: var(--bg); border-color: transparent; }
.btn.btn-primary:hover { box-shadow: var(--shadow); color: var(--bg); }

/* Bootstrap has no .btn-accent — no !important needed */
.btn.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 6px 16px rgba(79,70,229,.3);
}
.btn.btn-accent:hover { color: #fff; }
.hero_img_wrp img{width:100%;height:auto;display:block;border-radius:14px;}
/* Bootstrap has no .btn-ghost — no !important needed */
.btn.btn-ghost { background: transparent; color: var(--bg); border-color: var(--border-strong); }
.btn.btn-ghost-txtblk { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn.btn-ghost:hover { background: var(--bg-soft); color: var(--fg); }

.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Cards ─── */
/* .card.card doubles specificity to beat Bootstrap's border/border-radius */
.card.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

/* ─── Pills / chips ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(79,70,229,.14);
}
.pill-neutral { background: var(--bg-soft); color: var(--fg-muted); border-color: var(--border); }
.pill-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* ─── Reveal on scroll ─── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s cubic-bezier(.2,.7,.1,1), transform .7s cubic-bezier(.2,.7,.1,1); }
.reveal.in { opacity: 1; transform: none; }

/* ─── Marquee ─── */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 56px; animation: marquee 40s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Mesh gradient background ─── */
.mesh-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.mesh-bg::before, .mesh-bg::after { content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.mesh-bg::before { width: 520px; height: 520px; background: radial-gradient(circle, #a3afff 0%, transparent 65%); top: -120px; left: -80px; }
.mesh-bg::after  { width: 460px; height: 460px; background: radial-gradient(circle, #d4b8ff 0%, transparent 65%); top: 80px; right: -120px; }

/* ─── Navbar ─── */
.alfa-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.alfa-nav .alfa-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.alfa-nav-links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.alfa-nav-links a { padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 450; color: var(--fg-muted); background: transparent; transition: color .15s, background .15s; display: block; }
.alfa-nav-links a:hover { color: var(--fg); background: var(--bg-soft); }
.alfa-nav-links a.active { font-weight: 600; color: var(--fg); background: var(--bg-soft); }

.alfa-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--fg); text-decoration: none; }
.alfa-logo-word { font-family: var(--font-display); font-weight: 600; font-size: 17.5px; letter-spacing: -0.02em; }
.alfa-logo-word span { color: #7C3AED; }
.alfa-logo-img { display: block; }

.alfa-nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; cursor: pointer; color: var(--fg); }

/* ─── Nav dropdown ─── */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.has-dropdown > a .nav-chevron { transition: transform .2s; }
.has-dropdown:hover > a .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Small arrow tip */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--bg);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 450;
  color: var(--fg-muted);
  transition: background .12s, color .12s;
}
.nav-dropdown-item:hover,
.nav-dropdown-item.active { background: var(--bg-soft); color: var(--fg); }
.nav-dropdown-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .alfa-nav-toggle { display: flex; align-items: center; }
  .alfa-nav-links { display: none; flex-direction: column; gap: 2px; }
  .alfa-nav-links.open { display: flex; }
  .alfa-nav .alfa-container { flex-wrap: wrap; height: auto; padding-top: 12px; padding-bottom: 12px; gap: 10px; }
  .alfa-nav-links { width: 100%; }
  .alfa-nav-links a { border-radius: 10px; }
  /* Dropdown becomes inline on mobile */
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    border-radius: 0;
    padding: 4px 0 4px 12px;
    margin: 2px 0 2px 14px;
  }
  .nav-dropdown::before { display: none; }
  .has-dropdown > a .nav-chevron { display: none; }
}

/* ─── Form controls ─── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; }
.alfa-input, .alfa-textarea, .alfa-select { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg); color: var(--fg); font-family: var(--font-sans); font-size: 14.5px; outline: none; transition: border-color .15s, box-shadow .15s; }
.alfa-input:focus, .alfa-textarea:focus, .alfa-select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.alfa-textarea { resize: none; min-height: 140px; line-height: 1.55; }

.check-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg); font-size: 13.5px; cursor: pointer; transition: all .15s; user-select: none; font-family: var(--font-sans); }
.check-tag:hover { border-color: var(--accent); color: var(--accent); }
.check-tag.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.check-tag .dot { width: 8px; height: 8px; border-radius: 999px; background: currentColor; opacity: .35; }
.check-tag.on .dot { opacity: 1; background: #fff; }

/* ─── Portfolio card ─── */
.port-card { cursor: pointer; }
.port-card:hover { transform: translateY(-4px); }


.appHm-card{padding:32px;display:grid;grid-template-columns:1fr 120px;gap:24px;align-items:center;}
.appHm-card-img{width:120px;height:120px;border-radius:24px;overflow:hidden;}
/* ─── Browser frame ─── */
.browser-frame { border-radius: 14px; overflow: hidden; background: #0d0a1d; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.browser-frame-bar { height: 32px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.browser-dot { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }

/* ─── Services grid ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; background: var(--bg); }
.service-cell { padding: 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); transition: background .2s; }
.service-cell:hover { background: var(--bg-soft); }
.service-cell:nth-child(3n) { border-right: none; }
.service-cell:nth-last-child(-n+3) { border-bottom: none; }
.service-cell:first-child { background: var(--bg-soft); }
.service-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }

/* ─── Testimonials ─── */
.stars { color: #f59e0b; }

/* ─── CTA banner ─── */
.cta-banner { border-radius: var(--radius-xl); background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%); padding: 80px 64px; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 999px; background: rgba(255,255,255,.08); filter: blur(40px); }
.cta-title { font-size: clamp(36px, 4.5vw, 56px); color: #fff; letter-spacing: -0.03em; margin-bottom: 20px; line-height: 1; }
.cta-desc  { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 32px; }

/* ─── Footer ─── */
.alfa-footer { background: var(--deep); color: rgba(255,255,255,.7); position: relative; overflow: hidden; }
.alfa-footer-wordmark { position: absolute; left: 0; right: 0; bottom: -32px; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 280px; line-height: 1; letter-spacing: -0.06em; color: rgba(255,255,255,.04); pointer-events: none; user-select: none; }
.alfa-footer .alfa-container { position: relative; padding-top: 72px; padding-bottom: 32px; }
.alfa-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 64px; }
@media (max-width: 991px) { .alfa-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px)  { .alfa-footer-grid { grid-template-columns: 1fr; } }
.alfa-footer h4 { font-size: 13px; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.alfa-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.alfa-footer ul a { font-size: 14.5px; color: rgba(255,255,255,.85); }
.alfa-footer ul a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; margin-top: 24px; }
.footer-social a { width: 36px; height: 36px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: #fff; font-size: 14px; }
.footer-social a:hover { background: rgba(255,255,255,.12); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ─── Docs ─── */
.docs-code { font-family: var(--font-mono); font-size: 13px; padding: 2px 7px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px; }
.docs-code-block { background: #0a0c17; color: #dfe2eb; border-radius: 14px; padding: 20px 22px; font-family: var(--font-mono); font-size: 13.5px; line-height: 1.7; margin-bottom: 40px; position: relative; }
.docs-sidebar-nav a { display: block; padding: 6px 10px; border-radius: 8px; font-size: 13.5px; color: var(--fg-muted); background: transparent; font-weight: 400; }
.docs-sidebar-nav a:hover { color: var(--fg); background: var(--bg-soft); }
.docs-sidebar-nav a.active { color: var(--accent-strong); background: var(--accent-soft); font-weight: 500; }
.docs-toc a { display: block; padding: 4px 16px; margin-left: -1px; border-left: 2px solid transparent; font-size: 13.5px; color: var(--fg-muted); font-weight: 400; line-height: 1.4; }
.docs-toc a:hover { color: var(--fg); }
.docs-toc a.active { border-left-color: var(--accent); color: var(--accent); font-weight: 500; }
.doc-step { display: grid; grid-template-columns: 40px 1fr; gap: 16px; margin-bottom: 24px; }
.doc-step-num { width: 32px; height: 32px; border-radius: 999px; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.doc-callout { display: flex; gap: 14px; padding: 16px 20px; border-radius: 12px; margin-top: 24px; margin-bottom: 24px; }
.doc-callout-tip  { background: #eef2ff; border: 1px solid #c4cbff; color: var(--accent-strong); }
.doc-callout-warn { background: #fef3c7; border: 1px solid #fcd34d; color: #92400e; }
.doc-callout-icon { width: 26px; height: 26px; border-radius: 999px; background: #fff; display: grid; place-items: center; flex-shrink: 0; font-weight: 600; font-size: 14px; }

/* ─── Docs article body (reuses .blog-content typography, minus the drop cap) ─── */
.docs-body { font-size: 16.5px; }
.docs-body > p:first-of-type::first-letter { float: none; font-size: inherit; line-height: inherit; font-weight: inherit; margin: 0; color: inherit; }
.docs-body h2 { font-size: 26px; margin-top: 44px; scroll-margin-top: 96px; }
.docs-body h3 { font-size: 19px; margin-top: 28px; scroll-margin-top: 96px; }
.docs-body .doc-callout p { margin: 0; }

/* ─── Blog content ─── */
.blog-content { font-size: 17.5px; line-height: 1.8; color: var(--fg); }
.blog-content p  { margin-bottom: 20px; }

/* Drop cap on the first paragraph */
.blog-content > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 74px;
  line-height: 0.76;
  font-weight: 700;
  margin: 6px 14px 0 0;
  color: var(--accent);
}

/* Headings with an accent tick above */
.blog-content h2 {
  position: relative;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 56px;
  margin-bottom: 18px;
  padding-top: 28px;
}
.blog-content h2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 3px;
  border-radius: 2px;
  background: var(--accent);
}
.blog-content h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-top: 36px;
  margin-bottom: 14px;
}

/* Lists with custom accent markers */
.blog-content ul,
.blog-content ol {
  margin: 0 0 24px;
  padding-left: 2px;
  display: grid;
  gap: 12px;
  list-style: none;
  color: var(--fg-muted);
}
.blog-content ul li { position: relative; padding-left: 28px; }
.blog-content ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent);
}
.blog-content ol { counter-reset: blog-ol; }
.blog-content ol li {
  position: relative;
  padding-left: 38px;
  counter-increment: blog-ol;
  min-height: 26px;
}
.blog-content ol li::before {
  content: counter(blog-ol);
  position: absolute;
  left: 0; top: 1px;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  display: grid;
  place-items: center;
}

/* Strong lead-ins like "What to do:" */
.blog-content strong { font-weight: 650; color: var(--fg); }

/* Links */
.blog-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* Inline code */
.blog-content code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 6px;
}

/* Code blocks (dark) */
.blog-content pre {
  background: #0a0c17;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 22px 24px;
  overflow-x: auto;
  margin: 28px 0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
}
.blog-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
}

/* Images inside content */
.blog-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin: 28px 0;
}

/* Blockquote */
.blog-content blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: var(--bg-soft);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--fg);
}
.blog-content blockquote p { margin: 0; }

/* Horizontal rule between sections */
.blog-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* Two-column callout box (e.g. "Why redesigns matter") */
.blog-callout {
  margin: 32px 0;
  padding: 28px 32px;
  border-radius: 18px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
}
.blog-callout__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.blog-callout__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.blog-callout h4 {
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.blog-callout__good h4 { color: #16a34a; }
.blog-callout__bad  h4 { color: #dc2626; }
.blog-callout ul { margin: 0; gap: 8px; }
.blog-callout ul li { padding-left: 22px; font-size: 14.5px; }
.blog-callout__good ul li::before { background: #16a34a; }
.blog-callout__bad  ul li::before { background: #dc2626; }

/* ═══════════════════════════════════════════════════════════════
   UTILITY & COMPONENT CLASSES
   ═══════════════════════════════════════════════════════════════ */

/* ─── Section layout ─── */
.section-hero       { position: relative; overflow: hidden; padding: 90px 0 60px; }
.section-hero--sm   { position: relative; overflow: hidden; padding: 80px 0 32px; }
.section-hero--port { position: relative; overflow: hidden; padding: 90px 0 50px; }
.section-inner      { position: relative; }
.py-section         { padding: 120px 0; }
.py-section-md      { padding: 64px 0 120px; }
.py-section-sm      { padding: 40px 0 120px; }
.bg-soft            { background: var(--bg-soft); }
.bg-deep            { background: var(--deep); color: #fff; }

/* ─── Typography scales ─── */
.hero-title {
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero-title--index {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.section-heading    { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.03em; }
.section-heading-sm { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.03em; }

.gradient-text {
  background: linear-gradient(120deg, #4F46E5, #7C3AED);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead-text   { font-size: 19px; color: var(--fg-muted); line-height: 1.55; }
.body-text   { font-size: 17px; color: var(--fg-muted); line-height: 1.65; }
.text-fg-muted { color: var(--fg-muted); }
.text-mono   { font-family: var(--font-mono); }
.text-display { font-family: var(--font-display); }

/* Monospace uppercase label */
.label-mono    { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.label-mono-sm { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-muted); }

/* Eyebrow on dark backgrounds */
.eyebrow-on-dark { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 12px; }

.text-white-85 { color: rgba(255,255,255,.85); }
.text-white-70 { color: rgba(255,255,255,.7); }
.text-white-60 { color: rgba(255,255,255,.6); }

/* ─── Stat blocks ─── */
.stat-num    { font-family: var(--font-display); font-size: 32px; font-weight: 600; letter-spacing: -0.03em; }
.stat-num-lg { font-family: var(--font-display); font-size: 48px; font-weight: 600; letter-spacing: -0.035em; line-height: 1; margin-bottom: 6px; }
.stat-label  { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
.stat-box    { padding: 28px 24px; border-radius: 18px; background: var(--bg-soft); border: 1px solid var(--border); }

/* ─── Orb decorations ─── */
.orb    { pointer-events: none; border-radius: 999px; position: absolute; }
.orb-tr { top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(124,58,237,.4), transparent 60%); filter: blur(40px); }
.orb-tl { top: -100px; left: -50px;   width: 400px; height: 400px; background: radial-gradient(circle, rgba(124,58,237,.4), transparent 60%); filter: blur(40px); }

/* ─── Tech marquee strip ─── */
.tech-strip      { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; background: var(--bg-soft); }
.tech-strip-item { font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--fg-muted); display: flex; align-items: center; gap: 16px; letter-spacing: -0.005em; }
.tech-strip-dot  { width: 6px; height: 6px; border-radius: 999px; background: var(--indigo-200); display: inline-block; }

/* ─── Author avatar ─── */
.author-avatar {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--indigo-500), var(--violet-600));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  flex-shrink: 0;
}
.author-avatar--sm  { width: 36px; height: 36px; font-size: 13px; }
.author-avatar--md  { width: 44px; height: 44px; }
.author-avatar--lg  { width: 64px; height: 64px; font-size: 28px; }

/* ─── About page ─── */
.profile-sticky { position: sticky; top: 100px; }
.portrait-wrap  { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg, var(--indigo-500), var(--violet-600)); margin-bottom: 24px; position: relative; }
.portrait-img   { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; }
.glance-header  { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--fg-muted); text-transform: uppercase; margin-bottom: 14px; }
.glance-row     { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.glance-row + .glance-row { margin-top: 16px; }
.skill-row      { display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.skill-group-label { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.process-step-num  { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--accent); letter-spacing: 0.06em; margin-bottom: 16px; }

/* Floating availability chip on portrait */
.availability-chip { position: absolute; right: -28px; top: 80px; padding: 14px 18px; background: var(--bg); display: flex; align-items: center; gap: 12px; border-radius: var(--radius); box-shadow: var(--shadow); }
.availability-icon { width: 40px; height: 40px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }

/* ─── Filter bars ─── */
.filter-bar { padding: 32px 0 24px; border-bottom: 1px solid var(--border); background: var(--bg); }
.blog-filter-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; background: var(--bg); }
.blog-search-wrap { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 280px; padding: 0 16px; border: 1px solid var(--border); border-radius: 999px; height: 44px; }
.blog-search-icon { color: var(--fg-faint); flex-shrink: 0; }
.blog-search-input { border: 0; outline: 0; background: transparent; flex: 1; font-family: var(--font-sans); font-size: 14.5px; color: var(--fg); }
.blog-kbd { font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); padding: 2px 6px; border: 1px solid var(--border); border-radius: 4px; }

/* ─── Blog filter buttons (active state via JS) ─── */
.blog-filter-btn { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg); color: var(--fg); font-size: 13.5px; font-weight: 500; cursor: pointer; font-family: var(--font-sans); transition: all .15s; }
.blog-filter-btn.blog-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ─── Featured post card ─── */
.featured-post-body    { padding: 48px; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.featured-post-meta    { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.featured-post-meta-dot { width: 3px; height: 3px; border-radius: 999px; background: var(--fg-faint); display: inline-block; }
.featured-post-title   { font-size: clamp(22px, 2.8vw, 38px); letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.1; }
.featured-post-excerpt { font-size: 16px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 28px; }

/* ─── Portfolio page ─── */
.portfolio-dark-cta { border-radius: var(--radius-xl); background: var(--deep); padding: 72px 64px; color: #fff; position: relative; overflow: hidden; }

/* ─── Apps page ─── */
.app-hero-card        { border-radius: var(--radius-xl); overflow: hidden; position: relative; color: #fff; }
.app-hero-card--indigo { background: linear-gradient(135deg, #4F46E5 0%, #2e1065 100%); }
.app-hero-card--violet { background: linear-gradient(135deg, #7C3AED 0%, #ec4899 100%); }
.app-hero-inner       { padding: 56px; position: relative; }
.app-preview-box      { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(6px); }
.app-preview-label    { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.app-icon-badge       { width: 56px; height: 56px; border-radius: 16px; background: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 28px; font-weight: 700; flex-shrink: 0; }
.app-version-tag      { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }
.app-feature-list     { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
.app-feature-item     { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.waitlist-box         { border: 1px dashed var(--border-strong); border-radius: var(--radius-lg); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; background: var(--bg-soft); flex-wrap: wrap; }

/* ─── App detail page ─── */
.app-hero-strip  { padding: 64px 0; position: relative; overflow: hidden; color: #fff; }
.quick-facts-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.quick-fact-key  { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.quick-fact-val  { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.screenshot-box  { border-radius: 18px; border: 1px solid var(--border); padding: 24px; height: 320px; display: flex; flex-direction: column; justify-content: space-between; }
.screenshot-label { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 14px; }
.pricing-plan    { padding: 16px; border-radius: 12px; margin-bottom: 8px; }
.pricing-name    { font-weight: 600; font-size: 15px; }
.pricing-price   { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.pricing-desc    { font-size: 12.5px; color: var(--fg-muted); line-height: 1.5; }
.review-card     { padding: 20px; border: 1px solid var(--border); border-radius: 14px; }
.review-name     { font-weight: 600; font-size: 14.5px; }
.review-stars    { color: #f59e0b; font-size: 13px; }
.review-body     { font-size: 14.5px; color: var(--fg-muted); line-height: 1.5; }

/* ─── Docs page ─── */
.docs-page-header { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 32px 0; }
.docs-breadcrumb  { font-family: var(--font-mono); font-size: 13px; color: var(--fg-muted); margin-bottom: 8px; letter-spacing: 0.02em; }
.docs-layout      { padding-top: 48px; padding-bottom: 120px; }
.docs-step-li     { display: flex; gap: 12px; padding: 12px 16px; background: var(--bg-soft); border-radius: 10px; font-size: 14.5px; }
.docs-step-num    { font-family: var(--font-mono); color: var(--accent); font-weight: 500; }
.docs-help-card   { padding: 20px; margin-top: 32px; }
.docs-help-desc   { font-size: 13.5px; color: var(--fg-muted); margin-bottom: 14px; line-height: 1.5; }

/* ─── Contact page ─── */
.contact-icon    { width: 40px; height: 40px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 16px; font-weight: 600; flex-shrink: 0; }
.book-call-card  { padding: 32px; border-radius: 18px; color: #fff; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--deep) 0%, var(--violet-700) 100%); }
.book-call-inner { position: relative; }

/* ─── Newsletter ─── */
.newsletter-card { border-radius: var(--radius-xl); background: var(--bg-soft); border: 1px solid var(--border); padding: 64px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }

/* ─── Pager (docs) ─── */
.docs-pager-prev { flex: 1; padding: 20px; border-radius: 12px; border: 1px solid var(--border); display: block; }
.docs-pager-next { flex: 1; padding: 20px; border-radius: 12px; border: 1px solid var(--accent); background: var(--accent-soft); display: block; text-align: right; }

/* ─── Responsive ─── */
@media (max-width: 1199px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cell:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-cell:nth-child(2n) { border-right: none; }
  .service-cell:nth-last-child(-n+2) { border-bottom: none; }
  .service-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 767px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-cell  { border-right: none; }
  .service-cell:last-child { border-bottom: none; }
  .cta-banner            { padding: 48px 28px; }
  .portfolio-dark-cta    { padding: 48px 28px; }
  .waitlist-box          { padding: 32px 24px; }
  .app-hero-inner        { padding: 32px 24px; }
  .newsletter-card       { grid-template-columns: 1fr; padding: 40px 24px; }
  .availability-chip     { right: 0; }

  /* Heading scale-down — no !important needed because classes beat inline styles removed */
  .hero-title         { font-size: clamp(40px, 10vw, 64px); }
  .hero-title--index  { font-size: clamp(38px,  9vw, 60px); }
  .section-heading    { font-size: clamp(26px,  7vw, 40px); }
  .section-heading-sm { font-size: clamp(24px,  6vw, 36px); }
  .blog-content h2    { font-size: 25px; }
  .blog-content blockquote { font-size: 19px; padding: 20px 22px; }
  .blog-content > p:first-of-type::first-letter { font-size: 58px; margin: 4px 10px 0 0; }
  .blog-callout { padding: 24px; }
  .blog-callout__cols { grid-template-columns: 1fr; gap: 22px; }
}

/* ─── Testimonial slider ─── */
.testimonial-slider  { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  flex-shrink: 0;
}
.testimonial-btn:hover:not(:disabled) {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  box-shadow: var(--shadow);
}
.testimonial-btn:disabled { opacity: .38; cursor: not-allowed; }
.testimonial-dots  { display: flex; gap: 8px; align-items: center; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--border-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s, width .25s cubic-bezier(.25,.46,.45,.94);
}
.testimonial-dot.active { background: var(--accent); width: 24px; }

@media (max-width: 767px) {
  .testimonial-slide { flex: 0 0 100%; min-width: 100%; }
}

/* ─── Process / How I work section ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
/* Dashed connector line between cards on desktop */
.process-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 0;
  border-top: 2px dashed var(--border-strong);
  pointer-events: none;
  z-index: 0;
}
.process-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
  z-index: 1;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
/* Faded watermark number */
.process-card__watermark {
  position: absolute;
  top: -14px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--indigo-100);
  user-select: none;
  pointer-events: none;
}
/* Step badge (small numbered circle at top) */
.process-card__badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--indigo-500), var(--violet-600));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(79,70,229,.35);
}
/* Icon box */
.process-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background .2s, color .2s;
}
.process-card:hover .process-card__icon {
  background: var(--accent);
  color: #fff;
}
.process-card__title {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.process-card__desc {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 575px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ─── App screenshots slider ─── */
.app-screenshots-section { padding: 64px 0 40px; }
.app-screenshots-title   { font-size: 36px; letter-spacing: -0.025em; margin: 0; }

/* Prev / Next buttons */
.app-slider-controls { display: flex; gap: 8px; }
.app-slider-btn {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
  flex-shrink: 0;
}
.app-slider-btn:hover:not(:disabled) {
  background: var(--bg-soft);
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.08);
}
.app-slider-btn:disabled { opacity: .35; cursor: not-allowed; }

/* Viewport clips the track */
.app-slider-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.app-slider-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each slide — always 1 per view */
.app-slide {
  flex: 0 0 100%;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  position: relative;
}
.app-slide__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.app-slide__caption {
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}

/* Dot indicators */
.app-slider-dots { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.app-slider-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--border-strong);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}
.app-slider-dot.active { background: var(--accent); width: 24px; }

#app_det_hero{
 display:grid;grid-template-columns:1fr auto;align-items:center;gap:32px;flex-wrap:wrap;
}

@media (max-width: 639px) {
  .app-screenshots-section { padding: 48px 0 32px; }

  #app_det_hero{
   grid-template-columns: none;
}
}


