* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0f172a;
  --bg-mid: #1e293b;
  --bg-card: #1e293b;
  --accent: #fbbf24;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-heading: #ffffff;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

nav a {
  color: var(--text-muted);
  margin-left: 24px;
  font-size: 0.9rem;
}

nav a:hover {
  color: var(--text-heading);
  text-decoration: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.15);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero .desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 1.05rem;
  transition: opacity 0.2s;
}

.cta-btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

/* Features */
.features {
  padding: 60px 0;
}

.features h2 {
  text-align: center;
  font-size: 1.75rem;
  color: var(--text-heading);
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Audience */
.audience {
  padding: 60px 0;
  text-align: center;
}

.audience h2 {
  font-size: 1.75rem;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.audience-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.audience-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 24px;
}

.roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.role-tag {
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* CTA bottom */
.cta-section {
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  font-size: 1.75rem;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Waitlist */
.waitlist {
  text-align: center;
  padding: 60px 0;
  background: rgba(251, 191, 36, 0.04);
  border-top: 1px solid rgba(251, 191, 36, 0.1);
  border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.waitlist h2 {
  font-size: 1.75rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.waitlist > .container > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 1rem;
  outline: none;
}

.waitlist-form input::placeholder {
  color: var(--text-muted);
}

.waitlist-form input:focus {
  border-color: var(--accent);
}

.waitlist-form button {
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.waitlist-msg {
  margin-top: 16px;
  font-size: 0.95rem;
}

.waitlist-msg.success { color: #4ade80; }
.waitlist-msg.info { color: var(--accent); }
.waitlist-msg.error { color: #f87171; }

@media (max-width: 640px) {
  .waitlist-form {
    flex-direction: column;
  }
}

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer .links {
  margin-bottom: 12px;
}

footer .links a {
  color: var(--text-muted);
  margin: 0 12px;
}

/* Privacy / Support pages */
.page-content {
  padding: 60px 0;
  max-width: 720px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: 2rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.page-content .meta {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.page-content h2 {
  font-size: 1.35rem;
  color: var(--text-heading);
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content h3 {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-top: 20px;
  margin-bottom: 8px;
}

.page-content p,
.page-content li {
  color: var(--text);
  margin-bottom: 8px;
}

.page-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.page-content th,
.page-content td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

.page-content th {
  color: var(--accent);
  font-weight: 600;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.75rem; }
  .hero .subtitle { font-size: 1.1rem; }
  .features-grid { grid-template-columns: 1fr; }
  nav a { margin-left: 16px; font-size: 0.8rem; }
  .hero { padding: 48px 0 40px; }
}
