/* Arieno — Cinematic Editorial */

:root {
  --bg: #080808;
  --bg-soft: #0e0e10;
  --surface: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.05);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-subtle: #71717a;
  --accent: #8b9cf6;
  --accent-dim: rgba(139, 156, 246, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: min(1200px, 100% - 3rem);
  --section-pad: clamp(3.5rem, 6vw, 6rem);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.011em;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-width: 0;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 1px solid var(--accent); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

.label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(139, 156, 246, 0.06), transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, var(--bg) 40%, #060606 100%);
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: drift 20s var(--ease) infinite alternate;
}

.ambient__glow--1 {
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  top: -15%; right: -10%;
  background: rgba(255, 255, 255, 0.02);
}

.ambient__glow--2 {
  width: 40vw; height: 40vw; max-width: 480px; max-height: 480px;
  bottom: 10%; left: -15%;
  background: rgba(139, 156, 246, 0.04);
  animation-delay: -10s;
}

.ambient__shape {
  position: absolute;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
}

.ambient__shape--1 {
  width: min(500px, 90vw); height: min(500px, 90vw);
  top: 15%; right: -8%;
  opacity: 0.3;
}

.ambient__shape--2 {
  width: min(200px, 40vw); height: min(200px, 40vw);
  bottom: 30%; left: 5%;
  opacity: 0.2;
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 140px;
  mix-blend-mode: overlay;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(30px, -20px); }
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.header.is-scrolled {
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.7; }
.logo img { height: 18px; width: auto; }
.logo__text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
  white-space: nowrap;
}

.nav {
  display: none;
  position: relative;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav__pill {
  position: absolute;
  top: 0.375rem;
  left: 0;
  height: calc(100% - 0.75rem);
  width: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 30px rgba(0, 0, 0, 0.18);
  transform: translate3d(0, 0, 0);
  transform-origin: left center;
  transition:
    transform 0.42s var(--ease-out),
    width 0.42s var(--ease-out),
    opacity 0.2s var(--ease);
  will-change: transform, width;
  pointer-events: none;
  opacity: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease);
  position: relative;
  z-index: 1;
}

.nav__link::after {
  content: none;
}

.nav__link:hover,
.nav__link.is-active { color: var(--text); }

.header__end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__cta {
  display: none;
  flex-shrink: 0;
  padding: 0.65rem 1.1rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-btn span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0; top: 60px;
  z-index: 99;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border-soft);
  overflow-y: auto;
}

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

.mobile-nav__link {
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s;
}

.mobile-nav__link:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  min-height: 42px;
  max-width: 100%;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    opacity 0.25s;
}

.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn--fill {
  background: var(--text);
  color: var(--bg);
}

.btn--fill:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}

.btn__arrow {
  transition: transform 0.35s var(--ease);
}

.btn--fill:hover .btn__arrow { transform: translate(2px, -2px); }

.btn--wide { width: 100%; }

.btn__loader {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(8,8,8,0.15);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

.btn.is-loading .btn__text { visibility: hidden; position: absolute; }
.btn.is-loading .btn__loader { display: inline-block; }
.btn.is-loading { position: relative; pointer-events: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Hero — layout in components.css */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.hero__line:nth-child(1) { animation: rise 1.1s var(--ease) 0.2s forwards; }
.hero__line:nth-child(2) { animation: rise 1.1s var(--ease) 0.35s forwards; color: var(--text-muted); }

.hero__footer {
  opacity: 0;
  animation: rise 1s var(--ease) 0.55s forwards;
  display: flex;
  justify-content: flex-start;
}

.hero__mark {
  position: absolute;
  bottom: -0.12em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 22rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  max-width: 100vw;
  overflow: hidden;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--bg) 100%);
  pointer-events: none;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Services Cinema */
.cinema {
  position: relative;
}

.cinema__track {
  height: 280vh;
}

.cinema__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: clamp(6.5rem, 16vh, 10rem);
}

.cinema__layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  padding-block: 0 1.5rem;
}

.scene__copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
}

.scene__copy .cinema__label {
  margin-bottom: 0.25rem;
}

.scene__title {
  margin-bottom: 0;
}

.cinema__progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: auto;
  background: none;
  overflow: visible;
}

.cinema__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transform-origin: left;
  transition: width 0.12s linear;
}

.cinema__stage {
  position: relative;
  min-height: 0;
  height: 100%;
}

.scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.98);
  transition: none;
  will-change: opacity, transform;
}

.scene.is-active {
  visibility: visible;
}

.scene__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-height: min(40vh, 340px);
  margin-inline: auto;
  width: 100%;
  max-width: 400px;
}

.scene__visual:has(.connect__pipeline--showcase) {
  aspect-ratio: auto;
  max-height: min(52vh, 460px);
  align-items: flex-start;
  padding-block: 0.25rem;
}

.scene__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0;
}

.scene__desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 38ch;
}

.scene__subtitle {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  max-width: 38ch;
}

