/* ------------------------------------------------------------------
   DevXweb — Light theme using brand palette from devxweb.com
   ------------------------------------------------------------------ */
:root {
  /* primary sage palette */
  --purple: #8BA888;        /* (alias kept) → sage primary */
  --purple-dark: #6e8a6d;
  --purple-light: #b1c5af;
  --cream: #F5F3EE;          /* warm off-white background */
  --yellow: #FFEE58;
  --pink: #F6CFF4;
  --sage: #2C3E2D;           /* deep forest — used for dark accents */
  --gray-900: #2C3E2D;       /* deep forest text */
  --gray-700: #3d503e;
  --gray-500: #6b7a6c;
  --gray-300: #cdd2c8;
  --gray-100: #e6e6dc;
  --white: #ffffff;

  --bg: var(--white);
  --text: var(--gray-900);
  --muted: var(--gray-500);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(139,168,136,.06);
  --shadow-lg: 0 4px 12px rgba(0,0,0,.06), 0 24px 60px rgba(139,168,136,.12);

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }

.section {
  padding: 56px 0;
}
.section--alt {
  background: var(--white);
}
.section__head {
  text-align: center;
  margin-bottom: 36px;
}
.section__head h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 8px 0 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section__head p {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  padding: 6px 14px;
  background: rgba(139,168,136,.08);
  border-radius: 999px;
}

