:root {
  --ink: #0b1f1c;
  --ink-soft: #3f544f;
  --mist: #f3f2ef;
  --paper: #f8f7f4;
  --line: rgba(11, 31, 28, 0.12);
  --accent: #a86b4c;
  --accent-deep: #8f5539;
  --brand: #0f3d36;
  --brand-light: #c08a6a;
  --whatsapp: #128c7e;
  --whatsapp-deep: #0e6f64;
  --glow: rgba(15, 61, 54, 0.18);
  --radius: 16px;
  --shadow-soft: 0 20px 48px rgba(11, 31, 28, 0.12);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Figtree", sans-serif;
  --wrap: min(1140px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 0% -5%, rgba(168, 107, 76, 0.1), transparent 55%),
    radial-gradient(900px 480px at 100% 5%, rgba(15, 61, 54, 0.08), transparent 50%),
    linear-gradient(180deg, #f2f1ee 0%, #f8f7f4 40%, #eceae6 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 24, 22, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4f7f8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4.25rem;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex: 1 1 auto;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1;
  color: #f4f7f6;
}

.logo-mark {
  width: 2.4rem;
  height: 2.15rem;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-dot {
  color: var(--accent);
  margin: 0;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  opacity: 0.82;
  transition: opacity 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  min-width: 2.1rem;
  min-height: 1.9rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(244, 247, 248, 0.72);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.lang-btn:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: #f4f7f8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-compact {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f7f8f6;
  background: #071512;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 480px at 12% 18%, rgba(168, 107, 76, 0.26), transparent 58%),
    radial-gradient(760px 460px at 88% 12%, rgba(15, 61, 54, 0.5), transparent 55%),
    radial-gradient(700px 440px at 72% 78%, rgba(8, 28, 24, 0.4), transparent 60%),
    linear-gradient(160deg, #0d2c27 0%, #071512 46%, #123832 100%);
  animation: aurora-shift 14s ease-in-out infinite alternate;
}

.hero-beam {
  position: absolute;
  inset: -10% 10% auto;
  height: 60%;
  background: linear-gradient(110deg, transparent 18%, rgba(168, 107, 76, 0.22) 48%, transparent 74%);
  filter: blur(22px);
  animation: beam-sweep 9s ease-in-out infinite alternate;
}

.hero-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(140px, 24vh, 280px);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  padding: 7rem 0 3.5rem;
  min-height: min(88vh, 900px);
}

.hero-content {
  max-width: min(980px, 100%);
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker,
.brand-mark,
.hero h1,
.hero-claim {
  text-align: center;
}

.brand-mark {
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-mark::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, #0f3d36, #a86b4c);
}

.hero-kicker {
  margin: 0 auto 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c08a6a;
}

.hero h1 {
  margin: 1.6rem auto 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 22ch;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.hero-claim {
  margin: 1.6rem auto 0;
  max-width: 34ch;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: center;
  color: #e8e4df;
}

.hero-claim .accent {
  color: #c08a6a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.4rem;
}

.hero-panel {
  position: static;
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
  padding: 1.25rem 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  animation: panel-rise 1s ease both;
  text-align: center;
}

.hero-panel-item {
  padding: 0.85rem 0.75rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
}

.hero-panel-item:last-child {
  border-right: 0;
  padding-bottom: 0.85rem;
}

.hero-panel-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  color: #f4f7f6;
}

.hero-panel-item span {
  display: block;
  color: rgba(247, 250, 251, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
  max-width: 16ch;
  margin-inline: auto;
}

.hero-panel-place {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-panel-place strong {
  color: #c08a6a;
}

.identity-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(236, 234, 228, 0.95);
}

.logo-strip {
  padding: 1.75rem 0 2rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.logo-strip-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.75rem 0.5rem;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.logo-strip figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.logo-strip img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}

.logo-strip figcaption {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.25;
  max-width: 6.5rem;
}

.identity-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 1.15rem 0;
  flex-wrap: wrap;
}

.identity-inner p {
  margin: 0;
  color: var(--ink-soft);
}

.identity-meta {
  font-size: 0.92rem;
  font-weight: 600;
}

.section {
  padding: 5.5rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 20ch;
  font-weight: 700;
}

.section-lead {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.focus-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 28%),
    var(--mist);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.25rem;
  margin-top: 2.75rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.focus-index {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.focus-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.focus-item p {
  margin: 0;
  color: var(--ink-soft);
}

.method-list {
  margin: 2.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.method-list li {
  position: relative;
  padding-top: 2.5rem;
  border-top: 2px solid var(--ink);
  counter-increment: step;
}

.method-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0.55rem;
  left: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-deep);
}

.method-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.method-list p {
  margin: 0;
  color: var(--ink-soft);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.75rem;
  margin-top: 2.75rem;
}

.service {
  padding-top: 1.25rem;
  border-top: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
}

.service h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.service ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.service li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.service-wa {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.partners-section {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, #f7faf9 0%, #ffffff 55%);
  border-block: 1px solid var(--line);
}

.partners-section h2 {
  max-width: none;
  margin-bottom: 0.35rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  margin-top: 2rem;
}

.partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0.35rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.partner-badge:hover {
  transform: translateY(-3px);
}

.partner-badge img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(16, 42, 46, 0.08));
}

.partner-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.35;
  max-width: 11rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 0.85rem;
  display: block;
}

.trust-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.trust-grid h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.trust-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.tele-section {
  padding: 0;
}

.tele-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.25rem;
  border-radius: var(--radius);
  background:
    radial-gradient(520px 240px at 100% 0%, rgba(168, 107, 76, 0.22), transparent 60%),
    linear-gradient(135deg, #0f3d36 0%, #0b1f1c 52%, #134a42 100%);
  color: #f8fafc;
  box-shadow: var(--shadow-soft);
}

.tele-inner .eyebrow {
  color: #c08a6a;
}

.tele-inner h2 {
  max-width: 14ch;
}

.tele-inner p {
  margin: 1rem 0 0;
  max-width: 48ch;
  color: rgba(248, 250, 252, 0.86);
}

.topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.topic-row a {
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.topic-row a:hover {
  border-color: rgba(15, 118, 110, 0.45);
  background: #fff;
  transform: translateY(-1px);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-actions-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-sub {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.contact-link:hover {
  border-color: rgba(15, 118, 110, 0.45);
  background: #fff;
  transform: translateY(-2px);
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 6rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
}

.footer-tag {
  margin-top: 0.55rem;
  max-width: 36ch;
}

.footer-meta p {
  margin: 0.2rem 0;
}

.footer-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.35);
  animation: wa-pulse 2.8s ease-in-out infinite;
}

.wa-float:hover {
  background: var(--whatsapp-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes aurora-shift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-2%, 1.5%, 0);
  }
}

@keyframes beam-sweep {
  from {
    transform: translateX(-8%) rotate(-2deg);
    opacity: 0.7;
  }
  to {
    transform: translateX(10%) rotate(2deg);
    opacity: 1;
  }
}

@keyframes panel-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.35);
  }
  50% {
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.35), 0 0 0 12px var(--glow);
  }
}

