:root {
  --banana-yellow: #ffd60a;
  --light-bg: #0a0a0f;
  --dark-text: #ffffff;
  --subtle-text: #d0d0d0;
  --neon-blue: #00d9ff;
  --neon-pink: #ff006e;
  --neon-purple: #8b5cf6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--banana-yellow);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s;
  box-shadow: 0 0 20px var(--banana-yellow);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--banana-yellow);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
  opacity: 0.5;
}

/* Particle Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- Banana Rain Animation --- */
.banana-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.banana {
  position: absolute;
  top: -10%;
  font-size: 1.5rem;
  animation: fall linear infinite;
  opacity: 0.7;
}

@keyframes fall {
  to {
    transform: translateY(105vh) rotate(360deg);
  }
}

/* Stagger the animations for a more natural effect */
.banana:nth-child(1) {
  left: 10%;
  animation-duration: 15s;
  animation-delay: -2s;
}

.banana:nth-child(2) {
  left: 20%;
  animation-duration: 10s;
  animation-delay: -5s;
  font-size: 1rem;
}

.banana:nth-child(3) {
  left: 30%;
  animation-duration: 18s;
  animation-delay: -1s;
}

.banana:nth-child(4) {
  left: 40%;
  animation-duration: 12s;
  animation-delay: -7s;
  font-size: 1.2rem;
}

.banana:nth-child(5) {
  left: 50%;
  animation-duration: 16s;
  animation-delay: -3s;
}

.banana:nth-child(6) {
  left: 60%;
  animation-duration: 11s;
  animation-delay: -8s;
  font-size: 1rem;
}

.banana:nth-child(7) {
  left: 70%;
  animation-duration: 19s;
  animation-delay: -4s;
}

.banana:nth-child(8) {
  left: 80%;
  animation-duration: 13s;
  animation-delay: -6s;
  font-size: 1.2rem;
}

.banana:nth-child(9) {
  left: 90%;
  animation-duration: 17s;
  animation-delay: -2s;
}

.banana:nth-child(10) {
  left: 95%;
  animation-duration: 14s;
  animation-delay: -9s;
  font-size: 1rem;
}

.banana:nth-child(11) {
  left: 15%;
  animation-duration: 20s;
  animation-delay: -10s;
  font-size: 1.3rem;
}

.banana:nth-child(12) {
  left: 75%;
  animation-duration: 22s;
  animation-delay: -11s;
  font-size: 1.1rem;
}

/* --- End Banana Rain --- */

/* --- Floating Elements Animation --- */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.float-item {
  position: absolute;
  font-size: 2rem;
  animation: float-around linear infinite;
  opacity: 0.6;
  transition: transform 0.3s ease-out;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.float-item.money {
  font-size: 2.5rem;
  animation-name: float-money;
}

.float-item.coin {
  font-size: 2rem;
  animation-name: float-coin;
}

.float-item.banana-mini {
  font-size: 1.5rem;
  animation-name: float-banana-spin;
}

.float-item.star {
  font-size: 1.8rem;
  animation-name: float-twinkle;
}

.float-item.rocket {
  font-size: 2.2rem;
  animation-name: float-rocket;
}

.float-item.monkey,
.float-item.gorilla,
.float-item.minion,
.float-item.chimp,
.float-item.robot {
  font-size: 2.5rem;
  animation-name: float-bounce;
}

@keyframes float-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-30px) rotate(-10deg) scale(1.1);
  }
  50% {
    transform: translateY(-10px) rotate(10deg) scale(0.9);
  }
  75% {
    transform: translateY(-40px) rotate(-5deg) scale(1.05);
  }
}

@keyframes float-around {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(100px, -100px) rotate(90deg);
  }
  50% {
    transform: translate(200px, 50px) rotate(180deg);
  }
  75% {
    transform: translate(100px, 150px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes float-money {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-50px) rotate(180deg) scale(1.2);
  }
}

@keyframes float-coin {
  0%,
  100% {
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    transform: translateX(30px) rotateY(180deg);
  }
}

@keyframes float-banana-spin {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(-30px);
  }
  100% {
    transform: rotate(360deg) translateY(0);
  }
}

@keyframes float-twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes float-rocket {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  100% {
    transform: translateY(-100vh) rotate(-45deg);
  }
}

/* --- End Floating Elements --- */