.accent-purple { color: var(--purple); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(139,168,136,.3);
}
.btn--primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(139,168,136,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.btn--full { width: 100%; }

/* ---------- Nav ---------- */
/* ─── Top contact strip (above nav on every page) ─── */
.top-bar {
  background: var(--text, #2C3E2D);
  color: var(--cream, #F5F3EE);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 55;
}
.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.top-bar__link:hover { color: var(--yellow, #FFEE58); }
.top-bar__link svg {
  width: 13px;
  height: 13px;
  color: var(--yellow, #FFEE58);
}
.top-bar__link--au { font-weight: 800; }
.top-bar__flag { font-size: 13px; line-height: 1; }
.top-bar__divider { color: rgba(255, 255, 255, .3); font-weight: 400; }
.top-bar__note {
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 780px) {
  .top-bar { font-size: 11px; }
  .top-bar__inner { gap: 10px; justify-content: center; }
  .top-bar__divider--hide,
  .top-bar__note--hide { display: none; }
}
@media (max-width: 480px) {
  .top-bar__link--nz,
  .top-bar__divider { display: none; }
  .top-bar__inner { padding: 7px 0; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.is-scrolled { border-color: var(--gray-100); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.nav__logo-mark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}
.nav__logo-mark .logo-img {
  display: block;
  height: 48px;
  width: auto;
}
.footer .nav__logo-mark .logo-img {
  height: 40px;
  width: auto;
  /* NO invert — logo has colour we want to keep */
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-700);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--purple); }
.nav__cta { padding: 10px 20px; font-size: 14px; }
.nav__burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform .2s, opacity .2s;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  text-align: center;
  overflow: hidden;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 14px 0 18px;
}
.page-hero p {
  font-size: 19px;
  color: var(--gray-700);
  max-width: 680px;
  margin: 0 auto;
}
.page-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  z-index: 0;
}
.page-hero__blob--1 { width: 380px; height: 380px; background: var(--pink); top: -120px; left: -80px; }
.page-hero__blob--2 { width: 320px; height: 320px; background: var(--yellow); bottom: -120px; right: -80px; opacity: .35; }

/* ---------- HERO — BIG / STANDOUT (home) ---------- */
.hero-big {
  position: relative;
  padding: 70px 0 40px;
  overflow: hidden;
  isolation: isolate;
}

/* mesh gradient background */
.mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.mesh__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .6;
  animation: blobFloat 14s ease-in-out infinite;
}
.mesh__blob--purple { width: 520px; height: 520px; background: #8BA888; top: -80px; left: -120px; opacity: .35; }
.mesh__blob--pink   { width: 460px; height: 460px; background: #F6CFF4; top: 30%; right: -100px; opacity: .65; animation-delay: -3s; }
.mesh__blob--yellow { width: 380px; height: 380px; background: #FFEE58; bottom: -80px; left: 20%; opacity: .42; animation-delay: -7s; }
.mesh__blob--sage   { width: 320px; height: 320px; background: #8BA888; top: 40%; left: 30%; opacity: .25; animation-delay: -10s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.05); }
  66%      { transform: translate(-30px,30px) scale(.97); }
}

/* huge scrolling background text */
.bg-marquee {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%) rotate(-3deg);
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.bg-marquee__track {
  display: inline-flex;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(120px, 18vw, 220px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(139,168,136,.10);
  animation: bgMarquee 40s linear infinite;
}
.bg-marquee__track span { padding-right: 40px; }
@keyframes bgMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* subtle noise/grain */
.noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .035;
  background-image:
    repeating-radial-gradient(circle at 25% 30%, rgba(0,0,0,.6) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 70% 80%, rgba(0,0,0,.5) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

.hero-big__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 600px;
  padding: 40px 24px 80px;
}

/* LEFT side */
.hero-big__left { max-width: 620px; }

.eyebrow--pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,168,136,.10);
}
.eyebrow--pulse .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  position: relative;
}
.eyebrow--pulse .dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--purple);
  opacity: .35;
  animation: pingPulse 1.8s ease-out infinite;
}
@keyframes pingPulse {
  0%   { transform: scale(.6); opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-big__title {
  font-size: clamp(46px, 7.2vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 20px 0 26px;
}

.word-stack {
  position: relative;
  display: inline-block;
}
.word-stack .rotator {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple) 0%, #b1c5af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 6px;
  border: none;
  min-width: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.word-stack__underline {
  position: absolute;
  left: 6px; right: 6px; bottom: 6px;
  height: 14px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}

.grad-text {
  background: linear-gradient(120deg, var(--purple) 0%, #b1c5af 50%, var(--purple) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  to { background-position: -200% 0; }
}

.hero-big__sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 22px;
  max-width: 560px;
}
.hero-big__sub strong { color: var(--text); font-weight: 700; }


.hero-big__cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn--glow {
  position: relative;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow:
    0 8px 24px rgba(139,168,136,.35),
    0 0 0 0 rgba(139,168,136,.35);
  animation: btnGlow 2.6s ease-in-out infinite;
}
.btn--glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--pink), var(--purple));
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity .3s;
}
.btn--glow:hover::before { opacity: .9; }
.btn--glow .btn__arrow {
  display: inline-block;
  transition: transform .25s;
}
.btn--glow:hover .btn__arrow { transform: translateX(4px); }
@keyframes btnGlow {
  0%,100% { box-shadow: 0 8px 24px rgba(139,168,136,.35), 0 0 0 0 rgba(139,168,136,.35); }
  50%     { box-shadow: 0 10px 30px rgba(139,168,136,.45), 0 0 0 12px rgba(139,168,136,0); }
}

.btn--link {
  background: transparent;
  border: none;
  padding: 8px 0;
  color: var(--text);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn--link .play {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 11px;
  color: var(--purple);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: transform .25s, background .25s, color .25s;
}
.btn--link:hover .play { background: var(--purple); color: var(--white); transform: scale(1.08); }

/* Trust strip */
.trust {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139,168,136,.10);
  border-radius: 999px;
  flex-wrap: wrap;
}
.trust__rating { display: inline-flex; align-items: center; gap: 8px; }
.stars { color: #FFB400; letter-spacing: 1px; font-size: 14px; }
.trust__text { font-size: 13px; color: var(--gray-700); }
.trust__text strong { color: var(--text); }
.trust__divider { width: 1px; height: 18px; background: var(--gray-300); }
.trust__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
}
.trust__dot {
  width: 8px; height: 8px;
  background: #16c784;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22,199,132,.2);
  animation: pingPulse 2s ease-out infinite;
}

/* RIGHT side — orbit / floating cards */
.hero-big__right {
  position: relative;
  height: 540px;
}
.orbit {
  position: relative;
  width: 100%; height: 100%;
}
.orbit__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,168,136,.30) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .8; }
  50%     { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow:
    0 4px 12px rgba(0,0,0,.06),
    0 24px 60px rgba(139,168,136,.14);
  border: 1px solid var(--gray-100);
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
.float-card--code {
  top: 8%; left: 4%;
  width: 280px;
  animation-delay: -0.5s;
}
.float-card--stat {
  top: 12%; right: 0;
  width: 170px;
  text-align: left;
  animation-delay: -2s;
}
.float-card--review {
  bottom: 10%; left: 0;
  width: 240px;
  animation-delay: -3.5s;
}
.float-card--tech {
  bottom: 6%; right: 4%;
  width: 220px;
  animation-delay: -1.2s;
}

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.float-card__head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 10px;
}
.float-card__head .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot--red    { background: #ff5f57; }
.dot--yellow { background: #ffbd2e; }
.dot--green  { background: #28c941; }
.float-card__file {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.code {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray-700);
}
.c-kw  { color: var(--purple); font-weight: 700; }
.c-fn  { color: #d97706; }
.c-str { color: #16a34a; }

.float-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}
.float-card__big {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}
.float-card__big span { font-size: 24px; }
.float-card__sub {
  margin-top: 8px;
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
}
.up-arrow { font-size: 14px; }

.float-card--review .float-card__stars {
  color: #FFB400;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.float-card--review p {
  margin: 0 0 6px;
  font-size: 13px;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}
.float-card--review small {
  font-size: 11px;
  color: var(--muted);
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tech-pills span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 999px;
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
}

/* Orbiting chips */
.chip-orbit {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--purple);
  color: var(--purple);
  box-shadow: 0 6px 14px rgba(139,168,136,.15);
  z-index: 1;
  animation: floatY 5s ease-in-out infinite;
}
.chip-orbit--1 {
  top: 48%; left: -2%;
  background: var(--yellow);
  border-color: var(--text);
  color: var(--text);
  animation-delay: -1.5s;
}
.chip-orbit--2 {
  top: 50%; right: -4%;
  background: var(--pink);
  border-color: var(--purple);
  animation-delay: -3s;
}
.chip-orbit--3 {
  top: 70%; left: 38%;
  background: var(--sage);
  border-color: var(--text);
  color: var(--white);
  animation-delay: -4s;
}

/* Stats — make them sit on top */
.stats--big {
  position: relative;
  z-index: 3;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-big__inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero-big__left { max-width: none; }
  .hero-big__sub { margin-left: auto; margin-right: auto; }
  .hero-big__cta { justify-content: center; }
  .hero-big__right { height: 460px; }
  .trust { justify-content: center; }
  .bg-marquee__track { font-size: clamp(80px, 16vw, 140px); }
}
@media (max-width: 640px) {
  .hero-big__right { height: 380px; }
  .float-card--code { width: 220px; }
  .float-card--stat { width: 140px; }
  .float-card--review { width: 200px; }
  .float-card--tech { width: 180px; }
  .chip-orbit { font-size: 10px; padding: 5px 10px; }
}

/* ---------- Hero (home) [legacy — kept for inner pages] ---------- */
.hero {
  position: relative;
  padding: 48px 0 40px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
}
.hl {
  background: linear-gradient(120deg, var(--yellow) 0% 100%);
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: 0 88%;
  padding: 0 6px;
}
.rotator {
  display: inline-block;
  color: var(--purple);
  border-bottom: 4px solid var(--purple);
  min-width: 280px;
  text-align: center;
}
.hero__sub {
  font-size: 19px;
  color: var(--gray-700);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  z-index: 0;
}
.hero__blob--1 { width: 420px; height: 420px; background: var(--pink); top: -120px; left: -120px; }
.hero__blob--2 { width: 360px; height: 360px; background: var(--yellow); bottom: -100px; right: -100px; opacity: .4; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.stat__num {
  font-size: 38px;
  font-weight: 800;
  color: var(--purple);
  font-family: var(--font-mono);
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Ticker ---------- */
.ticker {
  margin-top: 70px;
  overflow: hidden;
  border-block: 1px solid var(--gray-100);
  padding: 22px 0;
  background: var(--white);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: tick 40s linear infinite;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--gray-700);
}
.ticker__track img {
  height: 36px;
  width: auto;
  flex: 0 0 auto;
  display: block;
}
.ticker__dot { color: var(--purple); }

/* ---------- Tech Strip (redesigned · larger) ---------- */
.tech-strip {
  margin-top: 16px;
  padding: 10px 0 12px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(180deg, var(--white), var(--cream));
  position: relative;
}
.tech-strip__ticker {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 100px, #000 calc(100% - 100px), transparent);
          mask-image: linear-gradient(90deg, transparent, #000 100px, #000 calc(100% - 100px), transparent);
}
.tech-strip__track {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  width: max-content;
  animation: tech-strip-scroll 55s linear infinite;
  padding: 0;
}
.tech-strip__ticker:hover .tech-strip__track {
  animation-play-state: paused;
}
@keyframes tech-strip-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: -0.01em;
  transition: transform .3s ease, background .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease;
  flex-shrink: 0;
  cursor: default;
  box-shadow: 0 2px 6px rgba(44, 62, 45, .04);
}
.tech-chip > span:not(.tech-chip__label) {
  display: none;
}
.tech-chip img {
  height: 42px;
  width: 42px;
  display: block;
  filter: grayscale(1) contrast(.65);
  opacity: .6;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.tech-chip:hover {
  background: var(--text);
  color: var(--cream);
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(44, 62, 45, .25);
}
.tech-chip:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.15);
}
.tech-chip--divider {
  padding: 8px 12px;
  background: transparent;
  border: none;
  color: var(--gray-300);
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 800;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.tech-chip--divider:hover {
  background: transparent;
  color: var(--gray-300);
  border: none;
  transform: none;
  box-shadow: none;
}

@media (max-width: 640px) {
  .tech-strip { padding: 8px 0 10px; }
  .tech-chip { padding: 5px; }
  .tech-chip img { height: 32px; width: 32px; }
  .tech-chip--divider { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .tech-strip__track { animation: none; }
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Grid / Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.grid--services-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid--work { grid-template-columns: repeat(3, 1fr); }
.grid--testimonials { grid-template-columns: repeat(3, 1fr); }
.grid--benefits { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.service-card h3 { margin: 0 0 8px; font-size: 20px; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; }

.benefit-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(139,168,136,.08);
  display: grid; place-items: center;
  font-size: 26px;
}
.benefit-card h3 { margin: 0 0 10px; font-size: 18px; }
.benefit-card p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Process strip ---------- */
.success-keys {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.success-key h4 {
  margin: 0 0 6px;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.success-key p { margin: 0; font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.5; }

/* ---------- Full Service Section (services page) ---------- */
.service-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
  transition: box-shadow .25s, transform .25s;
}
.service-detail:hover { box-shadow: var(--shadow-lg); }
.service-detail__num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.service-detail h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.service-detail__desc {
  color: var(--gray-700);
  font-size: 16px;
  margin: 0 0 22px;
}
.service-detail__stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--cream);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}
.service-detail__features {
  list-style: none;
  padding: 0; margin: 0;
}
.service-detail__features li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
}
.service-detail__features li:last-child { border-bottom: none; }
.service-detail__features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 12px;
  width: 22px; height: 22px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Work cards (full) ---------- */
.filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-300);
  background: transparent;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  color: var(--gray-700);
}
.chip:hover { border-color: var(--purple); color: var(--purple); }
.chip.is-active { background: var(--purple); border-color: var(--purple); color: var(--white); }

.work-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work-card__media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.92);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 24px;
}
.work-card__body { padding: 22px 24px; }
.work-card__body h4 { margin: 0 0 4px; font-size: 17px; }
.work-card__body p { margin: 0; font-size: 14px; color: var(--muted); }
.work-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.04em;
}
.work-card.is-coming { opacity: .6; pointer-events: none; }
.work-card.is-hidden { display: none; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 0;
  border-left: 4px solid var(--purple);
}
.testimonial p { font-size: 17px; margin: 0 0 18px; font-style: italic; }
.testimonial footer { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 4px 22px;
  border: 1px solid var(--gray-100);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--purple);
  transition: transform .2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: 0 0 18px; color: var(--gray-700); }

