/* ---------- MyEshop — Homepage redesign ---------- */
:root {
  --ink: #0E1014;
  --ink-2: #1A1C22;
  --ink-3: #24272E;
  --paper: #F2EEE6;
  --paper-2: #E8E2D4;
  --paper-3: #D6CFBF;
  --cream-line: #C9C2B0;
  --gold: #C9A86A;
  --gold-2: #B89455;
  --pink: #E83C69;
  --pink-2: #FF5B83;
  --muted-dark: #8B8478;
  --muted-light: #6A6358;

  --display: "Bricolage Grotesque", "Times New Roman", serif;
  --sans: "Geist", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --max: 1440px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

::selection { background: var(--pink); color: var(--paper); }

/* ---------- Type utilities ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }

.display {
  font-family: var(--display);
  font-weight: 500;
  font-stretch: 90%;
  letter-spacing: -0.025em;
  line-height: 0.92;
  font-feature-settings: "ss01" on;
}

.serif-italic {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.mono { font-family: var(--mono); }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(80px, 11vw, 160px);
  position: relative;
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .eyebrow { color: var(--gold); }

/* ---------- Top NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 240ms ease, backdrop-filter 240ms ease, border-color 240ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14, 16, 20, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(242, 238, 230, 0.06);
}
.nav.on-paper.is-scrolled {
  background: rgba(242, 238, 230, 0.85);
  border-bottom-color: rgba(14, 16, 20, 0.08);
}
.nav__logo {
  height: 35px;
  width: auto;
}
@media (min-width: 1025px) {
  .nav__logo { height: 54px; }
}
.nav__logo svg, .nav__logo img { height: 100%; width: auto; }
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  color: var(--paper);
}
.nav.on-paper .nav__links { color: var(--ink); }
.nav__links a {
  position: relative;
  opacity: 0.85;
  transition: opacity 180ms ease;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  background: var(--pink);
  color: var(--paper);
  border: none;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 160ms ease, background 160ms ease;
}
.nav.on-paper .nav__cta {
  background: var(--pink);
  color: var(--paper);
}
.nav__cta:hover { transform: translateY(-1px); background: var(--pink-2); }
.nav__cta .arr {
  width: 14px; height: 14px;
  transition: transform 200ms ease;
}
.nav__cta:hover .arr { transform: translate(2px, -2px); }

/* ---------- HERO ---------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  min-height: 100vh;
  padding: 104px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__video-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(14,16,20,0.16) 0%, rgba(14,16,20,0.06) 45%, rgba(14,16,20,0.3) 100%),
    radial-gradient(ellipse 95% 75% at 50% 50%, transparent 25%, rgba(14,16,20,0.16) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(242,238,230,0.04) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  pointer-events: none;
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, rgba(232,60,105,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 90%, rgba(201,168,106,0.06) 0%, transparent 55%);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 24px;
}
.hero__eyebrow-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(24px, 3vw, 40px);
  gap: 40px;
}
.hero__loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  line-height: 1.6;
  text-align: right;
}
.hero__loc strong {
  display: block;
  color: var(--paper);
  font-weight: 400;
  margin-bottom: 4px;
}
.hero__headline {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 100px);
  font-weight: 500;
  font-stretch: 88%;
  line-height: 0.94;
  letter-spacing: -0.028em;
  margin: 0 0 clamp(26px, 3vw, 40px) 0;
  max-width: 1080px;
}
.hero__headline em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-stretch: 100%;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hero__headline .pink {
  color: var(--pink);
  font-style: normal;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: rgba(242, 238, 230, 0.78);
  max-width: 680px;
  font-weight: 400;
  text-wrap: balance;
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arr {
  width: 14px; height: 14px;
  transition: transform 200ms ease;
}
.btn:hover .arr { transform: translate(2px, -2px); }
.btn--primary {
  background: var(--pink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--pink-2); }
.btn--ghost-dark {
  background: transparent;
  color: var(--paper);
  border-color: rgba(242,238,230,0.25);
}
.btn--ghost-dark:hover { border-color: rgba(242,238,230,0.6); }
.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: rgba(14,16,20,0.18);
}
.btn--ghost-light:hover { border-color: rgba(14,16,20,0.5); }
.btn--paper {
  background: var(--paper);
  color: var(--ink);
}
.btn--paper:hover { background: #fff; }
.btn--gold {
  background: var(--pink);
  color: var(--paper);
}
.btn--gold:hover { background: var(--pink-2); }

/* Hero metric pill */
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(28px, 3.5vw, 52px);
  border-top: 1px solid rgba(242,238,230,0.12);
  padding-top: 22px;
}
.hero__metric {
  padding-right: 24px;
}
.hero__metric + .hero__metric {
  border-left: 1px solid rgba(242,238,230,0.12);
  padding-left: 32px;
}
.hero__metric-num {
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 500;
  font-stretch: 90%;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero__metric-num .unit {
  font-size: 0.55em;
  color: var(--gold);
  font-stretch: 100%;
}
.hero__metric-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 10px;
  line-height: 1.45;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted-dark);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  pointer-events: none;
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- LOGOS strip ---------- */
.logos {
  background: var(--paper-2);
  padding: clamp(56px, 7vw, 90px) 0;
  border-block: 1px solid var(--cream-line);
  overflow: hidden;
}
.logos__inner {
  max-width: none;
  margin: 0 auto;
  display: block;
}
.logos__head {
  max-width: 820px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  padding-inline: var(--gutter);
  text-align: center;
}
.logos__head .eyebrow {
  color: var(--gold-2);
  margin-bottom: 18px;
}
.logos__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 500;
  font-stretch: 90%;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 18ch;
  text-wrap: balance;
}
.logos__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-stretch: 100%;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: -0.015em;
}
.logos__viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.logos__marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 60s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.logos__viewport:hover .logos__marquee {
  animation-play-state: paused;
}
@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logos__card {
  flex: 0 0 158px;
  width: 158px;
  max-width: 158px;
  height: 86px;
  margin-right: 18px;
  padding: 15px;
  background: #fff;
  border: 1px solid rgba(14, 16, 20, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14, 16, 20, 0.06);
}
.logos__card img,
.logos__sram {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
}
.logos__sram {
  width: 100%;
  max-height: 26px;
}

