:root {
  --bg: #0b1220;
  --bg-alt: #0d1628;
  --surface: #111a2e;
  --surface-light: #1c273d;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #38bdf8;
  --radius: 12px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  background: var(--bg);
  color: var(--text);
}

/* NAV */
.nav-container { border-bottom: 1px solid #1e293b; }
.nav {
  max-width: 1200px;
  margin: auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}
.nav-links a {
  margin-left: 1.5rem;
  color: var(--muted);
  transition: 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* MOBILE NAV BUTTON */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
}
.cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.hero-image {
  margin-top: 3rem;
  width: 100%;
  max-width: 760px;
}

/* BUTTONS */
.btn {
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid #1f2937;
  color: var(--text);
}
.btn-primary {
  background: var(--accent);
  border-color: transparent;
  color: #00131a;
}
.btn-outline {
  background: transparent;
  border-color: #334155;
}

/* LAYOUT */
.section { padding: 4.5rem 2rem; }
.section-alt { background: var(--bg-alt); }
.container {
  max-width: 1100px;
  margin: auto;
}
.narrow { max-width: 700px; margin: auto; }
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.grid-3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid-2 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* CARD */
.card {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid #1e293b;
}

/* FORMS */
label {
  display: block;
  margin: 1rem 0 .4rem;
  color: var(--muted);
}
input, textarea {
  width: 100%;
  padding: .85rem;
  border-radius: var(--radius);
  border: 1px solid #334155;
  background: #0b1020;
  color: var(--text);
}
textarea { min-height: 120px; }

/* FAQ */
.faq-item {
  background: var(--surface-light);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.faq-item:hover {
  background-color: var(--accent);
  cursor: pointer;
}

/* FOOTER */
.footer {
  border-top: 1px solid #1e293b;
  padding: 2rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  color: var(--accent);
}

.footer-left a {
  color: var(--muted);
}

.footer-right {
  text-align: right;
  line-height: 1.4;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  font-size: 24px;
  color: #555;
  transition: 0.2s ease;
}

.social-links a:hover {
  color: var(--accent); /* or your theme color */
}



/* PRIVACY PAGE */
.privacy-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  line-height: 1.7;
}

.privacy-container h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.privacy-container h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.privacy-container p,
.privacy-container ul {
  color: var(--muted);
  margin-bottom: 1rem;
}

.privacy-container ul {
  padding-left: 1.2rem;
}

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

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

.privacy-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

/* GENERIC SIMPLE PAGES (404, thanks, etc.) */
.simple-page {
  max-width: 700px;
  margin: 6rem auto;
  padding: 0 2rem;
  text-align: center;
  line-height: 1.7;
}

.simple-page h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.simple-page p {
  color: var(--muted);
  margin-bottom: 1rem;
}

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

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

.hover-background:hover {
  background-color: var(--accent);
  cursor: pointer;
}

.cursor-pointer {
  cursor: pointer;
}

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


/* MOBILE */
@media (max-width: 800px) {
  .hero-title { font-size: 2.2rem; }
  .cta-row { flex-direction: column; }

  /* Show hamburger */
  .nav-toggle {
    display: block;
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--surface);
    border-bottom: 1px solid #1e293b;
    flex-direction: column;
  }

  .nav-links a {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
  }

  /* When toggled */
  .nav-links.show {
    display: flex;
  }

  /* Keep brand + hamburger spaced */
  .nav {
    position: relative;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
