/* =========================================================
   Jayden — Frontend & UI Developer
   Dark, neon, interactive single-page site
   ========================================================= */

:root {
  --bg: #07070a;
  --bg-soft: #0c0c12;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f5f7;
  --text-dim: #9a9aa3;
  --text-faint: #5e5e68;

  --mint: #00ffd1;
  --purple: #c084fc;
  --pink: #ff4d8d;

  --grad: linear-gradient(135deg, #00ffd1 0%, #c084fc 50%, #ff4d8d 100%);
  --grad-soft: linear-gradient(135deg, rgba(0,255,209,.18), rgba(192,132,252,.18), rgba(255,77,141,.18));

  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(192,132,252,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(0,255,209,0.08), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(255,77,141,0.10), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection {
  background: rgba(0, 255, 209, 0.3);
  color: #fff;
}

/* ---------- Background canvas ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}

/* ---------- Mouse spotlight ---------- */
.spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,132,252,0.18), rgba(0,255,209,0.06) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transition: opacity .3s ease;
  opacity: 0;
}

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0, 255, 209, 0.55);
  transition: width .25s var(--ease), height .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease),
              opacity .25s ease;
  backdrop-filter: blur(2px);
  opacity: 0;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: #fff;
  opacity: 0;
}
.cursor.hover {
  width: 60px; height: 60px;
  background: rgba(192, 132, 252, 0.15);
  border-color: rgba(255, 77, 141, 0.7);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot, .spotlight { display: none !important; }
  body { cursor: auto; }
}
@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 14px 10px 18px;
  background: rgba(12, 12, 18, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 999px;
  z-index: 50;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  max-width: calc(100vw - 28px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--text);
}
.brand-mark { display: inline-flex; }
.brand-name { white-space: nowrap; }

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  position: relative;
  padding: 8px 14px;
  font-size: 13.5px;
  color: var(--text-dim);
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--text); background: var(--surface); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,255,209,0.18), rgba(192,132,252,0.18));
  border: 1px solid rgba(192,132,252,0.35);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.nav-cta:hover {
  border-color: rgba(0,255,209,0.6);
  box-shadow: 0 0 0 4px rgba(0,255,209,0.08), 0 10px 30px rgba(0,255,209,0.15);
}

.dot-live {
  width: 7px; height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--mint);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ---------- Layout ---------- */
main { position: relative; z-index: 2; }

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 24px;
}
.section-head { margin-bottom: 64px; max-width: 700px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .section-lede { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--mint);
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(0,255,209,0.25);
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(0,255,209,0.04);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.section-lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  margin: 0;
  max-width: 540px;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: grad-shift 8s ease-in-out infinite;
}
@keyframes grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  isolation: isolate;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* Hero floating decoration cards */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.deco-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(12,12,18,0.75), rgba(20,20,28,0.6));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 12px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.03);
  opacity: 0;
  transform: rotate(var(--rot, 0deg));
  animation:
    deco-fade-in 1.4s var(--ease) forwards,
    deco-float 11s ease-in-out infinite;
}
.deco-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(192,132,252,0.3), rgba(0,255,209,0.3), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .6;
  pointer-events: none;
}

.deco-card-1 {
  top: 13%;
  left: 3%;
  width: 210px;
  --rot: -8deg;
  animation-delay: 0s, 0s;
}
.deco-card-2 {
  top: 22%;
  right: 3%;
  width: 220px;
  --rot: 7deg;
  animation-delay: .2s, 1.5s;
}
.deco-card-3 {
  bottom: 22%;
  left: 5%;
  width: 200px;
  --rot: 4deg;
  animation-delay: .4s, 3s;
}

@keyframes deco-fade-in {
  from { opacity: 0; }
  to { opacity: 0.85; }
}
@keyframes deco-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(calc(var(--rot, 0deg) + 1deg)); }
}

