﻿<!DOCTYPE html>
:root {
  --bg: #0a0a0a;
  --surface: #131313;
  --surface-alt: #1a1a1a;
  --text: #f7f7f7;
  --muted: #c8c8c8;
  --accent-red: #ff3030;
  --accent-gold: #ffd33d;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid #252525;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  gap: 1rem;
}

nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.brand-realign {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-learning {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #dfdfdf;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}

.eyebrow {
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin: 0.2rem 0 1rem;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.hero-card,
.card,
.framework-grid article,
.contact-form {
  background: var(--surface);
  border: 1px solid #262626;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.hero-card ul,
.community-list {
  margin: 0;
  padding-left: 1.2rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-copy {
  color: var(--muted);
}

.framework-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
  color: #000;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-small {
  padding: 0.45rem 0.82rem;
  font-size: 0.9rem;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid #666;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  max-width: 650px;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
textarea {
  background: #0d0d0d;
  border: 1px solid #343434;
  color: var(--text);
  padding: 0.62rem;
  border-radius: 8px;
}

.interest-result,
.tiny-note {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid #242424;
  padding: 1.2rem 0;
  color: #c4c4c4;
}

@media (max-width: 920px) {
  .hero-grid,
  .cards,
  .framework-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
  }
}

