/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0d1210;
  --bg-2:      #121a17;
  --bg-3:      #1a2420;
  --bg-card:   #182019;
  --cream:     #f2ede2;
  --cream-2:   #cdc6b6;
  --cream-3:   #8d9689;
  --accent:    #4b7a5c;
  --accent-2:  #2e4a38;
  --accent-soft: rgba(75, 122, 92, 0.16);
  --gold:      #c9a24a;
  --line:      rgba(242, 237, 226, 0.12);
  --line-soft: rgba(242, 237, 226, 0.06);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Space Grotesk", var(--sans);
  --serif: "Fraunces", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--display); font-weight: 700; }
em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--gold); }
::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px) { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

.section { position: relative; padding-block: 5rem; }
@media (min-width: 960px) { .section { padding-block: 8rem; } }

.section-head {
  max-width: 46rem;
  margin-bottom: 3rem;
}
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
}
.section-sub {
  margin-top: 1.1rem;
  color: var(--cream-2);
  font-size: 1.05rem;
  max-width: 42rem;
}
.center .section-sub { margin-inline: auto; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.grain {
  position: fixed; inset: 0; z-index: 2; opacity: .045; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -0.01em;
  transition: transform .45s var(--ease-out), background .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  box-shadow: 0 8px 30px -8px rgba(75, 122, 92, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(75, 122, 92, 0.7); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(242,237,226,0.03);
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); background: rgba(201,162,74,0.08); }
.btn-sm { padding: .7rem 1.3rem; font-size: .85rem; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(13, 18, 16, 0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(13, 18, 16, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.25rem; }
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: none; align-items: center; gap: 2.1rem; }
.nav-links a {
  position: relative;
  font-size: .92rem;
  color: var(--cream-2);
  transition: color .3s var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: flex; width: 42px; height: 42px; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--line);
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger.is-hidden { opacity: 0; pointer-events: none; }
.nav-burger span { position: relative; width: 18px; height: 2px; background: var(--cream); display: block; }
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--cream); transition: transform .3s var(--ease-out);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 101;
  background: var(--bg-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; pointer-events: none; transform: translateY(-12px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a { font-family: var(--display); font-size: 1.7rem; font-weight: 600; }
.mobile-menu-close { position: absolute; top: 1.7rem; right: 1.5rem; font-size: 1.8rem; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(.82);
}
.hero-bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,18,16,.55) 0%, rgba(13,18,16,.72) 55%, rgba(13,18,16,.96) 100%),
    linear-gradient(90deg, rgba(13,18,16,.55) 0%, rgba(13,18,16,.15) 45%, rgba(13,18,16,.5) 100%);
}
.hero-mesh {
  position: absolute; inset: -20% -10% -10% -10%; z-index: 1; pointer-events: none;
  background: radial-gradient(45% 40% at 30% 20%, rgba(75,122,92,.45), transparent 70%),
              radial-gradient(35% 35% at 85% 75%, rgba(201,162,74,.22), transparent 70%);
  filter: blur(90px);
  animation: meshDrift 22s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(2%, -3%) scale(1.08); }
}
.hero-inner { position: relative; z-index: 2; max-width: 44rem; }
.hero-title {
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  max-width: 15ch;
  margin-bottom: 1.4rem;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--cream-2);
  max-width: 38ch;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  font-family: var(--mono); font-size: .78rem; color: var(--cream-3); letter-spacing: .03em;
}
.hero-meta span { display: flex; align-items: center; gap: .5rem; }
.hero-meta strong { color: var(--gold); font-family: var(--mono); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: none; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .68rem; color: var(--cream-3); letter-spacing: .1em;
}
@media (min-width: 720px) { .hero-scroll { display: flex; } }
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* =============================================================
   7. About / Quienes somos
   ============================================================= */
.about-grid {
  display: grid; gap: 2.6rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; } }
.about-figure { position: relative; border-radius: 22px; overflow: clip; aspect-ratio: 4/5; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.about-figure:hover img { transform: scale(1.06); }
.about-figure::after {
  content: ""; position: absolute; inset: 0; border: 1px solid var(--line); border-radius: 22px; pointer-events: none;
}
.about-text p { color: var(--cream-2); font-size: 1.05rem; margin-top: 1.3rem; max-width: 46ch; }
.about-pillars { display: grid; gap: 1.6rem; margin-top: 2.4rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.pillar-num { font-family: var(--mono); color: var(--gold); font-size: .8rem; margin-bottom: .5rem; }
.pillar h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.pillar p { color: var(--cream-3); font-size: .92rem; }

/* =============================================================
   8. Services
   ============================================================= */
.services-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.9rem 1.6rem;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), background .4s var(--ease-out);
  transform-style: preserve-3d;
  perspective: 800px;
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: rgba(201,162,74,0.4);
    background: #1c261f;
  }
}
.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.08rem; margin-bottom: .55rem; }
.service-card p { color: var(--cream-3); font-size: .9rem; line-height: 1.55; }

/* =============================================================
   9. Process
   ============================================================= */
.process-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.process-item {
  display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.6rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 720px) { .process-item { grid-template-columns: 5rem 1fr 1.3fr; } }