/* Card 1 — browser snippet */
.deco-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  margin: -4px -4px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.deco-bar .deco-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.deco-bar .deco-dot:nth-child(1) { background: #ff5f57; }
.deco-bar .deco-dot:nth-child(2) { background: #febc2e; }
.deco-bar .deco-dot:nth-child(3) { background: #28c840; }
.deco-url {
  flex: 1;
  height: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  margin-left: 6px;
}
.deco-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 4px;
}
.deco-line {
  height: 7px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.deco-line.w-40 { width: 40%; }
.deco-line.w-50 { width: 50%; }
.deco-line.w-60 { width: 60%; }
.deco-line.w-70 { width: 70%; }
.deco-line.w-80 { width: 80%; }
.deco-line.w-90 { width: 90%; }

/* Card 2 — chart preview */
.deco-body-chart { gap: 10px; }
.deco-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.deco-label .deco-line { flex: 1; }
.deco-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mint);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.deco-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  padding: 4px 2px 0;
}
.deco-cbar {
  flex: 1;
  background: linear-gradient(to top, rgba(0,255,209,0.6), rgba(192,132,252,0.6));
  border-radius: 3px 3px 0 0;
  min-height: 6px;
}

/* Card 3 — checklist */
.deco-body-rows { gap: 9px; padding: 6px 4px; }
.deco-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.deco-row .deco-line { flex: 1; }
.deco-check {
  width: 13px; height: 13px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  position: relative;
}
.deco-check.filled {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 0 10px rgba(0,255,209,0.4);
}
.deco-check.filled::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 2.5px;
  border-left: 1.5px solid #07070a;
  border-bottom: 1.5px solid #07070a;
  transform: translate(-50%, -70%) rotate(-45deg);
}

/* Hide deco cards on smaller viewports where they'd clutter */
@media (max-width: 1100px) {
  .deco-card { display: none; }
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0,255,209,0.06);
  border: 1px solid rgba(0,255,209,0.25);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--mint);
}
.status-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 8px 0 0;
}
.hero-title .line { display: block; }
.type {
  font-family: var(--font-display);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.caret {
  display: inline-block;
  color: var(--mint);
  animation: blink 1s steps(1) infinite;
  font-weight: 400;
  margin-left: 2px;
}
@keyframes blink {
  50% { opacity: 0; }
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 6px auto 0;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1px solid var(--border-strong);
  transition: transform .25s var(--ease), border-color .25s var(--ease),
              background .25s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn-lg { padding: 18px 28px; font-size: 16px; }

.btn-primary {
  background: var(--grad);
  border: 1px solid transparent;
  color: #07070a;
  font-weight: 600;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  filter: blur(20px);
  opacity: .45;
  z-index: -1;
  transition: opacity .3s var(--ease);
}
.btn-primary:hover {
  box-shadow: 0 0 0 4px rgba(192,132,252,.15), 0 20px 60px rgba(0,255,209,.25);
}
.btn-primary:hover::before { opacity: .8; }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: rgba(192,132,252,0.45);
}

/* Hero meta */
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 16px 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(12,12,18,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.02);
  position: relative;
}
.hero-meta::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,255,209,0.25), transparent 40%, transparent 60%, rgba(192,132,252,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,255,209,0.1), rgba(192,132,252,0.1));
  border: 1px solid rgba(0,255,209,0.2);
  color: var(--mint);
  flex-shrink: 0;
}
.meta-item:hover .meta-icon { color: #c084fc; }
.meta-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
}
.meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: .1em;
  text-transform: uppercase;
  align-self: flex-end;
  padding-bottom: 1px;
  margin-left: -4px;
}
.meta-divider {
  width: 1px; height: 28px;
  background: var(--border);
}