/* Add a subtle noise texture for a more premium feel */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="5" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.05"/></svg>');
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
}

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(255, 214, 10, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(139, 92, 246, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(0, 217, 255, 0.2) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
  background-size: 200% 200%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

header {
  position: sticky;
  top: 1rem;
  max-width: 600px;
  margin: 1rem auto;
  padding: 1rem 2rem;
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 214, 10, 0.2);
  border-radius: 999px;
  z-index: 10;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

header:hover {
  border-color: rgba(255, 214, 10, 0.5);
  box-shadow:
    0 8px 32px rgba(255, 214, 10, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo h1 {
  font-size: 1.25rem;
  font-weight: 700;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 0 6rem 0;
  position: relative;
}

/* Badge */
.badge-container {
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 214, 10, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  border: 1px solid rgba(255, 214, 10, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
  0%,
  100% {
    border-color: rgba(255, 214, 10, 0.3);
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.2);
  }
  50% {
    border-color: rgba(255, 214, 10, 0.6);
    box-shadow: 0 0 40px rgba(255, 214, 10, 0.4);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .tagline {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--banana-yellow) 0%,
    #ffed4e 50%,
    var(--neon-purple) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.glitch {
  position: relative;
  color: var(--dark-text);
  animation: glitch-anim 5s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  color: var(--neon-blue);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
  color: var(--neon-pink);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

@keyframes glitch-anim {
  0%,
  100% {
    transform: translate(0);
  }
  20%,
  60% {
    transform: translate(-2px, 2px);
  }
  40%,
  80% {
    transform: translate(2px, -2px);
  }
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(0);
  }
  25% {
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-3px, 2px);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    transform: translate(3px, -2px);
  }
  75% {
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    transform: translate(-2px, 3px);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    transform: translate(0);
  }
  25% {
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translate(3px, -2px);
  }
  50% {
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(-3px, 2px);
  }
  75% {
    clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%);
    transform: translate(2px, -3px);
  }
  100% {
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    transform: translate(0);
  }
}

.hero-content .description {
  font-size: 1.3rem;
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(255, 214, 10, 0.3);
  backdrop-filter: blur(20px) saturate(180%);
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.download-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 214, 10, 0.4);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.download-button:hover::before {
  width: 300px;
  height: 300px;
}

.download-button:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(255, 214, 10, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 214, 10, 0.8);
}

.download-button svg {
  position: relative;
  z-index: 1;
}

.download-button.recommended {
  background: linear-gradient(
    135deg,
    rgba(255, 214, 10, 0.8),
    rgba(255, 237, 78, 0.6)
  );
  border: 2px solid var(--banana-yellow);
  color: #1a1a2e;
  animation:
    pulse-glow 2s ease-in-out infinite,
    rainbow-border 3s linear infinite;
  box-shadow:
    0 8px 30px rgba(255, 214, 10, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes rainbow-border {
  0%,
  100% {
    border-color: var(--banana-yellow);
  }
  33% {
    border-color: var(--neon-purple);
  }
  66% {
    border-color: var(--neon-blue);
  }
}

.download-button.windows {
  position: relative;
  overflow: hidden;
}

.download-button:hover {
  transform: scale(1.05) translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.download-button.windows {
  background-color: var(--banana-yellow);
  /* Main CTA is yellow */
  color: #1a1a1a;
  border-color: #f0c000;
  box-shadow: 0 4px 20px rgba(255, 214, 10, 0.4);
}

.download-button.windows:hover {
  box-shadow: 0 8px 30px rgba(255, 214, 10, 0.35);
}

/* --- Peeking Banana Animation --- */
.peeking-banana {
  position: absolute;
  bottom: -10px;
  right: 5px;
  font-size: 2rem;
  transform: translateY(100%) rotate(20deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.download-button.windows:hover .peeking-banana {
  transform: translateY(0) rotate(-15deg);
}

.download-button.macos,
.download-button.macos-silicon {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2),
    rgba(168, 85, 247, 0.2)
  );
  border: 1px solid rgba(99, 102, 241, 0.4);
}

.download-button.macos:hover,
.download-button.macos-silicon:hover {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.3),
    rgba(168, 85, 247, 0.3)
  );
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.download-button.linux {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2),
    rgba(5, 150, 105, 0.2)
  );
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.download-button.linux:hover {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.3),
    rgba(5, 150, 105, 0.3)
  );
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  perspective: 1000px;
}

.hero-image img {
  max-width: 100%;
  width: 350px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease-out;
  transform-style: preserve-3d;
  cursor: pointer;
}

.hero-image img:hover {
  animation-play-state: paused;
}

@keyframes float {
  0% {
    transform: translatey(0px) rotateZ(0deg);
  }

  50% {
    transform: translatey(-20px) rotateZ(5deg);
  }

  100% {
    transform: translatey(0px) rotateZ(0deg);
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, var(--dark-text), #4b5563);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features {
  padding: 4rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card-large {
  grid-column: span 2;
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: scale(1.03) translateY(-5px);
  background: rgba(255, 255, 255, 0.7);
}

/* Glowing edge effect on hover */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.5rem;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--banana-yellow), #a855f7) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: rgba(255, 214, 10, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  color: var(--banana-yellow);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--subtle-text);
}

.character-corner {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 2.5rem;
  z-index: 10;
  animation: float-bounce 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transform-origin: center;
  transition: transform 0.3s ease;
}

.feature-card:hover .character-corner {
  transform: scale(1.2) rotate(15deg);
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--subtle-text);
  font-size: 0.9rem;
}

.screenshots {
  padding: 4rem 0;
}

.screenshot-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.screenshot-bg-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 90%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.screenshot-gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.screenshot-image {
  display: none;
  max-width: 85%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.screenshot-image.active {
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 5;
  font-size: 1.5rem;
  color: var(--dark-text);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.personalities {
  padding: 4rem 0;
}

.personality-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.personality-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.personality-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.personality-card img {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.personality-card:hover img {
  transform: rotate(-10deg) scale(1.1);
}

.personality-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
}

/* --- Scroll Animations --- */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- End Scroll Animations --- */

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content .tagline {
    font-size: 3rem;
  }

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

  .feature-card-large {
    grid-column: span 1;
  }
}
