/* OddDuck Syndicate — Dark tech / cyber minimal */
:root {
  --bg: #000000;
  --text: #FFFFFF;
  --accent: #00FF9F;
  --accent-alt: #7A5CFF;
  --muted: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.12);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: min(92vw, 1140px);
  --section-pad: clamp(3.5rem, 9vw, 6rem);
  --header-height: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-height);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.site-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

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

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--border);
  }

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

  .site-nav a {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border);
  }

  .site-header {
    position: relative;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 255, 159, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(122, 92, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
  will-change: transform;
}

.hero-inner {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-logo {
  display: block;
  margin: 0 auto 1.5rem;
  width: 360px;
  max-width: 90vw;
  height: auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.hero-value {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text);
  margin: 0 0 0.75rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.45;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-hint {
  margin: 2rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-scroll-hint a {
  color: var(--muted);
  text-decoration: none;
}

.hero-scroll-hint a:hover {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 255, 159, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-block {
  width: 100%;
}

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

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  text-align: center;
}

/* About */
.about-text {
  max-width: 56ch;
  margin: 0 auto 1rem;
  color: var(--muted);
  text-align: center;
  font-size: 1.1rem;
}

.about-text:last-of-type {
  margin-bottom: 2rem;
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Section description */
.section-desc {
  max-width: 52ch;
  margin: 0 auto 2rem;
  color: var(--muted);
  text-align: center;
  font-size: 1.05rem;
}

.link-accent {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.link-accent:hover {
  text-decoration: underline;
}

/* Process */
.process {
  background: rgba(255, 255, 255, 0.02);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.process-step {
  text-align: center;
  padding: 1.25rem;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg);
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Technologies */
.tech {
  background: rgba(255, 255, 255, 0.02);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.tech-group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.tech-group h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.tech-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tags li {
  padding: 0.35rem 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  border-color: rgba(0, 255, 159, 0.25);
  box-shadow: 0 0 20px rgba(0, 255, 159, 0.06);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(0, 255, 159, 0.3);
  box-shadow: 0 0 24px rgba(0, 255, 159, 0.08);
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Portfolio */
.portfolio {
  background: rgba(255, 255, 255, 0.02);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.portfolio-card:hover {
  border-color: rgba(0, 255, 159, 0.3);
  box-shadow: 0 0 24px rgba(0, 255, 159, 0.08);
  transform: translateY(-2px);
}

.portfolio-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.portfolio-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.portfolio-tags {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.portfolio-link {
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.portfolio-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* Engagement models */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.engagement-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.engagement-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.engagement-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.engagement-card .engagement-meta {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.9;
}

/* Leadership preview */
.leadership {
  background: rgba(255, 255, 255, 0.02);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.leadership-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.leadership-card .role-avatar {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.2), rgba(122, 92, 255, 0.2));
  border: 1px solid var(--border);
}

.leadership-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.25rem;
  color: var(--text);
}

.leadership-card .role-title {
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.leadership-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.leadership-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Footer — multi-column */
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
}

.footer-bottom .footer-copy {
  margin: 0;
}

.footer-bottom .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}

.testimonial-card p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}

.testimonial-card cite {
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0.85;
  font-style: normal;
}

/* Payment */
.payment {
  background: rgba(255, 255, 255, 0.02);
}

.payment-desc {
  text-align: center;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.payment-form {
  max-width: 360px;
  margin: 0 auto;
}

.payment-page .payment-form--full {
  max-width: 28rem;
  margin: 2rem auto 0;
}

.payment-intro {
  margin-bottom: 0.5rem;
}

.payment-intro ul {
  margin: 0 0 1rem;
}

.payment-row .req {
  color: var(--accent);
  font-weight: 600;
}

.payment-row .optional {
  color: var(--muted);
  font-weight: 400;
}

.payment-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  resize: vertical;
  min-height: 5rem;
}

.payment-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.15);
}

.payment-row input[type="text"],
.payment-row input[type="email"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.payment-row {
  margin-bottom: 1rem;
}

.payment-row label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.payment-row input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  -moz-appearance: textfield;
}

.payment-row input::-webkit-outer-spin-button,
.payment-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.payment-row input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.15);
}

.payment-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.payment-form .btn {
  margin-top: 0.25rem;
}

/* Contact */
.contact-block {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.contact-block p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-block a {
  color: var(--accent);
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer .container:not(.footer-inner) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner button {
  padding: 0.6rem 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-banner button:hover {
  opacity: 0.9;
}

/* Policy pages */
.page {
  min-height: 100vh;
  padding: var(--section-pad) 0;
}

.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.page-header a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
}

.page-header a:hover {
  text-decoration: underline;
}

.page-content {
  max-width: 720px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.page-content p,
.page-content ul {
  color: var(--muted);
  margin: 0 0 1rem;
}

.page-content ul {
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.35rem;
}

.page-content a:not(.link-accent) {
  color: var(--accent);
}

.page-content a:not(.link-accent):hover {
  text-decoration: underline;
}

.page-content--wide {
  max-width: 48rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Case studies listing */
.work-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.work-card {
  display: block;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.work-card:hover {
  border-color: rgba(0, 255, 159, 0.3);
  box-shadow: 0 0 24px rgba(0, 255, 159, 0.06);
}

.work-card h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.work-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.work-card .work-tags {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.9;
}

/* Insights */
.insights-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.insights-list li {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.page-content .insights-list a {
  text-decoration: none;
  color: var(--text);
}

.page-content .insights-list a:hover h2 {
  color: var(--accent);
}

.insights-list h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  transition: color 0.2s;
}

.insights-list .meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.case-meta {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.case-meta strong {
  color: var(--text);
  font-weight: 600;
}

/* AOS overrides */
[data-aos] {
  pointer-events: auto;
}