@media (max-width: 880px) {
  .hero-meta { gap: 18px; padding: 14px 22px; }
  .meta-label { display: none; }
}
@media (max-width: 600px) {
  .hero-meta {
    flex-direction: column;
    gap: 12px;
    padding: 18px 24px;
    border-radius: 22px;
  }
  .meta-item { width: 100%; justify-content: flex-start; }
  .meta-label { display: inline-flex; }
  .meta-divider { width: 100%; height: 1px; }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  opacity: .7;
  transition: opacity .25s var(--ease);
}
.scroll-hint span {
  width: 3px; height: 8px; border-radius: 2px;
  background: var(--mint);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
.scroll-hint:hover { opacity: 1; }
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(12,12,18,0.4);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  color: var(--text-dim);
  letter-spacing: -0.01em;
}
.marquee-track span:nth-child(even) {
  color: var(--mint);
  opacity: .55;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ---------- Cards (Services) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.card {
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease),
              background .35s var(--ease);
  transform-style: preserve-3d;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
              rgba(192,132,252,0.10), transparent 40%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.card:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.card:hover::before { opacity: 1; }

.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(0,255,209,.6), rgba(192,132,252,.6), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.card:hover .card-glow { opacity: 1; }

/* Service card header — icon + number */
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,255,209,0.12), rgba(192,132,252,0.12));
  border: 1px solid rgba(192,132,252,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  transition: transform .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,209,0.2), rgba(255,77,141,0.2));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.card:hover .card-icon {
  border-color: rgba(0,255,209,0.5);
  color: #c084fc;
  transform: translateY(-2px) rotate(-3deg);
}
.card:hover .card-icon::before { opacity: 1; }
.card-icon svg {
  width: 30px; height: 30px;
  position: relative; z-index: 1;
}
.card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--text-faint);
  margin: 0;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  line-height: 1.1;
}
.card-body {
  color: var(--text-dim);
  margin: 0 0 24px;
  font-size: 15px;
}
.card-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.card-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text);
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(0,255,209,.6);
}

/* Service card footer — timeline / pricing / best-for */
.card-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  position: relative;
}
.card-foot::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,209,0.4), rgba(192,132,252,0.4), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.card:hover .card-foot::before { opacity: 1; }
.card-foot-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.card-foot-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.card-foot-val {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}
@media (max-width: 480px) {
  .card-foot { grid-template-columns: 1fr; gap: 14px; }
  .card-foot-item { flex-direction: row; justify-content: space-between; align-items: baseline; }
}

/* ---------- Showcase (browser-frame cards) ---------- */
.showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .showcase { grid-template-columns: 1fr; gap: 24px; }
}

.show-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.show-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(0,255,209,.5), rgba(192,132,252,.5), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.show-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 60px -20px rgba(192,132,252,0.15);
}
.show-card:hover::before { opacity: 1; }

/* Browser chrome */
.show-browser {
  background: #15151c;
  position: relative;
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #1a1a22;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 14px;
  position: relative;
}
.browser-dots { display: inline-flex; gap: 6px; }
.browser-dots i {
  width: 11px; height: 11px; border-radius: 50%;
  background: #3a3a44;
  display: block;
}
.browser-dots i:nth-child(1) { background: #ff5f57; }
.browser-dots i:nth-child(2) { background: #febc2e; }
.browser-dots i:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  background: #25252e;
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
  margin: 0 auto;
}

/* Preview viewport */
.show-preview {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  transition: transform .8s var(--ease);
}
.show-card:hover .show-preview { transform: scale(1.02); }

/* Card footer info */
.show-info {
  padding: 22px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.show-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--mint);
  text-transform: uppercase;
}
.show-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.show-row h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--text);
}
.show-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s var(--ease), gap .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.show-card:hover .show-link { color: var(--mint); gap: 12px; }

/* =========================================================
   PREVIEW 1 — Northbay Plumbing
   ========================================================= */
.preview-northbay {
  background: #f7f3ec;
  font-family: 'Inter', sans-serif;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.preview-northbay .pn-nav {
  background: #0e2a47;
  color: #f7f3ec;
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
}
.preview-northbay .pn-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.preview-northbay .pn-logo i {
  width: 16px; height: 16px;
  background: #f97316;
  color: #0e2a47;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
}
.preview-northbay .pn-phone {
  background: #f97316;
  color: #0e2a47;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 9px;
}
.preview-northbay .pn-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  padding: 16px 14px 12px;
  align-items: center;
  flex: 1;
}
.preview-northbay .pn-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  color: #0e2a47;
  background: rgba(14,42,71,0.06);
  border: 1px solid rgba(14,42,71,0.15);
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 10px;
  font-weight: 500;
}
.preview-northbay .pn-badge i {
  width: 5px; height: 5px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 4px #16a34a;
}
.preview-northbay h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  line-height: 1.02;
  color: #0a1a2e;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.preview-northbay h5 em { color: #f97316; font-style: normal; }
