/* ===== TOKENS ===== */
:root {
  --jacarta: #6D28D9;
  --blue-gray: #8B5CF6;
  --wisteria: #C4B5FD;
  --bright-gray: #EDE9FE;
  --dark: #12082e;

  --bg: #FAFAF9;
  --ink: #1E1230;
  --muted: #6B5E85;
  --line: rgba(109, 40, 217, 0.12);

  --serif: 'Manrope', system-ui, sans-serif;
  --sans: 'Manrope', system-ui, sans-serif;

  --maxw: 1160px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.section { padding-block: clamp(4.5rem, 10vw, 8rem); }

.section__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue-gray); margin-bottom: 1.2rem;
}
.section__eyebrow::before { content: "«"; opacity: 0.5; }
.section__eyebrow::after  { content: "»"; opacity: 0.5; }
.section__title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem); line-height: 1.08;
  letter-spacing: -0.03em; color: var(--jacarta);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 600; font-size: 0.95rem; padding: 0.95rem 1.6rem;
  border-radius: 100px; transition: all 0.35s var(--ease); cursor: pointer; border: 1px solid transparent;
}
.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.88rem; }
.btn span { transition: transform 0.35s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn--primary { background: #fff; color: var(--jacarta); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.25); }
.btn--primary:hover { background: var(--bright-gray); color: var(--jacarta); transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(0,0,0,0.2); }
.btn--ghost {
  border-color: var(--line); color: var(--jacarta);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px) saturate(1.6);
  -webkit-backdrop-filter: blur(12px) saturate(1.6);
}
.btn--ghost:hover { border-color: var(--jacarta); background: rgba(255,255,255,0.80); }
.btn--ghost-light {
  border-color: rgba(255,255,255,0.7); color: #fff;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ===== NAV ===== */
.nav .container { max-width: none; }
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.4s var(--ease);
  padding-block: 1.3rem;
}
.nav.scrolled {
  background: rgba(251,250,252,0.85); backdrop-filter: blur(14px);
  padding-block: 0.8rem; box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; flex-direction: column; gap: 0.08rem; color: var(--jacarta); text-decoration: none; }
.nav__brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.01em; }
.nav__brand-role { font-family: var(--sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; opacity: 0.6; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: var(--ink); transition: color 0.25s; }
.nav__links a:hover { color: var(--blue-gray); }
.nav__cta { background: var(--jacarta); color: #fff !important; padding: 0.6rem 1.2rem; border-radius: 100px; }
.nav__cta:hover { background: var(--wisteria); color: var(--jacarta) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--jacarta); transition: 0.3s; }

/* ===== HERO (Execora-style rounded card) ===== */
.hero { padding: 7rem var(--pad) 1rem; }
.hero__card {
  position: relative; border-radius: 28px; overflow: hidden;
  height: calc(100vh - 8rem); display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--blue-gray), var(--jacarta));
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; display: block; }

/* Left-to-right purple gradient — text lives in the covered zone */
.hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(15, 2, 60, 0.99) 0%,
    rgba(40, 8, 130, 0.97) 14%,
    rgba(70, 15, 180, 0.85) 26%,
    rgba(100, 30, 217, 0.28) 40%,
    transparent 52%
  );
}

