/* ==========================================================================
   Bature Digital — Homepage styles
   Built on top of tokens.css (brand foundations).
   ========================================================================== */

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); overflow-x: hidden; }

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* Reveal on scroll — used by IntersectionObserver */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; border: 0;
  text-decoration: none; transition: all .22s var(--ease-out);
  white-space: nowrap; cursor: pointer;
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-xl { padding: 22px 38px; font-size: 17px; }
.btn-primary { background: var(--brand-purple-700); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--brand-purple-600); box-shadow: var(--shadow-brand); transform: translateY(-2px); }
.btn-primary:active { background: var(--brand-purple-800); transform: translateY(0); }
.btn-mustard {
  background: var(--brand-mustard-500); color: var(--brand-purple-900);
  box-shadow: var(--shadow-mustard);
}
.btn-mustard:hover { background: var(--brand-mustard-400); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--brand-purple-700); border: 1.5px solid var(--brand-purple-700); }
.btn-ghost:hover { background: var(--brand-purple-700); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: #fff; color: var(--brand-purple-900); border-color: #fff; }
.btn-arrow { transition: transform .22s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Eyebrow with lead line */
.eyebrow-line {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-line::before {
  content: ""; width: 28px; height: 1.5px; background: currentColor;
}
.eyebrow-line-light { color: var(--brand-mustard-500); }

/* ============================
   Header
   ============================ */
.site-header { position: relative; z-index: 60; }
.site-header .nav-bar {
  position: sticky; top: 0; z-index: 60;
}
/* Lift nav-bar out of header's containing-block constraint so it stays
   stuck to the viewport even after the utility bar scrolls away. */
.site-header { display: contents; }
.utility-bar {
  background: var(--brand-purple-900); color: rgba(255,255,255,.88);
  font-size: 13px;
}
.utility-bar a { color: inherit; }
.utility-bar a:hover { color: var(--brand-mustard-500); }
.utility-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; gap: 20px; }
.utility-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.utility-left .dot { opacity: .4; }
.utility-right { display: flex; gap: 14px; align-items: center; }
.utility-right .social-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.78);
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  text-decoration: none;
  padding: 4px 8px; border-radius: 999px;
  transition: color .18s var(--ease-out), background .18s var(--ease-out);
}
.utility-right .social-link:hover {
  color: #F1C518;
  background: rgba(241,197,24,.1);
}
.utility-right .social-link svg { opacity: .85; }
.utility-right .social-link:hover svg { opacity: 1; }
.utility-right .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(241,197,24,.12); color: var(--brand-mustard-500);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
}
.utility-right .pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 99px;
  background: var(--brand-mustard-500); box-shadow: 0 0 0 4px rgba(241,197,24,.18);
}
.nav-bar {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.nav-logo { height: 42px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--fg); font-weight: 500; font-size: 15px; padding: 6px 0;
  position: relative; transition: color .14s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--brand-purple-700); transition: width .22s var(--ease-out);
}
.nav-links a:hover { color: var(--brand-purple-700); }
.nav-links a:hover::after { width: 100%; }

/* ============================
   Hero
   ============================ */