.preview-northbay .pn-sub {
  font-size: 8.5px;
  color: #5b6b80;
  margin: 0 0 10px;
  line-height: 1.4;
}
.preview-northbay .pn-cta-row { display: inline-flex; gap: 6px; align-items: center; }
.preview-northbay .pn-cta {
  display: inline-block;
  background: #f97316;
  color: #0e2a47;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
  box-shadow: 0 4px 10px -2px rgba(249,115,22,0.4);
}
.preview-northbay .pn-cta-ghost {
  display: inline-block;
  border: 1px solid #0e2a47;
  color: #0e2a47;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 600;
}
.preview-northbay .pn-image {
  aspect-ratio: 1/1.05;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14,42,71,0.1), transparent 60%),
    url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?w=400&q=80&auto=format&fit=crop') center/cover,
    linear-gradient(135deg, #2a4566 0%, #0e2a47 100%);
  box-shadow: 0 8px 18px -8px rgba(14,42,71,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.preview-northbay .pn-trust {
  background: #0e2a47;
  color: #f7f3ec;
  padding: 7px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  border-top: 1px solid rgba(249,115,22,0.3);
}
.preview-northbay .pn-trust span:first-child { color: #f97316; }
.preview-northbay .pn-trust b { color: #f7f3ec; font-weight: 600; }

/* =========================================================
   PREVIEW 2 — Loop
   ========================================================= */
.preview-loop {
  background: #fafaf9;
  font-family: 'Inter', sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
}
.preview-loop::before {
  content: '';
  position: absolute;
  top: 55%; left: 30%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(109,216,180,0.25), transparent 60%);
  pointer-events: none;
}
.preview-loop .pl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 10px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.preview-loop .pl-logo {
  font-weight: 600;
  font-size: 12px;
  color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.02em;
}
.preview-loop .pl-logo i {
  width: 12px; height: 12px;
  border: 2px solid #1f1f1f;
  border-radius: 50%;
  position: relative;
}
.preview-loop .pl-logo i::before {
  content: '';
  position: absolute;
  top: -2px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #2fa980;
}
.preview-loop .pl-menu {
  display: inline-flex;
  gap: 12px;
  font-size: 8.5px;
  color: #6b6b66;
}
.preview-loop .pl-cta {
  background: #1f1f1f;
  color: #fafaf9;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 500;
}
.preview-loop .pl-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 18px 8px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.preview-loop .pl-text { text-align: left; }
.preview-loop .pl-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  background: white;
  border: 1px solid #e8e6e1;
  border-radius: 999px;
  padding: 3px 8px;
  color: #6b6b66;
  margin-bottom: 8px;
}
.preview-loop .pl-pill i {
  width: 5px; height: 5px;
  background: #2fa980;
  border-radius: 50%;
  box-shadow: 0 0 4px #2fa980;
}
.preview-loop h5 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 26px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #1f1f1f;
  margin: 0 0 8px;
  font-weight: 400;
}
.preview-loop h5 em {
  color: #2fa980;
  font-style: italic;
  display: block;
}
.preview-loop .pl-sub {
  font-size: 8.5px;
  color: #6b6b66;
  margin: 0 0 10px;
  line-height: 1.4;
}
.preview-loop .pl-form {
  display: inline-flex;
  background: white;
  border: 1px solid #e8e6e1;
  border-radius: 999px;
  padding: 3px;
  font-size: 9px;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.preview-loop .pl-input {
  padding: 5px 10px;
  color: #a5a59f;
}
.preview-loop .pl-btn {
  background: #1f1f1f;
  color: #fafaf9;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 500;
}

/* Phone mockup */
.preview-loop .pl-phone {
  aspect-ratio: 9/16;
  max-width: 90px;
  margin-left: auto;
  background: #1f1f1f;
  border-radius: 14px;
  padding: 4px;
  position: relative;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.preview-loop .pl-notch {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 4px;
  background: #000;
  border-radius: 0 0 6px 6px;
  z-index: 2;
}
.preview-loop .pl-screen {
  background: #fafaf9;
  border-radius: 11px;
  height: 100%;
  padding: 12px 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.preview-loop .pl-greet {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 11px;
  color: #1f1f1f;
  text-align: center;
  margin-bottom: 4px;
  font-weight: 500;
}
.preview-loop .pl-habit {
  display: flex;
  align-items: center;
  gap: 4px;
  background: white;
  border: 1px solid #e8e6e1;
  border-radius: 5px;
  padding: 4px 5px;
  font-size: 6.5px;
  color: #1f1f1f;
}
.preview-loop .pl-habit i {
  width: 8px; height: 8px;
  border: 1.2px solid #d4d4d0;
  border-radius: 50%;
  flex-shrink: 0;
}
.preview-loop .pl-habit.done {
  background: rgba(47,169,128,0.08);
  border-color: rgba(47,169,128,0.3);
}
.preview-loop .pl-habit.done i {
  background: #2fa980;
  border-color: #2fa980;
  position: relative;
}
.preview-loop .pl-habit.done i::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-60%, -55%) rotate(-45deg);
  width: 4px; height: 1.5px;
  border-left: 1.2px solid white;
  border-bottom: 1.2px solid white;
}
.preview-loop .pl-habit.done span {
  text-decoration: line-through;
  color: #6b6b66;
}

/* =========================================================
   PREVIEW 3 — Meridian Strategy
   ========================================================= */
.preview-meridian {
  background: #f5f1e8;
  font-family: 'Inter', sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
}
.preview-meridian::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,83,45,0.08), transparent 70%);
  pointer-events: none;
}
.preview-meridian .pm-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-bottom: 1px solid #d8d0bc;
  font-size: 9px;
  background: #faf7ef;
}
.preview-meridian .pm-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  color: #14532d;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.preview-meridian .pm-logo i {
  color: #b08545;
  font-style: normal;
}
.preview-meridian .pm-menu {
  display: inline-flex;
  justify-content: center;
  gap: 12px;
  font-size: 8.5px;
  color: #67705f;
}
.preview-meridian .pm-cta {
  background: #14532d;
  color: #faf7ef;
  padding: 5px 11px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 500;
  justify-self: end;
}
.preview-meridian .pm-body {
  padding: 18px 20px 14px;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.preview-meridian .pm-text { display: flex; flex-direction: column; }
.preview-meridian .pm-eyebrow {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #b08545;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}
.preview-meridian h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  line-height: 1;
  color: #1a2a1f;
  margin: 0 0 6px;
  font-weight: 500;
  letter-spacing: -0.005em;
  max-width: 95%;
}
.preview-meridian h5 em {
  color: #14532d;
  font-style: italic;
}
.preview-meridian .pm-sub {
  font-size: 8.5px;
  color: #67705f;
  margin: 0 0 10px;
  line-height: 1.4;
}
.preview-meridian .pm-cta-row {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.preview-meridian .pm-btn {
  background: #14532d;
  color: #faf7ef;
  padding: 5px 11px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  box-shadow: 0 4px 10px -2px rgba(20,83,45,0.3);
}
.preview-meridian .pm-btn-ghost {
  color: #14532d;
  font-size: 9px;
  font-weight: 500;
  border-bottom: 1px solid #14532d;
  padding: 2px 0;
}
.preview-meridian .pm-stats {
  display: flex;
  align-items: center;
  background: #faf7ef;
  border: 1px solid #d8d0bc;
  border-radius: 6px;
  padding: 8px 14px;
  gap: 12px;
  align-self: flex-start;
}
.preview-meridian .pm-stats > div:not(.pm-divider) { display: flex; flex-direction: column; line-height: 1; }
.preview-meridian .pm-stats b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #14532d;
  font-weight: 600;
  margin-bottom: 3px;
}
.preview-meridian .pm-stats span {
  font-size: 7.5px;
  color: #67705f;
  letter-spacing: 0.02em;
}
.preview-meridian .pm-divider {
  width: 1px;
  height: 22px;
  background: #d8d0bc;
}

/* =========================================================
   PREVIEW 4 — Ember Coffee Co.
   ========================================================= */
.preview-ember {
  background: #faf6f0;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
}
.preview-ember .pe-announce {
  background: #d97706;
  color: #2c1810;
  text-align: center;
  font-size: 8.5px;
  padding: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.preview-ember .pe-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 9px 16px;
  border-bottom: 1px solid #e6dcc7;
  font-size: 9px;
}
.preview-ember .pe-link { color: #3d2818; justify-self: start; font-size: 8.5px; }
.preview-ember .pe-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px;
  color: #2c1810;
  text-align: center;
  line-height: 1;
}
.preview-ember .pe-logo small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 6px;
  letter-spacing: 0.3em;
  color: #d97706;
  margin-top: 2px;
  font-weight: 600;
}
.preview-ember .pe-cart {
  justify-self: end;
  background: #faf6f0;
  border: 1px solid #e6dcc7;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 8.5px;
}
.preview-ember .pe-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
  padding: 14px 16px 14px;
  align-items: center;
  flex: 1;
}
.preview-ember .pe-left { display: flex; flex-direction: column; }
.preview-ember .pe-eyebrow {
  font-size: 7.5px;
  letter-spacing: 0.22em;
  color: #d97706;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}
.preview-ember h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 21px;
  line-height: 1;
  color: #1c0f08;
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.preview-ember h5 em {
  color: #d97706;
  font-style: italic;
}
.preview-ember .pe-sub {
  font-size: 8.5px;
  color: #7a6754;
  margin: 0 0 10px;
  line-height: 1.4;
}
.preview-ember .pe-cta-row {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.preview-ember .pe-cta {
  display: inline-block;
  background: #2c1810;
  color: #faf6f0;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  box-shadow: 0 4px 10px -2px rgba(44,24,16,0.3);
}
.preview-ember .pe-cta-ghost {
  display: inline-block;
  color: #2c1810;
  border: 1px solid #2c1810;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 500;
}

/* Product card — REAL coffee photo */
.preview-ember .pe-product {
  background: #fff;
  border: 1px solid #e6dcc7;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px -10px rgba(44,24,16,0.2);
  display: flex;
  flex-direction: column;
}
.preview-ember .pe-product-img {
  aspect-ratio: 1/1;
  background:
    linear-gradient(180deg, transparent 50%, rgba(28,15,8,0.25) 100%),
    url('https://images.unsplash.com/photo-1559056199-641a0ac8b55e?w=400&q=80&auto=format&fit=crop') center/cover,
    radial-gradient(circle at 50% 50%, #6b3a1f, #2c1810);
  position: relative;
}
.preview-ember .pe-product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,0.15));
}
.preview-ember .pe-product-info {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.preview-ember .pe-product-tag {
  font-size: 6.5px;
  letter-spacing: 0.14em;
  color: #d97706;
  font-weight: 700;
}
.preview-ember .pe-product-info strong {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 12px;
  color: #1c0f08;
  font-weight: 400;
  line-height: 1.1;
}
.preview-ember .pe-product-meta {
  font-size: 7.5px;
  color: #7a6754;
}

/* ---------- Timeline / Process ---------- */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  position: relative;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 54px;
  top: 50px;
  bottom: 50px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(0,255,209,0.45) 8%,
    rgba(192,132,252,0.5) 50%,
    rgba(255,77,141,0.45) 92%,
    transparent);
  z-index: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: stretch;
  gap: 22px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,209,0.04), transparent 40%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.step:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
  transform: translateX(4px);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
}
.step:hover::before { opacity: 1; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  background: rgba(12,12,18,0.85);
  border: 1px solid var(--border-strong);
  background-image: var(--grad-soft);
  color: var(--text);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  align-self: start;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,255,209,0.5), rgba(192,132,252,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.step:hover .step-num::after { opacity: 1; }
.step-body { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.step-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.step-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(0,255,209,0.08);
  border: 1px solid rgba(0,255,209,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  flex-shrink: 0;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.step:hover .step-icon {
  background: rgba(192,132,252,0.12);
  border-color: rgba(192,132,252,0.4);
  color: #c084fc;
}
.step h4 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.step-time {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--mint);
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid rgba(0,255,209,0.3);
  border-radius: 999px;
  background: rgba(0,255,209,0.04);
}
.step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
}
.step-deliverable {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  padding: 10px 14px;
  background: rgba(0,255,209,0.04);
  border: 1px solid rgba(0,255,209,0.15);
  border-radius: 10px;
  margin-top: 4px;
}
.step-deliverable i {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grad);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0,255,209,0.4);
}
.step-deliverable i::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 3px;
  border-left: 1.5px solid #07070a;
  border-bottom: 1.5px solid #07070a;
  transform: translate(-50%, -70%) rotate(-45deg);
}