/* ---------- Contact ---------- */
.section--contact {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
}
.section--contact .eyebrow {
  background: rgba(255,255,255,.15);
  color: var(--yellow);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__info h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}
.contact__info p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  margin-bottom: 32px;
}
.contact__list { list-style: none; padding: 0; margin: 0; }
.contact__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 15px;
}
.contact__list li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.contact__list strong {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--yellow);
}
.contact__list a:hover { color: var(--yellow); }

.contact__form {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.contact__form h3 {
  margin: 0 0 22px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-300);
  background: var(--cream);
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
}
.form__status {
  text-align: center;
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  min-height: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Big CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .12;
  top: -120px; right: -80px;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-banner p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.88);
  position: relative;
}
.cta-banner .btn--ghost {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
}
.cta-banner .btn--ghost:hover {
  background: var(--yellow);
  color: var(--text);
  border-color: var(--yellow);
}
.cta-banner__btns { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer (redesigned) ---------- */
.footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 168, 136, .18), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(255, 238, 88, .06), transparent 50%),
    linear-gradient(180deg, #223225, var(--gray-900));
  color: rgba(255, 255, 255, .78);
  padding: 72px 0 26px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  /* thin sage accent line at the top */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--yellow), var(--purple), transparent);
}

/* Grid layout — works for both HTML variants (__inner and __grid) */
.footer__inner,
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

