/* ============= CLOUDSTONE IT — DESIGN TOKENS ============= */
:root {
  /* Logo gradient stops */
  --c-cyan: #7DDFEA;
  --c-indigo: #3F37D9;
  --c-violet: #7B3DD8;
  --c-magenta: #B43FCC;
  --c-coral: #F26A3F;

  /* Neutrals (warm-cool, slight violet undertone) */
  --bg: #FAFAFB;
  --bg-2: #F4F2F8;
  --bg-3: #EEEAF4;
  --surface: #FFFFFF;
  --ink: #0A0613;
  --ink-2: #2A2435;
  --muted: #6B6478;
  --muted-2: #98919E;
  --line: rgba(10, 6, 19, 0.08);
  --line-2: rgba(10, 6, 19, 0.04);

  /* Brand gradient (canonical) */
  --grad-brand: linear-gradient(120deg, #3F37D9 0%, #7B3DD8 35%, #B43FCC 65%, #F26A3F 100%);
  --grad-soft: linear-gradient(120deg, rgba(63,55,217,.08) 0%, rgba(123,61,216,.06) 50%, rgba(242,106,63,.08) 100%);
  --grad-text: linear-gradient(95deg, #3F37D9 0%, #7B3DD8 50%, #F26A3F 100%);
  --grad-cyan: linear-gradient(120deg, #7DDFEA 0%, #3F37D9 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(10, 6, 19, 0.04), 0 1px 2px rgba(10, 6, 19, 0.06);
  --shadow: 0 12px 32px -8px rgba(63, 55, 217, 0.10), 0 4px 12px rgba(10, 6, 19, 0.04);
  --shadow-lg: 0 32px 80px -20px rgba(63, 55, 217, 0.25), 0 8px 24px rgba(10, 6, 19, 0.06);
  --shadow-glow: 0 30px 100px -10px rgba(123, 61, 216, 0.45), 0 10px 40px rgba(242, 106, 63, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}
.mono { font-family: 'Geist Mono', ui-monospace, 'SF Mono', monospace; }

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

/* ============= LAYOUT ============= */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 8px rgba(123,61,216,.6);
}

.h-display {
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.h-1 { font-size: clamp(36px, 4.4vw, 64px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; }
.h-2 { font-size: clamp(28px, 2.8vw, 40px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 600; }
.h-3 { font-size: 22px; line-height: 1.2; letter-spacing: -0.015em; font-weight: 600; }

.text-grad {
  background: var(--grad-text);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

.lead { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 56ch; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-brand);
  color: white;
  box-shadow: 0 10px 30px -8px rgba(123,61,216,.6), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(123,61,216,.7), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: white; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============= NAV ============= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 26px 0;
  transition: backdrop-filter .3s, background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,250,251,.72);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
  padding: 18px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-brand { display: flex; align-items: center; gap: 14px; font-weight: 600; letter-spacing: -.02em; font-size: 22px; }
.nav-brand img { width: 48px; height: 48px; object-fit: contain; }
.nav-brand span small { display: block; font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 10px 18px; border-radius: 999px; font-size: 16px; color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--bg-3); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(180,63,204,.18), transparent 60%),
    radial-gradient(50% 50% at 10% 30%, rgba(63,55,217,.14), transparent 60%),
    radial-gradient(40% 40% at 70% 90%, rgba(242,106,63,.16), transparent 60%),
    radial-gradient(30% 30% at 25% 75%, rgba(125,223,234,.14), transparent 60%);
  filter: blur(20px);
  animation: meshShift 18s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.12) translate(-2%, 1%); }
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(10,6,19,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,6,19,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
}
.hero-cursor-orb {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,61,216,.18) 0%, rgba(242,106,63,.10) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  transform: translate(-50%, -50%);
  top: 0; left: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}
.hero-copy > * + * { margin-top: 24px; }
.hero h1 { font-size: clamp(48px, 6.2vw, 88px); line-height: 1.0; letter-spacing: -0.04em; font-weight: 600; }
.hero h1 .line { display: block; }
.hero h1 .accent { font-style: italic; font-weight: 500; }

.hero-meta { display: flex; gap: 32px; padding-top: 8px; border-top: 1px solid var(--line); margin-top: 36px; }
.hero-meta-item { }
.hero-meta-item .v { font-size: 28px; font-weight: 600; letter-spacing: -.02em; }
.hero-meta-item .v .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-meta-item .l { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============= 3D PHONE ============= */
.phone-stage {
  position: relative;
  perspective: 1600px;
  display: flex; align-items: center; justify-content: center;
  min-height: 640px;
}
.phone-stage::before {
  content: '';
  position: absolute; width: 110%; aspect-ratio: 1; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(123,61,216,.35) 0%, rgba(242,106,63,.18) 35%, transparent 65%);
  filter: blur(60px);
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity: .8; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.06); } }

