* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #383632;
  --primary-light: #5a5652;
  --accent: #ff5757;
  --accent-dark: #e04a4a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.10), 0 2px 4px -2px rgb(0 0 0 / 0.10);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.10), 0 4px 6px -4px rgb(0 0 0 / 0.10);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.10), 0 8px 10px -6px rgb(0 0 0 / 0.10);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.5;
  padding-bottom: 0;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 3rem;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.section-intro {
  max-width: 920px;
  margin-bottom: 2.5rem;
}

.section-intro h2 {
  max-width: 850px;
}

.section-intro p {
  max-width: 780px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.section-kicker,
.eyebrow,
.mini-kicker,
.panel-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.btn {
  align-items: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 0.5rem;
  isolation: isolate;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 0.875rem 1.75rem;
  position: relative;
  text-align: center;
  transition: var(--transition);
  white-space: normal;
  will-change: transform;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.42), transparent);
  transform: translateX(-140%) rotate(16deg);
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(430%) rotate(16deg);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn i {
  position: relative;
  transition: transform 0.25s ease;
  z-index: 1;
}

.btn:hover i {
  transform: translateX(2px) scale(1.08);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 34px rgb(255 87 87 / 0.32), var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 34px rgb(255 87 87 / 0.22);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgb(255 255 255 / 0.55);
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
  box-shadow: 0 18px 36px rgb(0 0 0 / 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgb(255 255 255 / 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.header-container {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.logo-container {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.logo-container img {
  display: block;
  height: 44px;
  max-width: min(292px, 58vw);
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--gray-700);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.site-nav a::after {
  background: var(--accent);
  border-radius: 3px;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: var(--transition);
  width: 0;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a:hover::after {
  width: 100%;
}

.hero {
  background:
    linear-gradient(100deg, rgb(255 255 255 / 0.96) 0%, rgb(255 255 255 / 0.88) 42%, rgb(56 54 50 / 0.30) 100%),
    url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 64px 0 58px;
  position: relative;
}

.hero::before {
  animation: drift-lines 18s linear infinite;
  background:
    repeating-linear-gradient(118deg, transparent 0 74px, rgb(255 87 87 / 0.10) 75px, transparent 78px),
    linear-gradient(90deg, transparent, rgb(255 87 87 / 0.08), transparent);
  content: "";
  inset: 0;
  opacity: 0.58;
  pointer-events: none;
  position: absolute;
  transform: translateX(-12%);
}

.hero::after {
  animation: hero-scan 7s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgb(255 87 87 / 0.18), transparent);
  bottom: -15%;
  content: "";
  left: -35%;
  pointer-events: none;
  position: absolute;
  top: -15%;
  transform: skewX(-16deg);
  width: 34%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
}

.hero-content {
  animation: hero-rise 0.9s ease both;
}

.hero-text,
.hero-content p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
}

.cta-group,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  min-width: 116px;
}

.stat-number {
  color: var(--accent);
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  min-width: 74px;
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin-top: 1.5rem;
}

.hero-badges li {
  background: rgb(255 255 255 / 0.82);
  border: 1px solid rgb(56 54 50 / 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  color: var(--gray-700);
  font-size: 0.88rem;
  padding: 0.72rem 0.9rem;
}

.hero-panel {
  animation: panel-float 7s ease-in-out infinite;
  background:
    linear-gradient(135deg, rgb(56 54 50 / 0.98) 0%, rgb(90 86 82 / 0.95) 100%),
    repeating-linear-gradient(0deg, rgb(255 255 255 / 0.07) 0 1px, transparent 1px 18px);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  overflow: hidden;
  padding: 1.6rem;
  position: relative;
}

.hero-panel::before {
  animation: panel-light 6.8s ease-in-out infinite;
  background:
    linear-gradient(120deg, transparent 0%, rgb(255 87 87 / 0.16) 44%, transparent 62%),
    repeating-linear-gradient(90deg, transparent 0 24px, rgb(255 255 255 / 0.045) 24px 25px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-40%);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel h2 {
  color: white;
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

.hero-panel h2::after {
  display: none;
}

.hero-panel p {
  color: rgb(255 255 255 / 0.72);
  margin-bottom: 0.75rem;
}

.hero-brand-lockup {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.brand-mark-wrap {
  align-items: center;
  display: inline-flex;
  height: 104px;
  justify-content: center;
  position: relative;
  width: 104px;
}

.brand-mark-wrap::before,
.brand-mark-wrap::after {
  animation: pulse-ring 2.8s ease-out infinite;
  border: 1px solid rgb(255 87 87 / 0.55);
  border-radius: 999px;
  content: "";
  inset: 0;
  position: absolute;
}

.brand-mark-wrap::after {
  animation-delay: 0.7s;
  border-color: rgb(255 255 255 / 0.28);
  inset: 14px;
}

.hero-logo-mark {
  animation: mark-float 4.8s ease-in-out infinite;
  filter: drop-shadow(0 16px 28px rgb(0 0 0 / 0.30));
  height: 86px;
  object-fit: contain;
  position: relative;
  width: 86px;
  z-index: 1;
}

.seremi-logo {
  background: rgb(255 255 255 / 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgb(0 0 0 / 0.22);
  height: auto;
  padding: 0.65rem;
  width: min(270px, 100%);
  max-height: 190px;
  object-fit: contain;
}

.panel-stat-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.85rem;
}

.panel-stat-grid article {
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  padding: 0.78rem;
}

.panel-stat-grid strong {
  display: block;
  margin-bottom: 0.35rem;
}

.panel-stat-grid span {
  color: rgb(255 255 255 / 0.68);
  font-size: 0.82rem;
}

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background: var(--gray-50);
}

.section-block {
  padding: 5rem 0;
}

.cards-grid,
.risk-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.risk-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.risk-card,
.service-card,
.timeline-step,
.faq-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
  transition: var(--transition);
}

.card:hover,
.risk-card:hover,
.service-card:hover,
.timeline-step:hover,
.faq-card:hover {
  border-color: rgb(255 87 87 / 0.45);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.card-icon,
.risk-icon,
.service-icon {
  align-items: center;
  background: rgb(255 87 87 / 0.10);
  border-radius: 8px;
  color: var(--accent);
  display: inline-flex;
  font-size: 1.45rem;
  height: 56px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 56px;
}

.card h3,
.risk-card h3,
.service-card h3,
.timeline-step h3,
.faq-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.card p,
.risk-card p,
.service-card p,
.timeline-step p,
.faq-card p,
.evidence-copy p,
.evidence-points {
  color: var(--gray-600);
  font-size: 0.925rem;
  line-height: 1.55;
}

.service-card ul {
  color: var(--gray-600);
  margin-top: 1rem;
  padding-left: 1.1rem;
}

.service-card li + li {
  margin-top: 0.4rem;
}

.service-marquee,
.client-marquee {
  overflow: hidden;
  padding: 0.75rem 0;
  position: relative;
  width: 100%;
}

.service-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.client-marquee::before {
  background: repeating-linear-gradient(90deg, transparent 0 88px, rgb(255 87 87 / 0.08) 88px 89px);
  content: "";
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.service-track,
.client-track {
  align-items: stretch;
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.service-track {
  animation: marquee-left 34s linear infinite;
}

.client-track {
  align-items: center;
  animation: marquee-right 34s linear infinite;
  position: relative;
  z-index: 1;
}

.service-marquee:hover .service-track,
.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.service-track .service-card {
  display: flex;
  flex: 0 0 310px;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 300px;
}

.client-logo-card {
  align-items: center;
  background: white;
  border: 1px solid rgb(56 54 50 / 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex: 0 0 230px;
  height: 124px;
  justify-content: center;
  padding: 1rem 1.25rem;
  transition: var(--transition);
}

.client-logo-card:hover {
  border-color: rgb(255 87 87 / 0.34);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.client-logo-card img {
  filter: saturate(1.12) contrast(1.08);
  max-height: 86px;
  max-width: 100%;
  object-fit: contain;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 64px 1fr;
}

.step-index {
  align-items: center;
  background: rgb(255 87 87 / 0.10);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-weight: 800;
  height: 56px;
  justify-content: center;
  width: 56px;
}

section.evidence-section {
  background: #ffffff;
}

.evidence-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.evidence-heading h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.evidence-visual {
  background: #ffffff;
  border: 1px solid rgb(56 54 50 / 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 1.4rem 0;
  position: relative;
}

.evidence-visual::before {
  display: none;
}

section.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, #2a2825 100%);
  color: white;
  text-align: left;
}

.cta-shell {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.cta-shell h2 {
  color: white;
  margin-bottom: 1rem;
  text-align: left;
}

.cta-shell p {
  color: rgb(255 255 255 / 0.72);
}

.cta-final .btn-secondary {
  border-color: rgb(255 255 255 / 0.64);
  color: white;
}

.cta-final .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

.cta-buttons {
  justify-content: flex-end;
}

footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr 1fr 1fr;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-mark-wrap {
  align-items: center;
  display: inline-flex;
  height: 112px;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  width: 112px;
}

.footer-mark-wrap::before {
  animation: pulse-ring 2.9s ease-out infinite;
  background: rgb(255 87 87 / 0.16);
  border-radius: 999px;
  box-shadow:
    0 0 28px rgb(255 87 87 / 0.44),
    0 0 68px rgb(255 87 87 / 0.28);
  content: "";
  inset: 5px;
  position: absolute;
}

.footer-brand-mark {
  animation: mark-float 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 32px rgb(255 87 87 / 0.35));
  height: 88px;
  object-fit: contain;
  position: relative;
  width: 88px;
  z-index: 1;
}

.footer-col p,
.footer-col a {
  color: rgb(255 255 255 / 0.72);
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-logo-strip {
  align-items: center;
  background: rgb(255 255 255 / 0.96);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgb(0 0 0 / 0.18);
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 0.8fr 1fr 1.35fr;
  justify-items: center;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
}

.footer-logo-strip img {
  display: block;
  max-height: 78px;
  max-width: 100%;
  object-fit: contain;
}

.footer-logo-strip img:first-child {
  max-height: 92px;
}

.footer-logo-strip img:last-child {
  max-height: 58px;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.12);
  color: rgb(255 255 255 / 0.55);
  font-size: 0.75rem;
  padding-top: 2rem;
  text-align: center;
}

.mobile-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card.is-visible:hover,
.risk-card.is-visible:hover,
.service-card.is-visible:hover,
.timeline-step.is-visible:hover,
.faq-card.is-visible:hover {
  transform: translateY(-6px);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift-lines {
  from {
    transform: translateX(-12%);
  }
  to {
    transform: translateX(12%);
  }
}

@keyframes hero-scan {
  0%,
  18% {
    left: -35%;
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  80%,
  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes panel-light {
  0%,
  100% {
    transform: translateX(-42%);
    opacity: 0.72;
  }
  50% {
    transform: translateX(18%);
    opacity: 1;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.72);
    opacity: 0.92;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes mark-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(-1.5deg);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .header-container {
    align-items: center;
  }

  .site-nav {
    gap: 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .evidence-layout,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .risk-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    min-height: 380px;
  }

  .cta-buttons {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-logo-strip {
    gap: 0.85rem;
    grid-template-columns: 0.72fr 1fr 1.25fr;
  }

  .footer-logo-strip img {
    max-height: 60px;
  }

  .footer-logo-strip img:first-child {
    max-height: 74px;
  }

  .footer-logo-strip img:last-child {
    max-height: 42px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 0;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0.75rem 1rem;
  }

  .site-nav {
    justify-content: center;
  }

  .hero {
    background:
      linear-gradient(180deg, rgb(255 255 255 / 0.96), rgb(255 255 255 / 0.88)),
      url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1000&q=80");
    background-position: center;
    background-size: cover;
    padding: 56px 0 64px;
  }

  .hero-content,
  .section-intro,
  .hero-panel,
  .hero-brand-lockup,
  .cta-shell {
    align-items: center;
    text-align: center;
  }

  .hero-content p,
  .section-intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group,
  .hero-stats,
  .hero-badges,
  .cta-buttons {
    justify-content: center;
  }

  .cards-grid,
  .risk-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-track .service-card {
    flex-basis: 260px;
    min-height: 320px;
  }

  .client-logo-card {
    flex-basis: 190px;
    height: 110px;
  }

  .client-logo-card img {
    max-height: 74px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-index,
  .footer-mark-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    max-width: 320px;
    width: 100%;
  }

  section,
  .section-block {
    padding: 3rem 0;
  }

  .mobile-bar {
    background: rgb(255 255 255 / 0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgb(56 54 50 / 0.08);
    bottom: 0;
    display: none;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 0;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 1200;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 5.75rem;
  }

  .mobile-bar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