/* Sections */
.section { padding-block: var(--section-pad); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.section-head--row {
  display: grid;
  gap: 2rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-head__aside {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 28ch;
  align-self: end;
}

.section-head .label { margin-bottom: 1.25rem; }

.process-cinema {
  position: relative;
}

.process-cinema__track {
  height: 200vh;
}

.process-cinema__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.process-cinema__wrap {
  position: relative;
}

.results.section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.faq.section,
.contact.section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

/* Results */
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

.results__item {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.4s var(--ease);
}

.results__item:hover { background: var(--bg-soft); }

.results__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.results__label {
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

/* FAQ */
.faq__layout {
  display: grid;
  gap: 2rem;
}

.faq__item { border-bottom: 1px solid var(--border-soft); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.25s;
}

.faq__q:hover { color: var(--text-muted); }

.faq__icon {
  flex-shrink: 0;
  width: 16px; height: 16px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--text-subtle);
  transition: transform 0.35s var(--ease);
}

.faq__icon::before { width: 16px; height: 1px; top: 7.5px; left: 0; }
.faq__icon::after { width: 1px; height: 16px; top: 0; left: 7.5px; }

.faq__item.is-open .faq__icon::after { transform: rotate(90deg); opacity: 0; }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq__a p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 52ch;
}

/* Contact */
.contact__layout {
  display: grid;
  gap: 4rem;
}

.contact__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__details p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact__details a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

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

.contact__chat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.contact__chat-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.contact__key {
  display: inline-block;
  min-width: 4.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.5rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(139, 156, 246, 0.4);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.field input.is-invalid,
.field textarea.is-invalid { border-color: rgba(248, 113, 113, 0.5); }

.field__error {
  display: block;
  min-height: 1rem;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #fca5a5;
}

.field textarea { min-height: 120px; resize: vertical; max-height: 280px; }

.form-row {
  display: grid;
  gap: 1.25rem;
}

.form-status {
  padding: 0.875rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
}

.form-status--success {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
}

.form-status--error {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: #fca5a5;
}

/* Footer */
.footer {
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
  border-top: 1px solid var(--border-soft);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__nav a {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  transition: color 0.2s;
}

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

.footer__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__social {
  display: inline-flex;
  color: var(--text-subtle);
  transition: color 0.2s;
}

.footer__social:hover { color: var(--text); }

.footer__social-icon {
  width: 1rem;
  height: 1rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Responsive */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .section-head--row { grid-template-columns: 1fr 1fr; align-items: end; }
}

@media (min-width: 768px) {
  .cinema__layout {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    padding-block: 0 1.25rem;
  }
  .cinema__stage {
    grid-row: 1;
  }
  .cinema__progress {
    grid-row: 2;
  }
  .scene {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-top: clamp(3.5rem, 10vh, 6rem);
  }
  .scene__visual {
    max-height: min(38vh, 320px);
  }
  .scene__copy { align-self: start; padding-top: 0.5rem; }
  .faq__layout { grid-template-columns: 1fr 1.4fr; gap: 4rem; }
  .contact__layout { grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer__nav { margin-inline: auto; }
}

@media (min-width: 1024px) {
  .header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }
  .logo {
    justify-self: start;
  }
  .nav {
    justify-self: center;
  }
  .header__end {
    justify-self: end;
  }
  .header__cta { display: inline-flex; }
  .nav { display: flex; }
  .menu-btn { display: none; }
  .cinema__track { height: 320vh; }
  .cinema__sticky { padding-top: clamp(7rem, 18vh, 11rem); }
  .scene { padding-top: clamp(4rem, 12vh, 7rem); }
}

@media (max-width: 1023px) {
  .header.is-scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: min(1200px, calc(100% - clamp(2.5rem, 7vw, 3.5rem)));
  }

  .cinema__sticky {
    padding-top: 4.25rem;
  }

  .cinema__layout {
    gap: 0.75rem;
    padding-block: 0 1rem;
  }

  .cinema__track {
    height: 267vh;
  }

  .scene {
    gap: 1.25rem;
    align-items: start;
    padding-top: 0.75rem;
  }

  .scene__visual {
    max-height: min(36vh, 260px);
    min-height: 200px;
    width: 100%;
    max-width: 280px;
  }

  .scene__copy {
    max-width: none;
  }

  .scene__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero__footer .btn,
  .service-hero .btn {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-self: flex-start;
    padding: 0.65rem 1.15rem;
    font-size: 0.75rem;
    min-height: 38px;
  }

  .header__cta {
    display: none !important;
  }
}

@media (max-width: 639px) {
  .hero__mark {
    font-size: clamp(4rem, 42vw, 6rem);
  }
  .results__grid { grid-template-columns: 1fr; }
  .results__item { border-bottom: 1px solid var(--border-soft); }
}

@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;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__line, .hero__footer { opacity: 1; transform: none; animation: none; }
  .nav__pill {
    transition: none;
  }
}
