/* =========================================
   AMEO — Cinematic Visual System
   style.css
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #020202;
  color: white;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* =========================================
   Animated Background Glow
========================================= */

body::before {
  content: "";
  position: fixed;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(
    circle,
    rgba(93,225,255,0.08),
    transparent 70%
  );

  top: -400px;
  left: -300px;

  z-index: -2;

  animation: ambientGlow 18s infinite alternate ease-in-out;
}

@keyframes ambientGlow {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  100% {
    transform: translate(200px, 100px) scale(1.2);
  }
}

/* =========================================
   Memory Canvas
========================================= */

#memoryCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

/* =========================================
   Floating Particles
========================================= */

.particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  bottom: -10px;

  background: rgba(93,225,255,0.7);

  border-radius: 50%;

  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  from {
    transform: translateY(0px);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  to {
    transform: translateY(-120vh);
    opacity: 0;
  }
}

/* =========================================
   Navbar
========================================= */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 24px 60px;

  z-index: 100;

  backdrop-filter: blur(18px);

  background: rgba(0,0,0,0.28);

  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.logo {
  font-size: 24px;
  letter-spacing: 12px;
  font-weight: 200;

  transition: 0.3s;
}

.logo.glitch {
  transform: skew(-5deg);
  opacity: 0.7;
  text-shadow:
    2px 0 rgba(93,225,255,0.8),
    -2px 0 rgba(255,0,120,0.8);
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #bcbcbc;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

nav a:hover {
  color: #5de1ff;
}

/* =========================================
   Hero Section
========================================= */

.hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.02);

  transition: transform 0.2s ease-out;

  animation: heroBreath 10s infinite alternate ease-in-out;
}

@keyframes heroBreath {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

.overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.75)
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 760px;

  padding: 140px 80px;

  animation: fadeUp 1.8s ease;
}

.eyebrow {
  color: #5de1ff;

  text-transform: uppercase;

  letter-spacing: 5px;

  margin-bottom: 24px;

  font-size: 12px;
}

.hero h1 {
  font-size: 140px;

  font-weight: 200;

  letter-spacing: 22px;

  margin-bottom: 20px;

  line-height: 1;
}

.hero h2 {
  font-size: 36px;

  font-weight: 300;

  line-height: 1.4;

  margin-bottom: 30px;
}

.description {
  color: #cfcfcf;

  line-height: 1.9;

  font-size: 18px;

  max-width: 600px;

  margin-bottom: 45px;
}

.button {
  display: inline-block;

  padding: 18px 34px;

  border-radius: 60px;

  text-decoration: none;

  background: white;

  color: black;

  font-weight: 500;

  transition: 0.35s;
}

.button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 0 40px rgba(255,255,255,0.18);
}

/* =========================================
   Sections
========================================= */

.section {
  padding: 160px 60px;

  position: relative;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 900px;
}

.section h3 {
  font-size: 58px;

  font-weight: 200;

  line-height: 1.3;

  margin-bottom: 40px;
}

.section p {
  color: #bcbcbc;

  line-height: 1.9;

  font-size: 18px;
}

/* =========================================
   Reveal Animation
========================================= */

.reveal,
.card,
.image-text,
.manifesto,
.waitlist-form {
  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.reveal.active,
.card.active,
.image-text.active,
.manifesto.active,
.waitlist-form.active {
  opacity: 1;
  transform: translateY(0px);
}

/* =========================================
   Cards
========================================= */

.cards {
  margin-top: 90px;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 30px;
}

.card {
  padding: 40px;

  border-radius: 32px;

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(10px);

  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);

  border-color: rgba(93,225,255,0.3);

  box-shadow:
    0 0 40px rgba(93,225,255,0.08);
}

.card h4 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
}

/* =========================================
   Image Sections
========================================= */

.image-section {
  position: relative;

  overflow: hidden;
}

.full-image {
  width: 100%;

  display: block;

  transition: transform 8s ease;
}

.image-section:hover .full-image {
  transform: scale(1.05);
}

.image-text {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  max-width: 520px;

  padding: 45px;

  background:
    rgba(0,0,0,0.38);

  backdrop-filter: blur(18px);

  border-radius: 32px;

  border:
    1px solid rgba(255,255,255,0.06);
}

.left {
  left: 60px;
}

.right {
  right: 60px;
}

/* =========================================
   Manifesto
========================================= */

.manifesto {
  text-align: center;

  background:
    linear-gradient(
      to bottom,
      #040404,
      #080808
    );
}