/* ---------- STATS ---------- */
.stats {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-bottom: 1px solid var(--cream-line);
}
.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.stats__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: clamp(50px, 7vw, 90px);
  align-items: end;
}
.stats__title {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 500;
  font-stretch: 90%;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
  max-width: 11ch;
}
.stats__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-stretch: 100%;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: -0.015em;
}
.stats__desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted-light);
  max-width: 56ch;
  margin: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--cream-line);
}
.stat {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--cream-line);
  position: relative;
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat__num {
  font-family: var(--display);
  font-size: clamp(56px, 6.8vw, 104px);
  font-weight: 500;
  font-stretch: 85%;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__num .unit {
  font-size: 0.45em;
  color: var(--pink);
  font-stretch: 100%;
}
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 16px;
  line-height: 1.5;
}
.stat__sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin-top: 10px;
  max-width: 24ch;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.services__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.services__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 96px);
}
.services__title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 500;
  font-stretch: 88%;
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin: 18px 0 0;
}
.services__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-stretch: 100%;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.015em;
}
.services__title .pink { color: var(--pink); font-style: normal; }
.services__intro {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(242,238,230,0.7);
  max-width: 44ch;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.svc {
  background: var(--ink-2);
  border: 1px solid rgba(242,238,230,0.07);
  border-radius: 6px;
  padding: 40px;
  position: relative;
  transition: border-color 240ms ease, transform 240ms ease;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.svc:hover {
  border-color: rgba(242,238,230,0.18);
  transform: translateY(-2px);
}
.svc__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-dark);
}
.svc__brand {
  position: absolute;
  top: 38px;
  right: 40px;
  height: 25px;
  width: auto;
  opacity: 0.95;
  z-index: 2;
}
.svc__brand--vtex { height: 36px; top: 34px; }
.svc__title {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  font-stretch: 92%;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 24px 0 12px;
}
.svc__desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242,238,230,0.72);
  margin: 0 0 28px;
  max-width: 40ch;
}
.svc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.svc__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border: 1px solid rgba(242,238,230,0.15);
  border-radius: 4px;
  color: rgba(242,238,230,0.78);
}

