:root {
  --bg: #0d0f12;
  --bg-elevated: #161a1f;
  --bg-card: #1c2128;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --accent: #3fb950;
  --accent-hover: #56d364;
  --accent-muted: rgba(63, 185, 80, 0.15);
  --border: #30363d;
  --pro-gold: #d4a853;
  --pro-gold-muted: rgba(212, 168, 83, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(13, 15, 18, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }
}

.hero-content {
  animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--accent-muted);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background: var(--accent);
  color: var(--bg) !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}

.cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.cta-play {
  padding: 0;
  background: transparent !important;
}

.cta-play:hover {
  background: transparent !important;
  transform: translateY(-2px);
}

.cta-play img {
  display: block;
  height: 58px;
  width: auto;
}


/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.6s ease-out 0.15s both;
}

.phone-mockup {
  width: 280px;
  background: var(--bg-elevated);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 
    0 0 0 2px var(--border),
    0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.phone-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* Screenshots section */
.screenshots-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.screenshots-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: end;
}

@media (max-width: 900px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

.screenshot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  padding: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

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

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.screenshot-card span {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Features */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.features h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pro section */
.pro-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.pro-content {
  background: linear-gradient(135deg, var(--pro-gold-muted) 0%, rgba(212, 168, 83, 0.05) 100%);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.pro-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--pro-gold);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.pro-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pro-content ul {
  list-style: none;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.pro-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pro-content li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--pro-gold);
  font-weight: 700;
}

.pro-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cta-secondary {
  background: transparent !important;
  color: var(--accent) !important;
  border: 2px solid var(--accent);
}

.cta-secondary:hover {
  background: var(--accent-muted) !important;
}

/* Footer */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

/* Privacy page */
.privacy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.privacy-page .logo {
  position: absolute;
  top: 1rem;
  left: 2rem;
}

.privacy-page h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.privacy-page .updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.privacy-page h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-page p,
.privacy-page li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.privacy-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

.privacy-page a:hover {
  text-decoration: underline;
}

.privacy-page .contact-email {
  font-weight: 600;
  color: var(--text);
}

/* Contact page */
.contact-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.contact-page h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-cta {
  text-align: center;
}

.contact-cta p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* FAQ page */
.faq-page .faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.faq-page .faq-item:last-of-type {
  border-bottom: none;
}

.faq-page .faq-item h2 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.faq-back-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.faq-back-link:hover {
  color: var(--accent-hover);
}

