/* ============================================
   CSS Variables
   ============================================ */

:root {
  --primary: #00aeef;
  --primary-dark: #008ec4;
  --dark: #0a0a0a;
  --darker: #050505;
  --card-bg: rgba(20, 20, 20, 0.9);
  --secondary: #ffffff;
  --light: rgba(255, 255, 255, 0.75);
  --gray: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 1100px;
  --border-radius: 12px;
  --transition: all 0.25s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.45);
}

/* ============================================
   Reset
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--secondary);
  background-color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #fff;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--secondary);
}

p {
  color: var(--light);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary);
}

.section-title span {
  color: var(--primary);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.85rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn::after {
  content: none !important;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--secondary);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  height: 64px;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(5, 5, 5, 0.98);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo::after {
  content: none;
}

.logo span {
  color: var(--primary);
}

.logo:hover {
  color: var(--secondary);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.nav-link::after {
  content: none;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(0, 174, 239, 0.06);
}

.nav-link.btn {
  background: var(--primary);
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  font-size: 0.88rem;
}

.nav-link.btn:hover {
  background: var(--primary-dark);
  color: white;
}

.nav-link-back {
  color: var(--gray);
  font-size: 0.85rem;
}

.nav-link-back:hover {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   Hero / Description Section
   ============================================ */

.ano-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 4rem;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.93) 0%, rgba(0, 30, 50, 0.78) 100%),
    url('images/image_bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.ano-hero-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.ano-hero-content {
  flex: 1;
  max-width: 480px;
}

.hero-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.25);
  border-radius: 30px;
  padding: 0.35rem 1rem 0.35rem 0.45rem;
  margin-bottom: 1.8rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-product-badge img {
  height: 28px;
  width: auto;
  display: block;
}

.ano-hero h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ano-hero-screenshot {
  flex: 1.8;
  max-width: 680px;
}

.ano-hero-screenshot img {
  width: 100%;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ============================================
   Walkthrough Section
   ============================================ */

.walkthrough-entries {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.walkthrough-entry {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 2rem 2.5rem;
}

.walkthrough-entry h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.walkthrough-entry p {
  color: var(--light);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.walkthrough-entry p:last-child {
  margin-bottom: 0;
}

.walkthrough-img {
  margin-top: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  max-width: 100%;
  height: auto;
  display: block;
}

.walkthrough-img-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.walkthrough-img-row .walkthrough-img {
  flex: 1 1 200px;
  margin-top: 0;
}

/* ============================================
   Download / Contribute Section
   ============================================ */

.download-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.download-content p {
  color: var(--light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.85rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  white-space: nowrap;
  text-decoration: none;
}

.download-btn::after {
  content: none !important;
}

.download-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.donate-title {
  font-size: 1.5rem;
  color: var(--secondary);
  margin: 2.5rem 0 0.75rem;
}

.donate-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.donate-card {
  flex: 1 1 160px;
  max-width: 190px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.donate-card:hover {
  border-color: rgba(0, 174, 239, 0.3);
}

.donate-label {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.donate-amount {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1rem;
}

.donate-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(0, 174, 239, 0.4);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.donate-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ============================================
   CTA Section
   ============================================ */

#callToActionSection {
  text-align: center;
  padding: 3rem 2rem;
  clear: both;
}

#callToActionSection p {
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 0;
  font-family: 'Space Grotesk', sans-serif;
}

#callToActionSection a {
  color: var(--primary);
}

#callToActionSection a:hover {
  color: white;
}

/* ============================================
   Footer
   ============================================ */

footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-policy-card {
  padding: 1rem;
}

.footer-policy-title {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-policy-content {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 300;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ============================================
   Responsive — 992px
   ============================================ */

@media (max-width: 992px) {
  .ano-hero h1 {
    font-size: 2.8rem;
  }

  .ano-hero-layout {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .ano-hero-content {
    max-width: 100%;
  }

  .hero-product-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .ano-hero-screenshot {
    max-width: 100%;
    width: 100%;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

/* ============================================
   Responsive — 768px
   ============================================ */

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: -100%;
    flex-direction: column;
    align-items: flex-start;
    background: var(--darker);
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 64px);
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
    gap: 0;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
    margin: 0.4rem 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-item-back {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  .ano-hero {
    background-attachment: scroll;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .ano-hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .walkthrough-entry {
    padding: 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.9rem;
  }
}

/* ============================================
   Responsive — 576px
   ============================================ */

@media (max-width: 576px) {
  .container {
    padding: 0 1.2rem;
  }

  .ano-hero h1 {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.88rem;
  }

  .donate-grid {
    flex-direction: column;
    align-items: center;
  }

  .donate-card {
    max-width: 280px;
    width: 100%;
  }

  .section-title {
    font-size: 1.6rem;
  }
}