/* ---------------------------------------------------
   ROOT
--------------------------------------------------- */
:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #F9C900;
  --orange: #FF6600;

  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}


/* ---------------------------------------------------
   NAV
--------------------------------------------------- */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav img {
  height: 40px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s;
}

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


/* ---------------------------------------------------
   HAMBURGER MENU (MOBILE)
--------------------------------------------------- */
.hamburger {
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 3px;
}

/* MOBILE DROPDOWN */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.95);
  position: fixed;
  top: 70px;
  right: 0;
  left: 0;
  padding: 20px;
  z-index: 998;
  backdrop-filter: blur(10px);
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  padding: 14px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu.active {
  display: flex;
}


/* ---------------------------------------------------
   HERO
--------------------------------------------------- */
/* HERO 2-COLUMN */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 40px;
  padding-top: 10px;
  height: 100vh;
  background: radial-gradient(circle at top right, var(--yellow), transparent 60%);
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.macbook-img {
  width: 90%;
  max-width: 600px;
  user-select: none;
  pointer-events: none; /* prevents right-click menu when combined with JS */
}

/* MOBILE BREAKPOINT */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding-top: 160px;
  }

  .hero-right {
    margin-top: 40px;
  }

  .macbook-img {
    width: 100%;
    max-width: 480px;
  }
}


.hero h1 {
  font-family: Outfit, sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  max-width: 800px;
}

.hero p {
  margin-top: 20px;
  font-size: 20px;
  max-width: 550px;
  opacity: 0.9;
}

/* CTA buttons */
.cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 32px;
  font-size: 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-yellow {
  background: var(--yellow);
  color: #000;
}
.btn-yellow:hover {
  background: #ffd835;
}

.btn-outline {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: transparent;
}
.btn-outline:hover {
  background: var(--yellow);
  color: #000;
}


/* ---------------------------------------------------
   SECTION
--------------------------------------------------- */
.section {
  padding: 20px 40px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.section:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
  margin-top: 60px;
}

.section:last-of-type:after {
  display: none;
}


.section h2 {
  font-family: Outfit, sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.section p {
  max-width: 650px;
  font-size: 18px;
  opacity: 0.85;
}


/* ---------------------------------------------------
   FEATURES GRID
--------------------------------------------------- */
.cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  padding: 30px;
  background: #0f0f0f;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.2s;
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 15px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s ease;
  user-select: none;
  pointer-events: none;
}

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



.card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.card h3 {
  font-family: Outfit, sans-serif;
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 10px;
}


/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
/* FOOTER */
.site-footer {
  background: #0a0a0a;
  padding: 60px 40px 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.footer-col h4 {
  font-family: Outfit, sans-serif;
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 280px;
  opacity: 0.7;
  line-height: 1.5;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  opacity: 0.5;
  margin-top: 40px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}



/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 0 20px;
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .section {
    padding: 80px 20px;
  }
}



.getting-started-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}


.step h3 {
  font-family: Outfit;
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 10px;
}



.video-container {
  margin-top: 20px;
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.video-container iframe {
  width: 100%;
  height: 100%;
}


.support-boxes {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.support-card {
  padding: 30px;
  background: #0f0f0f;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}


.support-redirect-card {
  margin-top: 50px;
  padding: 30px;
  background: #0f0f0f;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 500px;
}



.support-email {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.support-email:hover {
  text-decoration: underline;
}



.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid var(--white);
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.scroll-down span {
  width: 4px;
  height: 10px;
  background: var(--white);
  border-radius: 4px;
  margin-top: 6px;
  animation: scrollAnim 1.4s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}



/* NAV DOWNLOAD BUTTON (YELLOW + GLOW) */
.nav-download-btn {
  background: var(--yellow);
  padding: 8px 18px;
  border-radius: 10px;
  color: #000 !important;
  font-weight: 700;
  border: 2px solid var(--yellow);
  transition: .25s ease;
  box-shadow: 0 0 12px rgba(249, 201, 0, 0.6); /* glow */
}

.nav-download-btn:hover {
  background: #ffda3c;
  border-color: #ffda3c;
  box-shadow: 0 0 18px rgba(249, 201, 0, 0.85);
  transform: translateY(-2px);
}

/* TEST */