@media (max-width: 560px) {
  .timeline::before { left: 44px; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 22px; }
  .step-num { width: 44px; height: 44px; font-size: 16px; border-radius: 12px; }
  .step-head { gap: 8px; }
  .step-time { font-size: 10px; padding: 4px 9px; }
}

/* ---------- Testimonials / Vouches ---------- */
.vouches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .vouches { grid-template-columns: 1fr; max-width: 640px; }
}

.vouch {
  position: relative;
  padding: 36px 30px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
  overflow: hidden;
}
.vouch::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px circle at 100% 0%, rgba(192,132,252,0.07), transparent 50%),
    radial-gradient(420px circle at 0% 100%, rgba(0,255,209,0.05), transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.vouch:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
  border-color: var(--border-strong);
  box-shadow: 0 28px 60px -20px rgba(0,0,0,0.45);
}
.vouch:hover::before { opacity: 1; }

.vouch-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(0,255,209,.55), rgba(192,132,252,.55), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.vouch:hover .vouch-glow { opacity: 1; }

.vouch-quote-mark {
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: 'Space Grotesk', serif;
  font-size: 110px;
  line-height: 1;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.18;
  pointer-events: none;
  font-weight: 700;
}

.vouch-stars {
  color: var(--mint);
  font-size: 16px;
  letter-spacing: 4px;
  text-shadow: 0 0 8px rgba(0,255,209,0.4);
  position: relative;
  z-index: 1;
}

