/* =====================================================================
   HOME PAGE STYLES
   ===================================================================== */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(120% 80% at 50% 90%, rgba(255,106,0,0.10) 0%, transparent 60%), var(--bg-black);
}
.hero__three {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
/* Let WebGL warm up behind the loader (mobile first visit) */
html.is-loader-pending .hero__three {
  visibility: visible !important;
  opacity: 0.001;
}
.hero__aurora {
  z-index: 0;
}
.aurora--1 {
  width: 60vw; height: 60vw;
  left: -10vw; top: 30%;
  background: radial-gradient(closest-side, rgba(255,106,0,0.55), transparent 70%);
}
.aurora--2 {
  width: 50vw; height: 50vw;
  right: -10vw; bottom: -10vw;
  background: radial-gradient(closest-side, rgba(204,79,0,0.4), transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vh, 56px);
  padding-top: clamp(120px, 14vh, 170px);
  padding-bottom: clamp(40px, 6vh, 80px);
  min-height: 100svh;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: fit-content;
  opacity: 0;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: dotPulse 2.4s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 9.5vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0;
}
.hero__word {
  display: inline-block;
  will-change: transform;
}
.is-loading .hero__word { transform: translateY(110%); }
.hero__word--accent {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-style: italic;
}

.hero__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.hero__sub {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  opacity: 0;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  opacity: 0;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
}

/* Home from menu/nav (no loader) — keep hero fully visible */
body.is-hero-instant .hero__eyebrow,
body.is-hero-instant .hero__sub,
body.is-hero-instant .hero__ctas,
body.is-hero-instant .hero__scroll {
  opacity: 1;
}
body.is-hero-instant .hero__word {
  transform: none;
  opacity: 1;
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: var(--border-strong);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line span {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 30%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: scrollIndicate 2.2s ease-in-out infinite;
}
@keyframes scrollIndicate {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(330%); }
}

/* ---------- HERO MOBILE — entirely different layout ---------- */
@media (max-width: 880px) {
  .hero { min-height: unset; }
  .hero__inner {
    min-height: unset;
    padding-top: 110px;
    padding-bottom: 60px;
    gap: 24px;
  }
  .hero__three { opacity: 0.55; }
  .hero__word { will-change: auto; }
  .aurora--1 { top: 5%; width: 90vw; height: 90vw; }
  .aurora--2 { display: none; }

  .hero__title {
    font-size: clamp(46px, 13vw, 84px);
    letter-spacing: -0.04em;
    flex: 0 0 auto;
    display: block;
  }
  .hero__meta { flex-direction: column; align-items: flex-start; }
  .hero__ctas { flex-wrap: wrap; }
  .hero__ctas .btn { flex: 1 1 auto; }
}

/* ---------- FEATURED PROJECTS ---------- */
.featured__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.feat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  isolation: isolate;
  transition: transform .8s var(--ease-out), border-color .4s ease;
}
.feat-card:hover { border-color: var(--accent); }
.feat-card__media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.feat-card__media::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(160deg, transparent 30%, rgba(0,0,0,0.85));
}
.feat-card__media img,
.feat-card__media svg {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.4s var(--ease-out);
}
.feat-card:hover .feat-card__media img,
.feat-card:hover .feat-card__media svg { transform: scale(1.1); }

.feat-card__glow {
  position: absolute;
  width: 60%; height: 60%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
  left: 20%; top: 30%;
}
.feat-card__body {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: clamp(20px, 2.5vw, 36px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.feat-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
}
.feat-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}
.feat-card__index {
  position: absolute;
  top: clamp(20px, 2.5vw, 36px);
  left: clamp(20px, 2.5vw, 36px);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.feat-card__arrow {
  position: absolute;
  top: clamp(20px, 2.5vw, 36px);
  right: clamp(20px, 2.5vw, 36px);
  z-index: 2;
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .5s var(--ease-out), background .4s ease, border-color .4s ease;
}
.feat-card:hover .feat-card__arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
  color: #000;
}

@media (max-width: 720px) {
  .featured__grid { grid-template-columns: 1fr; }
}

