/* ============================================
   ABHISHREE LABS — Shared Design System
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --surface: #15151a;
  --surface-2: #1c1c22;
  --text: #f4f4f5;
  --text-soft: #d4d4d8;
  --muted: #8a8a93;
  --line: #26262d;
  --line-2: #2e2e36;
  --accent: #c4f56e;
  --accent-2: #7df0bc;
  --accent-3: #ff8a5c;
  --glow: rgba(196, 245, 110, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1240px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 1000;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' /></svg>");
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--bg); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
main { flex: 1; }

/* ============================================
   SCROLL PROGRESS
============================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 999;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--glow);
}

/* ============================================
   NAV (Pill style)
============================================ */
.nav {
  position: fixed; top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 28px);
  max-width: 1180px;
  border-radius: 999px;
  background: rgba(15, 15, 18, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px 12px 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 0 20px var(--glow);
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-name { font-weight: 600; }
.brand .brand-tag { color: var(--muted); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.04em; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all .25s var(--ease);
  font-family: inherit;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--text); background: var(--surface-2); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  font-weight: 600;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--accent-2) !important; box-shadow: 0 0 20px var(--glow) !important; }

/* Mobile menu */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    margin-top: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
  }
  .nav-links a { padding: 12px 16px; }
  .nav.open .nav-links { display: flex; }
  .brand .brand-tag { display: none; }
}

/* ============================================
   HERO (default page hero)
============================================ */
.page-hero {
  position: relative;
  padding: 130px 0 64px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.page-hero .container { display: flex; flex-direction: column; align-items: center; }

.hero-bg {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
}
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.4;
  animation: float 18s ease-in-out infinite;
}
.hero-bg::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-bg::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  bottom: -150px; right: -50px;
  animation-delay: -9s; opacity: 0.25;
}
.hero-bg .blob-3 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%);
  border-radius: 50%; filter: blur(80px); opacity: 0.15;
  top: 40%; left: 50%;
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 50px) scale(0.95); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  opacity: 0.4; z-index: -1;
}

/* ============================================
   AVAILABILITY PILL
============================================ */
.availability {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--text-soft);
  padding: 8px 16px 8px 14px;
  border: 1px solid var(--line-2); border-radius: 999px;
  margin-bottom: 24px; background: var(--surface);
}
.availability .pulse {
  position: relative;
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
}
.availability .pulse::before {
  content: ""; position: absolute; inset: 0;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* ============================================
   TYPOGRAPHY UTILITIES
============================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; }

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 auto 24px;
  max-width: 18ch;
}
.h-display em { font-style: italic; color: var(--accent); }
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0 auto 28px;
  line-height: 1.55;
}

/* ============================================
   BUTTONS
============================================ */
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 500;
  transition: all .3s var(--ease);
  border: 1px solid transparent; cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: var(--bg); font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--glow), 0 0 0 1px var(--accent);
}
.btn-secondary {
  background: transparent; color: var(--text);
  border-color: var(--line-2);
}
.btn-secondary:hover {
  border-color: var(--text); background: var(--surface);
}
.btn .arrow {
  transition: transform .3s var(--ease);
  display: inline-flex;
  width: 14px; height: 14px;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   SECTIONS
============================================ */
section { padding: 56px 0; position: relative; }
@media (max-width: 760px) { section { padding: 40px 0; } }
section.tight { padding: 32px 0; }
section.wide { padding: 80px 0; }

.section-head-center {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  margin: 0 auto;
}
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-label::before {
  content: ""; width: 24px; height: 1px;
  background: var(--accent);
}
.section-head-center .section-label::after {
  content: ""; width: 24px; height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin: 0 auto 16px;
  text-align: center;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   REVEAL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0s; }
.stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
.stagger.in > *:nth-child(7) { transition-delay: 0.48s; }
.stagger.in > *:nth-child(8) { transition-delay: 0.56s; }

/* ============================================
   GRIDS
============================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   CARD (generic)
============================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.card::after {
  content: "";
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width .5s var(--ease);
  z-index: 1;
}
.card:hover {
  border-color: var(--line-2);
  transform: translateY(-6px);
  background: var(--surface-2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--glow);
}
.card:hover::after { width: 100%; }

/* ============================================
   SERVICE CARD
============================================ */
.service-card { text-align: center; align-items: center; display: flex; flex-direction: column; }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px var(--glow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 12px 36px var(--glow);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 36ch;
}
.service-card h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.service-card ul {
  list-style: none;
  width: 100%;
  text-align: center;
}
.service-card li {
  font-size: 0.88rem;
  color: var(--text-soft);
  padding: 7px 0;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border-bottom: 1px dashed var(--line);
}
.service-card li:last-child { border-bottom: none; }
.service-card li::before {
  content: "+";
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
  flex-shrink: 0;
}
.service-card .price-line {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-mono);
  width: 100%;
}

/* ============================================
   CHIPS
============================================ */
.chip {
  font-size: 0.74rem;
  padding: 5px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text-soft);
  background: var(--bg-2);
  font-family: var(--font-mono);
  transition: all .25s var(--ease);
  display: inline-block;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================
   STATS
============================================ */
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all .35s var(--ease);
}
.stat:hover { border-color: var(--line-2); transform: translateY(-3px); }
.stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 8px;
}
.stat .num em { font-style: italic; }
.stat .lbl {
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.4;
}