/* Brand column */
.footer__col--brand p {
  margin: 18px 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .65);
  max-width: 340px;
}
.footer .nav__logo-mark {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 24px;
  background: transparent;
}

/* Brand availability pill */
.footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16c784;
  box-shadow: 0 0 0 4px rgba(22, 199, 132, .18);
  animation: footer-dot 2s ease-in-out infinite;
}
@keyframes footer-dot {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.35); }
}

/* Column headings */
.footer__col h4 {
  color: var(--white);
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
}

/* Column links */
.footer__col a,
.footer__col span {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14.5px;
  font-family: var(--font-display);
  transition: color .2s ease, transform .2s ease, padding-left .25s ease;
  position: relative;
}
.footer__col a::before {
  content: "→";
  position: absolute;
  left: -14px;
  opacity: 0;
  color: var(--yellow);
  transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
}
.footer__col a:hover {
  color: var(--yellow);
  padding-left: 14px;
}
.footer__col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer__col p {
  margin: 12px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 0.04em;
}
.footer__bottom a { color: rgba(255, 255, 255, .55); transition: color .2s ease; }
.footer__bottom a:hover { color: var(--yellow); }

/* Address block in Reach Us column keeps a soft box */
.footer__col--brand,
.footer__col:last-child {
  min-width: 0;
}
.footer__col--brand > *:last-child { margin-bottom: 0; }

