@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700;800&family=Share+Tech+Mono&family=Inter:wght@400;500;600&display=swap');

:root {
  --gold-dark: #AE8625;
  --gold-mid: #D2AC47;
  --gold-light: #F7EF8A;
  --gold-link: #EEE27D;
  --black: #000000;
  --card-bg: #020202;
  --card-bg-light: #050505;
  --editor-bg: #0A0A0A;
  --body-text: #CFCBBF;
  --text-dim: #5A5850;
  --panel-border: rgba(174, 134, 37, 0.22);
  --gold-gradient-text: linear-gradient(135deg, #AE8625 5%, #F7EF8A 45%, #D2AC47 85%);
  --gold-border: linear-gradient(90deg, transparent 0%, #AE8625 15%, #F7EF8A 50%, #AE8625 85%, transparent 100%);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--body-text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(174, 134, 37, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(210, 172, 71, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--panel-border);
  margin-bottom: 48px;
}

.top-bar img.logo {
  height: 44px;
  width: auto;
  display: block;
}

.top-bar .domain {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.hero {
  text-align: center;
  margin-bottom: 56px;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: 0.12em;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.hero .tagline {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 28px;
}

.hero .lede {
  font-size: 18px;
  line-height: 1.75;
  color: var(--body-text);
  max-width: 640px;
  margin: 0 auto 20px;
}

.hero .lede strong {
  color: var(--gold-light);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: var(--gold-border);
  margin: 48px 0;
  border: none;
}

section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
}

section p {
  margin-bottom: 16px;
  color: var(--body-text);
}

section p.dim {
  color: var(--text-dim);
  font-size: 14px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.pillar {
  background: var(--card-bg);
  border: 1px solid var(--panel-border);
  padding: 20px;
}

.pillar h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 14px;
  margin: 0;
  color: var(--text-dim);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.card {
  display: block;
  background: var(--card-bg-light);
  border: 1px solid var(--panel-border);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--gold-mid);
  background: var(--editor-bg);
  transform: translateY(-2px);
}

.card .label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 8px;
}

.card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

.card .arrow {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--gold-link);
  letter-spacing: 0.05em;
}

.principles {
  list-style: none;
  margin-top: 8px;
}

.principles li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--body-text);
}

.principles li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 10px;
  top: 4px;
}

.connect {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.connect a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--gold-link);
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 226, 125, 0.35);
  padding-bottom: 2px;
}

.connect a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--panel-border);
  text-align: center;
}

footer p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}

footer .note {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .top-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero .lede { font-size: 16px; }
}