/* ============================================
   MARQUEE
============================================ */
.marquee-wrap { margin: 32px auto; }
.marquee-section {
  padding: 18px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.marquee-section::before, .marquee-section::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee-section::after { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.marquee {
  display: flex; gap: 60px;
  animation: scroll 32s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--muted);
  font-style: italic; font-weight: 400;
  transition: color .3s var(--ease);
}
.marquee-item:hover { color: var(--accent); }
.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   CASE STUDY CARD
============================================ */
.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.case-thumb {
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.case-thumb svg {
  width: 100%; height: 100%;
  transition: transform .8s var(--ease);
}
.case-card:hover .case-thumb svg { transform: scale(1.05); }
.case-body { padding: 26px 28px 28px; }
.case-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.case-body h3 {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.4rem;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.case-body p {
  color: var(--text-soft);
  font-size: 0.93rem; line-height: 1.6;
  margin-bottom: 16px;
}
.case-stack { display: flex; gap: 6px; flex-wrap: wrap; }

/* ============================================
   TEAM / DEVELOPER CARD
============================================ */
.dev-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  align-items: center;
}
.dev-card::after {
  content: ""; position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width .5s var(--ease);
  z-index: 1;
}
.dev-card:hover {
  border-color: var(--line-2);
  transform: translateY(-6px);
  background: var(--surface-2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--glow);
}
.dev-card:hover::after { width: 100%; }
.dev-card:hover .avatar { transform: scale(1.05); box-shadow: 0 12px 36px var(--glow); }

.avatar {
  width: 96px; height: 96px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.6rem;
  margin-bottom: 18px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.avatar.lg { width: 140px; height: 140px; font-size: 2.6rem; }
.avatar.indigo  { background: linear-gradient(135deg, #6366f1, #3b82f6); }
.avatar.emerald { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--bg); }
.avatar.orange  { background: linear-gradient(135deg, #fb923c, #ec4899); }
.avatar.purple  { background: linear-gradient(135deg, #a855f7, #d946ef); }

.dev-card h3 {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.4rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.dev-card .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
}
.dev-card .location {
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 6px;
}
.dev-card .bio {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 38ch;
}
.skill-stack {
  display: flex; gap: 6px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 22px;
}
.dev-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.socials { display: flex; gap: 6px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text-soft);
  transition: all .25s var(--ease);
}
.social-btn:hover {
  background: var(--accent); color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.social-btn.disabled {
  opacity: 0.4; cursor: not-allowed;
}
.view-profile {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.82rem; font-weight: 600;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.view-profile:hover {
  background: var(--accent-2);
  box-shadow: 0 6px 24px var(--glow);
}

/* ============================================
   PAST EXPERIENCE LIST
============================================ */
.experience-list { display: grid; gap: 20px; }
.exp-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  transition: all .35s var(--ease);
}
.exp-row:hover { border-color: var(--line-2); background: var(--surface-2); }
@media (max-width: 720px) {
  .exp-row { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
}
.exp-meta .period {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.exp-meta .loc { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.exp-content h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem; font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0;
}
.exp-content h3 .company { color: var(--muted); font-weight: 400; }
.exp-content .client {
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}
.exp-content p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================
   CONTACT CTA / Big call-to-action band
============================================ */
.cta-band {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0; filter: blur(40px);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band p {
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 50ch;
  margin-left: auto; margin-right: auto;
  font-size: 1.05rem;
}

/* ============================================
   CONTACT FORM
============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all .25s var(--ease);
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(196,245,110,0.1);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* ============================================
   FAQ / Accordion-style (simple list)
============================================ */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s var(--ease);
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 28px 24px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   PANEL (used in profile pages)
============================================ */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}
@media (max-width: 640px) { .panel { padding: 24px; } }
.panel h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.panel p { color: var(--text-soft); margin-bottom: 14px; line-height: 1.7; }
.panel p:last-child { margin-bottom: 0; }
.highlight-list { list-style: none; }
.highlight-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.highlight-list li::before {
  content: "+";
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
  margin-top: 1px;
}

/* ============================================
   CLIENTS STRIP — text-only, no logos
============================================ */
.clients-strip {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  margin: 32px 0;
}
.clients-strip .label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 18px;
}
.clients-strip .names {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  justify-content: center; align-items: center;
}
.clients-strip .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-soft);
  font-weight: 400;
  font-style: italic;
}
.clients-strip .name .via {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-style: normal;
  letter-spacing: 0.1em;
  margin-left: 4px;
  text-transform: uppercase;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.testimonial:hover { border-color: var(--line-2); transform: translateY(-3px); }
.testimonial::before {
  content: """;
  position: absolute;
  top: -8px; left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  font-weight: 500;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial .author {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial .author-name { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.testimonial .author-title { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.testimonial.placeholder {
  border-style: dashed;
  opacity: 0.7;
}
.testimonial.placeholder blockquote { color: var(--muted); font-style: italic; }

/* ============================================
   FOOTER
============================================ */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 40px;
}
footer .footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
@media (max-width: 760px) {
  footer .footer-inner { grid-template-columns: 1fr 1fr; }
  footer .footer-brand { grid-column: 1 / -1; }
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; max-width: 32ch; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
footer .copyright {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center;
}

/* ============================================
   MOTION PREF
============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01s !important;
    transition-duration: 0.01s !important;
  }
  .marquee { animation: none; }
}