.phone {
  position: relative;
  width: 320px;
  aspect-ratio: 9/19;
  transform-style: preserve-3d;
  animation: floatPhone 7s ease-in-out infinite;
  z-index: 2;
  filter: drop-shadow(0 60px 80px rgba(63,55,217,.35)) drop-shadow(0 30px 40px rgba(242,106,63,.18));
}
@keyframes floatPhone {
  0%,100% { transform: rotateY(-14deg) rotateX(6deg) translateY(0); }
  50% { transform: rotateY(-10deg) rotateX(8deg) translateY(-14px); }
}
.phone-frame {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #1A1623 0%, #0A0613 50%, #1A1623 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,.08),
    inset 0 2px 4px rgba(255,255,255,.10),
    inset 0 -2px 4px rgba(0,0,0,.4);
}
.phone-screen {
  position: absolute; inset: 12px;
  background: #FFFFFF;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: inset 0 0 0 .5px rgba(0,0,0,.3);
}
.phone-notch {
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #0A0613;
  border-radius: 999px;
  z-index: 5;
}
.phone-side {
  position: absolute; right: -3px; width: 3px;
  background: linear-gradient(90deg, #2A2435, #0A0613);
  border-radius: 2px;
}
.phone-side.s1 { top: 100px; height: 30px; }
.phone-side.s2 { top: 150px; height: 60px; }
.phone-side.s3 { top: 220px; height: 60px; }

/* App UI inside phone */
.app {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #FAFAFB 0%, #F4F2F8 100%);
  display: flex; flex-direction: column;
  font-size: 11px;
}
.app-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 22px 4px; font-size: 11px; font-weight: 600;
  color: #0A0613;
}
.app-status .right { display: flex; gap: 4px; align-items: center; }
.app-status .right svg { width: 14px; height: 10px; }

.app-header { padding: 36px 18px 14px; }
.app-greet { font-size: 11px; color: var(--muted); font-family: 'Geist Mono', monospace; letter-spacing: .04em; }
.app-name { font-size: 18px; font-weight: 600; letter-spacing: -.02em; margin-top: 2px; color: var(--ink); }
.app-balance-card {
  margin: 14px 18px 0;
  padding: 16px;
  border-radius: 18px;
  background: var(--grad-brand);
  color: white;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 24px -8px rgba(123,61,216,.4);
}
.app-balance-card::before {
  content: ''; position: absolute; right: -30px; top: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%);
  border-radius: 50%;
}
.app-balance-card .l { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; font-family: 'Geist Mono', monospace; }
.app-balance-card .v { font-size: 24px; font-weight: 600; letter-spacing: -.02em; margin-top: 4px; }
.app-balance-card .delta { font-size: 10px; opacity: .9; margin-top: 4px; display: flex; gap: 4px; align-items: center; }

.app-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; padding: 14px 18px 8px; }
.app-action {
  background: white; border-radius: 12px; padding: 10px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 9px; color: var(--ink-2);
  border: 1px solid var(--line-2);
}
.app-action-icon { width: 22px; height: 22px; border-radius: 8px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; color: var(--c-violet); }
.app-action-icon svg { width: 12px; height: 12px; }