.hero {
  position: relative; padding: var(--space-12) 0 var(--space-13);
  background: var(--bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(1000px 600px at 90% -10%, var(--brand-purple-100) 0%, transparent 55%),
    radial-gradient(700px 500px at -10% 110%, rgba(241,197,24,.08) 0%, transparent 60%);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: var(--space-11); column-gap: clamp(48px, 6vw, 96px); align-items: center;
}
.hero-eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-family: var(--font-body); font-weight: 800;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.0;
  letter-spacing: -.025em; color: var(--fg);
  margin: 0 0 28px;
  hyphens: none;
}
.hero h1 .line { display: block; white-space: nowrap; }
.hero h1 .accent {
  color: var(--brand-purple-700);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: .14em; background: var(--brand-mustard-500); z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: 19px; line-height: 1.6; color: var(--fg-muted);
  margin: 0 0 36px; max-width: 560px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 32px; display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--fg-subtle);
}
.hero-meta-avatars { display: flex; }
.hero-meta-avatars span {
  width: 28px; height: 28px; border-radius: 99px; border: 2px solid #fff;
  margin-left: -8px; background-size: cover; background-position: center;
  font-family: var(--font-display); font-weight: 500; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.hero-meta-avatars span:nth-child(1) { background: linear-gradient(135deg, #3B0E6A, #7B3DB8); margin-left: 0; }
.hero-meta-avatars span:nth-child(2) { background: linear-gradient(135deg, #F1C518, #C9A412); color: #2D0A52; }
.hero-meta-avatars span:nth-child(3) { background: linear-gradient(135deg, #4A0E85, #A77FD0); }
.hero-meta-avatars span:nth-child(4) { background: linear-gradient(135deg, #14101C, #524A63); }

/* Hero visual — abstract geometric */
.hero-art {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 560px;
  aspect-ratio: 1/1.05;
  margin-left: auto;
  align-self: center;
}
.hero-art-stage {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--brand-purple-700) 0%, var(--brand-purple-900) 100%);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.05) inset;
  overflow: hidden;
}
.hero-art-stage::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(241,197,24,.18) 0%, transparent 35%),
    radial-gradient(circle at 75% 85%, rgba(123,61,184,.5) 0%, transparent 45%);
}
.hero-art-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
}
.hero-art-rings {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 110%; aspect-ratio: 1; border-radius: 99px;
  border: 1.5px dashed rgba(241,197,24,.35);
  animation: spin 60s linear infinite;
}
.hero-art-rings::before, .hero-art-rings::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  border-radius: 99px;
}
.hero-art-rings::before {
  width: 75%; aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-art-rings::after {
  width: 50%; aspect-ratio: 1;
  border: 1px solid rgba(241,197,24,.18);
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-art-orb {
  position: absolute; left: 50%; top: 50%;
  width: 38%; aspect-ratio: 1; border-radius: 99px;
  transform: translate(-50%,-50%);
  background:
    radial-gradient(circle at 30% 30%, var(--brand-mustard-400) 0%, var(--brand-mustard-600) 40%, var(--brand-mustard-700) 100%);
  box-shadow:
    0 30px 60px rgba(241,197,24,.35),
    0 0 0 12px rgba(241,197,24,.05),
    0 0 0 28px rgba(241,197,24,.03);
  animation: orbFloat 6s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -54%); }
}

.hero-art-glyph {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 22%; opacity: .9;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.3));
  animation: orbFloat 6s ease-in-out infinite;
}

.hero-bubble {
  position: absolute;
  background: #fff; border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
  animation: bubbleFloat 5s ease-in-out infinite;
}
.hero-bubble-1 { top: 12%; left: -8%; animation-delay: 0s; }
.hero-bubble-2 { bottom: 18%; right: -6%; animation-delay: 1.5s; }
.hero-bubble-3 { bottom: 6%; left: 8%; animation-delay: 3s; }
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-bubble-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--brand-purple-100); color: var(--brand-purple-700);
}
.hero-bubble-icon-mustard { background: var(--brand-mustard-100); color: var(--brand-mustard-700); }
.hero-bubble-text { display: flex; flex-direction: column; gap: 2px; }
.hero-bubble-text .label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-subtle); }
.hero-bubble-text .value { font-size: 15px; font-weight: 700; color: var(--fg); }
.hero-bubble-text .value strong { color: var(--brand-purple-700); }

/* ============================
   Social proof strip
   ============================ */
