/* ============================================================
   PDA Homepage styles
   ============================================================ */

/* ===== Heart variant: Aurora blobs ===== */
@keyframes au-drift {
  0%   { transform: translate(0px,   0px)   rotate(0deg)   scale(1);    }
  20%  { transform: translate(58px, -48px)  rotate(16deg)  scale(1.08); }
  40%  { transform: translate(-42px, 55px)  rotate(-11deg) scale(0.93); }
  60%  { transform: translate(46px,  38px)  rotate(20deg)  scale(1.06); }
  80%  { transform: translate(-28px,-32px)  rotate(-7deg)  scale(0.97); }
  100% { transform: translate(0px,   0px)   rotate(0deg)   scale(1);    }
}
.au-blob {
  animation: au-drift ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* ===== HERO ===== */
.home-hero {
  position: relative;
  min-height: 100vh;
  padding: 200px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    /* Text-shield: dark veil on the left so copy is always readable no matter
       where the heart sits. Extended to ~80% so the h1 "PDA." gradient text
       stays legible against the aurora even on wide viewports. */
    linear-gradient(to right,
      rgba(14,18,30,.98) 0%,
      rgba(14,18,30,.96) 30%,
      rgba(14,18,30,.88) 48%,
      rgba(14,18,30,.55) 62%,
      rgba(14,18,30,.20) 72%,
      transparent       80%),
    /* Ambient glows */
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(32,200,162,.22), transparent 70%),
    radial-gradient(ellipse 55% 45% at 90% 75%, rgba(30,130,210,.18), transparent 70%),
    radial-gradient(ellipse 40% 30% at 60% 10%, rgba(110,80,200,.10), transparent 70%);
  pointer-events: none; z-index: 1;
}

.heart-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Heart - reveal a bit more (~75% visible) by pulling it back to the left.
   The viewBox is square so width === height.

   Tilt + scale are applied via the inner <g class="heart-tilt"> inside the SVG
   (not on this root element) because CSS transform on root <svg> nodes was
   producing a stale matrix in our preview environment. Keeping the .heart-svg
   itself transform-free avoids that quirk. */
.heart-svg {
  position: absolute;
  top: -8vh;
  right: -22vh;
  height: 135vh;
  width: 135vh;
  max-width: 1600px;
  max-height: 1600px;
  opacity: 1;
  overflow: visible;
}

/* ===== Embellishments (toggle-able via Tweaks) ===== */

/* Halo: three concentric rings, each breathing at a different rhythm */
.halo-group { opacity: .9; }
.halo-ring {
  transform-origin: 600px 640px;
  transform-box: fill-box;
}
.halo-ring-1 { animation: halo-pulse-a 6s var(--ease-in-out) infinite; opacity: .35; }
.halo-ring-2 { animation: halo-pulse-b 8s var(--ease-in-out) infinite; opacity: .22; }
.halo-ring-3 { animation: halo-pulse-c 18s linear infinite; opacity: .55; }
@keyframes halo-pulse-a {
  0%,100% { transform: scale(1);     opacity: .25; }
  50%     { transform: scale(1.045); opacity: .5; }
}
@keyframes halo-pulse-b {
  0%,100% { transform: scale(1.02);  opacity: .18; }
  50%     { transform: scale(.985);  opacity: .35; }
}
@keyframes halo-pulse-c {
  to { transform: rotate(360deg); }
}

/* Dust: gentle twinkle, each particle phased by its inline animation-delay */
.dust-dot {
  animation: dust-twinkle 4s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
@keyframes dust-twinkle {
  0%, 100% { opacity: .15; transform: scale(.7); }
  50%      { opacity: .9;  transform: scale(1.15); }
}

/* Hatching: subtle drift so the lines don't feel pasted-on */
.hatching-layer { animation: hatch-drift 22s ease-in-out infinite; }
@keyframes hatch-drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-8px, 4px); }
}

/* Flourish: gentle sway on the vines + glow on the tips */
.flourish-vine {
  opacity: .7;
  transform-box: fill-box; transform-origin: center;
}
.flourish-vine-l { animation: vine-sway-l 7s var(--ease-in-out) infinite; }
.flourish-vine-r { animation: vine-sway-r 8s var(--ease-in-out) infinite; }
@keyframes vine-sway-l {
  0%,100% { transform: rotate(-1deg); }
  50%     { transform: rotate(1deg); }
}
@keyframes vine-sway-r {
  0%,100% { transform: rotate(1deg); }
  50%     { transform: rotate(-1deg); }
}
.flourish-tip {
  filter: url(#heart-glow-soft);
  animation: tip-glow 3.5s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
@keyframes tip-glow {
  0%,100% { opacity: .55; transform: scale(.9); }
  50%     { opacity: 1;   transform: scale(1.2); }
}
.flourish-drop {
  animation: drop-bob 4s ease-in-out infinite;
  transform-box: fill-box; transform-origin: 612px 1145px;
}
@keyframes drop-bob {
  0%,100% { opacity: .55; transform: translateY(0) scaleY(1); }
  50%     { opacity: .95; transform: translateY(6px) scaleY(1.06); }
}

/* ===== Heart variants - shared + per-direction styles ===== */
.heart-outline-breath, .heart-inline-breath {
  animation: heart-breath-soft 6s var(--ease-in-out) infinite;
  transform-origin: 50% 56%; transform-box: fill-box;
}
@keyframes heart-breath-soft {
  0%, 100% { opacity: .8;  transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.012); }
}

/* --- Variant A: Constellation --- */
.cv-node, .cv-node-mini {
  animation: cv-twinkle 3.2s ease-in-out infinite;
  transform-origin: center; transform-box: fill-box;
}
.cv-node-mini { animation-duration: 2.8s; }
@keyframes cv-twinkle {
  0%, 100% { opacity: .45; }
  50%      { opacity: 1; }
}
.cv-line { animation: cv-line-pulse 4s ease-in-out infinite; }
@keyframes cv-line-pulse {
  0%, 100% { opacity: .12; }
  50%      { opacity: .38; }
}
.cv-radar {
  transform-origin: 600px 640px;
  animation: cv-radar-pulse 7.2s ease-out infinite;
  opacity: 0;
}
@keyframes cv-radar-pulse {
  0%   { opacity: 0;   r: 40px;  stroke-width: 3; }
  20%  { opacity: .55; }
  100% { opacity: 0;   r: 480px; stroke-width: .5; }
}
.cv-core {
  animation: cv-core-pulse 1.6s ease-in-out infinite;
  transform-origin: center; transform-box: fill-box;
}
@keyframes cv-core-pulse {
  0%, 100% { transform: scale(1);   opacity: .8; }
  50%      { transform: scale(1.4); opacity: 1;  }
}
.cv-core-ring {
  animation: cv-ring-spin 12s linear infinite;
  transform-origin: 600px 640px;
  stroke-dasharray: 6 4;
}
@keyframes cv-ring-spin { to { stroke-dashoffset: -60; } }

/* --- Variant B: Watercolor --- */
@keyframes wc-drift {
  0%   { transform: translate(0px, 0px); }
  25%  { transform: translate(40px, -30px); }
  50%  { transform: translate(-20px, 50px); }
  75%  { transform: translate(-60px, -20px); }
  100% { transform: translate(0px, 0px); }
}
@keyframes wc-pulse {
  0%, 100% { opacity: .22; }
  50%      { opacity: .5; }
}
.wc-halo {
  animation: wc-halo-breath 12s ease-in-out infinite;
  transform-origin: 50% 50%;
}
@keyframes wc-halo-breath {
  0%, 100% { opacity: .4; }
  50%      { opacity: .8; }
}

/* --- Variant C: Mandala --- */
.md-ring-a { animation: md-spin-cw 60s linear infinite; }
.md-ring-b { animation: md-spin-ccw 80s linear infinite; }
.md-center { animation: md-spin-cw 120s linear infinite; }
@keyframes md-spin-cw  { to { transform: translate(600px,640px) rotate(360deg); } }
@keyframes md-spin-ccw { to { transform: translate(600px,640px) rotate(-360deg); } }
.md-ring-circle { animation: md-ring-breath 8s ease-in-out infinite; }
@keyframes md-ring-breath {
  0%, 100% { opacity: .25; }
  50%      { opacity: .6; }
}
.md-core {
  transform-origin: 600px 640px;
  animation: md-core-pulse 4s ease-in-out infinite;
}
@keyframes md-core-pulse {
  0%, 100% { transform: scale(1);    opacity: .45; }
  50%      { transform: scale(1.25); opacity: .75; }
}

/* --- Travelers: gradient orbs riding the heart paths --- */
.trav-layer { pointer-events: none; }
.sparkle-spin {
  animation: sparkle-spin 6s linear infinite;
  transform-origin: 0 0;
}
@keyframes sparkle-spin {
  to { transform: rotate(360deg); }
}
.trav-pulse {
  animation: trav-pulse 2.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes trav-pulse {
  0%, 100% { opacity: .35; transform: scale(.7); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .heart-outline-breath, .heart-inline-breath,
  .cv-node, .cv-node-mini, .cv-line, .cv-radar, .cv-core, .cv-core-ring,
  .wc-halo, .wc-blot, .md-ring-a, .md-ring-b, .md-center, .md-ring-circle, .md-core,
  .sparkle-spin, .trav-pulse,
  .halo-ring-1, .halo-ring-2, .halo-ring-3,
  .dust-dot, .hatching-layer,
  .flourish-vine-l, .flourish-vine-r, .flourish-tip, .flourish-drop
    { animation: none; }
  .trav-layer { display: none; }
}

.home-hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  min-height: calc(100vh - 320px);
}
.home-hero-content {
  display: flex; flex-direction: column;
  gap: 28px;
  max-width: 760px;
  flex: 1;
}
.home-h1 {
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 0.96;
  margin: 0;
}
.home-hero-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  max-width: 620px;
}
.service-cycler {
  height: 48px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}
.service-cycler-text {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: absolute;
  white-space: nowrap;
  line-height: 48px;
}
.service-enter {
  animation: svc-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.service-exit {
  animation: svc-exit 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes svc-enter {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes svc-exit {
  from { transform: translateY(0);     opacity: 1; }
  to   { transform: translateY(-110%); opacity: 0; }
}
.home-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.home-hero-trust {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg-3);
}
.trust-pt { display: inline-flex; align-items: center; gap: 8px; }
.trust-pt svg { color: var(--pda-teal); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 0; left: 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600;
}
.scroll-bar {
  width: 1px; height: 56px; background: var(--border-2);
  position: relative; overflow: hidden;
}
.scroll-bar span {
  position: absolute; top: -20px; left: 0; right: 0; height: 20px;
  background: var(--pda-teal); animation: scroll-pulse 2.4s var(--ease-out) infinite;
}
@keyframes scroll-pulse {
  0%   { top: -20px; }
  60%  { top: 56px; }
  100% { top: 56px; }
}

/* === Responsive hero === */
@media (max-width: 1180px) {
  .heart-svg { right: -30vh; height: 130vh; width: 130vh; opacity: .85; top: -6vh; }
}
@media (max-width: 980px) {
  .home-hero { padding: 160px 0 80px; min-height: auto; }
  .heart-svg {
    right: -90%;
    top: 50%; transform: translateY(-50%);
    width: 200vw; height: 200vw;
    max-width: 1300px; max-height: 1300px;
    opacity: .3;
  }
  .home-h1 { font-size: 48px; }
  .home-hero-lead { font-size: 17px; }
  .home-hero-trust { gap: 14px; font-size: 12px; }
}
@media (max-width: 560px) {
  .home-hero { padding: 130px 0 60px; }
  .home-h1 { font-size: 38px; line-height: 1.04; }
  .home-hero-lead { font-size: 16px; }
  .home-hero-ctas .btn { padding: 12px 20px; font-size: 12px; }
  .home-hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
}
/* Short viewports OR mid-width - hide the scroll hint so it never overlaps CTAs */
@media (max-height: 880px), (max-width: 1180px) {
  .hero-scroll-hint { display: none; }
}

/* ===== WHAT WE DO (tabs) ===== */
.wwd {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 20px;
  padding: 20px;
}
.wwd-tabs {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px;
  background: var(--bg-1);
  border-radius: 14px;
  border: 1px solid var(--border-1);
}
.wwd-tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  color: var(--fg-2);
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), color .25s var(--ease-out);
}
.wwd-tab:hover { background: rgba(255,255,255,.03); color: var(--fg-1); }
.wwd-tab.active {
  background: linear-gradient(135deg, rgba(32,200,162,.10), rgba(30,130,210,.10));
  border-color: rgba(32,200,162,.35);
  color: var(--fg-1);
}
.wwd-num {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: var(--pda-teal);
  font-family: var(--font-mono);
}
.wwd-tab.active .wwd-num {
  background-image: var(--pda-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.wwd-tab-label { font-size: 14px; font-weight: 600; letter-spacing: -.005em; }
.wwd-tab-chev { color: var(--fg-3); opacity: .6; }
.wwd-tab.active .wwd-tab-chev { color: var(--pda-teal); opacity: 1; }

.wwd-panel {
  position: relative;
  background: var(--bg-1);
  border-radius: 14px;
  border: 1px solid var(--border-1);
  padding: 40px 44px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.wwd-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  flex: 1;
  animation: wwd-fade .4s var(--ease-out);
}
.wwd-content.shown { display: grid; }
@keyframes wwd-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wwd-content-left { display: flex; flex-direction: column; gap: 16px; }
.wwd-content-left h3 {
  font-size: 32px; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin: 0;
}
.wwd-content-left p { font-size: 16px; color: var(--fg-2); line-height: 1.65; margin: 0; }
.wwd-stack {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.wwd-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-size: 12px; font-weight: 500;
  color: var(--fg-2);
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
}
.wwd-chip svg { color: var(--pda-teal); }
.wwd-result {
  margin-top: auto;
  padding: 16px 18px;
  background: rgba(32,200,162,.06);
  border-left: 2px solid var(--pda-teal);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 4px;
}
.wwd-result-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--pda-teal); font-weight: 700; }
.wwd-result-value { font-size: 17px; font-weight: 600; color: var(--fg-1); }

/* layer-card visual */
.wwd-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
  padding: 0 20px;
}
.layer-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 12px;
  color: var(--fg-3);
  transform: translateX(calc(var(--depth) * 8px));
  opacity: .55;
  transition: all .4s var(--ease-out);
  position: relative;
}
.layer-card.lit {
  opacity: 1;
  color: var(--fg-1);
  border-color: rgba(32,200,162,.4);
  background: linear-gradient(135deg, rgba(32,200,162,.08), rgba(30,130,210,.08));
  box-shadow: 0 6px 20px -8px rgba(32,200,162,.4);
}
.layer-card-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  color: currentColor;
}
.layer-card.lit .layer-card-icon { border-color: rgba(32,200,162,.4); color: var(--pda-teal); }
.layer-card-name { font-size: 14px; font-weight: 600; letter-spacing: -.005em; }
.layer-card-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-2);
}
.layer-card.lit .layer-card-dot {
  background-image: var(--pda-gradient);
  box-shadow: 0 0 8px rgba(32,200,162,.6);
}

