@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #050505;
  --bg-color-soft: #0a0a0d;
  --text-main: #f5f5f7;
  --text-muted: #a1a1aa;
  
  /* Banana / Neon Yellow and Accent colors */
  --accent: #facc15;      /* bright yellow */
  --accent-glow: rgba(250, 204, 21, 0.4);
  --accent-hover: #eab308;
  --accent-dark: #854d0e;
  
  --secondary: #9333ea;   /* purple for AI feel */
  --secondary-glow: rgba(147, 51, 234, 0.3);

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Background Gradients */
.bg-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  z-index: -1;
  filter: blur(100px);
  opacity: 0.6;
}

.bg-glow-2 {
  position: absolute;
  top: 40%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 60%);
  z-index: -1;
  filter: blur(120px);
  opacity: 0.5;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(250, 204, 21, 0.5);
  background: linear-gradient(135deg, #fde047 0%, var(--accent) 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Sections General */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  text-align: center;
  position: relative;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transform: scale(1.05);
  animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-1%, 2%);
  }
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    var(--bg-color) 0%, 
    rgba(5, 5, 5, 0.4) 30%, 
    rgba(5, 5, 5, 0.6) 70%, 
    var(--bg-color) 100%);
  z-index: 2;
}

.relative { position: relative; }
.z-10 { z-index: 10; }

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.2);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Description Text Section */
.info-section {
  background: var(--bg-color-soft);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.info-block h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff;
}

.info-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

/* Features Block 2 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 32px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(250, 204, 21, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}

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

/* Mascot Card */
.mascot-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}

.mascot-card::before {
  display: none;
}

.floating-banana {
  max-width: 250px;
  width: 100%;
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(250, 204, 21, 0.4));
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Instruction Section */
.steps-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--glass-border);
}

.step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--bg-color);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
  z-index: 2;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
  padding-top: 10px;
}

.step p {
  color: var(--text-muted);
}

/* Prompt Demo Form */
.prompt-form {
  display: flex;
  gap: 15px;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 8px 8px 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.prompt-form:focus-within {
  border-color: rgba(250, 204, 21, 0.5);
  box-shadow: 0 10px 40px rgba(250, 204, 21, 0.15);
}

.prompt-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  min-width: 0; /* Prevents overflow in flex child on mobile */
}

.prompt-input::placeholder {
  color: #888;
}

.prompt-submit-btn {
  background: var(--accent);
  color: #111;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.prompt-submit-btn:hover {
  background: #fcd34d;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
}

@media (max-width: 600px) {
  .prompt-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 15px;
    background: rgba(30, 30, 30, 0.8);
  }
  
  .prompt-input {
    margin-bottom: 15px;
    padding: 10px 5px;
    text-align: center;
  }
  
  .prompt-submit-btn {
    width: 100%;
    padding: 15px;
  }
}

/* Instruction Section */
.cta-section {
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
  border: 1px solid var(--glass-border);
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  transition: var(--transition);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cta-review-card {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
  transition: var(--transition);
}

.cta-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.2);
  border-color: var(--accent) !important;
}

.stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.review-text {
  color: var(--text-main);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  color: #fff;
  font-size: 1rem;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Guarantees */
.guarantees-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--accent-glow);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.guarantees-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.guarantees-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
}

.guarantees-card p {
  color: var(--text-muted);
}

/* FAQ */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(250, 204, 21, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.faq-q {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px 24px;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-a {
  display: block;
}

/* Footer */
footer {
  background: var(--bg-color-soft);
  padding: 60px 0 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  max-width: 300px;
}

.footer-col.logo-col p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 0.9rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .hero-btns a {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--glass-border);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .cta-box {
    padding: 40px 20px;
  }
  
  .cta-box h2 {
    font-size: 2rem;
  }
}

/* Custom Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.capability-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 16px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-card:hover {
  background: rgba(250, 204, 21, 0.05);
  border-color: rgba(250, 204, 21, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.capability-icon {
  font-size: 28px;
  color: var(--accent);
  background: rgba(250, 204, 21, 0.1);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 8px;
}

.capability-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.capability-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(250, 204, 21, 0.3);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #111;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--glass-border);
}

.gallery-style {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(250, 204, 21, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.gallery-prompt {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.gallery-prompt strong {
  color: #fff;
  font-style: normal;
}

/* Scroll Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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