/* --- Landing-specific --- */

/* HERO */
.hero {
  position: relative;
  padding-top: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(32px, 4vw, 56px);
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: var(--plum-wash);
  border: 1px solid var(--plum-mist);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--plum-deep);
  letter-spacing: 0.04em;
}
.hero-eyebrow .dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--plum-soft), var(--plum));
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  font-size: 11px;
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(46px, 6.4vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--plum-ink);
  margin: 0;
  font-variation-settings: "wdth" 100, "opsz" 96;
}
.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
  letter-spacing: -0.025em;
}
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--plum);
  color: transparent;
  font-weight: 700;
}
.hero-title .swap {
  display: inline-block;
  padding: 0 .15em;
  background: var(--plum-wash);
  border-radius: 12px;
}

.hero-sub {
  margin: 24px 0 0;
  max-width: 480px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-ctas {
  margin: 28px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  margin: 22px 0 0;
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.hero-meta .avatars {
  display: flex;
}
.hero-meta .avatars .av {
  width: 28px; height: 28px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--paper);
  margin-left: -8px;
}
.hero-meta .avatars .av:first-child { margin-left: 0; }

/* Hero blob backdrop */
/* Hero background — dotted grid + soft glow behind mockup */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(var(--plum-mist) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 0%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 780px; height: 780px;
  transform: translate(20%, -50%);
  background: radial-gradient(closest-side, var(--plum-haze), transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

/* Hand-drawn "laço" line — starts under the buttons, contours the mockup */
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.28;
  overflow: visible;
  pointer-events: none;
}
.hero-art-line {
  stroke-dasharray: 1700;
  stroke-dashoffset: 1700;
  animation: heroDraw 1.5s var(--ease-out) 0.3s forwards;
}
.hero-art-dot {
  opacity: 0;
  animation: heroDotIn 0.4s var(--ease-out) forwards;
}
.hero-art-dot:first-of-type { animation-delay: 0.35s; }
.hero-art-dot:last-of-type { animation-delay: 1.1s; }
@keyframes heroDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes heroDotIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 979px) {
  .hero-art { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art-line { stroke-dashoffset: 0; animation: none; }
  .hero-art-dot { opacity: 1; animation: none; }
}

/* Hero mockup card */
.mockup-wrap {
  position: relative;
  perspective: 1600px;
}
@media (min-width: 980px) {
  .mockup-wrap {
    width: 112%;
    margin-right: -10%;
  }
}
@media (min-width: 1280px) {
  .mockup-wrap {
    width: 120%;
    margin-right: -18%;
  }
}
@media (min-width: 1500px) {
  .mockup-wrap {
    width: 128%;
    margin-right: -26%;
  }
}
.mockup-img {
  display: block;
  width: 100%;
  transform-origin: center center;
  opacity: 0;
  transform: rotateY(-28deg) rotateX(10deg) rotateZ(-4deg) scale(0.9);
  transition: opacity 1.1s var(--ease-out), transform 1.2s var(--ease-out);
}
.mockup-wrap.in .mockup-img {
  opacity: 1;
  transform: rotateY(-12deg) rotateX(4deg) rotateZ(-1deg) scale(1);
}
.mockup-wrap.in .mockup-img:hover {
  transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1.02);
  transition: transform .7s var(--ease-out);
}

/* Float phone overlay */
.mockup-phone {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 180px;
  background: var(--plum-ink);
  border-radius: 24px;
  padding: 8px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--plum-deep);
  transform: rotate(6deg);
  transition: transform .6s var(--ease-out);
}
.mockup-phone:hover { transform: rotate(0deg) translateY(-6px); }
.mockup-phone-screen {
  background: white;
  border-radius: 17px;
  padding: 14px 12px;
  color: var(--ink);
}
.mockup-phone-photo {
  height: 140px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.mockup-phone-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.45) 100%);
}
.mockup-phone-caption {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mockup-phone-meta {
  margin-top: 4px;
  font-size: 10px;
  color: var(--ink-muted);
  display: flex; align-items: center; gap: 4px;
}
.mockup-phone-react {
  margin-top: 10px;
  display: flex;
  gap: 4px;
}
.mockup-phone-react .heart {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--plum-wash);
  color: var(--plum);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* MARQUEE */
.marquee-section {
  padding: 28px 0;
  background: var(--plum-ink);
  color: white;
  border-top: 1px solid var(--plum-deep);
  border-bottom: 1px solid var(--plum-deep);
}
.marquee-section .marquee-item {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-section .star {
  width: 12px; height: 12px;
  background: var(--plum-soft);
  border-radius: 999px;
  flex-shrink: 0;
}

/* NUMBERS */
.numbers {
  padding-block: clamp(80px, 10vw, 140px);
}
.numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 800px) {
  .numbers-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.num-card {
  border-top: 1px solid var(--line-strong);
  padding-top: 24px;
}
.num-card .big-num {
  display: block;
  font-size: clamp(80px, 9vw, 128px);
}
.num-card .num-label {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.num-card .num-desc {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 30ch;
}

/* BENEFITS — asymmetric bento */
.benefits {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--plum-wash);
}
.benefits-bento {
  margin-top: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .benefits-bento {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-auto-rows: minmax(280px, auto);
    gap: 16px;
  }
}
.ben-tile {
  position: relative;
  border-radius: 24px;
  padding: clamp(24px, 2.6vw, 36px);
  overflow: hidden;
  transition: all .5s var(--ease-out);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
}
.ben-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(107, 77, 138, 0.32);
}
.ben-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--plum);
  opacity: 0.6;
}
.ben-tile h3 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.ben-tile h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.ben-tile p {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* 1: Big photo tile */
.ben-photo {
  grid-row: span 2;
  padding: 0;
  border: none;
  background: var(--plum-ink);
  color: white;
  min-height: clamp(360px, 40vw, 580px);
}
.ben-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: saturate(0.85);
  transition: transform 1.4s var(--ease-out);
}
.ben-photo:hover img { transform: scale(1.04); }
.ben-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, transparent 30%, rgba(42, 31, 61, 0.85) 100%),
    linear-gradient(180deg, rgba(42, 31, 61, 0.3) 0%, transparent 50%);
}
.ben-photo-inner {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(28px, 3.5vw, 44px);
  color: white;
}
.ben-photo .ben-num { color: var(--plum-soft); opacity: 1; }
.ben-photo h3 { color: white; font-size: clamp(28px, 3.4vw, 44px); max-width: 12ch; }
.ben-photo h3 em { color: var(--plum-soft); }
.ben-photo p { color: rgba(255,255,255,.78); max-width: 38ch; }

