/* TheMindFactory — Visual Identity */

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

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

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

/* ===========================
   CUSTOM PROPERTIES
   =========================== */
:root {
  --bg-primary: #0A0A0F;
  --bg-secondary: #12121A;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-primary: #F0F0F5;
  --text-secondary: rgba(240, 240, 245, 0.7);
  --text-tertiary: rgba(240, 240, 245, 0.4);
  --cyan: #00D4FF;
  --violet: #7B2FBE;
  --magenta: #FF2D8A;
  --gradient-accent: linear-gradient(135deg, #00D4FF, #7B2FBE, #FF2D8A);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(24px);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-accent: 'Playfair Display', serif;
  --glow-cyan: 0 0 60px rgba(0, 212, 255, 0.15);
  --glow-magenta: 0 0 60px rgba(255, 45, 138, 0.15);
}

/* ===========================
   GLASSMORPHISM COLOR BLOBS
   =========================== */
.bg-glass {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-glass__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.10;
  animation: blobDrift 25s ease-in-out infinite alternate;
}

.bg-glass__blob--cyan {
  width: 900px;
  height: 900px;
  background: var(--cyan);
  top: -15%;
  left: -10%;
}

.bg-glass__blob--violet {
  width: 1000px;
  height: 1000px;
  background: var(--violet);
  top: 25%;
  right: -15%;
  animation-delay: -8s;
}

.bg-glass__blob--magenta {
  width: 800px;
  height: 800px;
  background: var(--magenta);
  bottom: -10%;
  left: 20%;
  animation-delay: -15s;
}

.bg-glass__blob--blue {
  width: 850px;
  height: 850px;
  background: #4169E1;
  bottom: -5%;
  right: -10%;
  animation-delay: -5s;
}

@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.08); }
  66%  { transform: translate(-25px, 20px) scale(0.92); }
  100% { transform: translate(15px, -15px) scale(1.03); }
}

/* ===========================
   TSPARTICLES BACKGROUND
   =========================== */
#tsparticles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ===========================
   BODY & TYPOGRAPHY
   =========================== */
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-display);
  line-height: 1.5;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

p {
  color: var(--text-secondary);
}

.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* Section header spacing */
.section-header {
  margin-bottom: 1rem;
}

.section-title {
  margin-top: 0.75rem;
}

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ===========================
   GRAIN TEXTURE OVERLAY
   =========================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===========================
   NAV (Glassmorphism)
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
}

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

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