@media (max-width: 1000px) {
  .wwd { grid-template-columns: 1fr; }
  .wwd-content { position: static; inset: auto; grid-template-columns: 1fr; opacity: 1; pointer-events: auto; transform: none; }
  .wwd-content:not(.shown) { display: none; }
  .wwd-panel { padding: 28px; min-height: 0; }
}

/* ===== PROCESS ===== */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-line {
  position: absolute;
  top: 32px; left: 5%; right: 5%;
  height: 1px;
  background: var(--border-2);
  z-index: 0;
}
.process-line-fill {
  position: absolute; inset: 0;
  background: var(--pda-gradient);
  transform-origin: left center;
  transform: scaleX(0);
  animation: process-fill 3s var(--ease-out) forwards;
  animation-delay: .4s;
  box-shadow: 0 0 12px rgba(32,200,162,.4);
}
@keyframes process-fill { to { transform: scaleX(1); } }

.process-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out);
}
.process-step:hover { transform: translateY(-2px); border-color: var(--border-2); }
.process-step-head { display: flex; align-items: center; justify-content: space-between; }
.process-step-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(32,200,162,.15), rgba(30,130,210,.15));
  border: 1px solid rgba(32,200,162,.3);
  color: var(--pda-teal);
}
.process-step-num {
  font-family: var(--font-mono);
  font-size: 38px; font-weight: 700; letter-spacing: -.02em;
  color: var(--fg-3);
  line-height: 1;
  transition: color .35s var(--ease-out), text-shadow .35s var(--ease-out), -webkit-text-fill-color .35s var(--ease-out);
}
.process-step:hover .process-step-num {
  background-image: var(--pda-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 22px rgba(32,200,162,.35);
}
.process-step:hover .process-step-icon {
  background: linear-gradient(135deg, rgba(32,200,162,.28), rgba(30,130,210,.28));
  border-color: rgba(32,200,162,.5);
}
.process-step-title { font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin: 0; }
.process-step-body { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0; }

@media (max-width: 900px) {
  .process-track { grid-template-columns: 1fr; }
  .process-line { display: none; }
}

/* ===== ABOUT (homepage teaser) ===== */
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: center;
}
.about-left { display: flex; flex-direction: column; gap: 18px; }
.about-left h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; margin: 0; }
.about-left p { font-size: 17px; line-height: 1.65; color: var(--fg-2); margin: 0; }
.about-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.about-meta { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-3); }
.about-meta svg { color: var(--pda-teal); }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.about-stat-num { font-size: 44px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.about-stat-label { font-size: 13px; color: var(--fg-2); }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ===== About principles (homepage teaser) ===== */
.about-principles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}
.about-principle {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-1);
  padding: 10px 14px;
  border-left: 2px solid var(--pda-teal);
  background: linear-gradient(90deg, rgba(32,200,162,.06), transparent);
  border-radius: 0 8px 8px 0;
  line-height: 1.4;
}

/* ===== Mantras band (homepage) ===== */
.mantras-band {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(32,200,162,.10), transparent 55%),
    var(--bg-2);
  border: 1px solid var(--border-1); border-radius: 24px; padding: 52px;
}
.mantras-band-head h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.08; letter-spacing: -.02em; margin: 12px 0 14px; }
.mantras-band-head p { font-size: 16px; line-height: 1.6; color: var(--fg-2); margin: 0 0 22px; max-width: 28em; }
.mantras-band-list { display: flex; flex-direction: column; }
.mantra-row {
  display: flex; gap: 22px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--border-1);
}
.mantra-row:first-child { border-top: none; padding-top: 0; }
.mantra-row-num { font-family: var(--font-mono); font-size: 13px; color: var(--pda-teal); font-weight: 700; flex-shrink: 0; }
.mantra-row-text h3 { font-size: 20px; font-weight: 700; letter-spacing: -.015em; line-height: 1.2; margin: 0 0 6px; }
.mantra-row-text p { font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0; max-width: 46em; }

@media (max-width: 900px) {
  .mantras-band { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
}

/* ===== PARTNERS ===== */
.partners-head { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.partners-head .eyebrow::before { display: none; }
.partners-h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin: 0; max-width: 700px; }
.partners-sub { font-size: 16px; color: var(--fg-2); margin: 0; max-width: 600px; }

.partners-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex; gap: 56px;
  animation: partners-scroll 80s linear infinite;
  width: max-content;
  padding: 12px 0;
}
@keyframes partners-scroll { to { transform: translateX(-50%); } }

/* Muted greyscale wordmark wall - logos are normalized to dark-on-transparent,
   then inverted + desaturated here so every mark reads as a quiet light-grey
   silhouette on navy. Hover lifts the opacity for a gentle wake-up; we don't
   restore color because we don't have on-brand color assets for every mark. */
.partner-logo {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 160px;
  height: 64px;
  padding: 0;
  opacity: .55;
  filter: invert(1) grayscale(1) brightness(.78) contrast(1.05);
  transition: opacity .35s var(--ease-out), filter .35s var(--ease-out);
}
.partner-logo:hover {
  opacity: .85;
  filter: invert(1) grayscale(1) brightness(.92) contrast(1.05);
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== UVP ===== */
.uvp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.uvp-card {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.uvp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background-image: var(--pda-gradient); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.uvp-card:hover { transform: translateY(-3px); border-color: rgba(32,200,162,.3); box-shadow: var(--shadow-2); }
.uvp-card:hover::before { transform: scaleX(1); }
.uvp-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(32,200,162,.08);
  border: 1px solid rgba(32,200,162,.28);
  color: var(--pda-teal);
}
.uvp-title { font-size: 18px; font-weight: 700; letter-spacing: -.01em; margin: 0; }
.uvp-body { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0; }

@media (max-width: 900px) { .uvp-grid { grid-template-columns: 1fr; } }

/* ===== Public Displays of Appreciation ===== */
.pdoa-head { max-width: 760px; }
.pdoa-card {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 20px;
  overflow: hidden;
}
.pdoa-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border-1);
}
.pdoa-tab {
  display: flex; flex-direction: column; gap: 6px;
  align-items: flex-start;
  padding: 24px 28px;
  background: transparent; border: none;
  text-align: left; cursor: pointer;
  color: var(--fg-2);
  border-right: 1px solid var(--border-1);
  position: relative;
  transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.pdoa-tab:last-child { border-right: none; }
.pdoa-tab:hover { background: rgba(255,255,255,.02); color: var(--fg-1); }
.pdoa-tab.active { background: rgba(32,200,162,.04); color: var(--fg-1); }
.pdoa-tab.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background-image: var(--pda-gradient);
}
.pdoa-tab-tag { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--pda-teal); }
.pdoa-tab-name { font-size: 17px; font-weight: 700; letter-spacing: -.005em; }

.pdoa-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; }
.pdoa-body-left { padding: 48px 56px; display: flex; flex-direction: column; gap: 18px; }
.pdoa-meta { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); font-weight: 600; }
.pdoa-headline { font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin: 0; }
.pdoa-quote {
  position: relative;
  font-size: 18px; line-height: 1.55; color: var(--fg-1); font-style: italic;
  font-weight: 500;
  margin: 0; padding: 0 0 0 44px;
}
.pdoa-quote-mark {
  position: absolute; left: 0; top: -4px;
  color: var(--pda-teal); opacity: .7;
}
.pdoa-attribution { font-size: 13px; color: var(--fg-3); font-weight: 500; }
.pdoa-cta-row { margin-top: auto; }

.pdoa-body-right {
  position: relative;
  background:
    linear-gradient(135deg, #1A2034, #0E121E);
  padding: 48px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start;
  overflow: hidden;
}
.pdoa-body-right::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(32,200,162,.22), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(30,130,210,.18), transparent 60%);
  pointer-events: none;
}
.pdoa-stat {
  position: relative; z-index: 1;
  background: rgba(14,18,30,.6);
  border: 1px solid var(--border-1);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 4px;
  backdrop-filter: blur(4px);
}
.pdoa-stat-num { font-size: 28px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.pdoa-stat-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); font-weight: 600; }
.pdoa-frame {
  grid-column: 1 / -1; position: relative; z-index: 1;
  margin-top: 8px;
  padding: 18px;
  background: rgba(14,18,30,.6);
  border: 1px solid var(--border-1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pdoa-frame-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--pda-teal); font-weight: 700; }
.pdoa-frame-pulse {
  width: 80px; height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--pda-teal) 50%, transparent);
  background-size: 200% 100%;
  animation: pdoa-pulse 2.5s linear infinite;
}
@keyframes pdoa-pulse { from { background-position: 200% 0; } to { background-position: -100% 0; } }

@media (max-width: 980px) {
  .pdoa-body { grid-template-columns: 1fr; }
  .pdoa-body-left { padding: 32px; }
  .pdoa-body-right { padding: 32px; }
  .pdoa-tabs { grid-template-columns: 1fr; }
  .pdoa-tab { border-right: none; border-bottom: 1px solid var(--border-1); }
}

