/* ============================================================
   KENEFIED — Portfolio Styles
   Dark · Purple (#A855F7) · Cyan (#06B6D4) · Space Grotesk
   ============================================================ */

/* ─── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
}

section {
  position: relative;
}

.featured-product,
.selected-work,
.journey,
.exploring,
.about-section,
.contact-section {
  max-width: 1600px;
  margin: 0 auto;
}


/* ─── SKIP LINK (a11y) ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: #A855F7;
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}


/* ─── REVEAL ANIMATION SYSTEM ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children > *.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease,
              padding 0.3s ease, backdrop-filter 0.4s ease;
  z-index: 1000;
}

.navbar--scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;

    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.logo img {
    width: 38px;
    height: 38px;

    object-fit: contain;

    transition: transform .3s ease;
}

.logo:hover img {
    transform: rotate(8deg) scale(1.05);
}

.logo span {
    display: block;
}.logo {
    display: flex;
    align-items: center;
    gap: .75rem;

    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.logo img {
    width: 38px;
    height: 38px;

    object-fit: contain;

    transition: transform .3s ease;
}

.logo:hover img {
    transform: rotate(8deg) scale(1.05);
}

.logo span {
    display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #A855F7;
}

.resume-btn {
  color: #999;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 500;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.resume-btn:hover {
  border-color: #A855F7;
  color: #fff;
}


/* ─── HAMBURGER ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ─── MOBILE MENU OVERLAY ───────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.3s ease;
}

.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu-link:hover {
  color: #A855F7;
}

.mobile-menu-cv {
  font-size: 1.2rem;
  color: #A855F7;
  margin-top: 1rem;
  padding: 0.7rem 2rem;
  border: 1px solid #A855F7;
  border-radius: 999px;
}


/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 4rem;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.15) 60%,
    transparent 80%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content .eyebrow       { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
.hero-content h1              { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both; }
.hero-content .hero-subtitle  { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both; }
.hero-content .identity-strip { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both; }
.hero-content .hero-buttons   { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both; }

.eyebrow {
  color: #A855F7;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin-top: 2rem;
  font-size: 1.3rem;
  max-width: 550px;
  color: #aaa;
  line-height: 1.7;
}

.identity-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
  margin-bottom: 2.25rem;
}

.identity-strip span {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #9ca3af;
  font-size: 0.85rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.identity-strip span:hover {
  border-color: rgba(168, 85, 247, 0.4);
  color: #c4b5fd;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-buttons a {
  text-decoration: none;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.hero-buttons a:first-child {
  background: #fff;
  color: #000;
}

.hero-buttons a:first-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15),
              0 0 60px rgba(168, 85, 247, 0.12);
}

.hero-buttons a:last-child {
  border: 1px solid #333;
  color: #fff;
}

.hero-buttons a:last-child:hover {
  transform: translateY(-3px);
  border-color: #A855F7;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.15);
}


/* ─── INTRO TRANSITION ──────────────────────────────────────── */
.intro-transition {
  padding: 6rem 4rem;
  text-align: center;
}

.intro-transition p {
  max-width: 900px;
  margin: 0 auto;
  color: #9ca3af;
  font-size: 1.45rem;
  line-height: 1.8;
}


/* ─── SECTION SHARED ────────────────────────────────────────── */
.section-label {
  color: #A855F7;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 500;
}


