@import url("tokens.css");

/* Design QA (anti-irritation): one trust signal max; no stacked duplicate widgets;
   scale for scanability — business owners bounce on giant/repetitive chrome. */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: #e8ecf1;
  background: var(--void);
  min-height: 100vh;
  line-height: 1.55;
  font-size: 0.9375rem;
  position: relative;
}
/* Soft phosphor wash — original SignalCraft bg (no mesh UI) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 85% -5%, rgba(240, 180, 41, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(158, 223, 255, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(240, 180, 41, 0.035), transparent 28%);
}
body > main,
body > .site-footer,
body > .site-header {
  position: relative;
  z-index: 1;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(100% - 2 * var(--space), var(--max)); margin-inline: auto; }

/* atoms */
.provenance-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
  border: 1px solid var(--line);
  padding: 0.35rem 0.65rem;
  background: rgba(22, 25, 32, 0.8);
}
.provenance-chip::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--phosphor);
  animation: pulse-dot var(--pulse) ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.spike-head {
  display: grid;
  gap: 0.75rem;
  align-items: end;
}
@media (min-width: 800px) {
  .spike-head { grid-template-columns: 1.4fr 0.6fr; }
}
.spike-head h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0;
}
.spike-head .micro {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0;
  max-width: 22ch;
}

.tick-tape {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--graphite);
  margin: 1.5rem 0 0;
}
.tick-tape__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.7rem 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  animation: tick var(--pulse) linear infinite;
  animation-duration: 28s;
}
.tick-tape__track span { white-space: nowrap; }
.tick-tape__track span b { color: var(--phosphor); font-weight: 500; }
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lattice-frame {
  position: relative;
  background: var(--graphite);
  border: 1px solid var(--line);
  min-height: 16rem;
  padding: 1.25rem;
  overflow: hidden;
}
.lattice-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-32deg, transparent 0 14px, rgba(240, 180, 41, 0.07) 14px 15px),
    repeating-linear-gradient(32deg, transparent 0 18px, rgba(158, 223, 255, 0.05) 18px 19px);
  pointer-events: none;
}
.lattice-frame > * { position: relative; z-index: 1; }

.pulse-rail {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(240, 180, 41, 0.55);
  padding-left: 1.15rem;
}
.pulse-rail article {
  padding: 1rem 0 1.15rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pulse-rail article::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 1.25rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--phosphor);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.2);
  animation: pulse-dot calc(var(--pulse) * 1.4) ease-in-out infinite;
}
.pulse-rail h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.pulse-rail p { margin: 0; color: var(--ash); font-size: 0.95rem; }

.signal-atom {
  border: 1px solid var(--line);
  background: rgba(22, 25, 32, 0.65);
  padding: 1.1rem 1rem;
  border-radius: 0.4rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.signal-atom:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 180, 41, 0.45);
  background: rgba(28, 32, 42, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(158, 223, 255, 0.08);
}
.signal-atom .w {
  font-family: var(--font-mono);
  color: var(--phosphor);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.signal-atom h3 {
  font-family: var(--font-display);
  margin: 0.4rem 0 0.45rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.signal-atom p { margin: 0; color: var(--ash); font-size: 0.94rem; }

.symmetry-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .symmetry-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .symmetry-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .symmetry-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* chrome */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10, 11, 14, 0.88);
  border-bottom: 1px solid rgba(158, 223, 255, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.42rem 0.8rem 0.42rem 0.7rem;
  border: 1px solid rgba(240, 180, 41, 0.35);
  background: linear-gradient(165deg, rgba(240, 180, 41, 0.12), var(--graphite) 55%);
  text-decoration: none;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.logo:hover,
.logo:focus-visible {
  border-color: var(--phosphor);
  background: linear-gradient(165deg, rgba(240, 180, 41, 0.22), rgba(22, 25, 32, 0.95) 50%);
  box-shadow: 0 0 0 1px rgba(240, 180, 41, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  outline: none;
}
.logo:active { transform: translateY(0); }
.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
  line-height: 1;
}
.logo em { color: var(--phosphor); font-style: normal; }
.logo-hint {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  border-left: 1px solid var(--line);
  padding-left: 0.55rem;
  line-height: 1.2;
}
.logo:hover .logo-hint,
.logo:focus-visible .logo-hint { color: var(--phosphor); }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--ash);
}
.nav-links a {
  text-decoration: none;
  display: inline-block;
  padding: 0.35rem 0.55rem;
  margin: -0.35rem -0.55rem;
  border-radius: 0.35rem;
  border: 1px solid transparent;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(22, 25, 32, 0.95);
  border-color: rgba(240, 180, 41, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(158, 223, 255, 0.08);
}
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(240, 180, 41, 0.1);
  border-color: rgba(240, 180, 41, 0.35);
}
.nav-cta {
  background: var(--phosphor);
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.3rem;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(240, 180, 41, 0.28);
}