.svc--ai {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1A1C22 0%, #211a1e 60%, #2a1820 100%);
  border-color: rgba(232, 60, 105, 0.25);
  min-height: 440px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  column-gap: 60px;
  row-gap: 30px;
  padding: 56px;
  align-items: start;
}
.svc--ai .svc__title {
  font-size: clamp(36px, 4.2vw, 64px);
}
.svc--ai .svc__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--pink);
  font-stretch: 100%;
  font-weight: 400;
}
.svc--ai .svc__desc {
  font-size: 17px;
  max-width: none;
}
.svc--ai .svc__num { color: var(--pink); }

.svc__visual {
  position: relative;
  min-height: 340px;
  border-radius: 8px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, #16131a 0%, #0d0e12 70%);
  overflow: hidden;
  border: 1px solid rgba(242,238,230,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
}
.svc__visual svg { overflow: visible; }
.ai-svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}
.svc__visual-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle 120px at 50% 50%, rgba(232,60,105,0.22) 0%, transparent 70%);
  animation: aiGlowPulse 4s ease-in-out infinite;
}
@keyframes aiGlowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.svc__visual-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 12px, rgba(232,60,105,0.06) 12px 13px);
}
.svc__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,238,230,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,238,230,0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
}

/* AI graph elements */
.ai-line {
  stroke: rgba(242,238,230,0.16);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 3 7;
  animation: aiFlow 1s linear infinite;
}
@keyframes aiFlow { to { stroke-dashoffset: -10; } }

.ai-core-halo { opacity: 0.16; transform-box: fill-box; transform-origin: center; animation: aiBreathe 3.6s ease-in-out infinite; }
.ai-core-ring { opacity: 0.55; transform-box: fill-box; transform-origin: center; animation: aiSpin 14s linear infinite; }
@keyframes aiBreathe {
  0%, 100% { transform: scale(1); opacity: 0.14; }
  50% { transform: scale(1.18); opacity: 0.3; }
}
@keyframes aiSpin { to { transform: rotate(360deg); } }
.ai-core-label {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  fill: #0E1014;
}
.ai-chip {
  fill: rgba(242,238,230,0.05);
  stroke: rgba(242,238,230,0.16);
  stroke-width: 1;
}
.ai-node:hover .ai-chip { fill: rgba(232,60,105,0.12); stroke: rgba(232,60,105,0.4); }
.ai-chip-dot { fill: var(--gold); }
.ai-chip-label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  fill: rgba(242,238,230,0.92);
}
@media (prefers-reduced-motion: reduce) {
  .ai-line, .ai-core-halo, .ai-core-ring, .svc__visual-glow, .ai-pulse { animation: none; }
  .ai-pulse { display: none; }
}
.svc__visual-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.svc__visual-content {
  position: relative;
  z-index: 2;
}

.svc__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--paper);
  border-bottom: 1px solid rgba(242,238,230,0.3);
  padding-bottom: 4px;
  margin-top: 20px;
  align-self: flex-start;
  transition: border-color 200ms ease;
}
.svc__link:hover { border-color: var(--gold); color: var(--gold); }
.svc__link .arr { width: 12px; height: 12px; transition: transform 200ms ease; }
.svc__link:hover .arr { transform: translate(2px, -2px); }
.svc__link--toggle {
  background: var(--gold);
  border: none;
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  padding: 13px 22px;
  transition: background 180ms ease, transform 180ms ease;
}
.svc__link--toggle:hover {
  background: var(--gold-2);
  color: var(--ink);
  transform: translateY(-1px);
}
.svc__link--toggle .arr { width: 13px; height: 13px; transition: transform 240ms ease; }
.svc__link--toggle:hover .arr { transform: none; }
.svc__link--toggle.is-open .arr { transform: rotate(180deg); }