.proof {
  background: linear-gradient(180deg, var(--bg) 0%, var(--neutral-50) 100%);
  padding: var(--space-10) 0 var(--space-11);
  border-bottom: 1px solid var(--border);
}
.proof-tag {
  text-align: center; font-size: 14px; color: var(--fg-muted);
  margin: 0 0 var(--space-8);
  letter-spacing: .02em;
}
.proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.proof-stat {
  text-align: center;
  padding: 24px 12px;
  position: relative;
}
.proof-stat:not(:last-child)::after {
  content: ""; position: absolute; right: -.5px; top: 25%; bottom: 25%;
  width: 1px; background: var(--border);
}
.proof-stat-num {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1; letter-spacing: -.03em;
  color: var(--brand-purple-700);
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.proof-stat-num .prefix, .proof-stat-num .suffix {
  font-size: .55em; color: var(--brand-mustard-600); font-weight: 400;
}
.proof-stat-label {
  margin-top: 14px;
  font-size: 14px; font-weight: 600;
  color: var(--fg);
  letter-spacing: .02em;
}
.proof-stat-sub {
  margin-top: 4px;
  font-size: 12px; color: var(--fg-subtle);
  letter-spacing: .06em; text-transform: uppercase;
}

/* ============================
   Section head shared
   ============================ */
.section-head { max-width: 720px; margin: 0 auto var(--space-10); text-align: center; }
.section-head .eyebrow-line { justify-content: center; margin-bottom: 18px; }
.section-head .eyebrow-line::before, .section-head .eyebrow-line::after {
  content: ""; width: 28px; height: 1.5px; background: currentColor;
}
.section-head .eyebrow-line::after { display: inline-block; }
.section-head h2 {
  font-family: var(--font-body); font-weight: 800;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.05;
  letter-spacing: -.025em; color: var(--fg); margin: 0 0 18px;
}
.section-head h2 .em { color: var(--brand-purple-700); }
.section-head p {
  font-size: 18px; line-height: 1.6; color: var(--fg-muted);
  max-width: 580px; margin: 0 auto;
}
.section-head-left { text-align: left; margin-left: 0; margin-right: 0; }
.section-head-left .eyebrow-line { justify-content: flex-start; }
.section-head-left p { margin-left: 0; }

/* ============================
   Services grid
   ============================ */
.services { padding: var(--space-13) 0; background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service-card {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all .32s var(--ease-out);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.service-card.feature { grid-column: span 3; background: linear-gradient(180deg, var(--brand-purple-50) 0%, #fff 70%); }
.service-card:nth-child(4) { grid-column: span 3; }
.service-card:nth-child(5) { grid-column: span 6; min-height: auto; }

.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-purple-700), var(--brand-mustard-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .42s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple-100);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-purple-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.service-icon::after {
  content: ""; position: absolute; inset: -6px;
  border-radius: 18px; border: 1.5px solid var(--brand-purple-100);
  opacity: 0; transition: opacity .32s;
}
.service-card:hover .service-icon::after { opacity: 1; }
.service-card.feature .service-icon { background: var(--brand-mustard-500); color: var(--brand-purple-900); }

.service-card h3 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -.01em;
  color: var(--fg); margin: 0;
}
.service-card p {
  font-size: 15px; line-height: 1.6; color: var(--fg-muted);
  margin: 0; flex: 1;
}
.service-card .learn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--brand-purple-700);
  margin-top: auto;
  letter-spacing: .01em;
}
.service-card .learn .arrow { transition: transform .22s var(--ease-out); }
.service-card:hover .learn .arrow { transform: translateX(4px); }

/* The 5th card — wide email */
.service-card.wide {
  display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 40px;
  padding: 40px 36px;
  background: linear-gradient(135deg, var(--brand-purple-900) 0%, var(--brand-purple-700) 100%);
  color: #fff; border-color: transparent;
}
.service-card.wide h3 { color: #fff; font-size: 26px; }
.service-card.wide p { color: rgba(255,255,255,.78); }
.service-card.wide .service-icon { background: var(--brand-mustard-500); color: var(--brand-purple-900); }
.service-card.wide .learn { color: var(--brand-mustard-500); }
.service-card.wide:hover { transform: translateY(-6px); }
.service-card.wide-art {
  position: relative; aspect-ratio: 16/10;
  background: rgba(255,255,255,.05); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  padding: 16px; display: flex; flex-direction: column; gap: 8px;
}
.service-card.wide-art .row {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: rgba(255,255,255,.05); border-radius: 10px; font-size: 12px;
  color: rgba(255,255,255,.78);
}
.service-card.wide-art .row .dot {
  width: 8px; height: 8px; border-radius: 99px; background: var(--brand-mustard-500);
}
.service-card.wide-art .row.sent .dot { background: var(--brand-purple-300); }
.service-card.wide-art .row .pct { margin-left: auto; font-weight: 600; color: var(--brand-mustard-500); }

/* ============================
   Case studies / Results
   ============================ */
.results {
  padding: var(--space-13) 0;
  background: var(--neutral-50);
  position: relative;
}
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.case-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex; flex-direction: column; gap: 28px;
  transition: all .32s var(--ease-out);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.case-card.dark {
  background: linear-gradient(160deg, var(--brand-purple-800) 0%, var(--brand-purple-900) 100%);
  color: #fff; border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card.dark:hover { box-shadow: var(--shadow-xl); }

.case-card .case-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-purple-700);
}
.case-card.dark .case-tag { color: var(--brand-mustard-500); }
.case-card .case-tag .badge {
  padding: 4px 10px; border-radius: 99px;
  background: var(--brand-purple-100); font-size: 11px; letter-spacing: .08em;
}
.case-card.dark .case-tag .badge {
  background: rgba(241,197,24,.16);
}

.case-card h3 {
  font-family: var(--font-body); font-weight: 800;
  font-size: 28px; line-height: 1.15; letter-spacing: -.015em;
  color: var(--fg); margin: 0;
}
.case-card.dark h3 { color: #fff; }
.case-card .client {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--fg-subtle);
  display: flex; align-items: center; gap: 8px;
}
.case-card.dark .client { color: rgba(255,255,255,.6); }
.case-card .client::before {
  content: ""; width: 5px; height: 5px; border-radius: 99px; background: currentColor;
}

.case-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; padding: 24px 0; margin: 4px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.case-card.dark .case-stats { border-color: rgba(255,255,255,.12); }
.case-stat {
  display: flex; flex-direction: column; gap: 6px;
}
.case-stat-num {
  font-family: var(--font-display); font-weight: 300;
  font-size: 44px; line-height: 1; letter-spacing: -.03em;
  color: var(--brand-purple-700);
  display: flex; align-items: baseline; gap: 2px;
}
.case-stat-num .small { font-size: .5em; font-weight: 500; }
.case-card.dark .case-stat-num { color: var(--brand-mustard-500); }
.case-stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--fg-subtle); line-height: 1.3;
}
.case-card.dark .case-stat-label { color: rgba(255,255,255,.65); }

