/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #131F24;
  color: #E8EAED;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== Brand Gradient ========== */
.brand-gradient {
  background: linear-gradient(90deg, #FF7F50, #E74C9E, #6A5ACD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-gradient-bg {
  background: linear-gradient(135deg, #FF7F50, #E74C9E, #6A5ACD);
}

/* ========== Container ========== */
.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Navbar ========== */
.navbar {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

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

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #fff;
}

/* ========== Hero ========== */
.hero {
  padding: 64px 0 48px;
  text-align: center;
}

.hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ========== Store Buttons ========== */
.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 14px;
  background: #1C2B33;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
}

.store-btn:hover {
  transform: translateY(-2px);
  background: #243640;
}

.store-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn-label {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.store-btn-name {
  font-size: 1rem;
  font-weight: 600;
}

/* ========== Features ========== */
.features {
  padding: 48px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: #1C2B33;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ========== Footer ========== */
.footer {
  margin-top: auto;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ========== Legal Pages ========== */
.legal {
  padding: 48px 0 64px;
  flex: 1;
}

.legal h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal .last-updated {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #fff;
}

.legal p,
.legal li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: #FF7F50;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: #E74C9E;
}

/* ========== Responsive ========== */
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0 36px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .navbar-links {
    gap: 16px;
  }

  .navbar-links a {
    font-size: 0.8125rem;
  }

  .legal h1 {
    font-size: 1.5rem;
  }
}