.ai-caps {
  margin-top: 4px;
  padding-top: 0;
  border-top: none;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
  animation: caseDetailsIn 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-caps[hidden] { display: none; }
.ai-caps__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  font-weight: 500;
}
.ai-caps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ai-caps__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(242,238,230,0.78);
}
.ai-caps__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

/* ---------- CASES (work showcase) ---------- */
.cases {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.cases__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cases__head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(56px, 6vw, 88px);
}
.cases__title {
  font-family: var(--display);
  font-size: clamp(36px, 5.2vw, 84px);
  font-weight: 500;
  font-stretch: 88%;
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin: 18px 0 0;
}
.cases__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-stretch: 100%;
  font-weight: 400;
}
.cases__title .pink { color: var(--pink); font-style: normal; }
.cases__intro {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(242,238,230,0.7);
  margin: 0;
  max-width: 44ch;
}

.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  align-items: start;
}
.cases__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 64px);
}
.cases__more-btn { cursor: pointer; }
.cases__more-btn .arr { width: 14px; height: 14px; transition: transform 200ms ease; }
.cases__more-btn:hover .arr { transform: translateY(2px); }
.case {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case:nth-child(even) {
  margin-top: clamp(0px, 4vw, 64px);
}
.case__slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #14161B;
  border: 1px solid rgba(242,238,230,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 280ms ease, transform 360ms cubic-bezier(0.16,1,0.3,1);
}
.case:hover .case__slot {
  border-color: rgba(232, 60, 105, 0.4);
  transform: translateY(-4px);
}
.case__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  filter: grayscale(1) brightness(0.62) contrast(1.02);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16,1,0.3,1), filter 500ms ease;
}
.case__img.is-ready { opacity: 1; }
.case:hover .case__img.is-ready { transform: scale(1.02); filter: grayscale(0) brightness(1) contrast(1); }
.case__placeholder.is-hidden { opacity: 0; pointer-events: none; }
/* striped placeholder shown when no image is dropped */
.case__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 14px,
    rgba(242,238,230,0.025) 14px 15px
  );
  pointer-events: none;
  transition: opacity 400ms ease;
}
.case__placeholder-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.case__placeholder-mid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case__placeholder-name {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-stretch: 95%;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(242,238,230,0.55);
  line-height: 1;
}
.case__placeholder-url {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted-dark);
}
.case__placeholder-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 60, 105, 0.7);
}
.case__placeholder-bottom::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.case__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(242,238,230,0.1);
}
.case__meta-left {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.case__meta-platform {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.case__meta-platform::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.case__meta-platform.is-vtex { color: var(--pink); }
.case__meta-platform.is-vtex::before { background: var(--pink); }
.case__meta-year {
  color: var(--muted-dark);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.case__model-pill {
  display: inline-flex;
  align-items: center;
  background: #BFE0FF;
  color: #0E1014;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.case__meta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.75;
  transition: opacity 200ms ease, color 200ms ease;
}
.case__meta-link:hover { opacity: 1; color: var(--gold); }
.case__meta-link .arr { width: 11px; height: 11px; transition: transform 200ms ease; }
.case__meta-link:hover .arr { transform: translate(2px, -2px); }

.case__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case__name {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-stretch: 92%;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.case__desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242,238,230,0.7);
  margin: 0;
  max-width: 50ch;
}
.case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.case__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  background: transparent;
  white-space: nowrap;
}
.case:hover .case__tag { border-color: var(--gold); }

.case__view {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: 6px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(232, 60, 105, 0.12);
  border: 1px solid rgba(232, 60, 105, 0.45);
  color: var(--pink-2);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.case__view:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: translateY(-1px);
}
.case__view .arr { width: 13px; height: 13px; transition: transform 240ms ease; }
.case__view:hover { transform: translateY(-1px); }
.case__view.is-open {
  background: transparent;
  color: var(--paper);
  border-color: rgba(242,238,230,0.3);
}
.case__view.is-open .arr { transform: rotate(180deg); }

.case__details {
  overflow: hidden;
  margin-top: 4px;
  border-top: 1px solid rgba(242,238,230,0.12);
  padding-top: 18px;
  animation: caseDetailsIn 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.case__details[hidden] { display: none; }
@keyframes caseDetailsIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.case__details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.case__details-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(242,238,230,0.72);
}
.case__details-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.cases__cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(60px, 7vw, 96px);
  padding-top: 36px;
  border-top: 1px solid rgba(242,238,230,0.12);
  gap: 32px;
  flex-wrap: wrap;
}
.cases__cta-line {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-stretch: 95%;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 36ch;
}
.cases__cta-line em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-stretch: 100%;
}