@media (max-width: 980px) {
  :root {
    --wrap: min(1140px, calc(100% - 2rem));
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: rgba(8, 22, 34, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 1;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    padding-top: 6.5rem;
    min-height: 0;
    gap: 2rem;
  }

  .hero-panel {
    position: static;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .hero-panel-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-panel-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-panel-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .services,
  .method-list,
  .trust-grid,
  .partners-grid,
  .logo-strip-grid,
  .contact-actions-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tele-inner {
    flex-direction: column;
    align-items: start;
    padding: 1.5rem;
  }
}

@media (max-width: 700px) {
  :root {
    --wrap: min(1140px, calc(100% - 1.75rem));
  }

  .focus-grid,
  .services,
  .method-list,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-strip-grid,
  .partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem 0.35rem;
  }

  .logo-strip img,
  .partner-badge img {
    width: 52px;
    height: 52px;
  }

  .logo-strip figcaption,
  .partner-badge span {
    font-size: 0.58rem;
    max-width: 5.5rem;
  }

  .contact-actions,
  .contact-actions-3 {
    grid-template-columns: 1fr;
  }

  .logo-text {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 94vh;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: clamp(2.05rem, 9vw, 2.75rem);
  }

  .hero-claim {
    max-width: 22ch;
    font-size: clamp(1.2rem, 5.5vw, 1.55rem);
  }

  .cta-row .btn {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .contact-link {
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-aurora,
  .hero-beam,
  .hero-panel,
  .wa-float,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
