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

:root {
  --bg: #0a0a0f;
  --bg2: #12121a;
  --bg3: #1a1a26;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-dim: #8a7019;
  --text: #e0ddd4;
  --text-dim: #8a877e;
  --green: #2ecc71;
  --red: #e74c3c;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

html { scroll-behavior: smooth; }

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

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* --- Layout --- */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

section:last-of-type { border-bottom: none; }

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

/* --- Shared text styles --- */
.section-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 720px;
  line-height: 1.7;
}

.section-body {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  max-width: 720px;
  line-height: 1.7;
}

.section-body em { color: var(--text); font-style: italic; }
.section-body strong { color: var(--text); }

.section-bottom {
  font-size: 1rem;
  color: var(--text);
  margin-top: 32px;
  max-width: 720px;
  line-height: 1.7;
}

.section-bottom strong { color: var(--gold-light); }
.section-bottom em { color: var(--text-dim); }

/* --- Hero --- */
.hero {
  text-align: center;
  padding: 120px 0 80px;
}

.seal-container {
  display: inline-block;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 40px rgba(201, 162, 39, 0.15));
}

.seal-container svg {
  width: 160px;
  height: 160px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero .tagline {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 500;
}

.hero .sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.7;
}

.anchor-counter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 8px;
  padding: 12px 24px;
}

.anchor-counter .count {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.anchor-counter .label {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
}

/* --- Lawsuit Cards (The Problem) --- */
.lawsuit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 8px;
}

.lawsuit-card {
  background: var(--bg2);
  border: 1px solid rgba(231, 76, 60, 0.15);
  border-radius: 12px;
  padding: 28px 24px;
}

.lawsuit-card .lawsuit-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0.7;
}

.lawsuit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  font-style: italic;
}

.lawsuit-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 8px;
}

.lawsuit-card blockquote {
  border-left: 2px solid var(--red);
  padding-left: 16px;
  margin: 16px 0;
  font-size: 0.92rem;
  color: var(--text);
  font-style: italic;
}

/* --- Big Quote (Why AI Companies) --- */
.big-quote {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.4;
  font-style: italic;
}

/* --- The Seal (Solution) --- */
.seal-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seal-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.seal-step:hover { border-color: rgba(201, 162, 39, 0.3); }

.seal-step-num {
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 36px;
}

.seal-step-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.seal-step-body p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* --- Outcome Cards --- */
.outcome-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 8px;
}

.outcome-card {
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
}

.outcome-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.outcome-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.outcome-result {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  padding-top: 12px;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

/* --- Courtroom Cards --- */
.courtroom-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 8px;
}

.courtroom-card {
  background: var(--bg2);
  border-radius: 12px;
  padding: 32px 28px;
}

.courtroom-card.offense { border: 1px solid rgba(201, 162, 39, 0.2); }
.courtroom-card.defense { border: 1px solid rgba(46, 204, 113, 0.2); }

.courtroom-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.offense .courtroom-label { color: var(--gold); }
.defense .courtroom-label { color: var(--green); }

.courtroom-scene {
  background: var(--bg);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  border-left: 3px solid rgba(201, 162, 39, 0.3);
}

.defense .courtroom-scene { border-left-color: rgba(46, 204, 113, 0.3); }

.courtroom-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.courtroom-quote:last-child { margin-bottom: 0; }

.courtroom-detail {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* --- Stack (Two Products) --- */
.stack-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 24px;
}

.stack-card {
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  padding: 28px 24px;
}

.stack-icon {
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.stack-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.stack-what {
  font-size: 0.85rem;
  color: var(--gold-dim);
  margin-bottom: 16px;
  font-style: italic;
}

.stack-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 12px;
}

.stack-card strong { color: var(--text); }

.stack-for {
  font-size: 0.8rem;
  color: var(--gold-dim);
  padding-top: 12px;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  margin-top: 8px;
}

.stack-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 1.5rem;
  color: var(--gold-dim);
}

.stack-together {
  text-align: center;
  padding: 20px;
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 8px;
}

.stack-together p {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 500;
}

