
:root {
  --bg: #020617;
  --bg-alt: #020617;
  --card: #020617;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.15);
  --accent-strong: #0ea5e9;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --danger: #f97373;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 52%, #000000 100%);
  color: var(--text);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #e5e7eb 0, #38bdf8 25%, #0284c7 60%, #020617 100%);
  color: #020617;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.8);
  position: relative;
  overflow: hidden;
}

/* Placeholder for your real logo image */
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none; /* Show this when you add your real logo */
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

nav.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

nav.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.nav-cta {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid var(--border-subtle);
  color: var(--text);
}

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

main {
  flex: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 32px;
}

.hero-left {
  padding-top: 14px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-subtle);
  color: var(--accent);
  margin-bottom: 10px;
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  margin: 0 0 10px;
  line-height: 1.05;
}

.hero-title span {
  color: var(--accent);
}

.hero-tagline {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.badge-chip {
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-muted);
}

.badge-chip strong {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background-image: linear-gradient(120deg, var(--accent-strong), #22c55e);
  color: #020617;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.95);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.87);
  border-color: var(--border-subtle);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.hero-note span {
  color: #22c55e;
}

.hero-right {
  position: relative;
}

.hero-panel {
  position: relative;
  border-radius: 18px;
  padding: 18px 18px 18px;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 55%, #000 100%);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero-panel-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-panel-chip {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.stat-card {
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.stat-value {
  font-size: 1.05rem;
  font-weight: 600;
}

.stat-pill {
  font-size: 0.7rem;
  color: #22c55e;
}

.hero-panel-footer {
  border-radius: 10px;
  padding: 9px 10px;
  background: linear-gradient(120deg, rgba(56,189,248,0.1), rgba(59,130,246,0.16));
  border: 1px solid rgba(56, 189, 248, 0.7);
  font-size: 0.8rem;
}

.hero-panel-footer strong {
  color: var(--accent);
}

.section {
  margin-bottom: 32px;
}

.section-header {
  margin-bottom: 14px;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 40rem;
}

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

.feature-card {
  border-radius: 14px;
  padding: 14px 13px 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.feature-icon {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

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

.columns {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 18px;
}

.card {
  border-radius: 14px;
  padding: 14px 14px 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0;
}

.card li {
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--text-muted);
}

footer.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin-top: 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

/* Privacy page */
.legal-card h2 {
  font-size: 1rem;
  margin-top: 1.4rem;
  margin-bottom: 0.3rem;
}

.legal-card p,
.legal-card li {
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 880px) {
  nav.site-nav {
    display: none;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
    order: -1;
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .wrapper {
    padding-inline: 12px;
  }
  header.site-header {
    padding-top: 10px;
  }
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