.hero { padding: clamp(1.85rem, 4.5vw, 3.4rem) 0 0.85rem; }
.hero-lead { color: var(--ash); max-width: 42ch; margin: 0.85rem 0 1.25rem; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-row.cta-sym {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 34rem;
  width: 100%;
  gap: 0.75rem;
}
.btn-row.cta-sym.cta-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 44rem;
}
@media (max-width: 640px) {
  .btn-row.cta-sym,
  .btn-row.cta-sym.cta-3 {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }
}
.btn-row.cta-sym > .btn,
.btn-row.cta-sym > .btn-wa,
.btn-row.cta-sym > a.btn {
  width: 100%;
  min-height: 3.05rem;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.05rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  cursor: pointer;
  background: transparent;
  color: #e8ecf1;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(158, 223, 255, 0.1);
}
.btn-primary { background: var(--phosphor); color: #111; border-color: var(--phosphor); }
.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.06);
  color: #111;
  box-shadow: 0 12px 26px rgba(240, 180, 41, 0.32);
}
.btn-ghost {
  border-color: var(--line);
  color: #e8ecf1;
  background: rgba(22, 25, 32, 0.95);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(240, 180, 41, 0.55);
  background: rgba(240, 180, 41, 0.12);
  color: #fff;
}
.btn-ghost.is-on,
.quiz-opt.is-on {
  border-color: var(--phosphor);
  background: rgba(240, 180, 41, 0.14);
  color: #fff;
}

section { padding: clamp(1.85rem, 4.2vw, 3.25rem) 0; }
.kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
  margin: 0 0 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.7vw, 1.95rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  max-width: 22ch;
}
.section-intro { color: var(--ash); max-width: 58ch; margin: 0 0 1.75rem; }
.prose { max-width: none; }
.section-grey {
  background: rgba(22, 25, 32, 0.72);
  border-block: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 2.6rem) 0;
}
.prose-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 880px) {
  .prose-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.85fr);
    gap: 2.25rem;
  }
}
.prose-grid .prose { max-width: 62ch; }
.prose p { margin: 0 0 1.05rem; color: #d5dae2; }
.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 1.8rem 0 0.7rem;
}

.page-hero {
  padding: clamp(2.4rem, 6vw, 3.6rem) 0 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.05rem;
}
.page-hero .provenance-chip {
  margin: 0 0 0.15rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
}
.page-hero .section-intro {
  margin: 0.15rem 0 0;
}

.price {
  font-family: var(--font-mono);
  color: var(--phosphor);
  font-size: 0.85rem;
  margin-top: 0.85rem;
}

.form { display: grid; gap: 0.85rem; max-width: 34rem; }
.form label { display: grid; gap: 0.35rem; font-size: 0.88rem; font-weight: 600; }
.form input, .form textarea, .form select {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--graphite);
  color: #fff;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid var(--phosphor);
  outline-offset: 1px;
}
.form button {
  font: inherit;
  font-weight: 800;
  border: 0;
  padding: 0.9rem 1.15rem;
  background: var(--phosphor);
  color: #111;
  cursor: pointer;
}
.form-status { font-size: 0.9rem; color: var(--ash); min-height: 1.2em; }
.contact-aside {
  border-left: 2px solid var(--phosphor);
  padding-left: 1rem;
  color: var(--ash);
}
.contact-aside a { color: var(--ice); }