/* --- Benchmark Results Table --- */
.results-table {
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.results-row {
  display: grid;
  grid-template-columns: 2fr 0.7fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.results-row:last-child { border-bottom: none; }

.results-header {
  background: var(--bg2);
}

.results-header .results-cell {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.results-header .results-cell.gold { color: var(--gold); }

.results-cell {
  padding: 12px 16px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.results-cell.cat-cell { font-weight: 500; }
.results-cell.dim { color: var(--text-dim); }
.results-cell.fail { color: var(--red); font-weight: 600; }

.results-cell.sentinel-zero {
  color: var(--green);
  font-weight: 700;
  font-family: var(--mono);
}

.results-total {
  background: var(--bg2);
  border-top: 2px solid rgba(201, 162, 39, 0.2);
}

.results-total .results-cell { font-weight: 600; }
.results-total .sentinel-zero { font-size: 1.1rem; }

.results-note {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 12px;
}

.results-source {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* --- Comparison Table --- */
.compare-table {
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-row:not(:last-child) {
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.compare-header {
  background: var(--bg2);
}

.compare-cell {
  padding: 14px 20px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.compare-cell.dim { color: var(--text-dim); }
.compare-cell.gold { color: var(--gold); font-weight: 600; }

.compare-header .compare-cell {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.compare-header .compare-cell.gold { color: var(--gold); }

.compare-row:not(.compare-header) .compare-cell:last-child {
  color: var(--text);
}

/* --- Market Cards --- */
.market-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.market-card {
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 10px;
  padding: 24px 20px;
  transition: border-color 0.2s;
}

.market-card:hover { border-color: rgba(201, 162, 39, 0.3); }

.market-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.market-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.step:hover { border-color: rgba(201, 162, 39, 0.3); }

.step .num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* --- Verify --- */
.verify-box {
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  padding: 32px;
  max-width: 640px;
}

.verify-box label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.verify-box input {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.85rem;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
}

.verify-box input:focus { border-color: var(--gold); }
.verify-box input::placeholder { color: var(--text-dim); opacity: 0.5; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover { background: var(--gold-light); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.verify-result {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.9rem;
  display: none;
}

.verify-result.verified {
  display: block;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--green);
}

.verify-result.not-found {
  display: block;
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: var(--red);
}

.verify-result.loading {
  display: block;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--gold);
}

/* --- On-Chain --- */
.chain-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chain-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  transition: border-color 0.2s;
}

.chain-link:hover { border-color: rgba(201, 162, 39, 0.3); }

.chain-link .link-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  min-width: 160px;
}

.chain-link .link-addr {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--gold);
  word-break: break-all;
}

/* --- Embed --- */
.embed-preview {
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.embed-preview h3 {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.code-block {
  background: var(--bg);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--gold-light);
  overflow-x: auto;
  line-height: 1.7;
  position: relative;
}

.code-block .copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--bg2);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--text-dim);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.code-block .copy-btn:hover { color: var(--gold); border-color: var(--gold); }

/* --- CTA --- */
.cta {
  text-align: center;
  padding: 80px 0 120px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta p {
  color: var(--text-dim);
  margin-bottom: 32px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-outline:hover { background: rgba(201, 162, 39, 0.08); }

/* --- Footer --- */
footer {
  text-align: center;
  padding: 24px;
  color: var(--text-dim);
  font-size: 0.8rem;
  border-top: 1px solid rgba(201, 162, 39, 0.08);
}

/* --- Responsive --- */
@media (max-width: 700px) {
  .hero h1 { font-size: 1.8rem; }
  .hero .tagline { font-size: 1.1rem; }
  .lawsuit-cards { grid-template-columns: 1fr; }
  .outcome-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .market-cards { grid-template-columns: 1fr; }
  .compare-cell { padding: 10px 14px; font-size: 0.82rem; }
  .chain-link { flex-direction: column; align-items: flex-start; gap: 4px; }
  section { padding: 48px 0; }
  .hero { padding: 80px 0 48px; }
  .big-quote { font-size: 1.2rem; }
  .seal-step { flex-direction: column; gap: 12px; }
  .results-row { grid-template-columns: 1.5fr 0.5fr 0.8fr 0.8fr 0.8fr; }
  .results-cell { padding: 8px 10px; font-size: 0.8rem; }
  .stack-cards { grid-template-columns: 1fr; }
  .stack-arrow { transform: rotate(0); padding: 8px 0; }
  .courtroom-scene { padding: 16px; }
}