.app-section-title { padding: 12px 18px 6px; font-size: 11px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.app-section-title small { font-size: 9px; color: var(--c-violet); font-family: 'Geist Mono', monospace; }

.app-tx-list { padding: 0 18px; display: flex; flex-direction: column; gap: 6px; }
.app-tx {
  display: flex; align-items: center; gap: 10px;
  background: white; border-radius: 12px; padding: 8px 10px;
  border: 1px solid var(--line-2);
}
.app-tx-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-tx-icon.v1 { background: linear-gradient(135deg, #7DDFEA, #3F37D9); color: white; }
.app-tx-icon.v2 { background: linear-gradient(135deg, #B43FCC, #F26A3F); color: white; }
.app-tx-icon.v3 { background: linear-gradient(135deg, #3F37D9, #7B3DD8); color: white; }
.app-tx-icon svg { width: 14px; height: 14px; }
.app-tx-meta { flex: 1; min-width: 0; }
.app-tx-meta .t { font-size: 11px; font-weight: 500; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-tx-meta .s { font-size: 9px; color: var(--muted); margin-top: 1px; }
.app-tx-amt { font-size: 11px; font-weight: 600; }
.app-tx-amt.pos { color: #1B8A4F; }
.app-tx-amt.neg { color: var(--ink); }

.app-nav {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 8px 16px 16px;
  border-top: 1px solid var(--line-2);
  background: rgba(255,255,255,.8); backdrop-filter: blur(10px);
}
.app-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 8px; color: var(--muted); }
.app-nav-item.active { color: var(--c-violet); }
.app-nav-item svg { width: 18px; height: 18px; }

/* Floating cards near phone */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 20px 50px -10px rgba(63,55,217,.20);
  z-index: 3;
  animation: floatCard 8s ease-in-out infinite;
}
.float-card.fc-1 {
  top: 12%; left: -12%;
  display: flex; align-items: center; gap: 10px;
}
.float-card.fc-2 {
  bottom: 18%; right: -10%;
  animation-delay: -3s;
}
.float-card.fc-3 {
  top: 50%; right: -22%;
  animation-delay: -1.5s;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fc-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; box-shadow: 0 8px 16px -4px rgba(123,61,216,.45); }
.fc-icon svg { width: 18px; height: 18px; }
.fc-meta .t { font-size: 12px; font-weight: 600; letter-spacing: -.01em; }
.fc-meta .s { font-size: 10px; color: var(--muted); font-family: 'Geist Mono', monospace; margin-top: 2px; }
.fc-bar { display: flex; align-items: end; gap: 3px; height: 32px; margin-top: 6px; }
.fc-bar span { width: 6px; background: var(--grad-brand); border-radius: 2px; }

/* ============= MARQUEE ============= */
.marquee-section { padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.marquee-label {
  text-align: center; font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 28px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 64px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; font-weight: 500; color: var(--ink-2);
  letter-spacing: -.015em;
  white-space: nowrap;
}
.marquee-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-brand); flex-shrink: 0; }
.marquee-item:hover { color: var(--c-violet); }

/* ============= SECTION GENERIC ============= */
.section { padding: 120px 0; position: relative; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.section-head .right { padding-bottom: 4px; }
.section-head h2 { max-width: 14ch; }

/* ============= STATS ============= */
.stats-section { padding: 100px 0; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; overflow: hidden; box-shadow: var(--shadow); }
.stat {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: background .35s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--bg-2); }
.stat::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.stat:hover::before { transform: scaleX(1); }
.stat .v { font-size: clamp(40px, 4vw, 56px); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.stat .v .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .l { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.stat .d { font-size: 14px; color: var(--ink-2); margin-top: 8px; line-height: 1.4; }

/* ============= SERVICES ============= */
.services-section { padding: 140px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(123,61,216,.2); }
.service-card.large { grid-column: span 6; min-height: 380px; }
.service-card.medium { grid-column: span 6; min-height: 320px; }
.service-card.small { grid-column: span 4; min-height: 280px; }
.service-card.featured {
  background: var(--grad-brand);
  color: white;
  border: none;
}
.service-card.featured .service-meta { color: rgba(255,255,255,.8); }
.service-card.featured .service-list li { color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.18); }

.service-num {
  position: absolute; top: 28px; right: 28px;
  font-family: 'Geist Mono', monospace; font-size: 12px;
  color: var(--muted-2); letter-spacing: .06em;
}
.service-card.featured .service-num { color: rgba(255,255,255,.6); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-violet);
  margin-bottom: 24px;
}
.service-card.featured .service-icon {
  background: rgba(255,255,255,.18);
  color: white;
  backdrop-filter: blur(10px);
}
.service-icon svg { width: 26px; height: 26px; }

.service-title { font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 8px; }
.service-card.large .service-title { font-size: 28px; }
.service-meta { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 36ch; }

.service-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 1px; }
.service-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
  transition: padding-left .25s;
}
.service-list li:hover { padding-left: 8px; color: var(--c-violet); }
.service-list li::after { content: '→'; opacity: 0; transition: opacity .25s, transform .25s; }
.service-list li:hover::after { opacity: 1; transform: translateX(4px); }

.service-card.featured .service-mock {
  position: absolute; bottom: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,.3), transparent 60%);
  border-radius: 50%;
  filter: blur(20px);
}

/* ============= ABOUT ============= */
.about-section { padding: 140px 0; background: var(--bg-2); position: relative; overflow: hidden; }
.about-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,63,204,.10), transparent 60%);
  border-radius: 50%;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  position: relative; aspect-ratio: 1; max-width: 500px;
  margin: 0 auto;
}
.about-orbit {
  position: absolute; inset: 0;
  border: 1.5px dashed rgba(123,61,216,.25);
  border-radius: 50%;
  animation: spinOrbit 30s linear infinite;
}
.about-orbit.o2 { inset: 12%; animation-duration: 22s; animation-direction: reverse; border-style: solid; border-color: rgba(123,61,216,.12); }
.about-orbit.o3 { inset: 26%; animation-duration: 16s; border-color: rgba(242,106,63,.2); }
@keyframes spinOrbit { to { transform: rotate(360deg); } }
.about-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 38%; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 30px 80px -10px rgba(123,61,216,.5);
  display: flex; align-items: center; justify-content: center;
}
.about-center img { width: 60%; height: 60%; object-fit: contain; filter: brightness(0) invert(1); }
.about-orbit-dot {
  position: absolute; width: 16px; height: 16px;
  background: white; border-radius: 50%;
  box-shadow: 0 4px 12px rgba(123,61,216,.4);
  border: 2px solid var(--c-violet);
}
.about-orbit .d1 { top: -8px; left: 50%; transform: translateX(-50%); }
.about-orbit .d2 { bottom: 20%; right: -8px; }
.about-orbit.o2 .d1 { top: 50%; left: -8px; transform: translateY(-50%); border-color: var(--c-coral); }
.about-orbit.o3 .d1 { bottom: -8px; left: 30%; border-color: var(--c-cyan); }