.manifest-strip {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--phosphor);
  background: rgba(22, 25, 32, 0.7);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ice);
  max-width: 52rem;
}

.desire-mirror {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem;
  background: var(--graphite);
  border: 1px solid var(--line);
}
.desire-mirror h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.desire-mirror p {
  margin: 0 0 1rem;
  color: #d5dae2;
  max-width: 62ch;
}
.desire-mirror p:last-child { margin-bottom: 0; }

.method-map {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 900px) {
  .method-map { grid-template-columns: 1fr 1fr; }
}
.method-map .step {
  border: 1px solid var(--line);
  background: rgba(22, 25, 32, 0.55);
  padding: 1.15rem 1rem;
  border-radius: 0.4rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.method-map .step:hover {
  transform: translateY(-3px);
  border-color: rgba(158, 223, 255, 0.35);
  background: rgba(28, 32, 42, 0.88);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}
.method-map .step .w {
  font-family: var(--font-mono);
  color: var(--phosphor);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.method-map .step h3 {
  font-family: var(--font-display);
  margin: 0.4rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.method-map .step p { margin: 0; color: var(--ash); font-size: 0.95rem; }

.proof-chamber {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .proof-chamber { grid-template-columns: 1.1fr 0.9fr; }
}
.proof-chamber .yes,
.proof-chamber .no {
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: rgba(22, 25, 32, 0.6);
  border-radius: 0.4rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.proof-chamber .yes:hover,
.proof-chamber .no:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  background: rgba(28, 32, 42, 0.88);
}
.proof-chamber h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
}
.proof-chamber ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ash);
}
.proof-chamber .no { border-color: rgba(240, 180, 41, 0.35); }

.offer-lattice {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .offer-lattice { grid-template-columns: 1fr 1fr; }
}

.follow-us-stamp {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.12), rgba(158, 223, 255, 0.06));
  border: 1px solid rgba(240, 180, 41, 0.35);
}
.follow-us-stamp h2 {
  font-family: var(--font-display);
  margin: 0.6rem 0 0.75rem;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.follow-us-stamp p { margin: 0; color: #d5dae2; max-width: 58ch; }

.depth-band {
  margin-top: 2rem;
  padding: clamp(1.6rem, 4vw, 2.75rem) 0;
  border-block: 1px solid var(--line);
  background: rgba(22, 25, 32, 0.72);
}
.wrap.depth-band,
.depth-band .inner:not(.wrap) {
  max-width: none;
}
.depth-band > .wrap.inner > div:first-child {
  max-width: 58ch;
}
.wrap.depth-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .wrap.depth-band,
  .depth-band > .wrap.inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(12rem, 0.8fr);
    gap: 2.25rem;
  }
}
.depth-band > .wrap.inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.wrap.depth-band > .inner {
  max-width: 58ch;
}
.depth-band h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  margin: 0 0 0.85rem;
}
.depth-band p { color: #d0d6df; margin: 0 0 0.9rem; max-width: 58ch; font-size: 0.95rem; }
.depth-band .depth-visual {
  margin: 0;
  justify-self: stretch;
}
.depth-band .depth-visual img,
.prose-grid .depth-visual img {
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  display: block;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  background: #12151c;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.google-rail {
  display: grid;
  gap: 0.75rem;
}
.google-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #12151c;
  border-radius: 0.35rem;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.google-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 180, 41, 0.4);
  background: #171a22;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}
.google-chip .g-mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.google-chip .stars {
  color: var(--phosphor);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  line-height: 1;
}
.google-chip .meta {
  display: grid;
  gap: 0.15rem;
}
.google-chip .meta strong {
  color: #fff;
  font-size: 0.95rem;
}
.google-chip .meta span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
}