/* ===== REVIEWS ===== */
.reviews-section { overflow: hidden; }
.reviews-marquee {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 64px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-row { display: flex; gap: 16px; width: max-content; }
.reviews-row-a { animation: rev-scroll-a 60s linear infinite; }
.reviews-row-b { animation: rev-scroll-b 60s linear infinite; }
@keyframes rev-scroll-a { to { transform: translateX(-50%); } }
@keyframes rev-scroll-b { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.review-card {
  flex-shrink: 0;
  width: 380px;
  padding: 24px 26px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { display: flex; gap: 3px; color: var(--pda-teal); }
.review-text { font-size: 15px; line-height: 1.55; color: var(--fg-1); margin: 0; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background-image: var(--pda-gradient);
  color: var(--pda-navy);
  font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.review-meta-text { display: flex; flex-direction: column; gap: 1px; }
.review-name { font-size: 13px; font-weight: 600; }
.review-role { font-size: 11px; color: var(--fg-3); }
.review-link {
  margin-left: auto;
  color: var(--pda-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-summary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 760px; margin: 0 auto;
}
.reviews-stat {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  display: flex; align-items: center; gap: 16px;
}
.reviews-stat-num { font-size: 40px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.reviews-stat-meta { display: flex; flex-direction: column; gap: 2px; font-size: 12px; color: var(--fg-2); }
.reviews-stat-meta .sub { font-size: 10px; color: var(--fg-3); }
.stars-row { display: flex; gap: 2px; color: var(--pda-teal); }

@media (max-width: 700px) { .reviews-summary { grid-template-columns: 1fr; } }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 120px; }
.contact-left h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; margin: 0; }
.contact-left p { font-size: 17px; line-height: 1.6; color: var(--fg-2); margin: 0; }
.contact-points { list-style: none; padding: 0; margin: 8px 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--fg-2); }
.contact-points li { display: flex; align-items: center; gap: 10px; }
.contact-points svg { color: var(--pda-teal); flex-shrink: 0; }
.inline-link { color: var(--pda-teal); border-bottom: 1px solid currentColor; transition: opacity .2s; }
.inline-link:hover { opacity: .8; }
.contact-side-meta { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; padding-top: 18px; border-top: 1px solid var(--border-1); }
.contact-side-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-2); }
.contact-side-row svg { color: var(--pda-teal); }
.contact-side-row a { transition: color .2s; }
.contact-side-row a:hover { color: var(--pda-teal); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 18px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.contact-fineprint { font-size: 11px; color: var(--fg-3); }
.contact-thanks { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 40px 16px; text-align: center; }
.contact-thanks-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background-image: var(--pda-gradient);
  color: var(--pda-navy);
  display: flex; align-items: center; justify-content: center;
}
.contact-thanks h3 { font-size: 24px; margin: 0; font-weight: 700; letter-spacing: -.01em; }
.contact-thanks p { font-size: 14px; color: var(--fg-2); margin: 0; max-width: 360px; line-height: 1.55; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left { position: static; }
  .contact-form { padding: 28px; }
}

/* ===== REFERRAL ===== */
.referral-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 24px;
  padding: 64px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
  overflow: hidden;
}
.referral-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 95% 50%, rgba(32,200,162,.18), transparent 60%),
    radial-gradient(ellipse at 5% 100%, rgba(30,130,210,.14), transparent 60%);
}
.referral-left { position: relative; display: flex; flex-direction: column; gap: 18px; }
.referral-h { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; margin: 0; }
.referral-p { font-size: 17px; line-height: 1.65; color: var(--fg-2); margin: 0; max-width: 540px; }
.referral-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.referral-right { position: relative; display: flex; align-items: center; justify-content: center; height: 320px; }
.referral-token {
  position: relative;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(32,200,162,.25), rgba(14,18,30,.95) 70%);
  border: 1px solid rgba(32,200,162,.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px -10px rgba(32,200,162,.4), inset 0 1px 0 rgba(255,255,255,.06);
}
.token-ring {
  position: absolute; inset: -16px;
  border-radius: 50%;
  border: 1px dashed rgba(32,200,162,.4);
  animation: token-spin 24s linear infinite;
}
@keyframes token-spin { to { transform: rotate(360deg); } }
.token-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
}
.token-amt { font-size: 72px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.token-label { font-size: 11px; letter-spacing: .26em; font-weight: 700; color: var(--fg-2); }
.token-bar { width: 80px; height: 2px; background-image: var(--pda-gradient); border-radius: 999px; margin: 6px 0; }
.token-fineprint { font-size: 9px; letter-spacing: .22em; font-weight: 600; color: var(--fg-3); }

.referral-orbit {
  position: absolute;
  width: 44px; height: 44px;
  background: var(--bg-1);
  border: 1px solid rgba(32,200,162,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pda-teal);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.referral-orbit-a { top: 18%; left: 0%; animation: orbit-float 6s ease-in-out infinite; }
.referral-orbit-b { bottom: 12%; right: -2%; animation: orbit-float 7s ease-in-out infinite -2s; }
.referral-orbit-c { top: 8%; right: 8%; animation: orbit-float 5s ease-in-out infinite -1s; }
@keyframes orbit-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .referral-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  .referral-right { height: 240px; }
  .referral-token { width: 200px; height: 200px; }
  .token-amt { font-size: 56px; }
}

/* ===== BLOG ===== */
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; }
.blog-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #0E121E, #1A2034);
  overflow: hidden;
}
.blog-card-thumb::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(32,200,162,.25), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(30,130,210,.18), transparent 60%);
}
.blog-card-thumb-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(32,200,162,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,200,162,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  opacity: .8;
}
.blog-card-thumb-pattern[data-pattern="1"] {
  background-image: radial-gradient(rgba(32,200,162,.18) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.blog-card-thumb-pattern[data-pattern="2"] {
  background-image: linear-gradient(45deg, rgba(30,130,210,.10) 25%, transparent 25%, transparent 75%, rgba(30,130,210,.10) 75%);
  background-size: 28px 28px;
}
.blog-card-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 10px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--pda-teal);
  background: rgba(14,18,30,.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(32,200,162,.3);
  border-radius: 999px;
}
.blog-card-body { padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card-title { font-size: 19px; font-weight: 700; letter-spacing: -.015em; line-height: 1.3; margin: 0; }
.blog-card-excerpt { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.blog-card-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); font-weight: 600;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-1);
}
.blog-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-3); }
.blog-card-meta .grow { flex: 1; }
.blog-card-meta svg { color: var(--pda-teal); }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PUBLIC DISPLAYS OF APPRECIATION — client spotlight section
   ============================================================ */

.pdoa2-head { max-width: 680px; }

/* Featured card */
.pdoa2-featured {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.pdoa2-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 75% 50%, rgba(32,200,162,.07), transparent 65%);
  pointer-events: none;
}

.pdoa2-featured-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 56px 48px;
  border-right: 1px solid var(--border-1);
}

.pdoa2-logo-wrap {
  height: 44px;
  display: flex;
  align-items: center;
}
.pdoa2-logo {
  max-height: 100%;
  max-width: 140px;
  object-fit: contain;
  filter: invert(1) grayscale(1) brightness(.85);
  opacity: .9;
}

.pdoa2-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-3);
  flex-wrap: nowrap;
}
.pdoa2-sep { color: var(--border-1); }
.pdoa2-industry,
.pdoa2-location { white-space: nowrap; }

.pdoa2-client-name {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0;
}

.pdoa2-blurb {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0;
}

.pdoa2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pdoa2-tag {
  display: inline-block;
  padding: 4px 11px;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-3);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  white-space: nowrap;
}

.pdoa2-cta { align-self: flex-start; margin-top: 4px; }
.pdoa2-card .pdoa2-cta { align-self: center; margin-top: auto; }

.pdoa2-featured-right {
  display: flex;
  align-items: stretch;
  background: #080b14;
}
.pdoa2-featured-right .site-mockup {
  width: 100%;
  border-radius: 0;
}

/* Client grid */
.pdoa2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.pdoa2-card {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.pdoa2-card:hover {
  border-color: rgba(32,200,162,.22);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.pdoa2-card-mockup {
  border-bottom: 1px solid var(--border-1);
  background: #080b14;
}

.pdoa2-card-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pdoa2-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-3);
}

.pdoa2-card-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0;
}

.pdoa2-card-blurb {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}

.pdoa2-footer {
  display: flex;
  justify-content: center;
}

/* ===== SITE MOCKUP ===== */
.site-mockup {
  display: block;
  background: #0a0d17;
  overflow: hidden;
  font-size: 0;
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: #111522;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mockup-dots {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.mockup-dots span {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: rgba(255,95,86,.65); }
.mockup-dots span:nth-child(2) { background: rgba(255,189,46,.65); }
.mockup-dots span:nth-child(3) { background: rgba(39,201,63,.65); }

.mockup-url-bar {
  flex: 1;
  background: rgba(255,255,255,.04);
  border-radius: 4px;
  padding: 3px 8px;
  text-align: center;
}
.mockup-url {
  font-family: var(--font-mono, 'Courier New', monospace);
  font-size: 8px;
  color: rgba(255,255,255,.22);
  letter-spacing: .04em;
  white-space: nowrap;
  font-size: 8px;
}

/* Content area */
.mockup-content {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0;
}
/* Taller for the featured (non-compact) mockup */
.site-mockup:not(.compact) .mockup-content {
  padding: 14px 16px 20px;
  gap: 9px;
}

/* Nav bar */
.mockup-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 2px;
}
.m-logo-bar {
  display: block;
  width: 44px; height: 8px;
  background: rgba(255,255,255,.22);
  border-radius: 3px;
  flex-shrink: 0;
}
.m-nav-items {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.m-nav-items span {
  display: block;
  width: 22px; height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
}
.m-nav-cta {
  display: block;
  width: 36px; height: 14px;
  background: rgba(32,200,162,.3);
  border-radius: 3px;
  flex-shrink: 0;
}

/* Hero image */
.m-hero-img {
  display: block;
  height: 50px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(32,200,162,.18), rgba(30,130,210,.12));
}
.site-mockup:not(.compact) .m-hero-img { height: 72px; }
.m-tint-earth { background: linear-gradient(135deg, rgba(160,120,60,.25), rgba(80,60,30,.15)); }
.m-tint-rust  { background: linear-gradient(135deg, rgba(190,80,40,.22), rgba(140,50,20,.12)); }
.m-tint-warm  { background: linear-gradient(135deg, rgba(180,140,40,.2), rgba(120,90,20,.12)); }
.m-tint-earth-lt { background: rgba(140,110,60,.18); }

.m-hero-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.m-h1 {
  display: block;
  height: 9px;
  background: rgba(255,255,255,.26);
  border-radius: 3px;
}
.m-h2 {
  display: block;
  height: 6px;
  background: rgba(255,255,255,.13);
  border-radius: 2px;
}
.m-h1.centered, .m-h2.centered { margin-left: auto; margin-right: auto; }
.m-p {
  display: block;
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
}
.m-p.short { width: 65%; }
.m-cta-pill {
  display: block;
  height: 18px; width: 64px;
  background: rgba(32,200,162,.38);
  border-radius: 999px;
  margin-top: 2px;
}
.m-cta-pill.centered { margin-left: auto; margin-right: auto; }
.m-divider {
  display: block;
  height: 1px;
  background: rgba(255,255,255,.05);
  margin: 2px 0;
}

/* 3-column service/resource row */
.m-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.m-service-card, .m-resource-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 4px;
  padding: 6px 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.m-sc-icon {
  width: 12px; height: 12px;
  border-radius: 3px;
  background: rgba(32,200,162,.3);
  margin-bottom: 2px;
}
.m-rc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-bottom: 2px;
}
.m-rc-dot.m-blue { background: rgba(30,130,210,.5); }
.m-sc-line {
  display: block;
  height: 4px;
  background: rgba(255,255,255,.14);
  border-radius: 2px;
}
.m-sc-line.short { width: 65%; }

/* Map block */
.m-map-block { display: flex; flex-direction: column; gap: 5px; }
.m-map-label { display: block; height: 6px; width: 50%; background: rgba(255,255,255,.14); border-radius: 2px; }
.m-map-area {
  position: relative;
  height: 40px;
  background: rgba(30,130,210,.1);
  border: 1px solid rgba(30,130,210,.12);
  border-radius: 4px;
  overflow: hidden;
}
.m-map-pin {
  position: absolute;
  top: 35%; left: 42%;
  width: 7px; height: 7px;
  background: rgba(32,200,162,.9);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(32,200,162,.6);
}
.m-map-ring {
  position: absolute;
  top: 20%; left: 28%;
  width: 42%; height: 60%;
  border: 1px solid rgba(32,200,162,.2);
  border-radius: 3px;
  background: rgba(32,200,162,.06);
}

