/* ==========================================================================
   55 · agency — 2026 brand stylesheet
   ========================================================================== */

:root {
  --bg: #07070b;
  --bg-soft: #0d0d14;
  --bg-elev: #14141c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f5f7;
  --text-soft: #b5b5c3;
  --text-muted: #7c7c8c;

  --accent-1: #ff4d6d;   /* magenta */
  --accent-2: #ff8a3d;   /* warm orange */
  --accent-3: #7c5cff;   /* electric violet */
  --accent-4: #2ddcff;   /* cyan */

  --grad-brand: linear-gradient(120deg, #7c5cff 0%, #ff4d6d 55%, #ff8a3d 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(124,92,255,.14), rgba(255,77,109,.14) 55%, rgba(255,138,61,.14));
  --grad-ai: linear-gradient(120deg, #2ddcff 0%, #7c5cff 100%);

  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 0 rgba(255,255,255,.05) inset, 0 1px 2px rgba(0,0,0,.4);
  --shadow-2: 0 30px 60px -20px rgba(0,0,0,.55), 0 8px 24px -12px rgba(0,0,0,.4);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,.06), 0 40px 120px -30px rgba(124,92,255,.35);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Manrope', 'Inter', -apple-system, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* Reset --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; scroll-behavior: smooth; }
body { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p { margin: 0; }

/* Base ---------------------------------------------------------------------- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(124,92,255,.18), transparent 60%),
    radial-gradient(800px 400px at 10% 10%, rgba(255,77,109,.12), transparent 60%),
    radial-gradient(1000px 500px at 50% 110%, rgba(255,138,61,.10), transparent 60%);
  background-attachment: fixed;
}

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

/* Typography ---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--grad-brand);
}

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.02em; line-height: 1.05; font-weight: 700; }
.h-display {
  font-size: clamp(2.4rem, 6.4vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.h-1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.h-2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.15; }
.h-3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.25; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-soft); max-width: 62ch; }
.text-muted { color: var(--text-muted); }
.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-ai {
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Layout -------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(60px, 9vw, 110px) 0; }
.section-header { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-header > * + * { margin-top: 18px; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); border: 0; margin: 0; }

/* Buttons ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .01em;
  line-height: 1;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #0d0d14;
  background: #ffffff;
  box-shadow: 0 10px 30px -10px rgba(255,255,255,.4);
}
.btn-primary:hover { background: #ffffff; box-shadow: 0 16px 40px -12px rgba(255,255,255,.55); }

.btn-gradient {
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 10px 30px -10px rgba(255,77,109,.5);
}
.btn-gradient:hover { box-shadow: 0 20px 50px -16px rgba(255,77,109,.65); }

.btn-ghost {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--surface-strong); border-color: rgba(255,255,255,.28); }

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

/* Header / Nav -------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(7,7,11,.7);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Wordmark — "55·agency" with a coloured accent dot */
.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.045em;
  color: var(--text);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.brand-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--grad-brand);
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
  position: relative;
  top: -3px;
  box-shadow: 0 0 18px rgba(255,77,109,.55);
  flex: 0 0 auto;
}
/* Legacy redundant badge — kept hidden in case any page still uses it */
.brand-mark { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(20,20,28,.55);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-links a {
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active { color: var(--text); background: var(--surface-strong); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
}
.lang-switch a {
  padding: 8px 12px;
  color: var(--text-muted);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang-switch a.is-active { background: var(--surface-strong); color: var(--text); }
.lang-switch a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--text);
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Mobile menu --------------------------------------------------------------- */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 99;
  background: rgba(7,7,11,.96);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  padding: 100px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease-out);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: -.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu .mobile-footer {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 18px;
  color: var(--text-soft);
  font-size: 14px;
}

/* Hero ---------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero-bg-orbs {
  position: absolute; inset: -10%; pointer-events: none; z-index: 0;
}
.hero-bg-orbs::before, .hero-bg-orbs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero-bg-orbs::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #7c5cff, transparent 60%);
  top: 0; right: -10%;
  animation: float1 16s ease-in-out infinite;
}
.hero-bg-orbs::after {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #ff4d6d, transparent 60%);
  bottom: 0; left: -10%;
  animation: float2 18s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,30px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,-30px)} }

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-title { margin-top: 24px; }
.hero-sub { margin-top: 24px; }
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-meta .stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  display: block;
}
.hero-meta .stat span { color: var(--text-muted); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

/* Hero showcase ------------------------------------------------------------- */
.hero-showcase {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(124,92,255,.16), rgba(255,77,109,.10) 50%, rgba(255,138,61,.12));
  border: 1px solid var(--border-strong);
  padding: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.hero-showcase .showcase-card {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; display:block; }
.showcase-card-1 { top: 8%; left: 6%; width: 52%; aspect-ratio: 9/16; transform: rotate(-5deg); animation: drift1 9s ease-in-out infinite; }
.showcase-card-2 { top: 28%; right: 6%; width: 46%; aspect-ratio: 9/16; transform: rotate(4deg); animation: drift2 11s ease-in-out infinite; }
.showcase-card-3 {
  bottom: 6%; left: 24%; width: 60%; aspect-ratio: 16/10; transform: rotate(-2deg);
  animation: drift3 13s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:rotate(-5deg) translateY(0)} 50%{transform:rotate(-5deg) translateY(-10px)} }
@keyframes drift2 { 0%,100%{transform:rotate(4deg) translateY(0)} 50%{transform:rotate(4deg) translateY(12px)} }
@keyframes drift3 { 0%,100%{transform:rotate(-2deg) translateY(0)} 50%{transform:rotate(-2deg) translateY(-8px)} }

.showcase-badge {
  position: absolute;
  bottom: 22px; right: 22px;
  background: rgba(7,7,11,.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #2ddcff; box-shadow: 0 0 12px #2ddcff; }

/* Marquee ------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  background: rgba(13,13,20,.4);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--text-muted);
  letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee span::after { content: "✦"; color: var(--accent-1); opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Services ------------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.svc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  min-height: 280px;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-strong); }
.svc-card .svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.svc-card .svc-icon svg { width: 24px; height: 24px; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--text-soft); font-size: 15.5px; }
.svc-card .svc-link {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--text);
}
.svc-card .svc-link .arrow { transition: transform .25s var(--ease); }
.svc-card:hover .svc-link .arrow { transform: translateX(4px); }

.svc-card.col-6 { grid-column: span 6; }
.svc-card.col-4 { grid-column: span 4; }
.svc-card.col-8 { grid-column: span 8; }
.svc-card.col-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .svc-card.col-6, .svc-card.col-4, .svc-card.col-8, .svc-card.col-12 { grid-column: span 12; }
}

.svc-card.svc-ai {
  background:
    radial-gradient(800px 200px at 100% 0%, rgba(45,220,255,.18), transparent 60%),
    radial-gradient(600px 200px at 0% 100%, rgba(124,92,255,.18), transparent 60%),
    var(--bg-elev);
  border-color: rgba(45,220,255,.25);
}
.svc-card.svc-ai .svc-icon { background: var(--grad-ai); border-color: transparent; color: #07070b; }
.svc-card.svc-ai .ai-pill {
  position: absolute; top: 24px; right: 24px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(45,220,255,.12);
  border: 1px solid rgba(45,220,255,.4);
  border-radius: var(--radius-pill);
  color: #2ddcff;
}

/* Portfolio grid ------------------------------------------------------------ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.case {
  grid-column: span 6;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.case.case-wide { grid-column: span 8; aspect-ratio: 16/9; }
.case.case-tall { grid-column: span 4; aspect-ratio: 4/5; }
@media (max-width: 900px) {
  .case, .case.case-wide, .case.case-tall { grid-column: span 12; aspect-ratio: 4/3; }
}
.case:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.case-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease-out), filter .4s var(--ease);
  filter: saturate(1.05);
}
.case:hover .case-bg { transform: scale(1.05); filter: saturate(1.2); }
.case-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,11,0) 40%, rgba(7,7,11,.92) 100%);
}
.case-content {
  position: absolute; inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
}
.case-tag {
  display: inline-block;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-soft);
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: rgba(7,7,11,.6);
  backdrop-filter: blur(6px);
  margin-bottom: 14px;
}
.case h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.case p { color: var(--text-soft); margin-top: 6px; font-size: 14.5px; }

/* Stats / numbers ----------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: 0; }
@media (max-width: 768px) {
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat-cell:nth-child(2n) { border-right: 0; }
}
.stat-cell strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -.025em;
  display: block;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-cell span { color: var(--text-soft); font-size: 14px; }

/* Logos cloud --------------------------------------------------------------- */
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 768px) { .logo-cloud { grid-template-columns: repeat(2, 1fr); } }
.logo-cell {
  background: var(--bg-soft);
  display: grid; place-items: center;
  padding: 28px;
  min-height: 110px;
}
/* Force every logo to a uniform light treatment on the dark surface */
.logo-cell img {
  max-height: 38px;
  width: auto;
  opacity: .72;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  filter: brightness(0) invert(1); /* turns any logo (dark or coloured) into white */
}
.logo-cell:hover img { opacity: 1; transform: scale(1.04); }

/* Process / steps ----------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--text-soft); margin-top: 8px; font-size: 14.5px; }

/* Testimonials -------------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  display: flex; flex-direction: column;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -.01em;
}
.testimonial .who {
  margin-top: auto;
  padding-top: 28px;
  display: flex; align-items: center; gap: 14px;
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  font-weight: 700;
  color: #fff;
}
.testimonial .who-text small { color: var(--text-muted); font-size: 12.5px; display: block; }

/* CTA banner ---------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 90px);
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(124,92,255,.28), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(255,77,109,.28), transparent 60%),
    var(--bg-elev);
  border: 1px solid var(--border-strong);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .cta { grid-template-columns: 1fr; } }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Form / contact ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.info-card small { color: var(--text-muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.info-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-top: 8px; }
.info-card p { color: var(--text-soft); margin-top: 4px; }
.info-card a { color: var(--text); text-decoration: none; }
.info-card a:hover { color: #fff; }

/* reCAPTCHA notice (replaces the floating Google badge) */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-notice {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
  letter-spacing: .01em;
}
.recaptcha-notice a { color: var(--text-soft); text-decoration: underline; text-decoration-color: var(--border-strong); }
.recaptcha-notice a:hover { color: var(--text); }

form .field { margin-bottom: 18px; position: relative; }
form label {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
form input, form textarea, form select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--text);
  font-size: 15.5px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: var(--accent-3);
  background: rgba(124,92,255,.06);
}
form textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-status { font-size: 14px; color: var(--text-soft); margin-top: 10px; min-height: 20px; }
.form-status.is-success { color: #6df7c1; }
.form-status.is-error { color: #ff8a8a; }

/* Footer -------------------------------------------------------------------- */
.site-footer {
  margin-top: 60px;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(13,13,20,.6));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px;
}
.footer-grid ul li { margin-bottom: 10px; font-size: 14.5px; color: var(--text-soft); }
.footer-grid ul a { transition: color .2s var(--ease); }
.footer-grid ul a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
}
.footer-brand p { color: var(--text-soft); margin-top: 14px; max-width: 32ch; font-size: 14.5px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.footer-socials a:hover { background: var(--surface-strong); border-color: var(--border-strong); }
.footer-socials svg { width: 16px; height: 16px; }

/* Inner banner -------------------------------------------------------------- */
.inner-banner {
  padding: clamp(160px, 18vw, 220px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.inner-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
  max-width: 18ch;
}
.inner-banner .lead { margin-top: 22px; }
.crumb { color: var(--text-muted); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.crumb a:hover { color: #fff; }
.crumb span { margin: 0 8px; opacity: .5; }

/* Two-column content -------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.feature-list { display: grid; gap: 12px; margin-top: 24px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
}
.feature-list .check {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  margin-top: 1px;
}
.feature-list .check svg { width: 12px; height: 12px; }

/* Visual block (image with frame) ------------------------------------------ */
.framed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  box-shadow: var(--shadow-2);
}
.framed::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,7,11,.4));
  pointer-events: none;
}
.framed img { width: 100%; display: block; }

/* Reveal animations --------------------------------------------------------- */
/* Vanilla-fallback reveals (active when GSAP isn't loaded). GSAP version
   uses gsap.fromTo() and sets the same .is-in flag so styles match. */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .05s; }