.lead-chamber {
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--graphite);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  margin-top: 1rem;
  color: var(--ash);
  font-size: 0.9rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* Trust + WhatsApp */
.trust-band {
  margin: 1.75rem 0 0.5rem;
  padding: 1.1rem 0;
  border-block: 1px solid var(--line);
  background: rgba(22, 25, 32, 0.55);
}
.trust-band .inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 800px) {
  .trust-band .inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.75rem;
  }
  .trust-band .inner.trust-wa-only {
    grid-template-columns: 1fr;
    max-width: 36rem;
  }
}
.trust-band img {
  width: 100%;
  max-width: 36rem;
  height: auto;
  border-radius: 0.35rem;
  display: block;
}
.trust-band img.trust-compact {
  max-width: 16.5rem;
  opacity: 0.92;
}
.trust-band .trust-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
}
.trust-band .trust-copy p {
  margin: 0 0 1rem;
  color: var(--ash);
  max-width: 38ch;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #1f8f4d;
  color: #fff !important;
  border: 1px solid #25d366;
  border-radius: 0.35rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.05rem;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}
.btn-wa:hover,
.btn-wa:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}
.btn-wa svg { flex-shrink: 0; }

.wa-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #0a0b0e;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.05); color: #0a0b0e; }
.wa-fab svg { display: block; }
@media (max-width: 520px) {
  .wa-fab span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .wa-fab { padding: 0.85rem; border-radius: 50%; }
}

/* —— widget hover (užrašai / nuorodos / kortelės) —— */
.prose a,
.depth-band a,
.desire-mirror a,
.section-intro a,
.follow-us-stamp a,
.site-footer a,
.trust-copy a {
  text-decoration: none;
  border-bottom: 1px solid rgba(158, 223, 255, 0.35);
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    text-shadow 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    padding 0.18s ease;
  border-radius: 0.2rem;
}
.prose a:hover,
.prose a:focus-visible,
.depth-band a:hover,
.depth-band a:focus-visible,
.desire-mirror a:hover,
.desire-mirror a:focus-visible,
.section-intro a:hover,
.follow-us-stamp a:hover,
.site-footer a:hover,
.site-footer a:focus-visible,
.trust-copy a:hover {
  color: #fff;
  border-bottom-color: var(--phosphor);
  background: rgba(240, 180, 41, 0.12);
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.12);
  text-shadow: 0 0 18px rgba(158, 223, 255, 0.25);
}
.provenance-chip {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.provenance-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(158, 223, 255, 0.4);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
.pulse-rail article {
  transition: background 0.18s ease, transform 0.18s ease;
  border-radius: 0.3rem;
  margin-inline: -0.35rem;
  padding-inline: 0.35rem;
}
.pulse-rail article:hover {
  background: rgba(240, 180, 41, 0.06);
  transform: translateX(3px);
}
.faq-item button {
  transition: color 0.18s ease, padding-left 0.18s ease, text-shadow 0.18s ease;
}
.faq-item button:hover,
.faq-item button:focus-visible {
  color: var(--phosphor);
  padding-left: 0.35rem;
  text-shadow: 0 0 16px rgba(240, 180, 41, 0.25);
}
.depth-visual img {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.depth-visual:hover img {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(240, 180, 41, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .nav-links a,
  .nav-cta,
  .btn,
  .btn-wa,
  .wa-fab,
  .signal-atom,
  .method-map .step,
  .proof-chamber .yes,
  .proof-chamber .no,
  .google-chip,
  .pulse-rail article,
  .depth-visual img,
  .provenance-chip {
    transition: none !important;
  }
  .nav-links a:hover,
  .btn:hover,
  .signal-atom:hover,
  .method-map .step:hover,
  .proof-chamber .yes:hover,
  .proof-chamber .no:hover,
  .google-chip:hover,
  .depth-visual:hover img {
    transform: none !important;
  }
}