/* Dark plum tile */
.ben-dark {
  background: var(--plum-ink);
  color: white;
  border-color: transparent;
}
.ben-dark .ben-num { color: var(--plum-soft); opacity: 1; }
.ben-dark h3 { color: white; }
.ben-dark h3 em { color: var(--plum-soft); }
.ben-dark p { color: rgba(255,255,255,.7); }

/* Soft plum tile */
.ben-soft {
  background: linear-gradient(160deg, var(--plum-mist), var(--plum-wash));
  border-color: transparent;
}

/* Feature tile (wide, accent) */
.ben-feature {
  background: linear-gradient(135deg, var(--plum-soft), var(--plum));
  color: white;
  border-color: transparent;
  grid-column: span 1;
}
@media (min-width: 700px) {
  .ben-feature { grid-column: span 2; }
}
.ben-feature .ben-num { color: rgba(255,255,255,.8); opacity: 1; }
.ben-feature h3 { color: white; font-size: clamp(22px, 2.2vw, 30px); }
.ben-feature h3 em { color: white; opacity: 0.85; }
.ben-feature p { color: rgba(255,255,255,.85); }

/* Mini chat illustration */
.ben-mini-chat {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ben-mini-chat .mc-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ben-mini-chat .mc-end { justify-content: flex-end; }
.ben-mini-chat .mc-av {
  width: 24px; height: 24px;
  border-radius: 999px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.ben-mini-chat .mc-bubble {
  font-size: 12.5px;
  padding: 7px 12px;
  border-radius: 12px;
  background: var(--plum-wash);
  color: var(--ink);
}
.ben-mini-chat .mc-mine {
  background: var(--plum);
  color: white;
}

/* Tags list */
.ben-tags {
  margin-top: auto;
  padding-top: 18px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.ben-tags li {
  font-size: 11px;
  padding: 5px 11px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.85);
}

/* Time before/after pill */
.ben-time {
  margin-top: auto;
  padding-top: 18px;
  display: flex; align-items: center; gap: 14px;
}
.ben-time .bt-old {
  padding: 10px 16px;
  background: rgba(255,255,255,.6);
  color: var(--ink-muted);
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-decoration: line-through;
  text-decoration-color: var(--plum);
}
.ben-time .bt-arrow { color: var(--plum); font-size: 20px; }
.ben-time .bt-new {
  padding: 10px 16px;
  background: var(--plum);
  color: white;
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 20px -6px rgba(107,77,138,.5);
}

/* Roles chips */
.ben-roles {
  margin-top: auto;
  padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.ben-roles .br-chip {
  font-size: 11.5px;
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  transition: all .3s;
}
.ben-roles .br-chip.br-active {
  background: var(--plum);
  border-color: var(--plum);
  color: white;
}

/* Support stats */
.ben-support {
  margin-top: auto;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.ben-support .bs-stat {
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 12px;
}
.ben-support .bs-stat .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  color: white;
  letter-spacing: -0.025em;
}
.ben-support .bs-stat .l {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.06em;
}

/* BEFORE / AFTER — side-by-side comparison cards */
.beforeafter-wrap {
  padding-block: clamp(80px, 10vw, 140px);
}
.vs-stage {
  position: relative;
  margin-top: clamp(36px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  isolation: isolate;
}
@media (min-width: 800px) {
  .vs-stage { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.vs-tabs {
  margin-top: clamp(32px, 4vw, 56px);
  display: inline-flex;
  padding: 6px;
  background: var(--plum-wash);
  border: 1px solid var(--plum-mist);
  border-radius: 999px;
  gap: 4px;
  position: relative;
}
.vs-tab {
  position: relative;
  z-index: 1;
  padding: 10px 22px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color .35s var(--ease-out);
}
.vs-tab[aria-pressed="true"] {
  color: white;
}
.vs-tabs::before {
  content: "";
  position: absolute;
  top: 6px; bottom: 6px;
  width: calc(50% - 6px);
  left: 6px;
  background: var(--plum-ink);
  border-radius: 999px;
  transition: transform .45s cubic-bezier(.6, .2, .15, 1);
  z-index: 0;
}
.vs-tabs[data-active="bad"]::before {
  transform: translateX(calc(100% + 4px));
}
.vs-side {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  min-height: clamp(360px, 42vw, 480px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .55s var(--ease-out);
}
.vs-side .vs-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  width: fit-content;
}
.vs-side .vs-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
  max-width: 11ch;
}
.vs-side .vs-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.vs-side .vs-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vs-side .vs-list li {
  font-size: 15px;
  line-height: 1.4;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.vs-side .vs-list li .ic {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 999px;
  display: grid; place-items: center;
}
.vs-meta {
  margin-top: 28px;
  padding-top: 22px;
  display: flex; gap: 20px;
  border-top: 1px solid currentColor;
  border-color: rgba(255,255,255,0.14);
}
.vs-meta .m .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.025em;
}
.vs-meta .m .l {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* COM LAZO — the "good" side (LEFT) */
.vs-good {
  background: linear-gradient(155deg, var(--plum-deep) 0%, var(--plum-ink) 100%);
  color: white;
  box-shadow: 0 30px 70px -40px rgba(42, 31, 61, 0.55);
}
.vs-good .vs-label {
  background: rgba(255,255,255,.1);
  color: white;
}
.vs-good .vs-label-ic {
  color: var(--plum-soft);
}
.vs-good .vs-title em { color: var(--plum-soft); }
.vs-good .vs-list li .ic {
  background: rgba(178, 146, 206, 0.18);
  color: var(--plum-soft);
}

/* SEM LAZO — the "bad" side (RIGHT) */
.vs-bad {
  background: linear-gradient(155deg, #e9e4dd 0%, #d4ccc0 100%);
  color: #4a423c;
  box-shadow: 0 20px 60px -40px rgba(0,0,0,0.2);
}
.vs-bad .vs-label {
  background: rgba(0,0,0,.06);
  color: #5e554d;
}
.vs-bad .vs-title em { color: #8c8074; }
.vs-bad .vs-list li .ic {
  background: rgba(0, 0, 0, 0.06);
  color: #8c7c70;
}
.vs-bad .vs-meta {
  border-color: rgba(0,0,0,0.12);
}

/* Focus / pressed state for each side */
.vs-stage[data-focus="good"] .vs-bad {
  filter: saturate(0.5);
  transform: scale(0.97);
  opacity: 0.86;
}
.vs-stage[data-focus="bad"] .vs-good {
  filter: saturate(0.7);
  transform: scale(0.97);
  opacity: 0.86;
}
.vs-stage[data-focus="good"] .vs-good,
.vs-stage[data-focus="bad"] .vs-bad {
  transform: scale(1.012);
}
@media (max-width: 800px) {
  .vs-stage[data-focus] .vs-bad,
  .vs-stage[data-focus] .vs-good {
    transform: none;
  }
}

.vs-arrow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--plum);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 32px -8px rgba(107,77,138,.6), 0 0 0 6px rgba(178,146,206,.22);
  pointer-events: none;
  transition: all .55s var(--ease-out);
}
.vs-stage[data-focus="bad"] .vs-arrow { transform: translate(-50%, -50%) rotate(180deg); background: #8c8074; box-shadow: 0 14px 32px -8px rgba(0,0,0,.3); }
@media (max-width: 800px) {
  .vs-arrow {
    top: auto; left: 50%; bottom: auto;
    transform: translate(-50%, 0);
    margin-top: -34px;
    position: relative;
  }
  .vs-stage[data-focus="bad"] .vs-arrow { transform: translate(-50%, 0) rotate(90deg); }
  .vs-stage[data-focus="good"] .vs-arrow { transform: translate(-50%, 0) rotate(-90deg); }
}

.ba-hint {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-align: center;
}

/* EDITORIAL PHOTO */
.photo-block {
  position: relative;
  margin-block: clamp(60px, 8vw, 100px);
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.photo-block img {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-block::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 20% 50%, transparent 30%, rgba(21, 16, 42, .4) 100%),
    linear-gradient(180deg, transparent 30%, rgba(21, 16, 42, .85) 100%);
  pointer-events: none;
}
.photo-block-quote {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  bottom: clamp(28px, 5vw, 60px);
  max-width: 580px;
  color: white;
  z-index: 1;
}
.photo-block-quote .pullquote {
  color: white;
}
.photo-block-quote .pullquote em { color: #c9b8e8; }
.photo-block-quote .attribution {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* TESTIMONIALS — masonry cascade */
.testimonials {
  padding-block: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 40%; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, var(--plum-haze), transparent 70%);
  filter: blur(50px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.testimonials > .container { position: relative; z-index: 1; }
.t-cascade {
  margin-top: clamp(36px, 4vw, 56px);
  column-count: 1;
  column-gap: 18px;
}
@media (min-width: 720px) { .t-cascade { column-count: 2; column-gap: 18px; } }
@media (min-width: 1100px) { .t-cascade { column-count: 3; column-gap: 20px; } }
.tcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  transition: all .5s var(--ease-out);
}
.tcard:hover {
  transform: translateY(-3px);
  border-color: var(--plum-soft);
  box-shadow: var(--shadow-md);
}
/* Color variants via nth-child for editorial rhythm */
.tcard.t-dark {
  background: var(--plum-ink);
  color: white;
  border-color: transparent;
}
.tcard.t-dark .tcard-quote { color: white; }
.tcard.t-dark .tcard-name { color: white; }
.tcard.t-dark .tcard-role { color: rgba(255,255,255,.65); }
.tcard.t-dark .tcard-stars { color: var(--plum-soft); }
.tcard.t-dark .tcard-foot { border-color: rgba(255,255,255,.1); }
.tcard.t-soft {
  background: linear-gradient(180deg, var(--plum-wash), var(--paper));
  border-color: var(--plum-mist);
}
.tcard.t-plum {
  background: linear-gradient(165deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: white;
  border-color: transparent;
}
.tcard.t-plum .tcard-quote { color: white; }
.tcard.t-plum .tcard-name { color: white; }
.tcard.t-plum .tcard-role { color: rgba(255,255,255,.7); }
.tcard.t-plum .tcard-stars { color: rgba(255,255,255,.55); }
.tcard.t-plum .tcard-foot { border-color: rgba(255,255,255,.16); }
.tcard.t-feature .tcard-quote {
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.25;
}
.tcard-stars {
  color: var(--plum);
  font-size: 14px;
  letter-spacing: 2px;
}
.tcard-quote {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tcard-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tcard-name { font-size: 14px; font-weight: 500; font-family: var(--display); letter-spacing: -0.005em; }
.tcard-role { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

/* CASE STUDY teaser */
.case {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--plum-wash);
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (min-width: 900px) { .case-grid { grid-template-columns: 1fr 1fr; } }
.case-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.case-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-badge {
  position: absolute;
  top: 20px; left: 20px;
  padding: 6px 12px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  display: inline-flex; align-items: center; gap: 6px;
}
.case-badge .pulse {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.55);
  animation: casePulse 1.8s infinite;
}
@keyframes casePulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.case-stats {
  margin-top: clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.case-stat {
  border-top: 1px solid var(--plum-mist);
  padding-top: 12px;
}
.case-stat .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  color: var(--plum-deep);
  letter-spacing: -0.025em;
}
.case-stat .l {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

/* FAQ */
.faq-section {
  padding-block: clamp(80px, 10vw, 140px);
}
.faq-list {
  margin-top: clamp(36px, 4vw, 56px);
  max-width: 880px;
}
details.faq {
  border-top: 1px solid var(--line-strong);
  padding: 28px 0;
}
details.faq:last-child {
  border-bottom: 1px solid var(--line-strong);
}
details.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq .chev {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--plum);
  transition: all .35s var(--ease-out);
  flex-shrink: 0;
}
details.faq[open] .chev {
  transform: rotate(45deg);
  background: var(--plum);
  color: white;
  border-color: var(--plum);
}
details.faq .answer {
  margin-top: 16px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* FINAL CTA */
.final-cta {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--plum-void);
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta .blob {
  position: absolute;
  top: -200px; left: 30%;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, var(--plum-deep), transparent 65%);
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.final-cta-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.final-cta-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum-soft);
}
.final-cta-sub {
  margin-top: 24px;
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-ctas {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .btn-primary {
  background: white;
  color: var(--plum-ink);
}
.final-cta .btn-primary:hover {
  background: var(--plum-soft);
  color: var(--paper);
  box-shadow: 0 22px 50px -10px rgba(178, 146, 206, .5);
}
.final-cta .btn-ghost {
  border-color: rgba(255,255,255,.2);
  color: white;
}
.final-cta .btn-ghost:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.4);
  color: white;
}

/* FOOTER */
.footer {
  padding-block: clamp(56px, 7vw, 100px);
  background: white;
  border-top: 1px solid var(--line);
}
.footer-grid {
  align-items: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
}
@media (min-width: 800px) {
  .footer-grid {
  align-items: start; grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-brand { margin-top: 0; }
.footer-brand .display {
  margin-top: 0;
  font-size: 30px;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 320px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  transition: color .3s;
}
.footer-col a:hover { color: var(--plum); }
.footer-base {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.footer-base a { color: var(--ink-muted); text-decoration: none; }
.footer-base a:hover { color: var(--ink); }

/* Section head */
.shead { max-width: 720px; }
.shead h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.shead h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.shead p {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
}

/* Mobile nav fallback */
