:root {
    --bg:           #000000;
    --bg-card:      #0d0d0d;
    --bg-section:   #080808;
    --text:         #F0F4FF;
    --accent:       #FF4D94;
    --accent2:      #FFD700;
    --border:       rgba(240, 244, 255, 0.12);
    --border-hover: rgba(255, 77, 148, 0.4);
  
    --font-pixel: 'Press Start 2P', monospace;
    --font-body:  'Inter', sans-serif;
  
    --nav-h: 72px;
    --radius: 6px;
    --max-w: 1200px;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { text-decoration: none; color: inherit; }
  button { cursor: pointer; font-family: inherit; }
  
  .container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 48px;
  }
  .section {
    padding: 100px 0;
  }
  .section__heading {
    font-family: var(--font-pixel);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 56px;
  }
  .btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .btn--primary {
    background: var(--accent);
    color: var(--bg);
    border: none;
  }
  .btn--primary:hover {
    transform: translateY(-2px);
    color: var(--accent);
    background: var(--bg) ;
  }
  
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
  }
  .navbar__logo-img {
    height: 40px;
    width: auto;
    background: var(--border);
    min-width: 40px;
    border-radius: 4px;
  }
  .navbar__links {
    display: flex;
    gap: 36px;
  }
  .navbar__links a {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    opacity: 0.8;
    transition: opacity 0.15s;
  }
  .navbar__links a:hover { opacity: 1; }
  
  .navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
  }
  .navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.2s;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    padding: 24px 32px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu__link {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }
  
    .hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    background-image: url('images/hero.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    }

    .hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
    }
  .hero__title {
    font-family: var(--font-pixel);
    font-size: 72px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
  }
  .hero__tagline {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 24px;
  }
  .hero__body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 460px;
  }
  .hero__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .hero__grid-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  

  .features {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  .feature-card {
    padding: 0;
  }
  .feature-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .feature-card__body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    opacity: 0.85;
    line-height: 1.5;
  }
  .features__screenshot {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .features__screenshot img {
    width: 100%;
    min-height: 320px;
    background: #111;
    object-fit: cover;
  }
  .how-it-works {
    background: var(--bg);
  }
  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  .step {
    background: #1C212E;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .step:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 32px rgba(255,77,148,0.08);
  }
  .step__number {
    font-family: var(--font-pixel);
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1;
  }
  .step__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .step__body {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    opacity: 0.85;
    line-height: 1.5;
  }
  .how-it-works__screenshot {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .how-it-works__screenshot img {
    width: 100%;
    min-height: 360px;
    background: #111;
    object-fit: cover;
  }
  
  .reviews {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .reviews__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
  .review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    transition: border-color 0.2s;
  }
  .review-card:hover {
    border-color: var(--border-hover);
  }
  .review-card__quote {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    opacity: 0.85;
    line-height: 1.6;
    font-style: italic;
  }
  .review-card__author {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--accent);
    text-align: right;
  }
  .faq {
    background-image: url('images/faq.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block; 
    padding: 100px 0;
    width: 100%;
  }
  .faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto; 
    background: none;
    border: none;
  }
  .faq__item {
    background-color: #1C212E;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }
  .faq__item:last-child { border-bottom: none; }
  .faq__item--open .faq__answer { display: block; }
  
  .faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 24px 28px;
    background: transparent;
    border: none;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    gap: 16px;
    transition: background 0.15s;
  }
  .faq__question:hover {
    background: rgba(255,77,148,0.06);
  }
  .faq__icon {
    color: var(--accent);
    font-size: 22px;
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
  }
  .faq__answer {
    display: none;
    padding: 0 28px 24px;
    background: var(--bg-card);
    background: transparent;
  }
  .faq__answer p {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
  }
  .footer {
    padding: 40px 48px;
    border-top: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer__links a {
    font-size: 18px;
    color: #00E5C0;
    transition: opacity 0.15s;
  }
  .footer__links a:hover { opacity: 1; }
  .footer__copy {
    font-size: 12px;
    margin-top: 20px;
    color: #00E5C0;
  }
  
  @media (max-width: 960px) {
    .container { padding: 0 32px; }
    .navbar { padding: 0 32px; }
    .navbar__links { display: none; }
    .navbar__hamburger { display: flex; }
  
    .hero {
      grid-template-columns: 1fr;
      padding: calc(var(--nav-h) + 40px) 32px 60px;
      text-align: center;
      gap: 40px;
    }
    .hero__body { max-width: 100%; }
    .hero__visual { align-items: center; }
    .hero__grid-card { max-width: 320px; }
    .hero__stats, .hero__slots { max-width: 320px; }
  
    .features__grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
  
    .section__heading { font-size: 32px; }
  }
  
  @media (max-width: 540px) {
    .container { padding: 0 20px; }
    .navbar { padding: 0 20px; }
    .hero { 
      background-image: url('images/mobilehome.png'); 
      background-size: cover;
      background-position: center top; 
      background-repeat: no-repeat;
      min-height: 195vw; 
      width: 100%;
      display: flex;
      align-items: flex-start;
      padding: 80px 0 30px 0; 
      position: relative;
    }
    
    .hero__container {
      display: flex;
      width: 100%;
    }
    
    .hero__content {
      display: flex;
      flex-direction: column;
      align-items: left;    
      text-align: left;
      width: 100%;
      position: relative;
    }
    
    .hero__title {
      font-family: var(--font-pixel);
      font-size: 48px;
      line-height: 1.2;
      margin-top: 20px;
      margin-bottom: 16px;
    }
    
    .hero__tagline {
      font-size: 23px;
      margin-bottom: 24px;
    }
    
    .hero__body {
      font-size: 16px;
      max-width: 340px;
      line-height: 1.5;
      opacity: 0.85;
      margin-bottom: 0; 
    }
    
    .hero__content .btn--primary {
      position: relative;
      bottom: auto;
      left: auto;
      transform: none;
      margin-top: 105vw; 
      width: 100%;        
      max-width: 240px;   
      margin-left: 50px;
    }
    .btn--primary {
      align-items: center;
      text-align: center;
    }

.features__grid {
  grid-template-columns: 1fr; 
  gap: 20px; 
  margin-bottom: 24px; 
}

.features__screenshot img {
  width: 100%;       
  height: auto;      
  display: block;    
  object-fit: contain; 
  min-height: 0 !important; 
  background: transparent !important; 
}

.feature-card__body {
  margin-bottom: 0px;
}
.how-it-works__screenshot img {
  width: 100%;       
  height: auto;      
  display: block;    
  object-fit: contain; 
  min-height: 0 !important; 
  background: transparent !important; 
}
.reviews__grid {
  display: flex;
  grid-template-columns: none; 
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 10px 24px 20px 24px;
  margin: 0 -24px;
  gap: 16px;
}
.reviews__grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 85%; 
  scroll-snap-align: start; 
}
    .section { padding: 64px 0; }
    .section__heading { font-size: 24px; margin-bottom: 36px; }
    .footer { padding: 32px 20px; }
    .footer__links { flex-direction: column; gap: 12px; }
  }