/* ─── FEATURED PRODUCT ──────────────────────────────────────── */
.featured-product {
  padding: 8rem 4rem 10rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-product h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.product-description {
  max-width: 800px;
  color: #9ca3af;
  font-size: 1.25rem;
  line-height: 1.8;
}

.jobertrust-quote {
  margin-top: 4rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  max-width: 900px;
  line-height: 1.25;
  background: linear-gradient(135deg, #fff 40%, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-showcase {
  padding: 1px;
  margin-top: 5rem;
  border-radius: 24px;
  background: linear-gradient(90deg, #7C3AED, #06B6D4, #7C3AED);
  background-size: 300% 300%;
  animation: borderFlow 8s linear infinite;
}

@keyframes borderFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.project-showcase img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.product-meta {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-meta > div {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.015);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.product-meta > div:hover {
  transform: translateY(-6px);
  border-color: #A855F7;
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.1);
}

.product-meta span {
  color: #666;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-meta h4 {
  margin-top: 0.8rem;
  font-weight: 600;
}


/* ─── SELECTED WORK ─────────────────────────────────────────── */
.selected-work {
  padding: 8rem 4rem 10rem;
}

.selected-work h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.work-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

a.work-card {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2.25rem;
  background: rgba(255, 255, 255, 0.015);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

a.work-card:hover {
  border-color: #A855F7;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(168, 85, 247, 0.08);
}

.work-card > span:first-child {
  color: #666;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.work-card h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.work-card p {
  color: #9ca3af;
  line-height: 1.7;
  flex: 1;
}

.card-link-hint {
  display: inline-block;
  margin-top: 1.25rem;
  color: #A855F7;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: gap 0.3s ease;
}

a.work-card:hover .card-link-hint {
  color: #c4b5fd;
}


/* ─── JOURNEY / TIMELINE ────────────────────────────────────── */
.journey {
  padding: 8rem 4rem 10rem;
}

.journey h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-top: 0.5rem;
  margin-bottom: 4rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

.timeline-item {
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 2px solid rgba(168, 85, 247, 0.4);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 0 20px 20px 0;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.timeline-item:hover {
  border-left-color: #A855F7;
  background: rgba(168, 85, 247, 0.04);
}

.timeline-item span {
  color: #A855F7;
  font-size: 0.82rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.timeline-item h3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.timeline-item p {
  color: #9ca3af;
  line-height: 1.8;
}


/* ─── EXPLORING / TAGS ──────────────────────────────────────── */
.exploring {
  padding: 8rem 4rem 10rem;
}

.exploring h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.explore-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
}

.explore-tags span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  color: #9ca3af;
  font-size: 0.95rem;
  transition: border-color 0.35s ease, color 0.35s ease,
              background 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.explore-tags span:hover {
  border-color: #A855F7;
  color: #fff;
  background: rgba(168, 85, 247, 0.08);
  transform: translateY(-2px);
}


/* ─── ABOUT ─────────────────────────────────────────────────── */
.about-section {
  padding: 8rem 4rem 10rem;
}

.about-section h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-layout img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s ease;
}

.about-layout img:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

.about-content p {
  color: #9ca3af;
  font-size: 1.15rem;
  line-height: 1.9;
}


/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-section {
  padding: 8rem 4rem 10rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-section > h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
}

.contact-section > p {
  color: #9ca3af;
  max-width: 700px;
  margin-bottom: 4rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Form + info side by side */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  color: #9ca3af;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #A855F7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-error {
  color: #f87171;
  font-size: 0.82rem;
}

.form-submit {
  padding: 0.95rem 2rem;
  background: #A855F7;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: #9333ea;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.25);
}

.form-submit:active {
  transform: translateY(0);
}

/* Success / error alerts */
.form-messages {
  margin-bottom: 2rem;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.alert--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.alert--error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
}

/* Contact info side */
.contact-info .contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info .contact-grid div {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.015);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.contact-info .contact-grid div:hover {
  transform: translateY(-4px);
  border-color: #A855F7;
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.08);
}

.contact-info .contact-grid span {
  color: #666;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info .contact-grid h4 {
  margin-top: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.social-links {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.social-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #A855F7;
}


/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 4rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.footer h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.footer p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #A855F7;
}

.footer-copy {
  color: #444;
  font-size: 0.85rem;
}


/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links,
  .resume-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 7rem 2rem 4rem;
    min-height: 100svh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons a {
    text-align: center;
  }

  .featured-product,
  .selected-work,
  .journey,
  .exploring,
  .about-section,
  .contact-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .work-grid,
  .product-meta {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-layout img {
    max-width: 280px;
  }

  .featured-product h2,
  .jobertrust-quote {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .intro-transition {
    padding: 4rem 2rem;
  }

  .intro-transition p {
    font-size: 1.15rem;
  }
}


/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .stagger-children > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .hero-subtitle,
  .hero-content .identity-strip,
  .hero-content .hero-buttons {
    animation: none;
  }

  #heroCanvas {
    display: none;
  }
}
