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

:root {
  --bg: #1A1D21;
  --card: #2A2D35;
  --accent: #1565C0;
  --accent-hover: #1976D2;
  --text: #FFFFFF;
  --text-muted: #B0B7C0;
  --border: #3A3D45;
  --success: #34A853;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== HEADER ===== */
header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 48px; width: auto; }
.brand-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
nav a {
  margin-left: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
nav a:hover { color: var(--text); text-decoration: none; }

/* ===== HERO ===== */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero .accent { color: var(--accent); }

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
@media (max-width: 768px) {
  .hero p.lead { margin-left: auto; margin-right: auto; }
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-row { justify-content: center; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover { background: var(--accent-hover); text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); text-decoration: none; }

.coming-soon-badge {
  display: inline-block;
  background: rgba(21, 101, 192, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(21, 101, 192, 0.3));
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--bg);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(21, 101, 192, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
}
.feature p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== LEGAL PAGES ===== */
.legal {
  padding: 60px 0 80px;
  flex: 1;
}
.legal h1 {
  font-size: 36px;
  margin-bottom: 8px;
  font-weight: 700;
}
.legal .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  font-weight: 600;
  color: var(--accent);
}
.legal h3 {
  font-size: 17px;
  margin: 20px 0 8px;
  font-weight: 600;
}
.legal p, .legal li {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 15px;
}
.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal strong { color: var(--text); }
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.back-link:hover { color: var(--accent); text-decoration: none; }

/* ===== FOOTER ===== */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--card);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
}
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.copyright {
  color: var(--text-muted);
  font-size: 13px;
}