/* ---------- Before/After Slider ---------- */
.ba-wrap {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-before { width: 50%; border-right: 3px solid var(--white); }

.ba-mock {
  width: 1080px;
  max-width: 100%;
  height: 100%;
  padding: 32px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ba-mock--after {
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
  color: var(--text);
  font-family: var(--font-display);
}
.ba-mock--before {
  background: #e8e6e1;
  color: #2a2a2a;
  font-family: "Times New Roman", serif;
}

.ba-mock__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.ba-mock__nav--old {
  background: #c4c2bc;
  border-radius: 0;
  padding: 10px 16px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: none;
}
.ba-mock__cta {
  padding: 6px 14px;
  background: var(--purple);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
}

.ba-mock__hero {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(44,62,45,.08);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ba-mock__hero--old {
  background: #f4f2ed;
  border-radius: 0;
  border: 1px solid #888;
  box-shadow: none;
  font-family: "Times New Roman", serif;
}
.ba-mock__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  padding: 6px 14px;
  background: rgba(139,168,136,.14);
  border-radius: 999px;
}
.ba-mock__hero h3 {
  font-size: clamp(22px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.ba-mock__hero--old h3 {
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: underline;
}
.ba-mock__hero p {
  margin: 0;
  font-size: 13px;
  color: var(--gray-700);
  max-width: 380px;
}
.ba-mock__hero--old p {
  color: #2a2a2a;
  font-size: 13px;
  max-width: 420px;
  line-height: 1.4;
}
.ba-mock__btns {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.ba-mock__btn {
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-300);
  font-weight: 600;
}
.ba-mock__btn--primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.ba-mock__btn--old {
  background: #888;
  color: #fff;
  border-radius: 0;
  border-color: #555;
  font-family: "Times New Roman", serif;
  text-transform: uppercase;
}
.ba-mock__cards {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.ba-mock__card {
  flex: 1;
  text-align: center;
  background: var(--white);
  padding: 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(44,62,45,.06);
}
.ba-mock__lorem {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px;
}
.lorem-line {
  height: 8px;
  background: #aaa;
  width: 100%;
}
.lorem-line--short { width: 60%; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  pointer-events: none;
  z-index: 4;
}
.ba-handle__line {
  position: absolute;
  inset: 0;
  background: var(--white);
  box-shadow: 0 0 12px rgba(0,0,0,.2);
}
.ba-handle__grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 800;
  color: var(--purple);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  pointer-events: auto;
  cursor: ew-resize;
}
.ba-handle__grip span { font-size: 18px; line-height: 1; }

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 5;
}
.ba-label--before {
  left: 16px;
  background: rgba(44,62,45,.85);
  color: var(--white);
}
.ba-label--after {
  right: 16px;
  background: var(--yellow);
  color: var(--text);
}
.ba-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .ba-mock { padding: 18px 22px; gap: 14px; }
  .ba-mock__hero { padding: 16px 12px; }
  .ba-handle__grip { width: 44px; height: 44px; }
  .ba-mock__cards { display: none; }
}

/* ---------- Scroll-pinned Pricing Stack ---------- */
.pricing-stack {
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
}
.pricing-stack__header {
  text-align: center;
  margin-bottom: 80px;
}
.pricing-stack__header h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 14px 0 14px;
}
.pricing-stack__header p {
  color: var(--gray-700);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto;
}

.pricing-stack__cards {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 200px;
}

.price-card {
  position: sticky;
  top: calc(100px + (var(--i) - 1) * 24px);
  margin: 0 auto 24px;
  background: var(--bg, var(--white));
  color: var(--ink, var(--text));
  border-radius: 32px;
  padding: 0;
  transform-origin: top center;
  box-shadow:
    0 -20px 40px -10px rgba(0,0,0,.05),
    0 30px 60px -20px rgba(44,62,45,.18),
    0 0 0 1px rgba(44,62,45,.05);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
.price-card__inner {
  position: relative;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.price-card__top { grid-column: 1; }
.price-card__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: .6;
  margin-bottom: 12px;
}
.price-card h3 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 10px;
}
.price-card__tag {
  margin: 0;
  font-size: 14px;
  opacity: .75;
  letter-spacing: 0.02em;
}
.price-card__mid {
  grid-column: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1.5px solid rgba(44,62,45,.12);
}
.price-card--popular .price-card__mid,
.price-card[style*="2C3E2D"] .price-card__mid { border-top-color: rgba(255,255,255,.18); }

.price-card__from {
  font-family: var(--font-mono);
  font-size: 13px;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-card__amt {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price-card__time {
  font-size: 13px;
  opacity: .7;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-weight: 600;
}
.price-card__list {
  grid-column: 2;
  grid-row: 1 / span 3;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.price-card__list li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-bottom: 1px dashed rgba(44,62,45,.15);
}
.price-card__list li:last-child { border-bottom: none; }
.price-card--popular .price-card__list li,
.price-card[style*="2C3E2D"] .price-card__list li { border-bottom-color: rgba(255,255,255,.15); }
.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(44,62,45,.12);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
}
.price-card--popular .price-card__list li::before,
.price-card[style*="2C3E2D"] .price-card__list li::before { background: rgba(255,255,255,.22); }

.price-card__cta {
  grid-column: 1 / -1;
  margin-top: 12px;
  width: fit-content;
}
.price-card--popular .btn--primary {
  background: #2C3E2D;
  color: #fff;
}
.price-card--popular .btn--primary:hover {
  background: var(--text);
}
.price-card[style*="2C3E2D"] .btn--primary {
  background: var(--yellow);
  color: #2C3E2D;
  box-shadow: 0 6px 18px rgba(255,238,88,.4);
}

.price-card__badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--yellow);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.pricing-stack__foot {
  text-align: center;
  margin-top: 60px;
  font-size: 15px;
  color: var(--gray-700);
}
.pricing-stack__foot a { color: var(--purple); font-weight: 700; }
.pricing-stack__foot a:hover { color: var(--purple-dark); }

@media (max-width: 820px) {
  .price-card__inner {
    grid-template-columns: 1fr;
    padding: 36px 32px;
    gap: 24px;
  }
  .price-card__list {
    grid-column: 1;
    grid-row: auto;
  }
  .price-card__cta { width: 100%; }
  .price-card { top: calc(80px + (var(--i) - 1) * 16px); }
}

/* ---------- Reveal on scroll (smoother w/ stagger) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition:
    opacity .7s cubic-bezier(.16,1,.3,1),
    transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .float-card, .mesh__blob, .bg-marquee__track, .ticker__track,
  .btn--glow, .eyebrow--pulse .dot::after, .trust__dot {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--services,
  .grid--work,
  .grid--testimonials,
  .grid--benefits { grid-template-columns: repeat(2, 1fr); }
  .grid--services-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner,
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .success-keys { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; padding: 36px; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: var(--shadow);
  }
  .section { padding: 40px 0; }
  .grid--services,
  .grid--work,
  .grid--testimonials,
  .grid--benefits { grid-template-columns: 1fr; }
  .footer__inner,
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
  .stats { grid-template-columns: 1fr 1fr; padding: 22px; }
  .stat__num { font-size: 30px; }
  .success-keys { grid-template-columns: 1fr; padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail { padding: 28px; }
}