.about-tag {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: .04em;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow);
}
.about-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #1B8A4F; box-shadow: 0 0 8px #1B8A4F; }
.about-tag.t1 { top: 8%; right: -4%; }
.about-tag.t2 { bottom: 14%; left: -8%; }
.about-tag.t3 { top: 48%; right: -12%; }

.about-copy h2 { margin-bottom: 24px; }
.about-copy p + p { margin-top: 16px; }
.about-copy p { color: var(--ink-2); font-size: 17px; line-height: 1.6; }
.about-copy .signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
}
.about-copy .signature .av { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-brand); }
.about-copy .signature .nm { font-weight: 600; letter-spacing: -.01em; }
.about-copy .signature .rl { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: .04em; margin-top: 2px; }

/* ============= PORTFOLIO ============= */
.portfolio-section { padding: 140px 0; }
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
  cursor: pointer;
}
.portfolio-card { cursor: default; }
a.portfolio-card { cursor: pointer; }
a.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
a.portfolio-card:hover .arrow { background: var(--grad-brand); color: white; }
.portfolio-card.tall { grid-row: span 2; align-self: start; }
.portfolio-image {
  aspect-ratio: 16/10;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.portfolio-card.tall .portfolio-image { aspect-ratio: 4/5; }
.portfolio-image--cover {
  background: #DCE6F2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.portfolio-image--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.portfolio-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,6,19,.05));
}
.portfolio-meta { padding: 24px; display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.portfolio-meta .t { font-size: 18px; font-weight: 600; letter-spacing: -.015em; }
.portfolio-meta .s { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: .04em; margin-top: 4px; }
.portfolio-meta .arrow { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s, color .25s; }

/* Image placeholders (real screenshots later) */
.ph-1 { background: linear-gradient(135deg, #7DDFEA 0%, #3F37D9 100%); }
.ph-2 { background: linear-gradient(135deg, #7B3DD8 0%, #B43FCC 50%, #F26A3F 100%); }
.ph-3 { background: linear-gradient(135deg, #F26A3F 0%, #B43FCC 100%); }
.ph-4 { background: linear-gradient(135deg, #3F37D9 0%, #7B3DD8 100%); }
.ph-5 { background: linear-gradient(135deg, #B43FCC 0%, #7DDFEA 100%); }

.portfolio-image-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: white; text-align: center; padding: 32px;
}
.portfolio-image-content .label { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; opacity: .85; }
.portfolio-image-content .name { font-size: 32px; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.portfolio-image-content .sub { font-size: 13px; opacity: .85; max-width: 30ch; }

.portfolio-tags { display: flex; gap: 6px; padding: 0 24px 24px; flex-wrap: wrap; }
.portfolio-tag { font-family: 'Geist Mono', monospace; font-size: 10px; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); letter-spacing: .04em; }

/* ============= PROCESS ============= */
.process-section { padding: 140px 0; background: var(--ink); color: white; position: relative; overflow: hidden; }
.process-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(40% 30% at 20% 20%, rgba(123,61,216,.25), transparent 60%),
    radial-gradient(40% 30% at 80% 80%, rgba(242,106,63,.20), transparent 60%);
}
.process-section .container { position: relative; }
.process-section h2 { color: white; }
.process-section .lead { color: rgba(255,255,255,.65); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 80px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), rgba(255,255,255,.2), transparent);
}
.process-step {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.process-step:last-child { border-right: none; }
.process-num {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace; font-size: 14px;
  position: relative; z-index: 2;
  background-color: var(--ink);
}
.process-step:hover .process-num { background: var(--grad-brand); border-color: transparent; }
.process-step h3 { font-size: 20px; font-weight: 600; letter-spacing: -.015em; margin-top: 28px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.55; margin-top: 10px; }

/* ============= TESTIMONIALS ============= */
.testimonials-section { padding: 140px 0; }
.testimonials-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; }
.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial.featured {
  grid-row: span 2;
  background: linear-gradient(180deg, var(--bg-2), white);
  display: flex; flex-direction: column;
}
.t-quote { font-size: 17px; line-height: 1.55; letter-spacing: -.005em; color: var(--ink); }
.testimonial.featured .t-quote { font-size: 22px; line-height: 1.4; letter-spacing: -.015em; }
.t-mark {
  font-size: 64px; line-height: 1; color: var(--c-violet);
  font-family: 'Geist', serif; margin-bottom: -20px;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.t-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.t-av { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.t-av.a1 { background: linear-gradient(135deg, #7DDFEA, #3F37D9); }
.t-av.a2 { background: linear-gradient(135deg, #B43FCC, #F26A3F); }
.t-av.a3 { background: linear-gradient(135deg, #3F37D9, #B43FCC); }
.t-av.a4 { background: linear-gradient(135deg, #7B3DD8, #7DDFEA); }
.t-av.a5 { background: linear-gradient(135deg, #F26A3F, #B43FCC); }
.t-meta .nm { font-size: 14px; font-weight: 600; letter-spacing: -.01em; }
.t-meta .rl { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: .04em; margin-top: 2px; }
.t-stars { display: flex; gap: 2px; margin-bottom: 16px; color: #F2A03F; }
.t-stars svg { width: 14px; height: 14px; }

/* ============= CONTACT ============= */
.contact-section { padding: 140px 0; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); position: relative; overflow: hidden; }
.contact-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(123,61,216,.12), transparent 60%);
  border-radius: 50%;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; position: relative; }
.contact-info > * + * { margin-top: 24px; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-violet);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-card .l { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.contact-card .v { font-size: 15px; font-weight: 500; margin-top: 2px; letter-spacing: -.01em; }
.contact-card .v small { display: block; font-size: 13px; color: var(--muted-2); font-weight: 400; margin-top: 2px; }

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: span 2; }
label { display: block; font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.input, .select, .textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit; font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--c-violet); background: white; box-shadow: 0 0 0 4px rgba(123,61,216,.08); }
.textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.checkbox-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  background: white;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.chip:hover { border-color: var(--c-violet); color: var(--c-violet); }
.chip.active { background: var(--ink); color: white; border-color: var(--ink); }
.form-submit { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); gap: 16px; flex-wrap: wrap; }
.form-foot { font-size: 12px; color: var(--muted); }

/* ============= FOOTER ============= */
.footer { background: var(--ink); color: white; padding: 100px 0 40px; position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,61,216,.5), rgba(242,106,63,.5), transparent);
}
.footer-cta {
  font-size: clamp(40px, 5vw, 76px); line-height: 1.0; letter-spacing: -.035em; font-weight: 600;
  max-width: 18ch; margin-bottom: 60px;
}
.footer-cta .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-top: 60px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand .nm { font-size: 18px; font-weight: 600; letter-spacing: -.015em; }
.footer-brand .nm small { display: block; font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.5); text-transform: uppercase; margin-top: 2px; font-weight: 400; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.55; max-width: 32ch; }
.footer-col h5 { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.85); transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,.08); font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .04em; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 16px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; transition: all .25s; }
.footer-socials a:hover { background: var(--grad-brand); border-color: transparent; transform: translateY(-2px); }
.footer-socials a svg { width: 16px; height: 16px; }

/* ============= REVEAL ANIMATION ============= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============= HERO BANNER (v2) ============= */
.hero--banner h1 {
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 600;
  padding-bottom: .12em;
}
.hero--banner h1 .accent {
  font-style: italic;
  font-weight: 500;
  display: inline-block;
  padding-bottom: .04em;
}
.hero--banner .lead { margin-top: 28px; }

.hero-vector-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-vector { width: 100%; max-width: 720px; height: auto; }

@keyframes hvFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes hvFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px) translateX(4px); } }
@keyframes hvFloatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px) translateX(-4px); } }
@keyframes hvSpin { to { transform: rotate(360deg); } }
@keyframes hvOrbit { to { transform: rotate(360deg); } }
@keyframes hvPulse { 0%,100% { opacity: .3; r: 4; } 50% { opacity: 1; r: 6; } }

.hv-float-1 { animation: hvFloatA 6s ease-in-out infinite; transform-origin: center; }
.hv-float-2 { animation: hvFloatB 7s ease-in-out infinite -1.5s; }
.hv-float-3 { animation: hvFloatC 8s ease-in-out infinite -3s; }
.hv-float-4 { animation: hvFloatA 5.5s ease-in-out infinite -2s; }
.hv-orbit-slow { animation: hvOrbit 30s linear infinite; transform-origin: 360px 320px; }
.hv-orbit-fast { animation: hvOrbit 18s linear infinite reverse; transform-origin: 360px 320px; }
.hv-spin { animation: hvSpin 12s linear infinite; }
.hv-pulse { animation: hvPulse 2.5s ease-in-out infinite; }
.hv-pulse-2 { animation: hvPulse 3s ease-in-out infinite -1s; }

/* ============= SERVICES V2 ============= */
.services-section-v2 { padding: 140px 0; position: relative; }
.services-v2-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 40px;
}
.services-v2-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .14em; color: var(--muted);
}
.services-v2-eyebrow-num { color: var(--ink); font-weight: 500; }
.services-v2-eyebrow-line { width: 60px; height: 1px; background: var(--grad-brand); }
.services-v2-title {
  grid-column: 1 / 2;
  grid-row: 2;
  font-size: clamp(40px, 5.4vw, 76px); line-height: 1.0; letter-spacing: -.035em; font-weight: 600;
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 20px;
}
.services-v2-sub {
  grid-column: 2 / 4; grid-row: 2;
  font-size: 18px; color: var(--muted); line-height: 1.55;
  max-width: 48ch;
  margin-top: 20px;
  align-self: end;
  padding-bottom: 8px;
}

.services-v2-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.services-v2-rail { position: sticky; top: 100px; align-self: start; }
.services-v2-rail-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: linear-gradient(180deg, white, var(--bg-2));
  position: relative;
}
.services-v2-rail-label {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: .12em;
  margin-bottom: 20px;
}
.services-v2-rail-progress {
  position: absolute;
  left: 28px; top: 80px; bottom: 100px;
  width: 2px;
  background: var(--ink-200, var(--line));
  border-radius: 2px;
}
.services-v2-rail-fill {
  width: 100%;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: height .5s cubic-bezier(.2,.7,.2,1);
}
.services-v2-rail-list { list-style: none; display: flex; flex-direction: column; gap: 18px; padding: 8px 0 28px; position: relative; }
.services-v2-rail-item {
  display: grid;
  grid-template-columns: 16px 28px 1fr;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted);
  transition: color .25s;
  cursor: pointer;
}
.services-v2-rail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-200, rgba(10,6,19,.15));
  margin-left: 4px;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.services-v2-rail-num { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .04em; }
