/* --- Reset & basic --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #222222;
  color: #ffffff;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}

/* --- Header --- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #131313;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.logo img {
  height: 40px;
  margin-right: 0.75rem;
}
.logo h1 {
  font-size: 1.75rem;
  font-weight: 700;
}
.logo span {
  color: #e7fe53;
}
.login-link {
  text-decoration: none;
  color: #E0E3E7;
  border: 1px solid #d1d5db;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.login-link:hover {
  background: #e7fe53;
  color: #000000;
}

/* --- Content Section --- */
.content-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 4rem;
  max-width: 1200px;
  margin: 3rem auto;
  background: #131313;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  gap: 2rem;
}
.content-section {
  flex: 1 1 400px;
  padding-right: 2rem;
}
.content-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
}
.content-section h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
}
.content-section .accent {
  color: #e7fe53;
}
.content-section p {
  margin-top: 1rem;
  color: #E0E3E7;
  font-size: 1.125rem;
  max-width: 90%;
}
.content-section a {
  color: #E0E3E7;
}
.content-section textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  font-size: 1rem;
  font-family: inherit;
}
.content-section textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Hero Section --- */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 4rem;
  max-width: 1200px;
  margin: 3rem auto;
  background: #131313;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  gap: 2rem;
}
.hero-content {
  flex: 1 1 400px;
  padding-right: 2rem;
}
.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
}
.hero-content .accent {
  color: #e7fe53;
}
.hero-content p {
  margin-top: 1rem;
  color: #E0E3E7;
  font-size: 1.125rem;
  max-width: 90%;
}
.hero-content p.coming-soon-note {
  color: #e7fe53;
}
.hero-content form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.hero-content input[type="email"],
.hero-content textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  font-size: 1rem;
  font-family: inherit;
}
.hero-content textarea {
  resize: vertical;
  min-height: 100px;
}
.hero-content button {
  align-self: flex-start;
  padding: 0.9rem 1.75rem;
  background: #e7fe53;
  color: #000000;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-content button:hover {
  background: #b91c1c;
}
.message {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.message.success {
  color: #e7fe53;
}
.message.error {
  color: #dc2626;
}
.hero-image {
  flex: 1 1 300px;
  text-align: center;
}
.hero-image img {
  max-width: 80%;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* --- Screenshots Section --- */
.screenshots {
  padding: 3rem 2rem;
  text-align: center;
  background: #131313;
  margin: 3rem auto;
  max-width: 1200px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.screenshots h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}
.screenshot-gallery img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.screenshot-gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* --- Benefits Section --- */
.benefits {
  display: grid;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.benefit {
  background: #131313;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.benefit h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #EEEEEE;
}
.benefit p {
  color: #E0E3E7;
  font-size: 1rem;
  max-width: 90%;
  margin: 0 auto;
}

/* --- Footer --- */
.site-footer {
  padding: 2rem;
  text-align: center;
  color: #6b7280;
  background: #131313;
  margin-top: 2rem;
}
.site-footer .socials {
  margin-bottom: 1rem;
}
.site-footer .socials a {
  margin: 0 0.75rem;
  font-size: 1.4rem;
  color: #6b7280;
  transition: color 0.3s, transform 0.3s;
}
.site-footer .socials a:hover {
  color: #e7fe53;
  transform: scale(1.1);
}
.footer-link {
  color: #6b7280;
  text-decoration: none;
  margin-left: 0.25rem;
}
.footer-link:hover {
  color: #e7fe53;
  text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1220px) {
  .hero {
    padding: 2rem 1.25rem;
    margin: 2rem 1rem;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-image img {
    max-width: 100%;
  }
  .screenshots {
    margin: 2rem 1rem;
  }
  .content-section {
    margin: 2rem 1rem;
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1.25rem;
    margin: 2rem 1rem;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-image img {
    max-width: 100%;
  }
  .screenshots {
    margin: 2rem 1rem;
  }
  .content-section {
    margin: 2rem 1rem;
  }
}

/* --- Store Buttons --- */
.store-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #131313;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s, opacity 0.3s;
}
.store-btn:hover {
  background: #111827;
}
.store-btn.disabled {
  opacity: 0.5;
  cursor: default;
}