@media (max-width: 1024px) {
  .cases__head { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .case:nth-child(even) { margin-top: 0; }
  /* Touch devices have no hover — show case screenshots already in full color */
  .case__img { filter: none; }
  .case:hover .case__img.is-ready { filter: none; }
}

/* ---------- GEO (inline within Services) ---------- */
.geo {
  color: var(--paper);
  margin-top: clamp(36px, 4vw, 56px);
}
.geo__inner {
  max-width: none;
  margin: 0;
}
.geo__head {
  max-width: 760px;
  margin-bottom: clamp(50px, 6vw, 80px);
}
.geo__head .eyebrow { color: var(--gold-2); }
.geo__title {
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 72px);
  font-weight: 500;
  font-stretch: 88%;
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin: 18px 0 24px;
  color: var(--paper);
}
.geo__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-stretch: 100%;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: -0.015em;
}
.geo__intro {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(242,238,230,0.7);
  margin: 0;
}
.geo__intro strong { color: var(--paper); font-weight: 600; }

.geo__body {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.geo__points {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(242,238,230,0.14);
}
.geo__point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(242,238,230,0.14);
}
.geo__point-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--pink);
}
.geo__point-title {
  font-family: var(--display);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 500;
  font-stretch: 94%;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--paper);
}
.geo__point-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(242,238,230,0.62);
  margin: 0;
  max-width: 44ch;
}
.geo__cta {
  margin-top: 32px;
  align-self: flex-start;
}

/* GEO visual — elevated AI-answer card */
.geo__visual {
  background: var(--ink-2);
  border-radius: 12px;
  padding: 22px;
  position: sticky;
  top: 90px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(242,238,230,0.09);
}
.geo__engines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.geo__engine {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(242,238,230,0.16);
  color: rgba(242,238,230,0.55);
  transition: all 280ms ease;
}
.geo__engine.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.geo__answer {
  background: var(--ink);
  border: 1px solid rgba(242,238,230,0.08);
  border-radius: 10px;
  padding: 20px;
}
.geo__answer-q {
  font-size: 14px;
  color: var(--paper);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(242,238,230,0.08);
  line-height: 1.4;
}
.geo__answer-spark {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.geo__answer-a p {
  font-size: 14px;
  line-height: 1.62;
  color: rgba(242,238,230,0.78);
  margin: 0 0 16px;
}
.geo__answer-a mark {
  background: rgba(232,60,105,0.18);
  color: #fff;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 500;
  box-shadow: inset 0 -1px 0 var(--pink);
}
.geo__answer-a sup {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
}
.geo__cite {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
}
.geo__cite-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201,168,106,0.18);
}
.geo__cite-src { color: rgba(242,238,230,0.85); }
.geo__cite-tag {
  margin-left: auto;
  color: var(--gold);
  border: 1px solid rgba(201,168,106,0.35);
  border-radius: 4px;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 9.5px;
}
.geo__visual-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(242,238,230,0.08);
}
.geo__visual-foot-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.geo__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 44px;
}
.geo__bars span {
  width: 12px;
  background: rgba(242,238,230,0.22);
  border-radius: 2px 2px 0 0;
  display: block;
}
.geo__bars span.is-hot { background: var(--pink); }