/* Grocery: 4-grid product */
.m-banner {
  height: 38px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.site-mockup:not(.compact) .m-banner { height: 52px; }
.m-banner-text { display: flex; flex-direction: column; gap: 4px; }
.m-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.m-product-card {
  background: rgba(255,255,255,.05);
  border-radius: 4px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.m-product-img {
  aspect-ratio: 1;
  background: rgba(255,255,255,.09);
  border-radius: 3px;
  margin-bottom: 2px;
}
.m-p-line {
  display: block;
  height: 4px;
  background: rgba(255,255,255,.13);
  border-radius: 2px;
}
.m-p-line.short { width: 60%; }
.m-text-footer { display: flex; flex-direction: column; gap: 4px; }

/* Restaurant: pills + menu */
.m-pills-row {
  display: flex;
  gap: 5px;
}
.m-pill {
  display: block;
  height: 14px; width: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
}
.m-pill.active {
  background: rgba(32,200,162,.28);
  width: 44px;
}
.m-menu-list { display: flex; flex-direction: column; gap: 5px; }
.m-menu-row { display: flex; align-items: center; gap: 6px; }
.m-menu-thumb {
  width: 22px; height: 22px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  flex-shrink: 0;
}
.m-menu-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.m-menu-price {
  width: 20px; height: 7px;
  background: rgba(32,200,162,.3);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Nonprofit: mission block */
.m-mission-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  text-align: center;
}
.m-eyebrow-bar {
  display: block;
  width: 40px; height: 6px;
  background: rgba(30,130,210,.4);
  border-radius: 999px;
  margin-bottom: 2px;
}

/* Booking: calendar + form */
.m-booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 7px;
}
.m-cal-block { display: flex; flex-direction: column; gap: 5px; }
.m-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m-chevron {
  display: block;
  width: 8px; height: 8px;
  border-right: 1.5px solid rgba(255,255,255,.2);
  border-bottom: 1.5px solid rgba(255,255,255,.2);
  transform: rotate(-45deg);
}
.m-cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.m-cal-day {
  height: 10px;
  background: rgba(255,255,255,.07);
  border-radius: 2px;
}
.m-cal-day.m-booked { background: rgba(32,200,162,.42); }
.m-cal-day.m-today  { background: rgba(255,255,255,.22); }
.m-form-block { display: flex; flex-direction: column; gap: 5px; }
.m-field-block {
  height: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 3px;
}
.m-field-block.short { width: 75%; }

/* Construction: gallery */
.m-gallery-hero {
  display: block;
  height: 52px;
  border-radius: 5px;
}
.site-mockup:not(.compact) .m-gallery-hero { height: 68px; }
.m-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.m-gallery-thumb {
  height: 26px;
  border-radius: 3px;
}
.site-mockup:not(.compact) .m-gallery-thumb { height: 34px; }

/* Iframe preview */
.iframe-preview {
  overflow: hidden;
  background: #080b14;
  position: relative;
  display: block;
}

/* Dark atmospheric treatment — desaturates and darkens all iframe content
   so every site reads in PDA's navy palette regardless of its own colors.
   The gradient overlay fades the bottom edge so content never hard-cuts. */
.iframe-preview iframe {
  filter: grayscale(0.85) brightness(0.32) contrast(1.1);
  pointer-events: none;
  display: block;
}
.iframe-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* subtle teal glow at the very top */
    linear-gradient(to bottom,
      rgba(32,200,162,.06)  0%,
      transparent           22%),
    /* graceful fade to navy at the bottom */
    linear-gradient(to bottom,
      transparent           35%,
      rgba(8,11,20,.72)     72%,
      rgba(8,11,20,.97)    100%);
}

/* Featured card (Addison) — brighter so the video reads through */
.pdoa2-featured-right .iframe-preview iframe {
  filter: grayscale(0.35) brightness(0.78) contrast(1.02);
}
.pdoa2-featured-right .iframe-preview::after {
  background:
    linear-gradient(to bottom,
      rgba(32,200,162,.04)  0%,
      transparent           18%),
    linear-gradient(to bottom,
      transparent           52%,
      rgba(8,11,20,.45)     78%,
      rgba(8,11,20,.88)    100%);
}

/* Featured right panel — stretch iframe to fill */
.pdoa2-featured-right .site-mockup {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 0;
}
.pdoa2-featured-right .iframe-preview {
  flex: 1;
  min-height: 320px;
}

/* Meta row pipe divider */
.pdoa2-pipe {
  color: var(--border-2);
  font-size: 10px;
  font-weight: 300;
  opacity: .6;
  flex-shrink: 0;
}

/* Plan badges */
.pdoa2-plan {
  display: inline-block;
  padding: 3px 9px;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid;
  flex-shrink: 0;
}
.plan-custom    { color: var(--pda-teal);  border-color: rgba(32,200,162,.35);  background: rgba(32,200,162,.08); }
.plan-foundation{ color: var(--fg-3);      border-color: var(--border-1);        background: rgba(255,255,255,.03); }
.plan-growth    { color: var(--pda-teal);  border-color: rgba(32,200,162,.35);  background: rgba(32,200,162,.08); }
.plan-operation { color: var(--pda-blue);  border-color: rgba(30,130,210,.35);  background: rgba(30,130,210,.08); }

/* Colored logo treatment for featured card */
.pdoa2-logo-light-bg {
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  width: fit-content;
}
.pdoa2-logo-color {
  filter: none !important;
  opacity: 1 !important;
}

/* Card header row (logo + plan badge) */
.pdoa2-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}
.pdoa2-card-logo-wrap {
  height: 32px;
  display: flex;
  align-items: center;
}
.pdoa2-card-logo {
  max-height: 100%;
  max-width: 100px;
  object-fit: contain;
  filter: invert(1) grayscale(1) brightness(.85);
  opacity: .85;
}

/* Website link */
.pdoa2-site-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--fg-3);
  font-family: var(--font-mono, monospace);
  letter-spacing: .02em;
  margin-top: 4px;
  transition: color .2s;
}
.pdoa2-site-link:hover { color: var(--pda-teal); }
.pdoa2-site-link svg { opacity: .7; }

/* Delivery app mockup elements */
.m-app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 2px;
}
.m-app-location {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.m-app-pin {
  width: 7px; height: 9px;
  border-radius: 50% 50% 50% 0;
  background: rgba(32,200,162,.7);
  flex-shrink: 0;
  transform: rotate(-45deg);
}
.m-app-avatar {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}
.m-app-search {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 4px 6px;
}
.m-app-search-icon {
  width: 8px; height: 8px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  flex-shrink: 0;
}
.m-app-banner {
  border-radius: 5px;
  height: 36px;
  overflow: hidden;
  position: relative;
}
.m-app-bottomnav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0 2px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 2px;
}
.m-app-navicon {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: rgba(255,255,255,.1);
}
.m-app-navicon.active { background: rgba(32,200,162,.5); }

/* Mission / nonprofit */
.m-mission-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  text-align: center;
}
.m-resource-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 4px;
  padding: 6px 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.m-rc-dot { width: 8px; height: 8px; border-radius: 50%; margin-bottom: 2px; }
.m-rc-dot.m-blue { background: rgba(30,130,210,.5); }

/* Responsive */
@media (max-width: 1100px) {
  .pdoa2-featured { grid-template-columns: 1fr; }
  .pdoa2-featured-left { border-right: none; border-bottom: 1px solid var(--border-1); padding: 40px; }
  .pdoa2-featured-right { min-height: 240px; }
}
@media (max-width: 800px) {
  .pdoa2-grid { grid-template-columns: 1fr; }
  .pdoa2-featured-left { padding: 28px; gap: 16px; }
}

/* ============================================================
   Homepage inline Project Builder section
   ============================================================ */
.builder-inline {
  padding: 96px 0 112px;
  position: relative;
  /* Ambient teal/blue aurora — the "live diagnostic zone" feel */
  background:
    radial-gradient(ellipse 55% 65% at 72% 52%, rgba(32,200,162,.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 28% 48%, rgba(30,130,210,.07) 0%, transparent 60%);
}
/* Gradient rule at section edges — visual delineation */
.builder-inline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(32,200,162,.5) 30%,
    rgba(79,160,218,.5) 70%, transparent 100%);
}
.builder-inline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(32,200,162,.22) 40%,
    rgba(79,160,218,.22) 60%, transparent 100%);
}
.builder-inline-head {
  max-width: 640px; margin: 0 auto 56px;
  text-align: center;
}

.builder-inline-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: start;
}
.builder-inline-left {
  display: flex; flex-direction: column; gap: 24px;
  min-height: 480px;
}
.builder-inline-right {
  position: sticky; top: 120px;
}

/* Wider 2-col grid for the extra horizontal space on the left */
.pb-choices-wide { grid-template-columns: 1fr 1fr; gap: 14px; }
.pb-choices-wide .pb-choice { padding: 18px 20px; }

/* Progress bar in inline context — horizontal scroll if narrow */
.builder-inline-progress {
  overflow-x: auto; scrollbar-width: none;
  border: none; background: none; padding: 0 0 8px;
}
.builder-inline-progress::-webkit-scrollbar { display: none; }

/* Resume banner */
.builder-resume-banner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 14px 20px;
  background: rgba(32,200,162,.06);
  border: 1px solid rgba(32,200,162,.25);
  border-radius: 12px;
  font-size: 14px; color: var(--fg-2);
}
.builder-resume-banner strong { color: var(--fg-1); }

/* Escape hatch */
.builder-escape {
  font-size: 13px; color: var(--fg-3); margin: 4px 0 0;
}
.builder-escape .inline-link { color: var(--pda-teal); }
.builder-escape .inline-link:hover { text-decoration: underline; }

/* Success state */
.builder-success {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 48px 32px; text-align: center;
}
.builder-success h3 { font-size: 24px; font-weight: 700; margin: 0; }
.builder-success p  { font-size: 15px; color: var(--fg-2); line-height: 1.6; max-width: 420px; margin: 0; }

/* ── Live Recommendation Panel ───────────────────────────── */
.builder-rec-panel {
  background: var(--bg-2);
  border: 1px solid rgba(32,200,162,.22);
  border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow:
    0 0 0 1px rgba(32,200,162,.06),
    0 0 48px rgba(32,200,162,.08),
    0 20px 60px rgba(0,0,0,.32);
}
.brp-header {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--border-1);
  display: flex; flex-direction: column; gap: 4px;
}
.brp-hint { font-size: 13px; color: var(--fg-2); line-height: 1.5; margin: 4px 0 0; }

/* Tier ladder */
.brp-tiers { padding: 12px 0; display: flex; flex-direction: column; }
.brp-tier {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  border-left: 3px solid transparent;
  transition: background .25s, border-color .25s;
}
.brp-tier.active {
  background: linear-gradient(90deg, rgba(32,200,162,.13) 0%, rgba(30,130,210,.04) 100%);
  border-left-color: var(--pda-teal);
  box-shadow: inset 3px 0 10px rgba(32,200,162,.12);
}
.brp-tier-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-2); flex-shrink: 0;
  transition: background .25s;
}
.brp-tier.active .brp-tier-dot { background: var(--pda-teal); box-shadow: 0 0 6px rgba(32,200,162,.6); }
.brp-tier-body { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.brp-tier-name  { font-size: 14px; font-weight: 600; color: var(--fg-2); transition: color .25s; }
.brp-tier.active .brp-tier-name { color: var(--fg-1); }
.brp-tier-price { font-size: 11px; color: var(--fg-3); font-family: var(--font-mono); }
.brp-tier-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(32,200,162,.15); color: var(--pda-teal);
  border: 1px solid rgba(32,200,162,.3);
  white-space: nowrap;
}

/* Completion result panel */
.brp-result {
  padding: 20px 24px; border-top: 1px solid var(--border-1);
  display: flex; flex-direction: column; gap: 14px;
}
.brp-result-header { display: flex; flex-direction: column; gap: 2px; }
.brp-suggest { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--fg-3); }
.brp-pkg-name {
  font-size: 22px; font-weight: 700; letter-spacing: -.02em;
  background-image: var(--pda-gradient);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.brp-social-proof {
  margin: 0; padding: 12px 16px;
  background: rgba(32,200,162,.05);
  border-left: 3px solid var(--pda-teal); border-radius: 0 8px 8px 0;
  font-size: 13px; line-height: 1.55; color: var(--fg-2); font-style: italic;
}

/* Integrated contact form in rec panel */
.brp-contact-form { padding-top: 16px; border-top: 1px solid var(--border-1); }
.brp-form { display: flex; flex-direction: column; gap: 12px; }

/* Submitted state in rec panel */
.brp-submitted {
  padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px;
  background: rgba(32,200,162,.05); border-top: 1px solid rgba(32,200,162,.2);
  color: var(--pda-teal);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .builder-inline-split {
    grid-template-columns: 1fr;
  }
  .builder-inline-right {
    position: static;
    /* Show rec panel above wizard on mobile — CSS order keeps DOM order for a11y */
    order: -1;
  }
  .pb-choices-wide { grid-template-columns: 1fr; }
}

/* === NEW HERO === */
.home-new-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 0 120px;
  overflow: hidden;
}

