/* VoiceAuthorize — static acquisition landing · dark luxury SaaS aesthetic */

:root {
  --bg-deep: #05080f;
  --bg-panel: rgba(13, 18, 32, 0.72);
  --bg-panel-solid: #0d1220;
  --border-subtle: rgba(123, 140, 180, 0.14);
  --text: #eef2ff;
  --text-muted: #94a3c8;
  --text-soft: #6b7a9e;
  --accent: #5b8cff;
  --accent-soft: rgba(91, 140, 255, 0.14);
  --accent-glow: rgba(91, 140, 255, 0.45);
  --violet: #a78bfa;
  --cyan: #22d3ee;
  --wa-green: #25d366;
  --wa-green-dark: #128c7e;
  --radius: 14px;
  --radius-sm: 10px;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", var(--font-sans);
  --max: 1120px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
}

/* Ambient background */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg-deep);
  pointer-events: none;
}
.bg-aurora::before {
  content: "";
  position: absolute;
  width: 140vmax;
  height: 140vmax;
  top: -40%;
  left: -20%;
  background: radial-gradient(ellipse at center, rgba(91, 140, 255, 0.15) 0%, transparent 55%);
  animation: aurora-shift 28s ease-in-out infinite alternate;
}
.bg-aurora::after {
  content: "";
  position: absolute;
  width: 120vmax;
  height: 120vmax;
  bottom: -35%;
  right: -25%;
  background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.1) 0%, transparent 50%);
  animation: aurora-shift 22s ease-in-out infinite alternate-reverse;
}
@keyframes aurora-shift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(4%, 3%) scale(1.05);
    opacity: 0.85;
  }
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(123, 140, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 140, 180, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 20%, black 25%, transparent 75%);
  pointer-events: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(5, 8, 15, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}
.logo span {
  color: var(--accent);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.62rem 1.15rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    background 0.22s;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  color: var(--bg-deep);
  background: linear-gradient(135deg, #7aa3ff 0%, var(--accent) 50%, var(--violet) 120%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 36px var(--accent-glow);
}
.btn-secondary {
  color: var(--text);
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.btn-secondary:hover {
  border-color: rgba(91, 140, 255, 0.35);
  box-shadow: 0 0 20px rgba(91, 140, 255, 0.12);
}
.btn-lg {
  padding: 0.82rem 1.5rem;
  font-size: 0.95rem;
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.section-lead {
  max-width: 52ch;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  color: var(--text-soft);
}

/* Hero */
.hero {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.1s forwards;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--text);
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.2s forwards;
}
.hero .gradient-text {
  background: linear-gradient(120deg, var(--text) 0%, var(--accent) 45%, var(--violet) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 36ch;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.35s forwards;
}
.hero-brand {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.45s forwards;
}
.hero-brand strong {
  color: var(--text);
  font-weight: 600;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.55s forwards;
}
.hero-float {
  margin-top: 4rem;
  display: grid;
  place-items: center;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.7s forwards;
}
.hero-orbits {
  position: relative;
  width: min(440px, 90vw);
  height: min(440px, 90vw);
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
}
.orbit-1 {
  inset: 0;
  animation: float-slow 12s ease-in-out infinite;
}
.orbit-2 {
  inset: 12%;
  border-color: rgba(91, 140, 255, 0.2);
  animation: float-slow 10s ease-in-out infinite reverse;
}
.orbit-3 {
  inset: 24%;
  border-color: rgba(167, 139, 250, 0.18);
  animation: float-slow 14s ease-in-out infinite;
}
.orbit-core {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(145deg, rgba(91, 140, 255, 0.35), rgba(167, 139, 250, 0.2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 60px rgba(91, 140, 255, 0.25),
    0 0 100px rgba(167, 139, 250, 0.12);
}
@keyframes float-slow {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(6deg) scale(1.02);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cards / vision grid */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.section-lead-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.section-lead-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s var(--ease-out);
}
.card:hover {
  border-color: rgba(91, 140, 255, 0.28);
  box-shadow: 0 0 40px rgba(91, 140, 255, 0.08);
  transform: translateY(-2px);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Use case cards */
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 900px) {
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .use-grid {
    grid-template-columns: 1fr;
  }
}
.use-card {
  text-align: left;
  min-height: 140px;
}
.use-card .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(91, 140, 255, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.mock-caption {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}
.mock-caption-mt {
  margin-top: 0.75rem;
  text-align: left;
}
.mock-panel-span {
  grid-column: 1 / -1;
}
.mock-body-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 560px) {
  .mock-body-split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .mock-panel-span {
    grid-column: auto;
  }
}
.bio-ring-lg {
  width: 160px;
  height: 160px;
}
.acquire-accent {
  margin-top: -0.5rem;
  opacity: 0.92;
}

/* Mockup stage */
.mockup-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 900px) {
  .mockup-stage {
    grid-template-columns: 1fr;
  }
}
.mock-panel {
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.mock-panel:hover {
  box-shadow: 0 0 50px rgba(91, 140, 255, 0.1);
}
.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.25);
}
.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #475569;
}
.mock-dot:nth-child(1) {
  background: #f87171;
}
.mock-dot:nth-child(2) {
  background: #fbbf24;
}
.mock-dot:nth-child(3) {
  background: #34d399;
}
.mock-title {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.mock-body {
  flex: 1;
  padding: 1.25rem;
  position: relative;
}

/* Waveform */
.wave-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 100px;
  margin: 1rem 0;
}
.wave-bars span {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--violet));
  opacity: 0.65;
  animation: wave 1.4s ease-in-out infinite;
}
.wave-bars span:nth-child(1) {
  height: 30%;
  animation-delay: 0s;
}
.wave-bars span:nth-child(2) {
  height: 55%;
  animation-delay: 0.1s;
}
.wave-bars span:nth-child(3) {
  height: 80%;
  animation-delay: 0.2s;
}
.wave-bars span:nth-child(4) {
  height: 100%;
  animation-delay: 0.3s;
}
.wave-bars span:nth-child(5) {
  height: 70%;
  animation-delay: 0.4s;
}
.wave-bars span:nth-child(6) {
  height: 45%;
  animation-delay: 0.5s;
}
.wave-bars span:nth-child(7) {
  height: 65%;
  animation-delay: 0.6s;
}
.wave-bars span:nth-child(8) {
  height: 35%;
  animation-delay: 0.7s;
}
@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