@media (max-width: 1024px) {
  .geo__body { grid-template-columns: 1fr; }
  .geo__visual { position: static; }
}

/* ---------- PROCESS ---------- */
.process {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.process__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.process__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.process__title {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 72px);
  font-weight: 500;
  font-stretch: 88%;
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin: 18px 0 0;
}
.process__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-stretch: 100%;
  color: var(--pink);
  font-weight: 400;
}
.process__intro {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted-light);
  max-width: 50ch;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream-line);
}
.pstep {
  padding: 36px 28px 36px 0;
  position: relative;
}
.pstep::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--pink);
}
.pstep__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-bottom: 28px;
  display: block;
}
.pstep__title {
  font-family: var(--display);
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 500;
  font-stretch: 95%;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.pstep__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-light);
  margin: 0 0 24px;
}
.pstep__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.pstep__list li {
  padding: 8px 0;
  border-top: 1px solid var(--cream-line);
}

/* ---------- PARTNERS ---------- */
.partners {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 8vw, 110px) var(--gutter);
  border-top: 1px solid rgba(242,238,230,0.1);
  overflow: hidden;
}
.partners__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(242,238,230,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,238,230,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 30%, transparent 100%);
}
.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(232,60,105,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 15% 90%, rgba(201,168,106,0.07) 0%, transparent 55%);
}
.partners__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.partners__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.partners__copy h2 {
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 500;
  font-stretch: 92%;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 18px 0 16px;
}
.partners__copy h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--pink);
  font-stretch: 100%;
  font-weight: 400;
}
.partners__copy p {
  font-size: 15px;
  color: rgba(242,238,230,0.7);
  line-height: 1.55;
  margin: 0;
}
.partners__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.partners__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.partner-logo__mark {
  background: none;
  border-radius: 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  transition: transform 220ms ease;
}
.partner-logo:hover .partner-logo__mark { transform: translateY(-2px); }
.partner-logo__mark img {
  max-height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.partner-logo__shopify {
  max-height: 56px;
}
.partner-logo__mark img.partner-logo__vtex { max-height: 36px; }
.partner-logo__level {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-logo__level::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(242,238,230,0.1);
  border: 1px solid rgba(242,238,230,0.1);
}
.partner {
  background: var(--ink);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  gap: 12px;
  transition: background 220ms ease;
}
.partner:hover { background: var(--ink-2); }
.partner__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  font-stretch: 95%;
  letter-spacing: -0.015em;
  margin: 0;
}
.partner__level {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner__level::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- TESTIMONIALS ---------- */
.tmonials {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--cream-line);
  overflow: hidden;
}
.tmonials__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.tmonials__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.tmonials__title {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 500;
  font-stretch: 90%;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
}
.tmonials__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-stretch: 100%;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: -0.015em;
}
.tmonials__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.tmonials__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--cream-line);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.tmonials__arrow svg { width: 16px; height: 16px; }
.tmonials__arrow:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.tmonials__viewport { overflow: hidden; }
.tmonials__track {
  display: flex;
  gap: 24px;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}