/* Abstract gradient blobs — drift with the existing au-drift keyframe and
   blend onto the dark background. GSAP shrinks/fades the wrapper on scroll. */
.hero-blobs {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: screen;
  opacity: .6;
  animation: au-drift ease-in-out infinite;
  will-change: transform;
}
/* Liquid field biased right (KOTA-style): bigger, more vivid, overlapping */
.hero-blob-teal {
  width: 54vw; height: 54vw; max-width: 860px; max-height: 860px;
  left: 44%; top: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(32,200,162,.95), transparent 66%);
  opacity: .8;
  animation-duration: 26s;
}
.hero-blob-blue {
  width: 58vw; height: 58vw; max-width: 900px; max-height: 900px;
  right: -6%; top: 24%;
  background: radial-gradient(circle at 50% 50%, rgba(30,130,210,.95), transparent 66%);
  opacity: .85;
  animation-duration: 32s; animation-delay: -8s;
}
.hero-blob-purple {
  width: 44vw; height: 44vw; max-width: 680px; max-height: 680px;
  left: 50%; bottom: -14%;
  background: radial-gradient(circle at 50% 50%, rgba(110,80,200,.9), transparent 66%);
  opacity: .75;
  animation-duration: 38s; animation-delay: -16s;
}

/* Left vignette keeps the giant statement crisp over the liquid field */
.home-new-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(14,18,30,.78) 0%, rgba(14,18,30,.3) 38%, transparent 60%);
}

/* Pointer-parallax wrappers: GSAP translates these; the CSS au-drift
   animation keeps owning the blobs' own transforms inside. */
.hero-blob-wrap {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  will-change: transform;
}

.hero-new-inner {
  position: relative;
  z-index: 2;
  /* .home-new-hero is a flex container: without this the .container
     shrink-wraps to the headline instead of filling the row */
  width: 100%;
  /* The hero is the showcase — let it claim more of a wide screen than the
     standard reading container so the statement and supporting block spread
     out instead of stacking in a narrow center column. */
  max-width: min(1720px, 92vw);
}

/* Desktop: the giant staircase and the supporting block each get their own
   column so they can never collide (the old absolute right-pin let "partner"
   overrun the paragraph). Eyebrow spans the top; sub bottom-aligns with the
   statement, echoing the KOTA "paragraph beside the last line" layout.
   Threshold is 1200px (not 1024) so the two columns always have comfortable
   separation; narrower screens use the stacked layout below instead. */
@media (min-width: 1200px) {
  .hero-new-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(320px, 26vw, 440px);
    grid-template-rows: auto auto;
    grid-template-areas:
      "eyebrow eyebrow"
      "headline sub";
    align-items: end;
    column-gap: clamp(32px, 5vw, 96px);
  }
  .hero-eyebrow-line { grid-area: eyebrow; }
  .hero-headline { grid-area: headline; }
  .hero-new-sub {
    grid-area: sub;
    position: static;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-bottom: clamp(8px, 2.4vh, 48px);
  }
}

/* KOTA-style staircase statement: three stacked lowercase lines, each
   indented further right, ultra-bold, overlapping line height. */
.hero-headline {
  font-size: clamp(64px, 12.5vw, 215px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  color: var(--fg-1);
  margin: 0;
  max-width: none;
}
.hl-stack { display: flex; flex-direction: column; align-items: flex-start; }
/* Each line is a clip-mask: the inner span rises from behind it on entrance.
   padding-bottom keeps descenders (the p in "partner") out of the clip. */
.hl-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.hl-line-inner { display: inline-block; will-change: transform; }
/* Line 1 hosts the glowing medallion: pad the clip box on all sides so the
   glow survives the mask; uniform negative margin cancels the layout shift */
.hl-1 { padding: 0.3em; margin: -0.3em; }
/* Cap the staircase indents in px so they don't run the lower lines off to the
   right (and into the supporting column) on very wide screens. */
.hl-2 { margin-left: min(11vw, 150px); }
.hl-3 { margin-left: min(5vw, 80px); }

/* Teal period: the quiet brand mark at the end of the statement */
.hl-dot { color: var(--pda-teal); }

/* Eyebrow kicker above the statement */
.hero-eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 3.5vh;
}
.hero-eyebrow-line::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--pda-teal);
}

/* Supporting block. Mobile/tablet (< 1024px): a normal stacked block beneath
   the statement. Desktop promotes it into the right grid column (see the
   min-width:1024px rule above) so it sits beside "in tech." without overlap. */
.hero-new-sub {
  position: static;
  max-width: 520px;
  margin-top: 32px;
  z-index: 2;
}
.hero-new-lead strong { color: var(--fg-1); font-weight: 600; }

/* Bottom trust strip: hairline + tracked caps + scroll cue (KOTA's awards
   row, translated to PDA proof points) */
.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* Match the widened hero container so the proof bar lines up edge-to-edge
     with the statement above it instead of floating in a narrow center band. */
  max-width: min(1720px, 92vw);
  margin: 0 auto;
  padding: 22px 32px;
  border-top: 1px solid rgba(200, 208, 226, 0.1);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.hero-strip-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-2);
}
.hero-strip-arrow {
  display: block;
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, var(--pda-teal), transparent);
  animation: hero-scroll-cue 1.8s ease-in-out infinite;
}
@keyframes hero-scroll-cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(6px); opacity: 0.5; }
}

/* Film grain over the gradient field: kills banding, adds analog polish */
.home-new-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Animated "o": an inline-block circle sized in em so it tracks the fluid
   headline automatically — no JS position math. Inside it, four scene layers
   (gradient / geometric / sketch / wireframe) crossfade on a 4s cycle; the
   active scene's draw/pop animations restart each time it comes around. */
.video-o {
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  border-radius: 50%;
  vertical-align: -0.1em;
  overflow: hidden;
  position: relative;
  margin: 0 0.02em;
  /* Lensed "viewport": a depth gradient reads as a deliberate aperture even
     between draws, instead of a flat dark hole. */
  background: radial-gradient(115% 95% at 50% 34%, #20314e 0%, #131b2c 54%, #0a0e18 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,.22),
    inset 0 10px 26px rgba(0,0,0,.5),
    0 0 28px rgba(32,200,162,.38);
  animation: video-o-breathe 5s ease-in-out infinite;
  cursor: pointer;
  pointer-events: auto;
}
/* Glass sheen across the top of the lens, painted over the scene layers */
.video-o::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(125% 80% at 50% -6%, rgba(255,255,255,.18) 0%, transparent 52%);
  pointer-events: none;
  z-index: 3;
}
@keyframes video-o-breathe {
  0%, 100% { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.22), inset 0 10px 26px rgba(0,0,0,.5), 0 0 26px rgba(32,200,162,.34); }
  50%      { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3), inset 0 10px 26px rgba(0,0,0,.5), 0 0 56px rgba(32,200,162,.6); }
}
.o-scene {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  transition: opacity .6s ease;
}
.o-scene.is-active { opacity: 1; }
.o-scene svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Soft emissive glow so the line-art reads as lit signal rather than thin,
   aliased strokes — the "premium animated viewport" the medallion is going for.
   Rounded joins/caps keep the vectors crisp at the medallion's small size. */
.video-o .o-scene svg { filter: drop-shadow(0 0 1.6px rgba(125,252,224,.45)); }
.video-o .o-draw,
.video-o .o-wire,
.video-o .o-hub,
.video-o .o-spoke,
.video-o .o-node { stroke-linecap: round; stroke-linejoin: round; }
.video-o .o-scene-ai .o-draw { stroke-width: 2.2; }

/* Geometric line-art scenes (geo / geo2 / geo3) share the draw-in language:
   three strokes in teal -> blue -> violet, staggered. */
