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

:root {
  --accent: #FF6347;
  --accent-hover: #e55a3e;
  --bg: #0d0d0d;
  --bg-card: #161616;
  --text: #f0f0f0;
  --text-dim: #888;
  --text-dimmer: #555;
  --max-width: 960px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav {
  padding: 20px 0;
  border-bottom: 1px solid #222;
}

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

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.nav-logo span {
  color: var(--accent);
}

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

.nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 0 60px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #FF6347, #FF8C00, #FFD700, #32CD32, #1E90FF, #9370DB);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero .tagline {
  font-size: 20px;
  color: var(--text-dim);
  margin-bottom: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero .no-bs {
  font-size: 14px;
  color: var(--text-dimmer);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 48px;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 12px 24px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.store-btn:hover {
  border-color: var(--accent);
  background: #1f1f1f;
  text-decoration: none;
}

.store-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-btn .store-label {
  text-align: left;
}

.store-btn .store-label small {
  display: block;
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1;
}

.store-btn .store-label strong {
  font-size: 15px;
  line-height: 1.3;
}

/* Screenshot */
.hero-screenshot {
  max-width: 280px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 99, 71, 0.15), 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-screenshot img {
  width: 100%;
  display: block;
}

/* Features */
.features {
  padding: 80px 0;
  border-top: 1px solid #1a1a1a;
}

.features h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.features .subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 28px 24px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  border-top: 1px solid #1a1a1a;
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}

.steps {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid #222;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Pricing */
.pricing {
  padding: 80px 0;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.pricing h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing .subtitle {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 40px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  margin: 0 auto;
}

.price-card .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
}

.price-card .price-note {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
  margin-bottom: 24px;
}

.price-includes {
  list-style: none;
  text-align: left;
}

.price-includes li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-dim);
  border-bottom: 1px solid #222;
}

.price-includes li:last-child {
  border-bottom: none;
}

.price-includes li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
  margin-right: 12px;
}

/* Footer */
footer {
  border-top: 1px solid #1a1a1a;
  padding: 40px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  font-size: 13px;
  color: var(--text-dimmer);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links a:hover {
  color: var(--text);
}

/* Legal pages */
.legal {
  padding: 60px 0 80px;
  max-width: 700px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal p, .legal li {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.legal a {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }

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

  .hero .tagline {
    font-size: 17px;
  }

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

  .features h2,
  .how-it-works h2,
  .pricing h2 {
    font-size: 28px;
  }

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

  .store-btn {
    width: 260px;
    justify-content: center;
  }

  footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 1px solid #333;
  padding: 16px 24px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9999;
  font-size: 14px;
  color: var(--text-dim);
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner .cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner button {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid #333;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cookie-banner button:hover {
  background: #222;
}

.cookie-banner .cookie-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
}

.cookie-banner .cookie-accept:hover {
  background: var(--accent-hover);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.lang-current {
  color: var(--text-dim) !important;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 8px;
  border: 1px solid #333;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.lang-current:hover {
  color: var(--text) !important;
  border-color: var(--accent);
  text-decoration: none !important;
}

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 6px 0;
  min-width: 130px;
  list-style: none;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.lang-switcher:hover .lang-dropdown {
  display: block;
}

.lang-dropdown li {
  padding: 0;
}

.lang-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 14px !important;
  color: var(--text-dim) !important;
  transition: background 0.15s, color 0.15s;
}

.lang-dropdown a:hover {
  background: #222;
  color: var(--text) !important;
  text-decoration: none !important;
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