.vouch-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.vouch-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.vouch-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(192,132,252,0.3);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3), 0 0 0 3px rgba(12,12,18,0.6);
}
.vouch-avatar-1 {
  background-image:
    linear-gradient(135deg, rgba(0,255,209,0.15), transparent),
    url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=200&q=85&auto=format&fit=crop');
}
.vouch-avatar-2 {
  background-image:
    linear-gradient(135deg, rgba(192,132,252,0.15), transparent),
    url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=200&q=85&auto=format&fit=crop');
}
.vouch-avatar-3 {
  background-image:
    linear-gradient(135deg, rgba(255,77,141,0.15), transparent),
    url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=200&q=85&auto=format&fit=crop');
}

.vouch-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.vouch-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.vouch-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  text-transform: lowercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vouch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  color: var(--mint);
  background: rgba(0,255,209,0.08);
  border: 1px solid rgba(0,255,209,0.3);
  flex-shrink: 0;
}

/* ---------- Contact ---------- */
.section-contact { padding-bottom: 60px; }
.contact-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(192,132,252,0.16), transparent 60%),
    radial-gradient(600px 300px at 50% 100%, rgba(0,255,209,0.10), transparent 60%),
    var(--surface);
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,255,209,.5), rgba(192,132,252,.5), rgba(255,77,141,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .5;
  pointer-events: none;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 16px 0 14px;
}
.contact-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin: 0 0 32px;
}
.contact-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
}
.footer-inner {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-dot { opacity: .5; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
