/*
main blue: 79 175 249 #4faff9
darker: 30 88 151

*/


/* ===== Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: -0.011em;
}

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

/* ===== Size Utility Classes ===== */
.size-small { max-width: 200px !important; }
.size-medium { max-width: 400px !important; }
.size-large { max-width: 600px !important; }
.size-xlarge { max-width: 800px !important; }

/* Custom widths */
.width-25 { width: 25% !important; }
.width-50 { width: 50% !important; }
.width-75 { width: 75% !important; }
.width-100 { width: 100% !important; }

/* Aspect Ratio Classes */
.aspect-square { aspect-ratio: 1/1; object-fit: cover; }
.aspect-wide { aspect-ratio: 16/9; object-fit: cover; }
.aspect-ultra-wide { aspect-ratio: 21/9; object-fit: cover; }
.aspect-portrait { aspect-ratio: 9/16; object-fit: cover; }
.aspect-4-3 { aspect-ratio: 4/3; object-fit: cover; }
.aspect-vertical { aspect-ratio: 2/4; object-fit: cover; }

/* Object Fit Options */
.fit-cover { object-fit: cover; }
.fit-contain { object-fit: contain; }
.fit-fill { object-fit: fill; }

/* ===== Hero Section ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 3rem;
  background-color: #4faff9;/*#4faff9; #66a4ce*/
  color: #000;
  position: relative;
}

/*
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 0, 0, 0.3); 
  pointer-events: none; 
  z-index: 999;
  mix-blend-mode: multiply; 
}
*/

.hero-content {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.hero-image {
  flex: 0 1 auto;
  max-width: 400px;
}

.hero-image img {
  width: 100%;
  border-radius: 1rem;
  height: auto;
  object-fit: contain;
}

.logo {
  width: 320px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero p {
  margin-bottom: 2rem;
  opacity: 0.7;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}

.cta {
  background: #000;
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  display: inline-block;
  border: 1px solid #000;
  letter-spacing: -0.01em;
}

.cta:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Features Section ===== */
.features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: black; /* #4FAFF9 new light blue background */
  flex-wrap: wrap;
  color: #000;
}

.feature-item {
  flex: 0 1 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  border: none;
  box-shadow: none;
  transition: none; /* no hover or animation */
}





/* ===== Download Section ===== */
.download {
  background-color: #fff;
  color: #000;
  padding: 4rem 1rem;
}

.download h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

.button {
  background: #000;
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  border: 1px solid #000;
  letter-spacing: -0.01em;
}

.button:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button.secondary {
  background: transparent;
  color: #000;
  border: 1px solid #e0e0e0;
}

.button.secondary:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

/* ===== Info Section ===== */
.info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
  background-color: #0a0a0a;
  color: #fff;
  flex-wrap: wrap;
}

* Color variants for info section */
.info.dark {
  background-color: #0a0a0a;
  color: #fff;
}

.info.light {
  background-color: #fff;
  color: #000;
}

.info-content {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.info-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Heading color variants */
.info.dark .info-content h2 {
  color: #FFFFFF;
}

.info.light .info-content h2 {
  color: #000000;
}


.info-content p {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  opacity: 0.7;
  line-height: 1.6;
  font-weight: 400;
}

.info-video {
  flex: 1;
  max-width: 500px;
}

.info-video video {
  width: 100%;
  max-height: 300px;
  /*border-radius: 1rem;*/
  /*box-shadow: 0 0 30px rgba(255, 0, 85, 0.2);*/
}

.info-image img {
  width: 100%;
  max-height: 300px;
  /*border-radius: 1rem;*/
  /*box-shadow: 0 0 30px rgba(255, 0, 85, 0.2);*/
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .info {
    flex-direction: column;
    text-align: center;
  }

  .info-content {
    text-align: center;
  }
}


/* ===== Footer ===== */
footer {
  padding: 2rem 1rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ===== CRT Effect ===== */
.crt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.crt-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.35) 1px,
    transparent 1px,
    transparent 3px
  );
  animation: scanlines-move 8s linear infinite;
}

@keyframes scanlines-move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

.crt-flicker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0% {
    opacity: 0.08;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 0.08;
  }
}

/* Screen vignette effect */
.crt-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

/* Optional: Add screen curvature effect */
body {
  animation: screen-flicker 3s infinite;
}

@keyframes screen-flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.94;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* fade */
.hero, .download {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* ===== Top Logo ===== */
.top-logo {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-logo img {
  width: 50px;
  height: auto;
}

.top-logo span {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.02em;
}

/* Hide top logo on mobile */
@media (max-width: 768px) {
  .top-logo {
    display: none;
  }
}