.process-num { font-family: var(--mono); color: var(--gold); font-size: 1.1rem; }
.process-item h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.process-item p { color: var(--cream-2); max-width: 48ch; }

/* =============================================================
   9.5 Image break
   ============================================================= */
.image-break {
  position: relative;
  height: 46vh;
  min-height: 320px;
  overflow: clip;
  display: flex; align-items: flex-end;
}
.image-break img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.image-break-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,18,16,.35) 0%, rgba(13,18,16,.85) 100%);
}
.image-break-caption {
  position: relative; z-index: 1;
  font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--cream); max-width: 30ch;
  padding: 2.4rem 1.25rem;
}
@media (min-width: 720px) { .image-break-caption { padding: 3rem 2rem; } }

/* =============================================================
   10. Sectors
   ============================================================= */
.sector-list { display: flex; flex-wrap: wrap; gap: .8rem; }
.sector-tag {
  padding: .75rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  color: var(--cream-2);
  background: rgba(242,237,226,0.02);
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out), background .3s var(--ease-out);
}
.sector-tag:hover { border-color: var(--accent); color: var(--cream); background: var(--accent-soft); }

/* =============================================================
   11. Benefits
   ============================================================= */
.benefits-grid {
  display: grid; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: clip;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-item { background: var(--bg-2); padding: 2.1rem 1.8rem; }
.benefit-item .service-icon { margin-bottom: 1.1rem; }
.benefit-item h4 { font-size: 1.02rem; margin-bottom: .5rem; }
.benefit-item p { color: var(--cream-3); font-size: .9rem; }

/* =============================================================
   12. Stats strip
   ============================================================= */
.stats-strip {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 3rem;
  border-block: 1px solid var(--line);
}
@media (min-width: 720px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
}
.stat-label { color: var(--cream-3); font-size: .85rem; margin-top: .4rem; }

/* =============================================================
   13. FAQ
   ============================================================= */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.5rem; text-align: left; font-family: var(--display); font-weight: 600; font-size: 1.05rem;
}
.faq-q-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q-icon::before, .faq-q-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--gold);
  transition: transform .35s var(--ease-out);
}
.faq-q-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-q-icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-q-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease-out);
}
.faq-a p { padding-bottom: 1.5rem; color: var(--cream-2); max-width: 60ch; }
.faq-item.is-open .faq-a { max-height: 240px; }

/* =============================================================
   14. Contact
   ============================================================= */
.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; } }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .5rem; }
.field label { font-size: .82rem; color: var(--cream-3); }
.field input, .field textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: .95rem;
  transition: border-color .3s var(--ease-out);
}
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.form-status { font-size: .88rem; color: var(--gold); min-height: 1.2em; }
.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-info-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem;
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg-card);
}
.contact-info-card .service-icon { flex-shrink: 0; margin-bottom: 0; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: .3rem; }
.contact-info-card p, .contact-info-card a { color: var(--cream-3); font-size: .92rem; }
.contact-info-card a:hover { color: var(--gold); }

/* =============================================================
   15. Final CTA
   ============================================================= */
.final-cta {
  position: relative;
  border-radius: 26px;
  padding: 3.4rem 1.8rem;
  text-align: center;
  background: linear-gradient(160deg, var(--accent-2), var(--bg-2) 70%);
  border: 1px solid var(--line);
  overflow: clip;
}
@media (min-width: 720px) { .final-cta { padding: 5rem 3rem; } }
.final-cta h2 { max-width: 22ch; margin-inline: auto; }
.final-cta p { color: var(--cream-2); max-width: 40ch; margin: 1.2rem auto 2rem; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 3.5rem 2.5rem; }
.footer-top {
  display: grid; gap: 2.6rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.3fr repeat(3, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.3rem; margin-bottom: .8rem; }
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer-tagline { color: var(--cream-3); font-size: .92rem; max-width: 28ch; }
.footer-col h5 { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; color: var(--cream-2); font-size: .9rem; margin-bottom: .7rem; transition: color .3s var(--ease-out); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; color: var(--cream-3); font-size: .8rem;
}

/* =============================================================
   17. WhatsApp floating button
   ============================================================= */
.wa-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(75,122,92,0.6);
  transition: transform .35s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08) rotate(-4deg); }
.wa-float svg { width: 28px; height: 28px; }

/* =============================================================
   18. Marquee
   ============================================================= */
.marquee-wrap { overflow: clip; border-block: 1px solid var(--line); padding-block: 1.3rem; }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 32s linear infinite; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-duration: 60s; } }
.marquee-track span { font-family: var(--mono); font-size: .82rem; letter-spacing: .08em; color: var(--cream-3); white-space: nowrap; text-transform: uppercase; }
.marquee-track span em { color: var(--gold); font-family: var(--mono); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   19. Reduced-motion (only truly intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .hero-scroll-line { animation: none; opacity: .6; }
}

/* =============================================================
   20. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 2.6s forwards;
}
.splash img { width: 64px; height: 64px; border-radius: 16px; animation: splashPulse 1.1s ease-in-out infinite; }
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .5s var(--ease-out); }
@keyframes splashPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: .75; } }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
