/* =========================================================
   Solution Home - Landing Page
   Static HTML/CSS/JS. No build step required.
   Palette tomada del logo: negro, rojo y blanco.
   ========================================================= */

/* ---------- Base Tokens ---------- */
:root {
  --bg: #020304;
  --panel: #080b0f;
  --panel-soft: #111820;
  --panel-red: #d51713;
  --text: #fdfdfd;
  --muted: #cfd3d8;
  --muted-2: #87909a;
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(255,255,255,.26);
  --accent: #d51713;
  --accent-dark: #ad0101;
  --charcoal: #27313a;
  --radius: 28px;
  --header: 82px;
  --container: min(1180px, calc(100vw - 44px));
  --font-display: "Rajdhani", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(213,23,19,.22), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(39,49,58,.45), transparent 34rem),
    radial-gradient(circle at 70% 78%, rgba(213,23,19,.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .04;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,.35), rgba(255,255,255,0) 20%),
    repeating-radial-gradient(circle at 10% 10%, rgba(255,255,255,.45) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(213,23,19,.18), rgba(213,23,19,0) 68%);
  pointer-events: none;
  z-index: 0;
  opacity: .75;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1200;
  background: transparent;
}

.page-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #fff);
  box-shadow: 0 0 22px rgba(213,23,19,.8);
}

/* ---------- Layout ---------- */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  min-height: 100vh;
  padding: clamp(92px, 10vw, 150px) 0;
  display: flex;
  align-items: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(250px, 390px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.section-head h2,
.value h2,
.contact h2,
.statement-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .86;
  letter-spacing: -.035em;
}

.value h2,
.contact h2 {
  font-size: clamp(58px, 8.5vw, 126px);
}

.section-lead,
.big-copy,
.contact-copy {
  font-size: clamp(21px, 3vw, 42px);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 800;
}

.big-copy p,
.contact-copy p {
  margin: 0 0 22px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.stacked-label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(58px, 8vw, 120px);
  line-height: .78;
  letter-spacing: -.035em;
}

.stacked-label span {
  display: block;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  left: 50%;
  top: 18px;
  z-index: 1100;
  transform: translateX(-50%);
  width: min(1240px, calc(100vw - 30px));
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  padding: 12px 14px 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2,3,4,.72);
  backdrop-filter: blur(18px);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  background: rgba(2,3,4,.92);
  border-color: rgba(213,23,19,.38);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: min(150px, 46vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,.08);
}

.header-cta,
.btn,
.contact-link,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.header-cta {
  min-height: 45px;
  padding: 0 20px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 18px 40px rgba(213,23,19,.28);
}

.header-cta:hover {
  background: #fff;
  color: var(--bg);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 99px;
  transition: transform .25s ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  overflow: hidden;
  padding-top: calc(var(--header) + 90px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 43%, rgba(213,23,19,.22), transparent 24rem),
    linear-gradient(115deg, rgba(255,255,255,.08), transparent 32%),
    linear-gradient(180deg, transparent, rgba(2,3,4,.95));
  z-index: -3;
}

.tech-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 70% 42%, #000, transparent 68%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: center;
}

.hero-title {
  margin: 0;
  max-width: 920px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(60px, 8.6vw, 132px);
  line-height: .82;
  letter-spacing: -.045em;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero-title .word span {
  display: inline-block;
}

.hero-subtitle {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  font-size: 15px;
}

.btn-light {
  background: #fff;
  color: var(--bg);
  border-color: #fff;
}

.btn-light:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(213,23,19,.18);
  border-color: rgba(213,23,19,.7);
}

.hero-panel {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    radial-gradient(circle at 50% 20%, rgba(213,23,19,.26), transparent 20rem),
    rgba(8,11,15,.74);
  box-shadow: 0 34px 120px rgba(0,0,0,.44);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-panel::before {
  width: 190px;
  height: 190px;
  right: -55px;
  top: -55px;
  background: var(--accent);
  filter: blur(4px);
  opacity: .9;
}

.hero-panel::after {
  width: 280px;
  height: 280px;
  left: -140px;
  bottom: -140px;
  border: 44px solid rgba(255,255,255,.08);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(390px, 80%);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.4));
}

.hero-panel-footer {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel-footer span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(2,3,4,.58);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(12px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 7px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  animation: scrollDot 1.4s infinite ease-in-out;
}

@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: .4; }
  50% { transform: translate(-50%, 12px); opacity: 1; }
}