/* Biometric ring */
.bio-scan {
  display: grid;
  place-items: center;
  min-height: 180px;
}
.bio-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(91, 140, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.15),
    inset 0 0 40px rgba(91, 140, 255, 0.08);
  position: relative;
  animation: pulse-ring 3s ease-in-out infinite;
}
.bio-ring::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(34, 211, 238, 0.35);
  animation: spin-slow 16s linear infinite;
}
@keyframes pulse-ring {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(167, 139, 250, 0.15),
      inset 0 0 40px rgba(91, 140, 255, 0.08);
  }
  50% {
    box-shadow:
      0 0 30px rgba(91, 140, 255, 0.25),
      inset 0 0 50px rgba(91, 140, 255, 0.12);
  }
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

/* Auth panel mock */
.auth-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.auth-row {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(91, 140, 255, 0.25), rgba(167, 139, 250, 0.1));
}
.auth-row:nth-child(2) {
  width: 85%;
}
.auth-row:nth-child(3) {
  width: 70%;
}

/* Acquisition CTA strip */
.acquire {
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid rgba(91, 140, 255, 0.22);
  background:
    radial-gradient(ellipse 80% 120% at 50% -20%, rgba(91, 140, 255, 0.18), transparent 55%),
    var(--bg-panel-solid);
  box-shadow: 0 0 80px rgba(91, 140, 255, 0.06);
}
.acquire h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--text);
  margin: 0 0 0.75rem;
}
.acquire p {
  max-width: 56ch;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}
.acquire-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #ecfff4;
  text-decoration: none;
  padding: 0.85rem 1.45rem;
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.45);
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.18), rgba(18, 140, 126, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 32px rgba(37, 211, 102, 0.15);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.25s,
    background 0.25s;
}
.acquire-wa:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 6px 40px rgba(37, 211, 102, 0.25);
}

.btn-wa-outline {
  border-color: rgba(37, 211, 102, 0.35) !important;
  background: rgba(37, 211, 102, 0.06);
}
.btn-wa-outline:hover {
  border-color: rgba(37, 211, 102, 0.55) !important;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.12);
}

/* SEO article */
.seo-article {
  background: rgba(13, 18, 32, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.seo-article h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}
.seo-article h3:first-child {
  margin-top: 0;
}
.seo-article p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.seo-article ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}
.seo-article li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.25rem 1.5rem 3rem;
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.35);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
.footer-brand .logo {
  margin-bottom: 0.75rem;
  display: inline-block;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 72ch;
  margin: 0;
}

/* ─── WhatsApp floating wedge ─── */
.wa-wedge {
  position: fixed;
  z-index: 250;
  right: calc(1rem + env(safe-area-inset-right, 0px));
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem 0.55rem 0.72rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  border-radius: 999px 999px 6px 999px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 40px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.25s;
}
.wa-wedge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 48px rgba(37, 211, 102, 0.45);
}
.wa-wedge__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  flex-shrink: 0;
}
.wa-wedge__icon svg {
  display: block;
}
@media (max-width: 420px) {
  .wa-wedge__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .wa-wedge {
    padding: 0.55rem;
    clip-path: none;
    border-radius: 50%;
  }
}

/* ─── Vendor guide extras ─── */
.guide-intro {
  background: rgba(13, 18, 32, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.guide-intro strong {
  color: var(--text);
}
.table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}
.guide-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.guide-table th,
.guide-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-subtle);
}
.guide-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  background: rgba(91, 140, 255, 0.06);
}
.guide-table tr:last-child td {
  border-bottom: none;
}
.guide-table a {
  color: var(--accent);
  font-weight: 500;
}
.guide-score {
  white-space: nowrap;
  font-weight: 600;
  color: var(--cyan);
}
.guide-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--text);
  margin: 3rem 0 1rem;
  letter-spacing: -0.03em;
}
@media (prefers-reduced-motion: reduce) {
  .wa-wedge:hover {
    transform: none;
  }
  .acquire-wa:hover {
    transform: none;
  }
}
