:root {
  --bg: #0a0a0b;
  --surface: #111113;
  --surface2: #1a1a1d;
  --amber: #d4a843;
  --amber-dim: #8a6d2e;
  --text: #e6e0d4;
  --text-dim: #7a756c;
  --text-muted: #4a4740;
  --border: #252528;
  --green: #3ec97e;
  --red: #e85c5c;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::selection { background: var(--amber); color: var(--bg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212, 168, 67, 0.04) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 28px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 420px;
  font-weight: 300;
}

/* ===== AUDIT CARD ===== */
.audit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,67,0.08);
}

.audit-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.audit-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.audit-card-dot.active {
  background: var(--green);
  box-shadow: 0 0 8px rgba(62, 201, 126, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.audit-card-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  flex: 1;
  letter-spacing: 0.03em;
}

.audit-card-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  background: rgba(62, 201, 126, 0.12);
  color: var(--green);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.audit-entries {
  padding: 8px 0;
}

.audit-entry {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.audit-entry:last-child { border-bottom: none; }

.audit-entry:hover { background: rgba(255,255,255,0.02); }

.audit-entry-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.audit-entry-icon.buy { background: var(--amber); }
.audit-entry-icon.send { background: #6e8cf5; }
.audit-entry-icon.access { background: #9b6ef5; }
.audit-entry-icon.deal { background: var(--green); }

.audit-entry-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.audit-entry-agent {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  font-family: 'Courier New', monospace;
}

.audit-entry-action {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
}

.audit-entry-time {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== HOW ===== */
.how {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
}

.how-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 20px;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 64px;
  color: var(--text);
  max-width: 500px;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.how-step-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}

.how-step h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

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

.how-step-arrow {
  color: var(--text-muted);
  padding-top: 24px;
  display: flex;
  align-items: center;
  padding: 24px 20px 0;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.feature {
  padding: 40px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature:hover {
  border-color: var(--amber-dim);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.feature p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 60px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212, 168, 67, 0.05) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
}

.manifesto-inner { max-width: 800px; margin: 0 auto; }

.manifesto-quote {
  margin-bottom: 40px;
}

.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
}

.manifesto-body p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

.manifesto-body strong {
  color: var(--amber);
  font-weight: 500;
}

.manifesto-deadline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.deadline-badge {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212, 168, 67, 0.1);
  color: var(--amber);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
}

.deadline-date {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  padding: 48px 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
  font-style: italic;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 60px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { max-width: 100%; }

  .how { padding: 80px 32px; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-step-arrow { display: none; }

  .features { padding: 80px 32px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  .manifesto { padding: 80px 32px; }

  footer { padding: 40px 32px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 480px) {
  h1 { font-size: 48px; }
  .hero { padding: 40px 24px; }
  .how { padding: 60px 24px; }
  .features { padding: 60px 24px; }
  .manifesto { padding: 60px 24px; }
  footer { padding: 32px 24px; }
}