.o-scene-geo, .o-scene-geo2, .o-scene-geo3 { background: var(--bg-2); }
.o-scene-geo .o-draw,
.o-scene-geo2 .o-draw,
.o-scene-geo3 .o-draw {
  fill: none;
  stroke: var(--pda-teal);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.o-scene-geo .o-draw:nth-child(2),
.o-scene-geo2 .o-draw:nth-child(2),
.o-scene-geo3 .o-draw:nth-child(2) { stroke: var(--pda-blue); }
.o-scene-geo .o-draw:nth-child(3),
.o-scene-geo2 .o-draw:nth-child(3),
.o-scene-geo3 .o-draw:nth-child(3) { stroke: var(--pda-violet, #6E50C8); }
.o-scene-geo.is-active .o-draw,
.o-scene-geo2.is-active .o-draw,
.o-scene-geo3.is-active .o-draw {
  animation: o-draw 1.5s var(--ease-out, ease-out) .15s forwards;
}
.o-scene-geo.is-active .o-draw:nth-child(2),
.o-scene-geo2.is-active .o-draw:nth-child(2),
.o-scene-geo3.is-active .o-draw:nth-child(2) { animation-delay: .5s; }
.o-scene-geo.is-active .o-draw:nth-child(3),
.o-scene-geo2.is-active .o-draw:nth-child(3),
.o-scene-geo3.is-active .o-draw:nth-child(3) { animation-delay: .85s; }

/* Sketch scene — one marker squiggle climbing the whiteboard */
.o-scene-sketch { background: #E9EEF6; }
.o-scene-sketch .o-draw {
  fill: none;
  stroke: #157A65;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.o-scene-sketch.is-active .o-draw {
  animation: o-draw 1.9s var(--ease-out, ease-out) .15s forwards;
}

/* Scene 4 — wireframe blocks snapping into place */
.o-scene-wire {
  background:
    linear-gradient(rgba(200,208,226,.07) 1px, transparent 1px) 0 0 / 100% 16.6%,
    linear-gradient(90deg, rgba(200,208,226,.07) 1px, transparent 1px) 0 0 / 16.6% 100%,
    var(--bg-2);
}
.o-scene-wire .o-wire {
  fill: rgba(32,200,162,.16);
  stroke: var(--pda-teal);
  stroke-width: 2.5;
  opacity: 0;
}
.o-scene-wire.is-active .o-wire { animation: o-pop .45s var(--ease-out, ease-out) forwards; }
.o-scene-wire.is-active .o-wire:nth-child(2) { animation-delay: .35s; }
.o-scene-wire.is-active .o-wire:nth-child(3) { animation-delay: .7s; }
.o-scene-wire.is-active .o-wire:nth-child(4) { animation-delay: .9s; }

@keyframes o-draw { to { stroke-dashoffset: 0; } }
@keyframes o-pop {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: none; }
}

/* ── Service scene: Brand Design ──────────────────────────────────────────*/
.o-scene-brand { background: var(--bg-2); }
.o-scene-brand .o-draw {
  fill: none; stroke: var(--pda-teal); stroke-width: 5;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.o-scene-brand .o-draw:nth-child(3) { stroke: var(--pda-teal); }
.o-scene-brand .o-draw:nth-child(4) { stroke: var(--pda-blue); animation-duration: 1.8s !important; }
.o-scene-brand.is-active .o-draw { animation: o-draw 1.4s ease-out forwards; }
.o-scene-brand.is-active .o-draw:nth-child(1) { animation-delay: .05s; }
.o-scene-brand.is-active .o-draw:nth-child(2) { animation-delay: .18s; }
.o-scene-brand.is-active .o-draw:nth-child(3) { animation-delay: .35s; }
.o-scene-brand.is-active .o-draw:nth-child(4) { animation-delay: .7s; }

/* ── Service scene: Web Design & Dev ─────────────────────────────────────*/
.o-scene-web {
  background:
    linear-gradient(rgba(200,208,226,.07) 1px, transparent 1px) 0 0 / 100% 16.6%,
    linear-gradient(90deg, rgba(200,208,226,.07) 1px, transparent 1px) 0 0 / 16.6% 100%,
    var(--bg-2);
}
.o-scene-web .o-wire {
  fill: rgba(30,130,210,.12); stroke: var(--pda-blue); stroke-width: 2; opacity: 0;
}
.o-scene-web .o-wire-dot { fill: rgba(30,130,210,.5); stroke: none; }
.o-scene-web.is-active .o-wire { animation: o-pop .4s ease-out forwards; }
.o-scene-web.is-active .o-wire:nth-child(1) { animation-delay: .05s; }
.o-scene-web.is-active .o-wire:nth-child(2) { animation-delay: .22s; }
.o-scene-web.is-active .o-wire:nth-child(3) { animation-delay: .3s; }
.o-scene-web.is-active .o-wire:nth-child(4) { animation-delay: .38s; }
.o-scene-web.is-active .o-wire:nth-child(5) { animation-delay: .55s; }
.o-scene-web.is-active .o-wire:nth-child(6) { animation-delay: .8s; }
.o-scene-web.is-active .o-wire:nth-child(7) { animation-delay: .95s; }

/* ── Service scene: SEO / AEO ────────────────────────────────────────────*/
.o-scene-seo { background: var(--bg-2); }
.o-scene-seo .o-draw {
  fill: none; stroke: var(--pda-teal); stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.o-scene-seo .o-draw:nth-child(1) { stroke-width: 7; }
.o-scene-seo .o-draw:nth-child(3) { stroke: var(--pda-blue); }
.o-scene-seo .o-draw:nth-child(4) { stroke: var(--pda-violet, #6E50C8); opacity: .65; }
.o-scene-seo.is-active .o-draw:nth-child(1) { animation: o-draw .6s ease-out .05s forwards; }
.o-scene-seo.is-active .o-draw:nth-child(2) { animation: o-draw 1s ease-out .35s forwards; }
.o-scene-seo.is-active .o-draw:nth-child(3) { animation: o-draw 1.2s ease-out .65s forwards; }
.o-scene-seo.is-active .o-draw:nth-child(4) { animation: o-draw 1.4s ease-out .95s forwards; }

/* ── Service scene: Systems ──────────────────────────────────────────────*/
.o-scene-systems { background: var(--bg-2); }
.o-scene-systems .o-hub {
  fill: none; stroke: var(--pda-teal); stroke-width: 4;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.o-scene-systems .o-spoke {
  stroke: var(--pda-violet, #6E50C8); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.o-scene-systems .o-node {
  fill: none; stroke: var(--pda-blue); stroke-width: 2.5;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.o-scene-systems.is-active .o-hub  { animation: o-draw .5s ease-out .05s forwards; }
.o-scene-systems.is-active .o-spoke { animation: o-draw .5s ease-out forwards; }
.o-scene-systems.is-active .o-spoke:nth-child(2) { animation-delay: .22s; }
.o-scene-systems.is-active .o-spoke:nth-child(3) { animation-delay: .36s; }
.o-scene-systems.is-active .o-spoke:nth-child(4) { animation-delay: .50s; }
.o-scene-systems.is-active .o-spoke:nth-child(5) { animation-delay: .64s; }
.o-scene-systems.is-active .o-spoke:nth-child(6) { animation-delay: .78s; }
.o-scene-systems.is-active .o-spoke:nth-child(7) { animation-delay: .92s; }
.o-scene-systems.is-active .o-node  { animation: o-draw .4s ease-out forwards; }
.o-scene-systems.is-active .o-node:nth-child(8)  { animation-delay: .30s; }
.o-scene-systems.is-active .o-node:nth-child(9)  { animation-delay: .44s; }
.o-scene-systems.is-active .o-node:nth-child(10) { animation-delay: .58s; }
.o-scene-systems.is-active .o-node:nth-child(11) { animation-delay: .72s; }
.o-scene-systems.is-active .o-node:nth-child(12) { animation-delay: .86s; }
.o-scene-systems.is-active .o-node:nth-child(13) { animation-delay: 1s; }

/* ── Service scene: AI Automation ────────────────────────────────────────*/
.o-scene-ai { background: var(--bg-2); }
.o-scene-ai .o-draw {
  fill: none; stroke: rgba(110,80,200,.55); stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.o-scene-ai .o-node {
  fill: none; stroke-width: 2.5;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.o-scene-ai .o-node:nth-child(9)  { stroke: var(--pda-teal); }
.o-scene-ai .o-node:nth-child(10) { stroke: var(--pda-blue); }
.o-scene-ai .o-node:nth-child(11) { stroke: var(--pda-violet, #6E50C8); }
.o-scene-ai .o-node:nth-child(12) { stroke: var(--pda-teal); stroke-width: 3.5; }
.o-scene-ai .o-node:nth-child(13) { stroke: var(--pda-blue); }
.o-scene-ai .o-node:nth-child(14) { stroke: var(--pda-violet, #6E50C8); }
.o-scene-ai.is-active .o-node { animation: o-draw .5s ease-out forwards; }
.o-scene-ai.is-active .o-node:nth-child(9)  { animation-delay: .05s; }
.o-scene-ai.is-active .o-node:nth-child(10) { animation-delay: .12s; }
.o-scene-ai.is-active .o-node:nth-child(11) { animation-delay: .19s; }
.o-scene-ai.is-active .o-node:nth-child(12) { animation-delay: .26s; }
.o-scene-ai.is-active .o-node:nth-child(13) { animation-delay: .33s; }
.o-scene-ai.is-active .o-node:nth-child(14) { animation-delay: .40s; }
.o-scene-ai.is-active .o-draw { animation: o-draw .8s ease-out forwards; }
.o-scene-ai.is-active .o-draw:nth-child(1) { animation-delay: .20s; }
.o-scene-ai.is-active .o-draw:nth-child(2) { animation-delay: .28s; }
.o-scene-ai.is-active .o-draw:nth-child(3) { animation-delay: .36s; }
.o-scene-ai.is-active .o-draw:nth-child(4) { animation-delay: .44s; }
.o-scene-ai.is-active .o-draw:nth-child(5) { animation-delay: .50s; }
.o-scene-ai.is-active .o-draw:nth-child(6) { animation-delay: .56s; }
.o-scene-ai.is-active .o-draw:nth-child(7) { animation-delay: .62s; }
.o-scene-ai.is-active .o-draw:nth-child(8) { animation-delay: .68s; }

/* ── Hero scene backdrop ─────────────────────────────────────────────────*/
/* Atmospheric blurred panel on the right side of the hero.
   Sits behind the blobs (z-index 0). The GSAP transition effect pulses the
   blur to ~48px then resolves to 28px after each scene change. */
.hero-scene-backdrop {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 56%;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 38%);
  mask-image: linear-gradient(to right, transparent 0%, black 38%);
  z-index: 0;
  filter: blur(28px);
  opacity: .38;
}
.hero-bd-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  animation: hero-bd-fadein .5s ease forwards;
}
.hero-bd-inner svg {
  width: 62%; height: 62%;
  max-width: 280px; max-height: 280px;
}
/* All elements fully drawn in the backdrop (no animated draw-in) */
.hero-scene-backdrop .o-draw {
  fill: none; stroke-linecap: round; stroke-width: 5;
  stroke-dashoffset: 0; animation: none !important;
}
.hero-scene-backdrop .o-wire  { opacity: 1; animation: none !important; }
.hero-scene-backdrop .o-spoke { stroke-dashoffset: 0; animation: none !important; stroke-linecap: round; }
.hero-scene-backdrop .o-hub   { stroke-dashoffset: 0; animation: none !important; stroke-width: 4; }
.hero-scene-backdrop .o-node  { stroke-dashoffset: 0; animation: none !important; }
.hero-scene-backdrop .o-wire-dot { opacity: 1; }
/* Per-scene backdrop colors */
.hero-bd-brand .o-draw                     { stroke: var(--pda-teal); }
.hero-bd-brand .o-draw:nth-child(4)        { stroke: var(--pda-blue); }
.hero-bd-web .o-wire                        { fill: rgba(30,130,210,.15); stroke: var(--pda-blue); stroke-width: 2; }
.hero-bd-web .o-wire-dot                    { fill: rgba(30,130,210,.6); stroke: none; }
.hero-bd-seo .o-draw                        { stroke: var(--pda-teal); stroke-width: 4; }
.hero-bd-seo .o-draw:nth-child(3)          { stroke: var(--pda-blue); }
.hero-bd-seo .o-draw:nth-child(4)          { stroke: var(--pda-violet, #6E50C8); opacity: .65; }
.hero-bd-systems .o-hub                    { fill: none; stroke: var(--pda-teal); }
.hero-bd-systems .o-spoke                  { stroke: var(--pda-violet, #6E50C8); stroke-width: 2; }
.hero-bd-systems .o-node                   { fill: none; stroke: var(--pda-blue); stroke-width: 2.5; }
.hero-bd-ai .o-draw                        { stroke: rgba(110,80,200,.55); stroke-width: 1.5; }
.hero-bd-ai .o-node:nth-child(9)           { stroke: var(--pda-teal); }
.hero-bd-ai .o-node:nth-child(10)          { stroke: var(--pda-blue); }
.hero-bd-ai .o-node:nth-child(11)          { stroke: var(--pda-violet, #6E50C8); }
.hero-bd-ai .o-node:nth-child(12)          { stroke: var(--pda-teal); stroke-width: 3.5; }
.hero-bd-ai .o-node:nth-child(13)          { stroke: var(--pda-blue); }
.hero-bd-ai .o-node:nth-child(14)          { stroke: var(--pda-violet, #6E50C8); }
@keyframes hero-bd-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Service pills ────────────────────────────────────────────────────────*/
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
  opacity: 0; /* entrance animation sets to 1 */
}
.hero-pill {
  font-size: clamp(10px, 1.1vw, 12px);
  font-family: inherit;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: color .25s, background .25s, border-color .25s;
  white-space: nowrap;
}
.hero-pill:hover {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.09);
}
.hero-pill.is-active {
  color: #fff;
  border-color: var(--pda-teal);
  background: rgba(32,200,162,.14);
}

/* Reduced-motion: suppress backdrop animation, show all scene elements */
@media (prefers-reduced-motion: reduce) {
  .hero-scene-backdrop { display: none; }
  .o-scene-brand .o-draw,
  .o-scene-seo .o-draw,
  .o-scene-systems .o-hub,
  .o-scene-systems .o-spoke,
  .o-scene-systems .o-node,
  .o-scene-ai .o-draw,
  .o-scene-ai .o-node { animation: none; stroke-dashoffset: 0; }
  .o-scene-web .o-wire { animation: none; opacity: 1; }
  .hero-bd-inner { animation: none; }
}

/* Butler robot — floats right-of-center above the blobs, below the copy.
   Gate 3 re-targets this same element for the scroll-driven build narrative. */
.home-robot {
  position: absolute;
  right: 9%;
  top: 19%;
  width: clamp(130px, 14vw, 195px);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.45));
}
.home-robot svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Cirrus's intro bubble: dark glass, typed text, tail pointing at him */
.robot-bubble {
  position: absolute;
  right: calc(100% + 18px);
  top: 10%;
  width: 230px;
  padding: 14px 16px;
  background: rgba(26, 32, 52, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 208, 226, 0.18);
  border-radius: 14px;
  border-bottom-right-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-1);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
}
.robot-bubble::after {
  content: '';
  position: absolute;
  right: -5px;
  bottom: 14px;
  width: 10px;
  height: 10px;
  background: inherit;
  border-right: 1px solid rgba(200, 208, 226, 0.18);
  border-top: 1px solid rgba(200, 208, 226, 0.18);
  transform: rotate(45deg);
}
/* Variant: speaks from above (used at the resting perch, where the default
   left placement would cover the tagline/CTA block) */
.robot-bubble.bubble-above {
  right: -8px;
  top: auto;
  bottom: calc(100% + 14px);
  border-radius: 14px;
  border-bottom-right-radius: 4px;
}
.robot-bubble.bubble-above::after {
  right: 20px;
  bottom: -5px;
  transform: rotate(135deg);
}
.robot-bubble-text { display: block; min-height: 3em; }

/* Dissipating cloud-trail puffs Cirrus leaves while flying */
.cirrus-puff {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(214, 245, 240, 0.55) 0%,
    rgba(42, 216, 200, 0.28) 40%,
    rgba(30, 130, 210, 0.1) 60%,
    transparent 72%
  );
  filter: blur(4px);
  pointer-events: none;
  z-index: 49;
}
/* Gate 3: the scroll controller promotes the robot to a fixed viewport actor
   and owns its transforms; left/top zero out so GSAP x/y are absolute. */
.home-robot.is-travelling {
  position: fixed;
  left: 0;
  top: 0;
  right: auto;
  z-index: 50;
  will-change: transform, opacity;
}
@media (max-width: 980px) {
  .home-robot { right: 4%; top: 14%; width: clamp(96px, 13vw, 130px); }
}
@media (max-width: 767px) {
  .home-robot { display: none; }
}

.hero-new-lead {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.hero-new-ctas {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none; }
  .o-scene { transition: none; }
  /* No cycling and no draw animation: show the first scene fully drawn */
  .o-scene .o-draw { animation: none; stroke-dashoffset: 0; }
  .o-scene .o-wire { animation: none; opacity: 1; }
  .video-o { animation: none; }
  .hero-strip-arrow { animation: none; }
}

@media (max-width: 767px) {
  .home-new-hero { padding: 130px 0 80px; min-height: auto; }
  .hero-headline { max-width: 100%; }
  .hl-2 { margin-left: 7vw; }
  .hl-3 { margin-left: 3vw; }
  .hero-new-sub { position: static; max-width: 100%; margin-top: 36px; }
  .hero-strip { display: none; }
  .hero-eyebrow-line { margin-bottom: 20px; }
}

/* === Shared big section header (KOTA-style display type) === */
.section-display {
  font-size: clamp(52px, 11vw, 150px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  margin: 0;
  text-transform: none;
}
/* In pinned overlays the header shares the viewport with large content/numbers,
   so it sits in a contained top band (smaller than the full-bleed display size)
   to leave clear separation above the content. */
.svc-section.is-horizontal .section-display,
.schem-section.is-pinned .section-display,
.hww-section.is-horizontal .section-display {
  font-size: clamp(38px, 6vw, 84px);
}

/* === SERVICE PANELS === */
/* Default (fallback) layout: panels stacked vertically. */
.svc-section { position: relative; }
.svc-wrap { position: relative; }
.svc-header { padding: 96px 32px 32px; max-width: 1440px; margin: 0 auto; }
.svc-track { display: flex; flex-direction: column; }
.svc-panel {
  position: relative;
  width: 100%;
  padding: 64px 0;
  border-top: 1px solid var(--border-1);
}
.svc-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.svc-panel-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg-1);
  margin: 14px 0 0;
}
.svc-panel-blurb {
  font-size: 17px; line-height: 1.65; color: var(--fg-2);
  margin: 16px 0 0; max-width: 52ch;
}
.svc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; }
.svc-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 9999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-2);
  font-size: 13px; color: var(--fg-2);
}
.svc-chip svg { color: var(--pda-teal); }
.svc-result { margin: 24px 0 0; display: flex; flex-direction: column; gap: 4px; }
.svc-result-label {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-3);
}
.svc-result-value { font-size: 22px; font-weight: 600; }
.svc-panel-service { font-size: 13px; color: var(--pda-teal); }
.svc-panel-foot {
  margin: 28px 0 0; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 20px;
}
.svc-panel-foot .svc-result { margin: 0; }
.svc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 9999px;
  border: 1px solid rgba(32,200,162,.4); background: rgba(32,200,162,.06);
  color: var(--pda-teal); font-size: 14px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: border-color .25s var(--ease-out), background-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.svc-cta:hover { border-color: var(--pda-teal); background: rgba(32,200,162,.14); transform: translateY(-1px); }
.svc-cta-arrow { display: inline-block; transition: transform .25s var(--ease-out); }
.svc-cta:hover .svc-cta-arrow { transform: translateX(4px); }
.svc-panel-visual { display: flex; align-items: center; justify-content: center; }
.svc-graph, .svc-letterform { width: 100%; max-width: 460px; height: auto; }
.svc-graph-link { stroke-dasharray: 4 6; }
.svc-letter-path {
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  animation: svc-letter-draw 3.4s var(--ease-out) forwards;
}
@keyframes svc-letter-draw { to { stroke-dashoffset: 0; } }
.svc-counter {
  position: absolute; right: 32px; bottom: 28px;
  font-size: 13px; letter-spacing: .16em; color: var(--fg-3);
}

/* Horizontal (enhanced) layout — toggled by JS when pinning. */
.svc-section.is-horizontal .svc-wrap {
  height: 100vh; overflow: hidden;
}
.svc-section.is-horizontal .svc-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  padding: 5vh 48px 0; pointer-events: none;
}
.svc-section.is-horizontal .svc-track {
  flex-direction: row; height: 100vh; will-change: transform;
}
.svc-section.is-horizontal .svc-panel {
  width: 100vw; height: 100vh; flex: 0 0 100vw;
  /* content pushed below the header band */
  padding: 16vh 0 6vh; box-sizing: border-box; border-top: none;
  display: flex; align-items: center;
}
.svc-section.is-horizontal .svc-panel-inner {
  grid-template-columns: 1.05fr 0.95fr; gap: 56px; width: 100%;
}
/* Panel glows must fully fade BEFORE their panel's edges — a glow centered
   near an edge gets hard-clipped at the panel boundary, painting a vertical
   seam that sweeps past during the horizontal scroll. Centers stay >= 32%
   from the sides; the fade completes at 70% of the ellipse. */
.svc-panel-01 {
  background:
    /* whisper of the hero's teal field at the top: the exit exhales into 01 */
    radial-gradient(ellipse 52% 26% at 50% 0%, rgba(32,200,162,.1), transparent 72%),
    radial-gradient(ellipse 32% 34% at 32% 72%, rgba(32,200,162,.17), transparent 70%);
}
.svc-panel-02 { background: radial-gradient(ellipse 32% 34% at 64% 30%, rgba(30,130,210,.18), transparent 70%); }
.svc-panel-03 { background: radial-gradient(ellipse 34% 36% at 50% 52%, rgba(110,80,200,.16), transparent 70%); }
.svc-panel-04 { background: radial-gradient(ellipse 32% 34% at 62% 68%, rgba(110,80,200,.18), transparent 70%); }
.svc-panel-05 { background: radial-gradient(ellipse 32% 34% at 36% 34%, rgba(32,200,162,.16), transparent 70%); }

@media (max-width: 767px) {
  .svc-header { padding: 56px 24px 16px; }
}

/* === THE ROADMAP === */
/* Default (fallback): building shown fully, stages stacked below it. */
.schem-section { position: relative; }
/* Handoff: blueprint grid paper fades up over the Roadmap's lower half as
   the Blueprint section approaches — construction becomes drafting.
   Driven by --bp-handoff (GSAP-scrubbed in home-reveals.jsx). */
.schem-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 45%; bottom: -120px;
  pointer-events: none;
  z-index: 0;
  opacity: var(--bp-handoff, 0);
  background:
    repeating-linear-gradient(0deg, rgba(80,140,200,.08) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(80,140,200,.08) 0 1px, transparent 1px 40px);
  mask-image: linear-gradient(180deg, transparent, #000 45%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%);
}
.schem-wrap { position: relative; }
.schem-header { padding: 96px 32px 0; max-width: 1440px; margin: 0 auto; }
.schem-body { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.schem-building { display: flex; align-items: center; justify-content: center; margin: 24px auto 8px; }
.roadmap-building-svg { width: 100%; max-width: 380px; height: auto; }
.schem-stages { position: relative; }
.schem-stage { padding: 44px 0; border-top: 1px solid var(--border-1); }
.schem-stage-content { max-width: 640px; }
.schem-stage-eyebrow {
  display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fg-3); margin-bottom: 10px;
}
.schem-stage-head { display: flex; flex-direction: column; gap: 2px; }
.schem-stage-num {
  font-size: clamp(40px, 6vw, 80px); font-weight: 700; line-height: 1; display: block;
}
.schem-stage-name {
  font-size: clamp(24px, 2.8vw, 38px); font-weight: 600; line-height: 1.12; margin: 2px 0 0;
}
.schem-stage-desc {
  font-size: 17px; line-height: 1.65; color: var(--fg-2); max-width: 52ch; margin: 16px 0 0;
}

/* Testimonial + mantra blocks */
.schem-testimonial {
  position: relative; margin: 24px 0 0; padding: 18px 20px;
  border-left: 2px solid var(--pda-teal);
  background: rgba(32,200,162,.05); border-radius: 0 12px 12px 0;
}
.schem-testimonial p { font-size: 15px; line-height: 1.6; color: var(--fg-1); margin: 0; font-style: italic; }
.schem-testimonial cite { display: block; margin-top: 9px; font-size: 13px; color: var(--fg-3); font-style: normal; }
.schem-quote-mark { color: var(--pda-teal); opacity: .6; }
.schem-mantra {
  margin: 24px 0 0; padding: 18px 20px; border-radius: 12px;
  background: radial-gradient(ellipse 120% 100% at 0% 0%, rgba(110,80,200,.16), rgba(30,130,210,.06));
  border: 1px solid var(--border-2);
}
.schem-mantra-label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-3); }
.schem-mantra h4 { font-size: 20px; font-weight: 600; color: var(--fg-1); margin: 8px 0 0; }
.schem-mantra p { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 8px 0 0; }

.schem-sk-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px; font-size: 13px; font-weight: 600;
  color: var(--pda-teal); text-decoration: none;
  transition: gap .18s ease;
}
.schem-sk-link:hover { gap: 10px; }
.schem-sk-link svg { flex-shrink: 0; }

/* Progress dots (only meaningful in pinned mode) */
.schem-progress { display: none; }

/* Building: layers fade + draw in as the stage advances (construction story) */
.rb-layer { opacity: 0; transition: opacity .7s var(--ease-out); }
.rb-layer.shown { opacity: 1; }
.rb-draw { stroke-dasharray: 1; stroke-dashoffset: 1; }
.rb-layer.shown .rb-draw { animation: rb-draw-in 1.1s var(--ease-out) forwards; }
@keyframes rb-draw-in { to { stroke-dashoffset: 0; } }

/* Foundation: pulsing survey grid + corner markers */
.rb-found-ring { stroke: url(#rbStroke); fill: none; opacity: 0; animation: rb-ring-pulse 3s ease-out infinite; }
@keyframes rb-ring-pulse { 0% { opacity: 0; } 45% { opacity: .5; } 100% { opacity: 0; } }
.rb-survey { transform-box: fill-box; transform-origin: center; animation: rb-survey-pulse 2.2s ease-in-out infinite; }
@keyframes rb-survey-pulse { 0%, 100% { opacity: .35; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.3); } }

/* Operation: window glows */
.rb-window { stroke: url(#rbStroke); animation: rb-window-glow 2.4s ease-in-out infinite; }
@keyframes rb-window-glow { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }

/* Automation: main building shrinks; satellite network fades + draws in */
.rb-main { transform-box: view-box; transform-origin: 250px 300px; transition: transform .8s var(--ease-out); }
.rb-main-shrunk { transform: scale(.5); }
.rb-network { opacity: 0; transition: opacity .7s var(--ease-out); }
.rb-network.shown { opacity: 1; }
.rb-sat { stroke: url(#rbStroke); fill: none; opacity: 0; }
.rb-network.shown .rb-sat { animation: rb-sat-in .8s var(--ease-out) forwards; }
@keyframes rb-sat-in { to { opacity: .9; } }

/* Pinned (enhanced) layout: header band, 2-col body, dots */
.schem-section.is-pinned .schem-wrap { height: 100vh; overflow: hidden; }
.schem-section.is-pinned .schem-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  padding: 5vh 48px 0; pointer-events: none;
}
.schem-section.is-pinned .schem-body {
  position: absolute; inset: 0; max-width: none; margin: 0;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  align-items: center; padding: 19vh 7vw 11vh; box-sizing: border-box;
}
.schem-section.is-pinned .schem-stages { position: relative; height: 100%; }
.schem-section.is-pinned .schem-stage {
  position: absolute; inset: 0; padding: 0; border-top: none;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.schem-section.is-pinned .schem-stage.is-active { opacity: 1; visibility: visible; }
.schem-section.is-pinned .schem-building { margin: 0; }
.schem-section.is-pinned .roadmap-building-svg { max-width: 440px; }
.schem-section.is-pinned .schem-progress {
  display: flex; gap: 12px; position: absolute; left: 50%; bottom: 40px;
  transform: translateX(-50%); z-index: 4;
}
.schem-dot {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--border-2); transition: background .4s var(--ease-out);
}
.schem-dot.is-on { background-image: var(--pda-gradient); }

@media (prefers-reduced-motion: reduce) {
  .rb-layer { transition: none; }
  .rb-draw { stroke-dashoffset: 0; animation: none; }
  .rb-found-ring { animation: none; opacity: .4; }
  .rb-survey { animation: none; opacity: .7; }
  .rb-window { animation: none; opacity: .8; }
  .rb-main { transition: none; }
  .rb-network { transition: none; }
  .rb-sat { animation: none; opacity: .9; }
}

/* === BLUEPRINT CTA === */
.bp-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0;
  /* no overflow clip: the blueprint bleeds into the next section so the
     boundary dissolves instead of cutting the drawing off */
}
/* Full-bleed self-drawing blueprint (v2 — replaced the building crossfade).
   Extends 180px below the section so the drawing continues behind the next
   section's content instead of being clipped at the boundary. */
.bp-plan {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: -180px;
  z-index: 0;
  pointer-events: none;
}
.bp-plan svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.8;
}
/* Sheets stack on one drafting table; GSAP cycles them. Without GSAP (or
   with reduced motion) only the first sheet shows, fully drawn. */
.bp-sheet { opacity: 0; }
.bp-sheet[data-first] { opacity: 1; }

/* Radial scrim keeps the copy crisp over the plan's center */
.bp-scrim {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 46% 42% at 50% 48%,
    rgba(14, 18, 30, 0.82) 0%,
    rgba(14, 18, 30, 0.4) 55%,
    transparent 78%
  );
}
.bp-inner { position: relative; z-index: 2; }
.bp-heading {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600; color: var(--fg-1); margin: 0; letter-spacing: -0.02em;
}
.bp-subheading {
  font-size: 20px; color: var(--fg-2); margin: 14px 0 0;
}
.bp-cta { margin-top: 32px; display: flex; justify-content: center; }

@media (max-width: 767px) {
  /* The plan's fine detail turns to noise at phone width; let the major
     shapes carry it */
  .bp-plan svg { opacity: 0.5; }
}

/* === HOW WE WORK === */
/* Default (fallback): cards stacked vertically. */
.hww-section { position: relative; }
.hww-wrap { position: relative; }
.hww-header { padding: 96px 32px 24px; max-width: 1440px; margin: 0 auto; }
.hww-track { display: flex; flex-direction: column; gap: 24px; padding: 0 32px 64px; }
.hww-card {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-left: 3px solid var(--pda-teal);
  border-radius: 16px;
  padding: 36px;
  display: flex; flex-direction: column;
}
.hww-card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.hww-card-num { font-size: clamp(40px, 5vw, 72px); font-weight: 700; line-height: 1; }
.hww-card-time {
  font-size: 13px; letter-spacing: .04em; color: var(--fg-2);
  padding: 6px 14px; border: 1px solid var(--border-2); border-radius: 9999px;
  white-space: nowrap;
}
.hww-card-title {
  font-size: clamp(24px, 2.6vw, 36px); font-weight: 600; color: var(--fg-1);
  margin: 18px 0 0;
}
.hww-card-body {
  font-size: 16px; line-height: 1.65; color: var(--fg-2); margin: 14px 0 0; max-width: 54ch;
}
.hww-card-work { margin-top: auto; padding-top: 24px; }
.hww-card-work-label {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-3);
}
.hww-card-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.hww-chip {
  font-size: 12px; color: var(--fg-2);
  padding: 6px 12px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-2);
}

/* Horizontal (enhanced) layout — toggled by JS when pinning. */
.hww-section.is-horizontal .hww-wrap { height: 100vh; overflow: hidden; }
.hww-section.is-horizontal .hww-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  padding: 4vh 48px 0; pointer-events: none;
}
.hww-section.is-horizontal .hww-track {
  flex-direction: row; gap: 4vw; height: 100vh; align-items: center;
  padding: 14vh 7.5vw 6vh; will-change: transform; flex-wrap: nowrap;
}
.hww-section.is-horizontal .hww-card {
  flex: 0 0 70vw; max-width: 760px; height: 62vh;
}

/* --- Editorial elevation (Gate 4) --- */
/* Ghosted display heading: a giant background texture behind the sweeping
   cards, drifting slowly via GSAP instead of fading away. */
.hww-eyebrow { display: block; padding: 48px 32px 0; }
.hww-section.is-horizontal .hww-eyebrow {
  position: absolute; top: 5vh; left: 48px; z-index: 3; padding: 0;
  pointer-events: none;
}
.hww-section.is-horizontal .hww-header {
  top: 50%; transform: translateY(-50%); z-index: 0; padding: 0 0 0 4vw;
}
.hww-section.is-horizontal .section-display {
  font-size: clamp(120px, 16vw, 240px);
  opacity: 0.06;
  white-space: nowrap;
  letter-spacing: -0.05em;
}
.hww-section.is-horizontal .hww-track { position: relative; z-index: 2; }

/* Giant editorial card number: faint, behind the content (horizontal only) */
.hww-card { position: relative; }
.hww-section.is-horizontal .hww-card-num {
  position: absolute; top: 6px; right: 22px; z-index: 0;
  font-size: clamp(96px, 11vw, 170px);
  line-height: 0.9;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: rgba(200, 208, 226, 0.07);
  -webkit-text-fill-color: rgba(200, 208, 226, 0.07);
  pointer-events: none;
}
.hww-card > * { position: relative; z-index: 1; }
.hww-section.is-horizontal .hww-card-num { z-index: 0; }

/* Active card: gradient title + breathing teal edge glow; neighbors recede */
.hww-section.is-horizontal .hww-card { transition: opacity .4s var(--ease-out, ease-out); }
.hww-section.is-horizontal .hww-card:not(.is-active) { opacity: 0.72; }
.hww-card.is-active { border-left-color: var(--pda-teal); }
.hww-section.is-horizontal .hww-card.is-active {
  animation: hww-active-glow 2.6s ease-in-out infinite;
}
.hww-card.is-active .hww-card-title {
  background: linear-gradient(90deg, #20C8A2 0%, #4FA0DA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes hww-active-glow {
  0%, 100% { box-shadow: -4px 0 24px -6px rgba(32, 200, 162, 0.35); }
  50%      { box-shadow: -4px 0 34px -4px rgba(32, 200, 162, 0.6); }
}

/* Week timeline (pinned mode only): track + sliding gradient fill + ticks */
.hww-timeline { display: none; }
.hww-section.is-horizontal .hww-timeline {
  display: block;
  position: absolute;
  bottom: 5.5vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 64vw);
  height: 4px;
  z-index: 3;
}
.hww-tl-track {
  position: absolute; inset: 0;
  border-radius: 2px;
  background: rgba(200, 208, 226, 0.15);
}
.hww-tl-fill {
  position: absolute; top: 0; bottom: 0;
  left: 0; width: 10%;
  border-radius: 2px;
  background: linear-gradient(90deg, #20C8A2, #4FA0DA);
  box-shadow: 0 0 14px rgba(32, 200, 162, 0.45);
  transition: left .55s var(--ease-out, ease-out), width .55s var(--ease-out, ease-out);
}
.hww-tl-tick {
  position: absolute; top: 50%;
}
.hww-tl-tick i {
  position: absolute;
  left: -1px; top: -4px;
  display: block;
  width: 2px; height: 8px;
  background: rgba(200, 208, 226, 0.25);
  transition: background .4s ease;
}
.hww-tl-tick.is-on i { background: rgba(191, 255, 242, 0.8); }
.hww-tl-tick em {
  position: absolute;
  top: 10px; left: 0;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
  transition: color .4s ease;
}
.hww-tl-tick.is-on em { color: var(--fg-2); }

@media (max-width: 767px) {
  .hww-header { padding: 56px 24px 16px; }
  .hww-eyebrow { padding: 40px 24px 0; }
  .hww-track { padding: 0 20px 48px; }
  .hww-card { padding: 28px; }
}

/* === Polish layer (Gate 5) === */
/* Reviews marquee: pause the whole band on hover so cards are readable;
   individual cards lift under the cursor. */
.reviews-marquee:hover .reviews-row { animation-play-state: paused; }
.review-card {
  position: relative;
  transition: transform .3s var(--ease-out, ease-out),
              border-color .3s ease, box-shadow .3s ease;
}
.review-card:hover {
  transform: scale(1.02) translateY(-3px);
  border-color: rgba(32, 200, 162, 0.28);
  box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.5);
}

/* Pointer spotlight: a radial wash that tracks --mx/--my (set by
   home-reveals.jsx). Hover-capable pointers only by nature. */
.hww-card::after,
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    rgba(32, 200, 162, 0.08),
    transparent 70%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.hww-card:hover::after,
.review-card:hover::after { opacity: 1; }

/* Separator threads removed: sections blend into one another — the
   blueprint bleed and shared dark field carry the transitions instead. */
.reviews-section { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .review-card, .review-card:hover { transform: none; }
}

/* === Service-panel + schematics graphics (revised) === */
.svc-foundation, .svc-logogrid, .svc-unbundle, .svc-seo { width: 100%; max-width: 460px; height: auto; }

/* Software Unbundling: subscription tiles fade while the owned module holds */
.svc-unb-sub { animation: svc-unb-fade 4s ease-in-out infinite; }
@keyframes svc-unb-fade { 0%, 100% { opacity: 1; } 55% { opacity: .35; } }
.svc-unb-core { transform-box: fill-box; transform-origin: center; animation: svc-unb-glow 3.6s ease-in-out infinite; }
@keyframes svc-unb-glow { 0%, 100% { opacity: .85; } 50% { opacity: 1; } }

/* SEO/AEO: visibility rings expand from #1, magnifier seeks */
.svc-seo-pulse { transform-box: fill-box; transform-origin: center; animation: svc-seo-ring 2.2s ease-out infinite; }
@keyframes svc-seo-ring { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(2.4); opacity: 0; } }
.svc-seo-glass { transform-box: fill-box; transform-origin: center; animation: svc-seo-bob 5s ease-in-out infinite; }
@keyframes svc-seo-bob { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-14px, -10px); } }

/* Foundation: rebar/slab lines draw in (pathLength-normalized so any path
   length fully renders), survey markers pulse, perimeter dot keeps it alive */
.svc-found-draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: svc-found-draw 1.4s var(--ease-out) forwards; }
@keyframes svc-found-draw { to { stroke-dashoffset: 0; } }
.svc-found-survey { transform-box: fill-box; transform-origin: center; animation: svc-found-survey 2.6s ease-in-out infinite; }
@keyframes svc-found-survey { 0%, 100% { opacity: .35; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.25); } }