.reveal-delay-2 { transition-delay: .1s; }
.reveal-delay-3 { transition-delay: .15s; }
.reveal-delay-4 { transition-delay: .2s; }
.reveal-delay-5 { transition-delay: .25s; }

/* When GSAP is in control, strip the CSS transition so the two don't race */
html.gsap-enabled .reveal { transition: none; will-change: auto; }

/* GSAP-driven elements get hardware-accelerated transforms */
.hero-showcase, .case-bg, .svc-card, .btn-gradient, .btn-primary { will-change: transform; }

/* Responsive nav ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .lang-switch { display: inline-flex; }
}

/* =====================================================================
   Branded mockups — replaces stock photography with on-topic UI shells
   ===================================================================== */

/* Common frame */
.mockup {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #14141c 0%, #0d0d14 100%);
  border: 1px solid var(--border-strong);
  padding: 26px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-2);
  display: grid;
  place-items: center;
}
.mockup::before {
  /* Soft brand glow */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(124,92,255,.18), transparent 60%),
    radial-gradient(600px 200px at 100% 100%, rgba(255,77,109,.14), transparent 60%);
  pointer-events: none;
}
.mockup > * { position: relative; z-index: 1; }

.mockup--portrait { aspect-ratio: 4 / 5; }

/* ---- Phone shell ---- */
.mockup-phone {
  width: 62%;
  aspect-ratio: 9 / 18;
  background: #07070b;
  border: 8px solid #1a1a24;
  border-radius: 36px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06) inset;
  padding: 14px 12px;
  display: flex; flex-direction: column;
  gap: 10px;
  position: relative;
}
.mockup-phone::before {
  content: "";
  position: absolute;
  top: 4px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 18px;
  background: #1a1a24;
  border-radius: 0 0 14px 14px;
}
.mockup-phone .ph-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 6px;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  color: var(--text-soft);
  letter-spacing: .02em;
  margin-top: 14px;
}
.mockup-phone .ph-status .ph-icons { display: flex; gap: 4px; }
.mockup-phone .ph-status .ph-icons span { width: 4px; height: 4px; background: var(--text-soft); border-radius: 50%; opacity: .8; }
.mockup-phone .ph-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 4px 4px;
}
.mockup-phone .ph-header .ph-title {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: #fff;
}
.mockup-phone .ph-header .ph-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-brand);
}
.mockup-phone .ph-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.mockup-phone .ph-card .ph-cat {
  font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted);
}
.mockup-phone .ph-card .ph-line {
  height: 6px; background: rgba(255,255,255,.12); border-radius: 3px;
}
.mockup-phone .ph-card .ph-line.short { width: 60%; }
.mockup-phone .ph-card .ph-bar {
  height: 28px;
  background: var(--grad-brand);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  color: #fff;
}
.mockup-phone .ph-tabs {
  margin-top: auto;
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  display: flex; justify-content: space-around;
  padding: 8px 0;
}
.mockup-phone .ph-tabs span {
  width: 16px; height: 16px;
  background: rgba(255,255,255,.18);
  border-radius: 4px;
}
.mockup-phone .ph-tabs span.is-active {
  background: var(--grad-brand);
}