/* ---------- DIGITAL PRODUCTS ---------- */
.digital-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.dpro-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1.05;
  isolation: isolate;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.8s var(--ease-out), border-color 0.45s ease;
}
.dpro-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}
.dpro-card .feat-card__media {
  z-index: 0;
}
.dpro-card__thumb-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}
.dpro-card__glow {
  position: absolute;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  left: 18%;
  top: 22%;
  will-change: transform;
}
.dpro-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(22px, 2.4vw, 34px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dpro-card__body::before {
  content: "";
  position: absolute;
  inset: 0;
  top: -40%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 55%);
  z-index: -1;
}
.dpro-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.1vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  position: relative;
}
.dpro-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  position: relative;
}
.dpro-card__index {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  left: clamp(18px, 2vw, 28px);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dpro-card__arrow {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease-out), background 0.4s ease, border-color 0.4s ease;
}
.dpro-card:hover .dpro-card__arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
  color: #000;
}
.home-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.home-cat-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-panel);
}
[data-home-page] .home-cat-pill {
  color: var(--accent);
  border-color: rgba(255, 106, 0, 0.45);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.12), rgba(255, 106, 0, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 138, 42, 0.12);
}
@media (max-width: 960px) {
  .digital-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .digital-products__grid {
    grid-template-columns: 1fr;
  }
  .dpro-card {
    aspect-ratio: 4 / 3;
  }
}

/* Home page — tighter section rhythm (home only) */
[data-home-page] > .section {
  padding: clamp(44px, 6.5vw, 88px) 0;
}
[data-home-page] > .section.home-section--compact {
  padding: clamp(36px, 5vw, 64px) 0;
}
[data-home-page] .section-head {
  margin-bottom: clamp(28px, 4vw, 52px);
}
[data-home-page] > .section.cta-strip {
  padding-bottom: clamp(52px, 7vw, 96px);
}

/* Ecosystem — 2 cards on desktop (no empty 3rd column) */
.home-ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.home-eco-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(24px, 2.6vw, 34px);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(255,106,0,0.14), transparent 55%),
    linear-gradient(180deg, rgba(16,16,20,0.96), rgba(5,5,8,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 22px 60px -38px rgba(0,0,0,0.9);
  transition:
    border-color 0.45s ease,
    background 0.45s ease,
    box-shadow 0.55s ease,
    transform 0.55s var(--ease-out);
}
.home-eco-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(60% 60% at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}
.home-eco-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 18% 22%, rgba(255,255,255,0.22), transparent 60%),
    radial-gradient(1px 1px at 72% 38%, rgba(255,138,42,0.35), transparent 60%),
    radial-gradient(1px 1px at 35% 70%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(1px 1px at 84% 82%, rgba(255,106,0,0.4), transparent 60%);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.home-eco-card:hover {
  border-color: rgba(255,106,0,0.55);
  box-shadow:
    0 26px 80px -42px rgba(0,0,0,0.95),
    0 0 40px -26px var(--accent-glow);
  transform: translateY(-6px);
}
.home-eco-card:hover::before {
  opacity: 1;
}
.home-eco-card .svc__num,
.home-eco-card .svc__title,
.home-eco-card .svc__desc,
.home-eco-card .svc__tags,
.home-eco-card__cta {
  position: relative;
  z-index: 1;
}
.home-eco-card .svc__title {
  margin-top: 12px;
  font-size: clamp(22px, 2.2vw, 30px);
}
.home-eco-card__note {
  margin-bottom: 2px;
}
.home-eco-card__cta {
  margin-top: auto;
  padding-top: clamp(16px, 1.8vw, 22px);
  width: 100%;
  justify-content: center;
  --bh: 50px;
  font-size: 13px;
  border-color: rgba(255,255,255,0.18);
  background: radial-gradient(120% 180% at 0% 0%, rgba(255,255,255,0.08), transparent 60%);
}
@media (max-width: 720px) {
  .home-ecosystem__grid {
    grid-template-columns: 1fr;
  }
}

.section-foot {
  margin-top: clamp(40px, 6vw, 80px);
  display: flex;
  justify-content: center;
}
[data-home-page] .section-foot {
  margin-top: clamp(24px, 3.5vw, 40px);
}
.home-section-note {
  margin: clamp(20px, 3vw, 32px) 0 0;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.6;
}
.home-free__desc {
  margin-top: 16px;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.65;
}
.home-free-marketplace .home-categories {
  margin-top: clamp(4px, 1vw, 10px);
}
[data-home-page] .digital-products__grid {
  margin-top: 0;
}
.home-final-cta__desc {
  margin: 16px 0 0;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.6;
}
.cta-strip__inner .hero__ctas {
  margin-top: 0;
  flex-shrink: 0;
}

/* ---------- STATS ---------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
}
.stat {
  padding: clamp(28px, 4vw, 50px);
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(50px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff, #6a6a72);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__suffix {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- HORIZONTAL SCROLL ---------- */
.hscroll { position: relative; }
.hscroll__pin {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(255,106,0,0.04), transparent);
}
.hscroll__head {
  position: absolute;
  top: clamp(80px, 12vh, 140px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  width: 100%;
}
.hscroll__head .eyebrow { justify-content: center; }
.hscroll__track {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  display: flex;
  gap: clamp(20px, 2.5vw, 40px);
  padding: 0 5vw;
  will-change: transform;
}
.hpanel {
  flex: 0 0 auto;
  width: clamp(280px, 38vw, 560px);
  height: clamp(360px, 60vh, 580px);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.hpanel__media { position: absolute; inset: 0; z-index: 0; }
.hpanel__media svg, .hpanel__media img { width: 100%; height: 100%; object-fit: cover; }
.hpanel::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85));
  z-index: 1;
}
.hpanel__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(20px, 2.5vw, 32px);
  z-index: 2;
}
.hpanel__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}
.hpanel__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.hpanel__cat {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 880px) {
  .hscroll__pin { height: auto; }
  .hscroll__head { position: static; transform: none; padding: clamp(80px, 12vw, 140px) var(--gutter) 40px; text-align: left; }
  .hscroll__head .eyebrow { justify-content: flex-start; }
  .hscroll__track {
    position: static; transform: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 80px;
  }
  .hpanel { scroll-snap-align: center; }
}