/* ---------- About / Mission ---------- */
.about {
  background: linear-gradient(180deg, rgba(2,3,4,.0), rgba(17,24,32,.62));
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.statement-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    var(--panel);
  overflow: hidden;
}

.statement-card-red {
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.22), transparent 20rem),
    linear-gradient(145deg, var(--accent), var(--accent-dark));
}

.statement-card span,
.value-list span,
.service-card span {
  color: rgba(255,255,255,.58);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.statement-card h2 {
  font-size: clamp(76px, 10vw, 154px);
}

.statement-card p {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 800;
}

.statement-card-red p,
.statement-card-red span {
  color: rgba(255,255,255,.86);
}

/* ---------- Categories + Carousels ---------- */
.categories {
  align-items: flex-start;
  padding-top: clamp(100px, 10vw, 150px);
}

.category-list {
  display: grid;
  gap: 26px;
}

.category-block {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.024)),
    rgba(8,11,15,.78);
  box-shadow: 0 20px 80px rgba(0,0,0,.23);
}

.category-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .86;
}

.category-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.category-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.category-top h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 70px);
  line-height: .9;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.carousel-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.solution-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(255,255,255,.09);
}

.solution-carousel::-webkit-scrollbar {
  height: 9px;
}

.solution-carousel::-webkit-scrollbar-track {
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}

.solution-carousel::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.solution-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at var(--x, 0%) var(--y, 0%), rgba(213,23,19,.28), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035)),
    #0c1117;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(213,23,19,.2);
  transition: transform .3s ease, opacity .3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(213,23,19,.7);
}

.solution-card:hover::before {
  transform: scale(1.35);
  opacity: .9;
}

.solution-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  font-size: 26px;
}

.solution-card h4 {
  position: relative;
  z-index: 1;
  margin: 26px 0 10px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.solution-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.solution-card strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(213,23,19,.17);
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- Value ---------- */
.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, .95fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.055);
}

.value-list h3 {
  margin: 12px 0 6px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: .95;
  text-transform: uppercase;
}

.value-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--accent);
  color: #fff;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

/* ---------- Contact / Footer ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.contact-link {
  min-height: 64px;
  padding: 0 26px;
  background: var(--accent);
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  box-shadow: 0 18px 46px rgba(213,23,19,.28);
}

.contact-link:hover {
  background: #fff;
  color: var(--bg);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  min-height: 52px;
  padding: 0 20px;
  background: #fff;
  color: var(--bg);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.floating-whatsapp span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(213,23,19,.15);
}

.floating-whatsapp:hover {
  background: var(--accent);
  color: #fff;
}

.floating-whatsapp:hover span::before {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.16);
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 800;
}

.site-footer img {
  width: min(220px, 48vw);
}

.site-footer a:hover {
  color: var(--text);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    left: 15px;
    right: 15px;
    top: 96px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(2,3,4,.96);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    font-size: 15px;
    background: rgba(255,255,255,.05);
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner,
  .grid-2,
  .section-head,
  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .statement-card {
    min-height: 390px;
  }

  .solution-carousel {
    grid-auto-columns: minmax(250px, 48%);
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .section {
    min-height: auto;
    padding: 84px 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: 130px;
  }

  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 64px;
    padding: 10px 10px 10px 16px;
    gap: 10px;
  }

  .brand-logo {
    width: 160px;
  }

  .header-cta {
    display: none;
  }

  .hero-title {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: 360px;
    border-radius: 30px;
  }

  .hero-logo {
    width: min(315px, 84%);
  }

  .scroll-cue {
    display: none;
  }

  .stacked-label {
    font-size: clamp(50px, 18vw, 78px);
  }

  .section-lead,
  .big-copy,
  .contact-copy {
    font-size: 22px;
  }

  .statement-card {
    min-height: 350px;
    border-radius: 30px;
  }

  .statement-card h2 {
    font-size: clamp(70px, 22vw, 110px);
  }

  .statement-card p {
    font-size: 21px;
  }

  .category-block {
    border-radius: 26px;
  }

  .category-top {
    align-items: start;
    flex-direction: column;
  }

  .carousel-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .solution-carousel {
    grid-auto-columns: minmax(238px, 86%);
  }

  .solution-card {
    min-height: 270px;
  }

  .value h2,
  .contact h2 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 86px;
  }
}

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