.services-v2-rail-title { font-weight: 500; letter-spacing: -.005em; }
.services-v2-rail-item.is-active { color: var(--ink); }
.services-v2-rail-item.is-active .services-v2-rail-dot {
  background: var(--c-violet);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(123,61,216,.15);
}
.services-v2-rail-cta {
  width: 100%;
  justify-content: center;
}

/* Right content cards */
.services-v2-content { display: flex; flex-direction: column; gap: 24px; }
.services-v2-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s, box-shadow .4s, background .4s;
  min-height: 360px;
}
.services-v2-card.is-active {
  border-color: rgba(123,61,216,.35);
  box-shadow: 0 30px 80px -20px rgba(63,55,217,.18);
  transform: translateY(-2px);
}
.services-v2-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.services-v2-card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px -10px rgba(123,61,216,.5);
  position: relative; z-index: 2;
}
.services-v2-card-tag {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--c-violet);
}
.services-v2-card-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
  position: relative; z-index: 2;
}
.services-v2-card-title {
  font-size: clamp(28px, 3vw, 38px); font-weight: 600;
  letter-spacing: -.025em; line-height: 1.05;
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.services-v2-card-meta {
  font-size: 16px; color: var(--ink-2); line-height: 1.6;
  max-width: 52ch;
  position: relative; z-index: 2;
}
.services-v2-card-skills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
  position: relative; z-index: 2;
}
.services-v2-skill {
  font-family: 'Geist Mono', monospace; font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: white;
  letter-spacing: .02em;
  transition: all .2s;
}
.services-v2-card.is-active .services-v2-skill {
  border-color: rgba(123,61,216,.2);
  background: var(--bg-2);
}
.services-v2-card-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  position: relative; z-index: 2;
}
.services-v2-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  transition: color .2s, gap .25s;
}
.services-v2-card-link:hover { color: var(--c-violet); gap: 12px; }
.services-v2-card-bg-num {
  position: absolute;
  bottom: -40px; right: -10px;
  font-size: 280px;
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: 1;
  color: rgba(10, 6, 19, 0.025);
  pointer-events: none;
  z-index: 0;
  transition: color .4s;
  font-family: 'Geist', sans-serif;
}
.services-v2-card.is-active .services-v2-card-bg-num {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .07;
}