/* =========================================
   Beta Form
========================================= */

.beta {
  background: #050505;
}

.waitlist-form {
  margin-top: 60px;

  display: flex;
  flex-direction: column;

  gap: 22px;
}

.waitlist-form input,
.waitlist-form textarea {
  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 22px;

  padding: 24px;

  color: white;

  font-size: 16px;

  backdrop-filter: blur(12px);

  transition: 0.3s;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  outline: none;

  border-color:
    rgba(93,225,255,0.5);

  box-shadow:
    0 0 25px rgba(93,225,255,0.08);
}

.waitlist-form textarea {
  min-height: 160px;
}

.waitlist-form button {
  padding: 24px;

  border: none;

  border-radius: 60px;

  background: white;

  color: black;

  font-size: 18px;

  cursor: pointer;

  transition: 0.35s;
}

.waitlist-form button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 0 30px rgba(255,255,255,0.2);
}

/* =========================================
   Footer
========================================= */

footer {
  padding: 80px;

  text-align: center;

  color: #666;

  border-top:
    1px solid rgba(255,255,255,0.05);
}

/* =========================================
   Animations
========================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* =========================================
   Mobile
========================================= */

@media(max-width: 900px) {

  .navbar {
    padding: 20px;
  }

  nav {
    display: none;
  }

  .hero-content {
    padding: 120px 30px;
  }

  .hero h1 {
    font-size: 72px;
    letter-spacing: 10px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .section {
    padding: 120px 25px;
  }

  .section h3 {
    font-size: 40px;
  }

  .image-text {
    position: relative;

    top: auto;
    left: auto;
    right: auto;

    transform: none;

    margin: 20px;
  }

  .left,
  .right {
    left: auto;
    right: auto;
  }
/* =========================================
   MOBILE OPTIMIZATION — AMEO
   PEGAR AL FINAL DE style.css
========================================= */

@media (max-width: 768px) {

  /* =========================
     NAVBAR
  ========================= */

  .navbar {
    padding: 18px 20px;
  }

  .logo {
    font-size: 18px;
    letter-spacing: 6px;
  }

  nav {
    display: none;
  }

  /* =========================
     HERO
  ========================= */

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 120px 24px 80px 24px;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 0.95;
    letter-spacing: 8px;
    margin-bottom: 24px;
  }

  .hero h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 24px;
  }

  .description {
    font-size: 16px;
    line-height: 1.8;
  }

  .button {
    width: 100%;
    text-align: center;
    padding: 18px;
    font-size: 16px;
  }

  /* =========================
     SECTIONS
  ========================= */

  .section {
    padding: 100px 22px;
  }

  .section h3 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  .section p {
    font-size: 16px;
    line-height: 1.9;
  }

  /* =========================
     CARDS
  ========================= */

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }

  .card {
    padding: 28px;
    border-radius: 24px;
  }

  .card h4 {
    font-size: 22px;
  }

  /* =========================
     IMAGE SECTIONS
  ========================= */

  .image-section {
    overflow: hidden;
  }

  .full-image {
    width: 100%;
    min-height: 70vh;
    object-fit: cover;
  }

  .image-text {
    position: relative;

    top: auto;
    left: auto;
    right: auto;

    transform: none;

    width: calc(100% - 32px);

    margin: -80px auto 40px auto;

    padding: 28px;

    border-radius: 24px;

    z-index: 5;
  }

  .image-text h3 {
    font-size: 28px;
  }

  /* =========================
     FORM
  ========================= */

  .waitlist-form {
    gap: 16px;
    margin-top: 40px;
  }

  .waitlist-form input,
  .waitlist-form textarea {
    padding: 18px;
    font-size: 16px;
    border-radius: 18px;
  }

  .waitlist-form textarea {
    min-height: 120px;
  }

  .waitlist-form button {
    padding: 18px;
    font-size: 16px;
  }

  /* =========================
     FOOTER
  ========================= */

  footer {
    padding: 50px 20px;
    font-size: 13px;
    line-height: 1.7;
  }

  /* =========================
     PARTICLES
  ========================= */

  .particle {
    opacity: 0.4;
  }

  /* =========================
     HERO IMAGE
  ========================= */

  .bg-image {
    object-position: center;
  }

}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width: 420px) 

  .hero h1 {
    font-size: 44px;
    letter-spacing: 5px;
  }

  .hero h2 {
    font-size: 21px;
  }

  .section h3 {
    font-size: 28px;
  }

  .description {
    font-size: 15px;
  }