/* ---------- SERVICES PREVIEW ---------- */
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
}
.svc {
  padding: clamp(28px, 3vw, 48px);
  background: var(--bg-deep);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: background .5s ease;
}
.svc::before {
  content:"";
  position: absolute;
  inset: -1px;
  background: radial-gradient(60% 60% at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 70%);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 0;
}
.svc:hover { background: #0d0d10; }
.svc:hover::before { opacity: 1; }
.svc__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  position: relative; z-index: 1;
}
.svc__title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.svc__desc {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  position: relative; z-index: 1;
}
.svc__tags {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 6px;
  position: relative; z-index: 1;
}
.svc__tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 880px) { .services-preview__grid { grid-template-columns: 1fr; } }

/* Home — services strip (compact links) */
.home-services-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}
@media (max-width: 1100px) {
  .home-services-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .home-services-strip__grid { grid-template-columns: 1fr; }
}
a.svc--compact {
  text-decoration: none;
  color: inherit;
  display: block;
}
.svc--compact .svc__title {
  font-size: clamp(16px, 1.4vw, 18px);
  margin-top: 8px;
}
.svc--compact .svc__go {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  color: var(--accent);
  opacity: 0.75;
}

/* ---------- PROCESS ---------- */
.process__list {
  display: grid;
  gap: 0;
}
.process__item {
  display: grid;
  grid-template-columns: 100px 1fr 220px;
  gap: 40px;
  padding: clamp(28px, 4vw, 50px) 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.process__item:last-child { border-bottom: 1px solid var(--border); }
.process__item::before {
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
  z-index: 0;
}
.process__item:hover::before { transform: translateX(0); }
.process__step {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  position: relative; z-index: 1;
}
.process__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative; z-index: 1;
  transition: transform .8s var(--ease-out);
}
.process__item:hover .process__title { transform: translateX(20px); }
.process__desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  position: relative; z-index: 1;
}

@media (max-width: 880px) {
  .process__item { grid-template-columns: 1fr; gap: 14px; }
  .process__title { font-size: clamp(32px, 9vw, 56px); }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials__stage {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 5vw, 80px);
  min-height: 360px;
  isolation: isolate;
}
.testimonials__stage::before {
  content:"";
  position: absolute;
  width: 60%; height: 100%;
  left: -10%;
  top: 0;
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.tslide {
  position: absolute;
  inset: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  transform: translateY(40px);
  z-index: 1;
  visibility: hidden;
  pointer-events: none;
}
.tslide.is-active { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
.tslide__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.tslide__quote::before { content: "“"; color: var(--accent); margin-right: 4px; }
.tslide__author {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tslide__author strong { color: var(--text); font-weight: 500; }

.tnav {
  position: absolute;
  right: clamp(40px, 5vw, 80px);
  top: clamp(40px, 5vw, 80px);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.tnav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.tnav button:hover { background: var(--accent); border-color: var(--accent); color: #000; }
.tnav button svg { width: 16px; height: 16px; }

.tdots {
  position: absolute;
  left: clamp(40px, 5vw, 80px);
  bottom: clamp(40px, 5vw, 80px);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.tdots span {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.15);
  transition: background .4s ease, width .4s ease;
}
.tdots span.is-active { background: var(--accent); width: 40px; }

/* ---------- CTA STRIP ---------- */
.cta-strip__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 5vw, 80px);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.cta-strip__inner::before {
  content:"";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(40% 60% at 0% 100%, rgba(255,106,0,0.4), transparent 70%),
    radial-gradient(50% 50% at 100% 0%, rgba(255,138,42,0.25), transparent 70%);
  z-index: -1;
}
.cta-strip__title { line-height: 0.9; }
@media (max-width: 880px) {
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
}