/* ============= ABOUT V2 (office vector) ============= */
.about-visual-v2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.about-visual-v2::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(123,61,216,.18), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.office-vector {
  width: 100%; max-width: 540px;
  height: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(63,55,217,.15));
}
.about-tag-v2 {
  position: absolute; z-index: 2;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: .04em;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
  animation: hvFloatA 6s ease-in-out infinite;
}
.about-tag-v2::before { content:''; width:6px; height:6px; border-radius:50%; background:#1B8A4F; box-shadow:0 0 8px #1B8A4F; }
.about-tag-v2.t1 { top: 6%; right: -2%; }
.about-tag-v2.t2 { bottom: 12%; left: -2%; animation-delay: -2s; }
.about-tag-v2.t3 { top: 46%; right: -6%; animation-delay: -4s; }

/* ============= RESPONSIVE ============= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .phone-stage { min-height: 540px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .services-grid > * { grid-column: span 12 !important; min-height: auto !important; }
  .about-grid, .contact-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial.featured { grid-row: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

  .services-v2-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-v2-rail { position: relative; top: 0; }
  .services-v2-head { grid-template-columns: 1fr; gap: 16px; padding-bottom: 32px; margin-bottom: 48px; }
  .services-v2-title, .services-v2-sub { grid-column: 1; grid-row: auto; }
  .services-v2-card { padding: 32px; min-height: auto; }
  .services-v2-card-bg-num { font-size: 180px; bottom: -20px; }
  .about-tag-v2.t1, .about-tag-v2.t3 { right: 4%; }
  .about-tag-v2.t2 { left: 4%; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
}