.hero__content {
  position: relative; z-index: 1;
  padding: clamp(2rem, 4vw, 3.5rem);
  width: 100%;
  display: flex; flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.hero__left {
  display: flex; flex-direction: column; gap: clamp(1rem, 2.4vh, 1.5rem);
  max-width: 54%;
}
.hero__right {
  display: flex; align-items: flex-end; justify-content: flex-end;
  flex-shrink: 0;
}

/* Social proof badge */
.hero__proof {
  display: flex; flex-direction: column; gap: 0.9rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  min-width: 230px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero__proof-head {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--wisteria);
}
.hero__proof-head .ti { font-size: 1rem; }
.hero__proof-stats {
  display: flex; align-items: center; gap: 0.8rem;
}
.hero__proof-item { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.hero__proof-divider { width: 1px; height: 2.8rem; background: rgba(255,255,255,0.18); flex-shrink: 0; }
.hero__proof-stat { display: block; font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 800; color: #fff; line-height: 1.05; }
.hero__proof-label { display: block; font-size: clamp(0.7rem, 0.85vw, 0.8rem); color: rgba(255,255,255,0.60); line-height: 1.3; }

.hero__title {
  font-family: var(--sans); font-weight: 800; color: #fff;
  font-size: clamp(3rem, 6vw, 5.1rem); line-height: 1.05;
  letter-spacing: -0.03em; text-align: left;
}
.hero__title em { font-style: italic; color: #fff; }
@media (min-width: 681px) {
  .hero__title-mb { display: none; }
  .hero__title-dk { display: inline; }
}
.hero__lede {
  color: rgba(255,255,255,0.82); font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  line-height: 1.65; max-width: 420px;
}
.hero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; }
.stat {
  text-align: center; padding: clamp(2.2rem, 4vw, 3.2rem) 1rem;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline;
  column-gap: 0.1em;
  border-left: 1px solid var(--line);
  transition: background 0.3s;
}
.stat:hover { background: transparent; }
.stat:first-child { border-left: none; }
.stat__num { grid-area: num; font-family: var(--serif); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--ink); }
.stat__suffix { grid-area: suf; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; color: var(--jacarta); }
.stat__label { flex: 0 0 100%; font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== ABOUT ===== */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about__head { position: sticky; top: 110px; }
.about__photo { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; margin-bottom: 2rem; background: linear-gradient(145deg, var(--bright-gray) 0%, var(--wisteria) 100%); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__body p { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); margin-bottom: 1.4rem; line-height: 1.75; }
.about__body strong { color: var(--ink); font-weight: 600; }

/* ===== WHO I WORK WITH ===== */
.for { background: linear-gradient(145deg, #2a1060 0%, #1a0a48 45%, var(--dark) 100%); }
.for .section__eyebrow { color: var(--wisteria); }
.for .section__title { color: #fff; }
.for__head { max-width: 700px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.for__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.for__card {
  border-radius: 22px; overflow: hidden; position: relative;
  min-height: 340px; display: flex; flex-direction: column; justify-content: flex-start;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.for__card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 40px 80px -30px rgba(109,40,217,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
}
.for__card-bg { display: none; }
.for__card-img { display: none; }
.for__card-overlay { display: none; }
.for__card-body { position: relative; z-index: 1; padding: 2rem; }
.for__card-icon {
  width: 3rem; height: 3rem; border-radius: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem;
}
.for__card-icon .ti { font-size: 1.5rem; color: #fff; }
.for__card h3 { font-weight: 700; font-size: clamp(1.3rem, 2vw, 1.6rem); color: #fff; margin-bottom: 0.7rem; letter-spacing: -0.02em; line-height: 1.2; }
.for__card p { color: rgba(255,255,255,0.68); font-size: 0.93rem; line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: linear-gradient(160deg, #1a0a48 0%, var(--dark) 100%); }
.testimonials .section__title { color: #fff; }
.testimonials .section__eyebrow { color: var(--wisteria); }
.testimonials__layout {
  display: flex; flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.testimonials__left { max-width: 680px; }
.testimonials__left .section__eyebrow { margin-bottom: 1.2rem; }
.testimonials__left .section__title { margin-bottom: 1.4rem; line-height: 1.08; }
.testimonials__lede { color: rgba(255,255,255,0.60); font-size: 1.05rem; line-height: 1.85; margin-top: 0; }

/* Slider */
.testimonials__right { display: flex; flex-direction: column; gap: 1.2rem; }
.testimonials__slider { position: relative; overflow: hidden; border-radius: 22px; }
.testimonials__track { display: flex; width: 100%; will-change: transform; }
.tslide {
  flex: 0 0 100%; display: flex;
  min-height: 320px; overflow: hidden;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.tslide__img {
  width: 26%; max-width: 260px; flex-shrink: 0; position: relative;
  aspect-ratio: 4 / 5; align-self: flex-start;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.tslide__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.tslide__initials {
  font-size: 3.5rem; font-weight: 800; color: rgba(255,255,255,0.25);
  position: relative; z-index: 0; user-select: none;
}
.tslide__body {
  flex: 1; padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
}
.tslide__person { display: flex; flex-direction: column; gap: 0.25rem; }
.tslide__name { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.tslide__role { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--jacarta); }
.tslide__quote { color: var(--muted); font-size: clamp(0.92rem, 1.2vw, 1.05rem); line-height: 1.78; }

/* Slider nav */
.testimonials__nav { display: flex; align-items: center; gap: 1rem; justify-content: flex-end; }
.tslide__btn {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.tslide__btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.45); }
.tslide__btn .ti { font-size: 1rem; }
.testimonials__dots { display: flex; gap: 0.45rem; align-items: center; }
.tdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.28); cursor: pointer;
  transition: all 0.35s var(--ease);
}
.tdot.active { background: var(--wisteria); width: 22px; border-radius: 3px; }
@media (max-width: 540px) {
  .tslide { flex-direction: column; min-height: unset; }
  .tslide__img { width: 100%; max-width: none; height: 220px; min-height: unset; aspect-ratio: unset; align-self: auto; }
}

/* ===== WHAT SETS HER APART ===== */
.apart__head { max-width: 660px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.apart__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.apart__card {
  padding: 1.6rem 1.8rem;
  display: flex; flex-direction: row; align-items: flex-start; gap: 1.5rem;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px) saturate(1.8);
  -webkit-backdrop-filter: blur(14px) saturate(1.8);
  box-shadow: 0 8px 32px rgba(109,40,217,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all 0.4s var(--ease); overflow: hidden;
}
.apart__card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(63,42,82,0.3); border-color: var(--wisteria); }
.apart__card-left { display: flex; flex-direction: column; align-items: flex-start; flex-shrink: 0; min-width: 5.5rem; }
.apart__card-right { flex: 1; }
.apart__logo {
  height: 44px; max-width: 120px; width: auto;
  object-fit: contain; display: none; margin-bottom: 1.4rem;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  padding: 0.55rem 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.apart__big {
  display: block; font-family: var(--sans); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.04em;
  color: var(--jacarta); margin-top: 0.7rem;
}
.apart__card:nth-child(2) .apart__big,
.apart__card:nth-child(4) .apart__big { color: var(--blue-gray); }
.apart__card h3 { font-family: var(--sans); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 0.45rem; }
.apart__card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.apart__card strong { color: var(--ink); font-weight: 600; }
@media (max-width: 600px) { .apart__grid { grid-template-columns: 1fr; } }

/* ===== SERVICES ===== */
.services { background: var(--bright-gray); }
.services__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.services__intro { margin-top: 1.2rem; color: var(--muted); font-size: 1.1rem; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.svc {
  background: linear-gradient(145deg, var(--jacarta) 0%, var(--dark) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius); padding: 2.2rem;
  box-shadow: 0 20px 50px -20px rgba(109,40,217,0.45);
  transition: all 0.4s var(--ease);
  color: #fff;
}
.svc:nth-child(even) { background: linear-gradient(145deg, var(--dark) 0%, var(--jacarta) 100%); }
.svc__icon {
  width: 3rem; height: 3rem; border-radius: 12px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem;
}
.svc__icon .ti { font-size: 1.45rem; color: #fff; }
.svc:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -20px rgba(109,40,217,0.6); border-color: rgba(255,255,255,0.22); }
.svc__title { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; color: #fff; }
.svc__desc { color: rgba(255,255,255,0.68); font-size: 0.95rem; margin: 0.6rem 0 1.4rem; }
.svc__list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.svc__list li { position: relative; padding-left: 1.6rem; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.svc__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--wisteria); }

/* ===== PROCESS ===== */
.process { background: var(--bright-gray); }
.process__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.process__head { position: sticky; top: 110px; }
.process__lede { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--muted); margin-top: 1.2rem; line-height: 1.7; }
.process__steps { list-style: none; counter-reset: step; }
.pstep { display: grid; grid-template-columns: auto 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); align-items: baseline; }
.pstep:last-child { border-bottom: 1px solid var(--line); }
.pstep__num { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--blue-gray); }
.pstep h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--jacarta); margin-bottom: 0.4rem; }
.pstep p { color: var(--muted); max-width: 640px; }
.pstep:hover h3 { color: var(--blue-gray); transition: color 0.3s; }

/* ===== WORK ===== */
.work__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.work__slider-outer { position: relative; }
.work__nav { display: none; align-items: center; gap: 1rem; justify-content: center; margin-top: 1.4rem; }
.work__btn { width: 2.4rem; height: 2.4rem; border-radius: 50%; cursor: pointer; background: #fff; border: 1px solid var(--line); color: var(--jacarta); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(109,40,217,0.10); transition: all 0.3s var(--ease); }
.work__dots { display: flex; gap: 0.45rem; align-items: center; }
.work__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(109,40,217,0.25); cursor: pointer; transition: all 0.35s var(--ease); }
.work__dot.active { background: var(--jacarta); width: 22px; border-radius: 3px; }
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vcard--wide { grid-column: span 2; }
.vcard {
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius); padding: 2.4rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px) saturate(1.8);
  -webkit-backdrop-filter: blur(14px) saturate(1.8);
  box-shadow: 0 8px 32px rgba(109,40,217,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all 0.4s var(--ease);
}
.vcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(63,42,82,0.3); }
.vcard__role { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-gray); }
.vcard__name { font-family: var(--serif); font-weight: 500; font-size: 1.8rem; color: var(--jacarta); margin: 0.6rem 0 0.9rem; }
.vcard p { color: var(--muted); }
.vcard p strong { color: var(--jacarta); font-weight: 700; }
.vcard--feature { grid-column: 1 / -1; background: linear-gradient(150deg, var(--blue-gray), var(--jacarta)); border-color: transparent; }
.vcard--feature .vcard__role { color: var(--wisteria); }
.vcard--feature .vcard__name { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.vcard--feature p { color: rgba(255,255,255,0.82); max-width: 760px; }
.vcard--feature strong { color: #fff; font-weight: 600; }
.vcard--feature:hover .vcard__name { color: #fff; }

/* ===== RECOGNITION ===== */
.recog__logo {
  height: 70px; max-width: 200px;
  width: auto; object-fit: contain;
  display: block; margin-bottom: 1.4rem;
}
.recog__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.recog__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.recog__item {
  padding: 2.4rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(109,40,217,0.07);
  transition: all 0.3s var(--ease);
}
.recog__item:hover { background: var(--bright-gray); box-shadow: 0 6px 28px rgba(109,40,217,0.10); }
.recog__item h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; color: var(--jacarta); margin-bottom: 0.5rem; }
.recog__item p { color: var(--muted); font-size: 0.96rem; }

/* Slider outer wrapper + nav (desktop: transparent wrapper, hidden nav) */
.recog__slider-outer { position: relative; }
.recog__nav {
  display: none;
  align-items: center; gap: 1rem; justify-content: center; margin-top: 1.4rem;
}
.recog__btn {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; cursor: pointer;
  background: #fff; border: 1px solid var(--line); color: var(--jacarta);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(109,40,217,0.10);
  transition: all 0.3s var(--ease);
}
.recog__btn:hover { background: var(--bright-gray); border-color: var(--jacarta); }
.recog__btn .ti { font-size: 1rem; }
.recog__dots { display: flex; gap: 0.45rem; align-items: center; }
.recog__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(109,40,217,0.25); cursor: pointer;
  transition: all 0.35s var(--ease);
}
.recog__dot.active { background: var(--jacarta); width: 22px; border-radius: 3px; }

/* ===== CTA ===== */
.cta { background: linear-gradient(160deg, #1a0a48 0%, var(--dark) 100%); color: #fff; text-align: center; }
.cta .section__eyebrow { color: var(--wisteria); }
.cta__inner { max-width: 780px; margin: 0 auto; }
.cta__title { font-family: var(--serif); font-weight: 800; font-size: clamp(1.9rem, 3.8vw, 3.2rem); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.2rem; }
.cta__title em { color: var(--wisteria); font-style: normal; }
.cta__lede { color: rgba(255,255,255,0.72); font-size: 1.15rem; max-width: 560px; margin: 0 auto 2.4rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta__contacts { list-style: none; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.14); }
.cta__contacts a, .cta__contacts span { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color 0.25s; }
.cta__contacts a:hover { color: var(--wisteria); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; padding: 2rem; background: rgba(80,20,180,0.75); backdrop-filter: blur(20px) saturate(1.8); -webkit-backdrop-filter: blur(20px) saturate(1.8); border-left: 1px solid rgba(255,255,255,0.15); transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .nav__links a { color: #fff; font-size: 1.1rem; }
  .nav__links.open { transform: none; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
  .nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }
  .about__grid { grid-template-columns: 1fr; }
  .about__head { position: static; }
  .process__grid { grid-template-columns: 1fr; }
  .process__head { position: static; }
  .for__grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 5.5rem 1rem 1.4rem; }
  .hero__card { height: calc(100vh - 6.9rem); border-radius: 20px; }
  .hero__content { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .hero__left { max-width: 100%; }
  .hero__right { align-items: flex-start; }
  .hero__overlay {
    background: linear-gradient(
      155deg,
      rgba(10, 2, 60, 0.98) 0%,
      rgba(38, 8, 120, 0.94) 35%,
      rgba(70, 15, 180, 0.70) 58%,
      rgba(70, 15, 180, 0.22) 78%,
      transparent 100%
    );
  }
}
@media (max-width: 680px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .section { padding-block: 2.8rem; }
  .for__head, .apart__head, .work__head, .recog__head, .services__head { margin-bottom: 1.5rem; }
  .services__grid, .for__grid { grid-template-columns: 1fr; }
  /* Work / ventures slider on mobile */
  .work__slider-outer { overflow: hidden; }
  .work__grid { display: flex; flex-direction: row; gap: 1.25rem; width: 100%; will-change: transform; }
  .work__grid .vcard { flex: 0 0 calc(100% / 1.3); min-width: 0; }
  .work__nav { display: flex; }
  /* Recognition slider on mobile */
  .recog__slider-outer { overflow: hidden; }
  .recog__grid { display: flex; flex-direction: row; gap: 1rem; width: 100%; will-change: transform; }
  .recog__item { flex: 0 0 calc(100% / 1.3); min-width: 0; }
  .recog__nav { display: flex; }
  .pstep { grid-template-columns: 1fr; gap: 0.5rem; }
  .hero { padding: 8rem var(--pad) 1rem; }
  .hero__card { height: calc(100svh - 9rem); min-height: unset; border-radius: 20px; }
  .hero__content { gap: 1rem; padding: 1.6rem 1.25rem; }
  .hero__left { max-width: 100%; }
  .hero__right { display: none; }
  .hero__title { font-size: clamp(1.2rem, calc(8vw - 6px), 2rem); line-height: 1.12; }
  .hero__lede { font-size: 0.81rem; }
  .hero__title-dk { display: none; }
  .hero__title-mb { display: inline; }
  .hero__actions .btn--ghost-light { display: none; }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      transparent 40%,
      rgba(38, 8, 120, 0.78) 68%,
      rgba(38, 8, 120, 0.88) 100%
    );
  }
  .hero__media img { object-position: 55% center; }
}
/* ===== TYPOGRAPHY REFINEMENTS ===== */
.section__eyebrow, .hero__eyebrow, .vcard__role {
  font-weight: 700; letter-spacing: 0.16em;
}
.hero__eyebrow { font-weight: 800; }
.nav__brand-name { font-weight: 700; letter-spacing: 0; }
.hero__title, .section__title, .cta__title,
.svc__title, .vcard__name, .recog__item h3, .pstep h3 {
  font-weight: 600;
}
.stat__num, .stat__suffix { font-weight: 700; }


/* ===== HOVER MICRO-INTERACTIONS ===== */
.nav__links a:not(.nav__cta) { position: relative; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1.5px;
  background: var(--blue-gray); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left; }
.btn { position: relative; overflow: hidden; }
.btn:active { transform: scale(0.97); }
.svc__list li { transition: transform 0.3s var(--ease), color 0.3s; }
.svc:hover .svc__list li { transform: translateX(4px); }
.svc:hover .svc__list li::before { background: var(--wisteria); }
.vcard__name, .svc__title { transition: color 0.3s var(--ease); }
.vcard:not(.vcard--feature):hover .vcard__name { color: var(--blue-gray); }

/* ===== CLICK RIPPLE ===== */
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255,255,255,0.4); pointer-events: none;
  animation: ripple 0.65s var(--ease);
}
.btn--ghost .ripple, .btn--ghost-light .ripple { background: rgba(63,42,82,0.16); }
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }

/* ===== 3D TILT (hover) ===== */
.services__grid, .work__grid { perspective: 1100px; }
.svc, .vcard { transform-style: preserve-3d; }

/* ===== DIRECTIONAL REVEAL VARIANTS ===== */
.work__grid .reveal:nth-child(odd) { transform: translateX(-44px); }
.work__grid .reveal:nth-child(even) { transform: translateX(44px); }
.services__grid .svc:nth-child(2n) { transform: translateY(54px); }
.recog__item.reveal:nth-child(odd) { transform: translateX(-30px); }
.recog__item.reveal:nth-child(even) { transform: translateX(30px); }
.reveal.in { transform: none !important; }

@media (max-width: 680px) {
  .work__grid .reveal:nth-child(odd),
  .work__grid .reveal:nth-child(even),
  .recog__item.reveal:nth-child(odd),
  .recog__item.reveal:nth-child(even) { transform: translateY(36px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .svc:hover .svc__list li { transform: none; }
}