.case-body { font-size: 15px; line-height: 1.65; color: var(--fg-muted); margin: 0; }
.case-card.dark .case-body { color: rgba(255,255,255,.82); }

.case-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--brand-purple-700);
}
.case-card.dark .case-link { color: var(--brand-mustard-500); }
.case-link .arrow { transition: transform .22s var(--ease-out); }
.case-card:hover .case-link .arrow { transform: translateX(4px); }

/* Visual chip on case cards (top-right corner) */
.case-visual {
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(241,197,24,.14) 0%, transparent 70%);
  border-radius: 99px;
  pointer-events: none;
}
.case-card.dark .case-visual {
  background: radial-gradient(circle, rgba(241,197,24,.18) 0%, transparent 70%);
}

/* Mini chart inside case card */
.case-chart {
  position: relative; height: 80px; margin-top: -10px;
}
.case-chart svg { width: 100%; height: 100%; display: block; }

/* ============================
   Why Bature
   ============================ */
.why { padding: var(--space-13) 0; background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: var(--space-11); align-items: start;
}
.why-copy h2 {
  font-family: var(--font-body); font-weight: 800;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.05;
  letter-spacing: -.025em; margin: 18px 0 24px;
}
.why-copy h2 .em { color: var(--brand-purple-700); }
.why-copy p {
  font-size: 17px; line-height: 1.65; color: var(--fg-muted); margin: 0 0 18px;
}
.why-copy p strong { color: var(--fg); font-weight: 600; }
.why-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: sticky; top: 120px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: all .32s var(--ease-out);
}
.pillar:hover {
  transform: translateY(-4px); border-color: var(--brand-purple-200);
  box-shadow: var(--shadow-md);
}
.pillar-num {
  font-family: var(--font-display); font-weight: 300;
  font-size: 34px; line-height: 1; letter-spacing: -.02em;
  color: var(--brand-mustard-600);
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 19px; margin: 0 0 8px; color: var(--fg);
  letter-spacing: -.01em;
}
.pillar p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* ============================
   Process
   ============================ */
.process {
  padding: var(--space-13) 0;
  background: var(--brand-purple-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(241,197,24,.06) 0%, transparent 60%),
    radial-gradient(600px 400px at -10% 100%, rgba(123,61,184,.18) 0%, transparent 60%);
  pointer-events: none;
}
.process .section-head h2 { color: #fff; }
.process .section-head h2 .em { color: var(--brand-mustard-500); }
.process .section-head p { color: rgba(255,255,255,.75); }
.process .eyebrow-line { color: var(--brand-mustard-500); }

.process-steps {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: var(--space-10);
}
.process-steps::before {
  content: ""; position: absolute;
  left: 17%; right: 17%; top: 38px; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(241,197,24,.4) 20%, rgba(241,197,24,.4) 80%, transparent);
}
.step {
  position: relative;
  padding: 0 8px;
  text-align: left;
  display: flex; flex-direction: column; gap: 16px;
}
.step-num {
  width: 76px; height: 76px; border-radius: 99px;
  background: var(--brand-purple-700);
  border: 1.5px solid rgba(241,197,24,.4);
  color: var(--brand-mustard-500);
  font-family: var(--font-display); font-weight: 300;
  font-size: 30px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  letter-spacing: -.02em;
}
.step-num::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 99px; border: 1px dashed rgba(241,197,24,.25);
  animation: spin 30s linear infinite;
}
.step h3 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 24px; color: #fff; margin: 0;
  letter-spacing: -.01em;
}
.step h3 .verb-eyebrow {
  display: block; font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(241,197,24,.8);
  margin-bottom: 8px;
}
.step p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.78); margin: 0; }