/* ---- Browser shell ---- */
.mockup-browser {
  width: 92%;
  background: #0d0d14;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  display: flex; flex-direction: column;
}
.mockup-browser .br-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: #14141c;
  border-bottom: 1px solid var(--border);
}
.mockup-browser .br-chrome .br-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-browser .br-chrome .br-dot.r { background: #ff5f57; }
.mockup-browser .br-chrome .br-dot.y { background: #febc2e; }
.mockup-browser .br-chrome .br-dot.g { background: #28c840; }
.mockup-browser .br-chrome .br-url {
  flex: 1; margin-left: 10px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: var(--text-soft);
}
.mockup-browser .br-body {
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.mockup-browser .br-hero {
  height: 110px;
  border-radius: 10px;
  background:
    radial-gradient(300px 120px at 30% 50%, rgba(124,92,255,.5), transparent 70%),
    radial-gradient(300px 120px at 80% 50%, rgba(255,77,109,.45), transparent 70%),
    #1a1a24;
  display: grid; place-items: center;
}
.mockup-browser .br-hero strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.025em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.mockup-browser .br-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mockup-browser .br-grid > div {
  height: 56px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px;
}
.mockup-browser .br-grid > div::before {
  content: ""; width: 18px; height: 18px;
  border-radius: 5px; background: var(--grad-brand); opacity: .9;
}
.mockup-browser .br-grid > div::after {
  content: ""; height: 4px; width: 60%;
  border-radius: 2px; background: rgba(255,255,255,.18);
}

/* ---- Design canvas (Figma style) ---- */
.mockup-figma {
  width: 92%; height: 92%;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 20px 20px,
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 20px 20px,
    #0a0a12;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.mockup-figma .fg-frame {
  position: absolute;
  border: 1.5px solid rgba(124,92,255,.7);
  border-radius: 6px;
  background: rgba(20,20,28,.8);
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.mockup-figma .fg-frame::before {
  content: attr(data-label);
  position: absolute;
  top: -18px; left: 0;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  color: rgba(124,92,255,.9);
  letter-spacing: .04em;
}
.mockup-figma .fg-card-1 { top: 8%; left: 8%; width: 38%; height: 36%; }
.mockup-figma .fg-card-2 { top: 12%; right: 8%; width: 42%; height: 28%; }
.mockup-figma .fg-card-3 { bottom: 10%; left: 18%; width: 64%; height: 32%; }
.mockup-figma .fg-line { height: 6px; background: rgba(255,255,255,.15); border-radius: 3px; }
.mockup-figma .fg-line.s { width: 55%; }
.mockup-figma .fg-line.xs { width: 35%; }
.mockup-figma .fg-btn {
  margin-top: auto;
  height: 22px; border-radius: 6px;
  background: var(--grad-brand);
}
.mockup-figma .fg-swatches {
  display: flex; gap: 6px;
}
.mockup-figma .fg-swatches span {
  width: 18px; height: 18px; border-radius: 5px;
}
.mockup-figma .fg-swatches span:nth-child(1){ background:#7c5cff; }
.mockup-figma .fg-swatches span:nth-child(2){ background:#ff4d6d; }
.mockup-figma .fg-swatches span:nth-child(3){ background:#ff8a3d; }
.mockup-figma .fg-swatches span:nth-child(4){ background:#2ddcff; }
.mockup-figma .fg-cursor {
  position: absolute;
  top: 30%; left: 42%;
  width: 18px; height: 18px;
  border-left: 2px solid #2ddcff;
  border-top: 2px solid #2ddcff;
  transform: rotate(-30deg);
  filter: drop-shadow(0 0 6px rgba(45,220,255,.6));
}
.mockup-figma .fg-cursor::after {
  content: "Designer";
  position: absolute;
  top: 14px; left: 8px;
  background: #2ddcff;
  color: #07070b;
  padding: 3px 6px;
  border-radius: 4px;
  font-family: var(--font-display); font-size: 9px; font-weight: 700;
  transform: rotate(30deg);
  white-space: nowrap;
}

/* ---- Terminal / code window ---- */
.mockup-terminal {
  width: 92%;
  background: #07070b;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
}
.mockup-terminal .tm-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: #14141c;
  border-bottom: 1px solid var(--border);
}
.mockup-terminal .tm-chrome .tm-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-terminal .tm-chrome .tm-dot.r { background: #ff5f57; }
.mockup-terminal .tm-chrome .tm-dot.y { background: #febc2e; }
.mockup-terminal .tm-chrome .tm-dot.g { background: #28c840; }
.mockup-terminal .tm-chrome .tm-title {
  flex: 1; text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; color: var(--text-muted);
}
.mockup-terminal .tm-body {
  padding: 18px 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-soft);
}
.mockup-terminal .tm-line { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup-terminal .tm-prompt { color: #7c5cff; user-select: none; }
.mockup-terminal .tm-cmd { color: #f5f5f7; }
.mockup-terminal .tm-str { color: #2ddcff; }
.mockup-terminal .tm-num { color: #ff8a3d; }
.mockup-terminal .tm-key { color: #ff4d6d; }
.mockup-terminal .tm-com { color: var(--text-muted); }
.mockup-terminal .tm-ok { color: #6df7c1; }
.mockup-terminal .tm-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: #f5f5f7;
  vertical-align: text-bottom;
  margin-left: 3px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---- Case-card branded placeholder (replaces stock photos) ---- */
.case .case-bg.case-art {
  background-size: cover;
  background-position: center;
}
.case-art {
  background:
    radial-gradient(circle at 30% 30%, rgba(124,92,255,.5), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255,77,109,.45), transparent 60%),
    linear-gradient(135deg, #14141c, #0a0a12);
}
.case-art--mobile  { background: radial-gradient(circle at 30% 30%, rgba(45,220,255,.45), transparent 60%), radial-gradient(circle at 70% 70%, rgba(124,92,255,.55), transparent 60%), #0d0d14; }
.case-art--ai      { background: radial-gradient(circle at 50% 30%, rgba(124,92,255,.55), transparent 60%), radial-gradient(circle at 50% 80%, rgba(45,220,255,.5), transparent 60%), #0a0a16; }
.case-art--web     { background: radial-gradient(circle at 25% 75%, rgba(255,77,109,.5), transparent 60%), radial-gradient(circle at 80% 30%, rgba(255,138,61,.45), transparent 60%), #100a14; }
.case-art--ecom    { background: radial-gradient(circle at 25% 25%, rgba(255,77,109,.45), transparent 60%), radial-gradient(circle at 75% 75%, rgba(255,138,61,.5), transparent 60%), #1a0d14; }
.case-art--fintech { background: radial-gradient(circle at 30% 50%, rgba(45,220,255,.45), transparent 60%), radial-gradient(circle at 80% 30%, rgba(124,92,255,.4), transparent 60%), #0a1018; }
.case-art--real    { background: radial-gradient(circle at 20% 80%, rgba(255,138,61,.45), transparent 60%), radial-gradient(circle at 80% 20%, rgba(124,92,255,.4), transparent 60%), #14100a; }
.case-art--fit     { background: radial-gradient(circle at 30% 30%, rgba(255,77,109,.5), transparent 60%), radial-gradient(circle at 70% 70%, rgba(45,220,255,.4), transparent 60%), #0d0d14; }
.case-art--saas    { background: radial-gradient(circle at 50% 50%, rgba(124,92,255,.4), transparent 60%), linear-gradient(135deg, #0d0d14, #14141c); }
.case-art--food    { background: radial-gradient(circle at 30% 70%, rgba(255,138,61,.55), transparent 60%), radial-gradient(circle at 70% 30%, rgba(255,77,109,.45), transparent 60%), #14100a; }

/* Decorative monogram in the bottom-right of each case */
.case .case-mono {
  position: absolute;
  bottom: 14px; right: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 14vw, 160px);
  line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  pointer-events: none;
  z-index: 1;
}

/* ---- Hero showcase mini-mockups (replace stock images in floating cards) ---- */
.showcase-card .mini-mockup {
  position: absolute; inset: 0;
  padding: 14px;
  display: flex; flex-direction: column;
  gap: 8px;
  background: linear-gradient(160deg, #0d0d14, #07070b);
  color: var(--text);
  overflow: hidden;
}
.showcase-card .mini-mockup::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(220px 100px at 30% 0%, rgba(124,92,255,.28), transparent 60%),
    radial-gradient(220px 100px at 70% 100%, rgba(255,77,109,.22), transparent 60%);
  pointer-events: none;
}
.showcase-card .mm-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
}
.showcase-card .mm-head .mm-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--grad-brand); }
.showcase-card .mm-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.showcase-card .mm-card .mm-cat { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.showcase-card .mm-card .mm-line { height: 6px; background: rgba(255,255,255,.14); border-radius: 3px; }
.showcase-card .mm-card .mm-line.s { width: 60%; }
.showcase-card .mm-bar {
  height: 28px; border-radius: 8px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 10px; font-weight: 700; color: #fff;
}
.showcase-card .mm-stat {
  margin-top: auto;
  display: flex; gap: 8px;
}
.showcase-card .mm-stat > div {
  flex: 1; padding: 8px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 8px; text-align: center;
}
.showcase-card .mm-stat strong {
  font-family: var(--font-display); font-weight: 800;
  font-size: 13px; letter-spacing: -.02em; display: block;
}
.showcase-card .mm-stat small { font-size: 8px; color: var(--text-muted); letter-spacing: .06em; }

/* AI chat variant */
.showcase-card .mm-ai .mm-bubble {
  font-size: 10px; line-height: 1.4;
  padding: 8px 10px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  max-width: 88%;
}
.showcase-card .mm-ai .mm-bubble.user {
  align-self: flex-end;
  background: var(--grad-brand);
  color: #fff;
}

/* Web showcase (3rd card is wider) */
.showcase-card .mm-web {
  padding: 0;
  background: #0d0d14;
}
.showcase-card .mm-web .mm-chrome {
  display: flex; gap: 4px; padding: 8px 10px;
  background: #14141c; border-bottom: 1px solid var(--border);
}
.showcase-card .mm-web .mm-chrome span { width: 7px; height: 7px; border-radius: 50%; }
.showcase-card .mm-web .mm-chrome span:nth-child(1){ background:#ff5f57; }
.showcase-card .mm-web .mm-chrome span:nth-child(2){ background:#febc2e; }
.showcase-card .mm-web .mm-chrome span:nth-child(3){ background:#28c840; }
.showcase-card .mm-web .mm-page {
  padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.showcase-card .mm-web .mm-hero {
  grid-column: span 2;
  height: 60px; border-radius: 8px;
  background: radial-gradient(200px 80px at 50% 50%, rgba(124,92,255,.5), rgba(255,77,109,.3));
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  background-clip: padding-box;
}
.showcase-card .mm-web .mm-tile {
  height: 36px; border-radius: 6px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
}

/* ---- Team monogram cards (no photos) ---- */
.team-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, #14141c, #0a0a12);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  display: flex; flex-direction: column;
  padding: 28px;
}
.team-tile::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 200px at 100% 0%, rgba(124,92,255,.20), transparent 60%),
    radial-gradient(500px 200px at 0% 100%, rgba(255,77,109,.16), transparent 60%);
  pointer-events: none;
}
.team-tile .team-initials {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 7vw, 6rem);
  letter-spacing: -.04em;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin: auto auto 0;
  text-align: center;
}
.team-tile .team-tag {
  position: relative; z-index: 1;
  align-self: flex-start;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-soft);
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: rgba(7,7,11,.55);
  backdrop-filter: blur(6px);
}
.team-tile .team-meta {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-top: 22px;
  text-align: center;
}
.team-tile .team-meta strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
}
.team-tile .team-meta small { color: var(--text-muted); font-size: 13px; }

/* ---- About / vision composition ---- */
.vision-composition {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(124,92,255,.28), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(255,77,109,.22), transparent 60%),
    linear-gradient(160deg, #14141c, #07070b);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.vision-composition .vc-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -.035em;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.vision-composition .vc-label {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted);
}
.vision-composition .vc-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.vision-composition .vc-pill {
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  text-align: center;
}
.vision-composition .vc-pill strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}
.vision-composition .vc-pill small { color: var(--text-muted); font-size: 11px; }

/* Reduced motion ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