.tmonial {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  background: linear-gradient(168deg, #fff 0%, #FBF8F2 100%);
  border: 1px solid var(--cream-line);
  border-radius: 18px;
  padding: 40px 38px 32px;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
.tmonial__watermark {
  position: absolute;
  top: 6px;
  right: 20px;
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 80%;
  font-size: 75px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper);
  opacity: 1;
  pointer-events: none;
  user-select: none;
}
.tmonial__mark {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 80px;
  line-height: 0.4;
  height: 30px;
  color: var(--pink);
  display: block;
  margin-bottom: 18px;
}
.tmonial__quote {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.62;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 32px;
  flex: 1;
  text-wrap: pretty;
}
.tmonial__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--cream-line);
}
.tmonial__person {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.tmonial__name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
  white-space: nowrap;
}
.tmonial__url {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--muted-light);
  white-space: nowrap;
  transition: color 160ms ease;
  width: fit-content;
}
.tmonial__url:hover { color: var(--pink); }
.tmonial__logo {
  flex-shrink: 0;
  height: auto;
  max-height: 22px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  opacity: 0.85;
}
.tmonials__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}
.tmonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--cream-line);
  transition: background 180ms ease, width 180ms ease, border-radius 180ms ease;
}
.tmonials__dot.is-active {
  background: var(--pink);
  width: 24px;
  border-radius: 999px;
}

/* ---------- BIG CTA ---------- */
.cta {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  min-height: 88vh;
  padding: clamp(100px, 13vw, 200px) var(--gutter) clamp(70px, 9vw, 120px);
  border-top: 1px solid rgba(242,238,230,0.1);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/bg-cta-2.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14,16,20,0.9) 0%, rgba(14,16,20,0.7) 42%, rgba(14,16,20,0.42) 100%),
    linear-gradient(0deg, rgba(14,16,20,0.72) 0%, rgba(14,16,20,0.2) 45%, rgba(14,16,20,0.4) 100%);
}
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: end;
}
.cta__main .eyebrow { color: var(--gold); }
.cta__title {
  font-family: var(--display);
  font-size: clamp(44px, 6.6vw, 110px);
  font-weight: 500;
  font-stretch: 86%;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 20px 0 0;
}
.cta__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--pink);
  font-stretch: 100%;
  font-weight: 400;
}
.cta__lede {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: rgba(242,238,230,0.82);
  max-width: 52ch;
  margin: 28px 0 0;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.cta__btn { padding: 17px 26px; font-size: 15px; }
.cta__btn--wpp {
  background: #25D366;
  color: #0A1A0E;
}
.cta__btn--wpp:hover { background: #20bd5a; }
.cta__wpp-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.cta__contact {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(242,238,230,0.16);
  border-radius: 12px;
  background: rgba(14,16,20,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta__contact-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242,238,230,0.1);
}
.cta__contact-row:last-child { padding-bottom: 0; border-bottom: none; }
.cta__contact-row span:first-child { color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.cta__contact-row span:last-child { color: var(--paper); text-align: right; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--gutter) 36px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(242,238,230,0.1);
}
.footer__cta { flex-shrink: 0; align-self: center; }
.footer__brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 24px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242,238,230,0.65);
  max-width: 32ch;
  margin: 0;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(242,238,230,0.85);
  transition: color 180ms ease;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.footer__bottom > span { white-space: nowrap; }
.footer__bottom-right {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__bottom-right a { white-space: nowrap; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__bottom { grid-template-columns: 1fr; }
  .services__head, .process__head, .stats__head, .cta__inner, .partners__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services__grid { grid-template-columns: 1fr; }
  .svc--ai { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .ai-caps { grid-template-columns: 1fr; }
  .stats__grid, .process__steps { grid-template-columns: repeat(2, 1fr); }
  .stat, .pstep {
    border-right: none;
    border-bottom: 1px solid var(--cream-line);
  }
  .pstep { border-bottom: none; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { gap: 32px; }
  .hero__metrics { grid-template-columns: 1fr; gap: 0; }
  .hero__metric + .hero__metric {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(242,238,230,0.12);
    padding-top: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .stats__grid, .process__steps, .partners__grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; gap: 16px; }
  .hero__eyebrow-row { flex-direction: column; align-items: flex-start; }
  .hero__loc { text-align: left; }
}