/* ============================
   Final CTA
   ============================ */
.final-cta {
  padding: var(--space-13) 0;
  background: var(--neutral-1000);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 50% 110%, var(--brand-purple-700) 0%, transparent 60%),
    radial-gradient(500px 300px at 50% -30%, rgba(241,197,24,.12) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative; max-width: 880px; margin: 0 auto; text-align: center;
}
.final-cta h2 {
  font-family: var(--font-body); font-weight: 800;
  font-size: clamp(36px, 5vw, 68px); line-height: 1.05;
  letter-spacing: -.025em; color: #fff; margin: 24px 0 22px;
}
.final-cta h2 .em {
  color: var(--brand-mustard-500);
  font-family: var(--font-display); font-weight: 300;
  letter-spacing: -.02em;
  font-style: italic;
}
.final-cta p { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,.78); margin: 0 0 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.final-cta-trust {
  margin-top: 28px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.final-cta-trust span { display: inline-flex; align-items: center; gap: 8px; }
.final-cta-trust span::before {
  content: ""; width: 16px; height: 16px; border-radius: 99px;
  background: rgba(241,197,24,.2); position: relative;
}

/* ============================
   Footer
   ============================ */
.site-footer { background: var(--brand-purple-900); color: rgba(255,255,255,.85); }
.footer-main {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px; padding: var(--space-12) 0 var(--space-10);
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 18px; }
.footer-brand .tagline {
  color: var(--brand-mustard-500); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  margin: 0 0 18px;
}
.footer-brand p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; max-width: 320px; margin: 0; }
.footer-col-h {
  display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-mustard-500); margin-bottom: 18px; font-weight: 700;
}
.footer-col a {
  display: block; padding: 5px 0; color: rgba(255,255,255,.78);
  font-size: 14px; transition: color .14s;
}
.footer-col a:hover { color: var(--brand-mustard-500); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { padding: 0; }
.footer-social {
  margin-top: 18px; display: flex; gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 99px;
  background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); transition: all .22s;
}
.footer-social a:hover {
  background: var(--brand-mustard-500); color: var(--brand-purple-900); transform: translateY(-2px);
}
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 12px;
}
.footer-legal-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  color: rgba(255,255,255,.55);
}
.footer-legal-row a { color: rgba(255,255,255,.7); margin-left: 18px; }
.footer-legal-row a:hover { color: var(--brand-mustard-500); }

/* ============================
   Tweaks panel positioning override (keeps ours visible)
   ============================ */

/* ============================
   Responsive
   ============================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card.feature, .service-card:nth-child(4) { grid-column: span 1; }
  .service-card:nth-child(5) { grid-column: span 2; }
  .service-card.wide { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .hero-grid, .why-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-art { max-width: 480px; margin: 0 auto; }
  .results-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .why-pillars { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .proof-stat:nth-child(2)::after { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: var(--space-10) 0 var(--space-11); }
  .services { padding: var(--space-11) 0; }
  .results, .why, .process, .final-cta { padding: var(--space-11) 0; }
  .service-card.wide-art { display: none; }
  .service-card.wide { padding: 32px 24px; }
  .case-card { padding: 28px 22px; }
  .case-stats { gap: 10px; }
  .case-stat-num { font-size: 32px; }
  .why-pillars { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: var(--space-10) 0 var(--space-8); }
  .utility-right { display: none; }
  .hero-bubble { display: none; }
  .hero-bubble-2 { display: flex; bottom: -4%; right: 4%; }
  .proof-stat-num { font-size: 44px; }
  .step-num { width: 60px; height: 60px; font-size: 24px; }
  .final-cta-row { flex-direction: column; }
  .final-cta-row .btn { width: 100%; }
}