/* AI graph: nodes breathe */
.svc-graph-node { transform-box: fill-box; transform-origin: center; animation: svc-graph-node 3s ease-in-out infinite; }
@keyframes svc-graph-node { 0%, 100% { opacity: .8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }

/* Brand: 3x3 logo-mark grid cycles a highlight wave */
.svc-logogrid-cell { opacity: .32; transform-box: fill-box; animation: svc-logogrid-pulse 3.6s ease-in-out infinite; }
@keyframes svc-logogrid-pulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.1); }
}

/* Growth: orbital ecosystem — rings + node groups rotate around the hub */
.schem-orbit-ring, .schem-orbit-ring-inner,
.schem-orbit-spin, .schem-orbit-spin-rev {
  transform-box: view-box; transform-origin: 200px 160px;
}
.schem-orbit-ring     { animation: schem-orbit-rot 60s linear infinite; }
.schem-orbit-ring-inner { animation: schem-orbit-rot 40s linear infinite reverse; }
.schem-orbit-spin     { animation: schem-orbit-rot 48s linear infinite; }
.schem-orbit-spin-rev { animation: schem-orbit-rot 36s linear infinite reverse; }
@keyframes schem-orbit-rot { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .svc-found-draw { animation: none; stroke-dashoffset: 0; }
  .svc-logogrid-cell { animation: none; opacity: .6; }
  .svc-unb-sub, .svc-unb-core, .svc-seo-pulse, .svc-seo-glass { animation: none; }
  .svc-found-survey, .svc-graph-node { animation: none; opacity: .8; }
  .schem-orbit-ring, .schem-orbit-ring-inner,
  .schem-orbit-spin, .schem-orbit-spin-rev { animation: none; }
}