.nav__logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__cta {
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav__cta-icon {
  display: none;
}

.nav__lang-toggle {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 0.35rem 0.75rem;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.nav__lang-active {
  color: var(--text-primary);
  font-weight: 700;
}

.nav__lang-sep {
  color: var(--text-tertiary);
  margin: 0 0.25rem;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* hero::after removed — atmospheric effect handled by .bg-atmosphere orbs */

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero__badge-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__logo-wrapper {
  margin: 0 auto 2rem;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
}

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

.hero__scroll-indicator {
  margin-top: 3rem;
}

.hero__scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin: 0 auto;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn--primary {
  background: var(--gradient-accent);
  color: #fff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

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

/* ===========================
   MARQUEE
   =========================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.marquee__track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee-scroll 30s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee__sep {
  color: var(--cyan);
  font-size: 0.5rem;
}

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

/* ===========================
   SERVICE CARDS (Glassmorphism)
   =========================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__number {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card__copy {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===========================
   MINDS
   =========================== */
.minds__layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.minds__canvas {
  display: block;
  width: 100%;
  height: 600px;
}

.minds__stages {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.minds__stage-card {
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--glass-bg);
  transition: border-color 0.3s;
}

.minds__stage-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.minds__stage-title {
  font-size: 1.125rem;
  margin: 0.5rem 0;
}

.minds__stage-copy {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.minds__catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

.minds__catalog-item {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
}

/* ===========================
   VERTICALS
   =========================== */
.verticals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.vertical-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--glass-bg);
  transition: border-color 0.3s, transform 0.3s;
}

.vertical-pill:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.vertical-pill__icon {
  font-size: 1.5rem;
}

.vertical-pill__label {
  font-size: 1rem;
}

/* ===========================
   PROCESS
   =========================== */
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
}

.process__step {
  flex: 1;
  text-align: center;
}

.step__icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.step__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.step__copy {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process__connector {
  width: 60px;
  height: 1px;
  background: var(--border-subtle);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ===========================
   CTA FINAL
   =========================== */
.cta-final {
  text-align: center;
  position: relative;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-final__content {
  position: relative;
  z-index: 1;
}

.cta-final__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 1rem auto 2rem;
  max-width: 500px;
}

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

.cta-final__email {
  margin-top: 2rem;
}

.cta-final__email a {
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.cta-final__email a:hover {
  color: var(--cyan);
}

/* --- Ambient Section Atmospherics --- */

/* Large radial glow behind services section (top-right, cyan) */
.services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services {
  position: relative;
  overflow: hidden;
}

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

/* Violet glow behind minds section (bottom-left) */
.minds::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.minds {
  position: relative;
  overflow: hidden;
}

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

/* Magenta glow behind verticals section (center) */
.verticals::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(236, 72, 153, 0.025) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.verticals {
  position: relative;
  overflow: hidden;
}

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

/* Cyan glow behind process section (bottom-right) */
.process::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.025) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.process {
  position: relative;
  overflow: hidden;
}

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

/* CTA-final already has ::before with gradient — add a subtle secondary glow */
.cta-final::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.cta-final > .container {
  position: relative;
  z-index: 1;
}

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

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__col {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.footer__col a {
  transition: color 0.3s;
}

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

/* ===========================
   RESPONSIVE — TABLET (768-1199px)
   =========================== */
@media (max-width: 1199px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .minds__layout {
    flex-direction: column;
  }

  .minds__canvas {
    width: 100%;
  }
}

/* ===========================
   RESPONSIVE — MOBILE (max-width: 767px)
   =========================== */
@media (max-width: 767px) {
  .nav__links {
    display: none;
  }

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

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

  .process__steps {
    flex-direction: column;
  }

  .process__connector {
    width: 1px;
    height: 40px;
    margin: 0 auto;
  }

  .footer__grid {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero__logo-wrapper {
    width: 220px;
    height: 220px;
  }

  .hero__content {
    padding: 1rem;
  }

  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .minds__canvas {
    height: 400px;
  }
}

/* ===========================
   HAMBURGER MENU
   =========================== */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger visible on mobile */
@media (max-width: 767px) {
  .nav {
    padding: 0.625rem 1rem;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__logo-text {
    font-size: 0.9rem;
  }

  .nav__lang-toggle {
    font-size: 0.625rem;
    padding: 0.2rem 0.5rem;
    border-color: var(--border-subtle);
    opacity: 0.7;
  }

  .nav__cta {
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__cta-text {
    display: none;
  }

  .nav__cta-icon {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-secondary);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 2rem;
    gap: 1rem;
    display: none;
  }

  .nav--open .nav__links {
    display: flex;
  }

  /* Hamburger animation when open */
  .nav--open .nav__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav--open .nav__hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav--open .nav__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ============================================
   PHASE 3: Animation States & Keyframes
   ============================================ */

/* Hero on-load timeline: elements start invisible, GSAP animates them in.
   Gated behind .js-gsap class so content remains visible if GSAP fails to load. */
.js-gsap .hero__badge,
.js-gsap .hero__logo-wrapper,
.js-gsap .hero__title,
.js-gsap .hero__subtitle,
.js-gsap .hero__ctas,
.js-gsap .hero__scroll-indicator {
  opacity: 0;
}

/* Logo float now handled by GSAP (WR-04) — CSS @keyframes removed to avoid
   transform conflicts and allow pausing when off-screen */

/* Scroll indicator pulse (ANIM-08) */
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(6px); }
}

.hero__scroll-dot {
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* Badge dot pulse glow (ANIM-09) */
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(0, 212, 255, 0.4); }
  50%      { box-shadow: 0 0 12px rgba(0, 212, 255, 0.8); }
}

.hero__badge-dot {
  animation: badge-pulse 2s ease-in-out infinite;
}

/* Minds stage card states (D-13) */
.minds__stage-card--active {
  opacity: 1;
  border-top: 2px solid transparent;
  border-image: linear-gradient(135deg, #00D4FF, #7B2FBE, #FF2D8A) 1;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.15);
  transition: opacity 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.minds__stage-card:not(.minds__stage-card--active) {
  opacity: 0.4;
  transition: opacity 0.4s;
}

/* --- SVG Icon System --- */
.icon {
  display: inline-block;
  vertical-align: middle;
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.minds__catalog-item .icon {
  color: #00D4FF;
  margin-right: 0.3em;
}

.vertical-pill__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vertical-pill__icon .icon {
  width: 1.4em;
  height: 1.4em;
  color: #00D4FF;
}

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__icon .icon {
  width: 1.5em;
  height: 1.5em;
  color: #00D4FF;
}

/* Reduced motion: disable all animations (D-22) */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .hero__scroll-dot { animation: none; }
  .hero__badge-dot { animation: none; }

  .hero__badge,
  .hero__logo-wrapper,
  .hero__title,
  .hero__subtitle,
  .hero__ctas,
  .hero__scroll-indicator {
    opacity: 1;
  }
}
