:root {
  --bg: #0c0c0e;
  --surface: #141416;
  --surface-2: #1c1c1f;
  --border: #2a2a2e;
  --text: #f0ede8;
  --text-muted: #7a7872;
  --accent: #f5c842;
  --accent-dim: rgba(245, 200, 66, 0.12);
  --accent-glow: rgba(245, 200, 66, 0.06);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 100px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #0c0c0e;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: #e0b535;
  border-color: #e0b535;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.hero-stat-block {
  background: var(--accent-dim);
  border: 1px solid rgba(245, 200, 66, 0.2);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.hero-stat-label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Differentiator */
.diff-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

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

.diff-card {
  background: var(--surface);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.diff-card--active {
  background: var(--surface-2);
  border-color: rgba(245, 200, 66, 0.25);
}

.diff-icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
}

.diff-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.diff-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Pickflow */
.pickflow {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.pickflow-header {
  margin-bottom: 60px;
}

.pickflow-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pickflow-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.pickflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 36px 36px 36px 0;
  border-right: 1px solid var(--border);
  padding-right: 36px;
}

.step:last-child {
  border-right: none;
  padding-left: 36px;
  padding-right: 0;
}

.step:not(:first-child):not(:last-child) {
  padding-left: 36px;
}

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

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

.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Principles */
.principles {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.principles-inner {
  max-width: 640px;
}

.principles-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.principle {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.principle:first-child {
  border-top: 1px solid var(--border);
}

.p-mark {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  width: 20px;
}

.principle p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 120px 48px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, var(--accent-glow) 0%, transparent 70%);
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.closing p {
  font-size: 16px;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-legal {
  font-size: 11px;
  color: var(--border);
}

/* Today's Pick */
.todays-pick {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(245,200,66,0.03) 100%);
}

.pick-container {
  max-width: 860px;
  margin: 0 auto;
}

.pick-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.pick-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.pick-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.pick-ticker-block {
  flex-shrink: 0;
}

.pick-ticker {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
}

.pick-company {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 6px;
}

.pick-edge {
  background: rgba(245, 200, 66, 0.04);
  border: 1px solid rgba(245, 200, 66, 0.12);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 28px;
}

.edge-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.2;
}

.edge-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.pick-thesis {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 28px;
}

.thesis-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.thesis-body strong {
  color: var(--text);
  font-weight: 500;
}

.pick-risk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
}

.risk-icon {
  flex-shrink: 0;
  color: #f87171;
  font-size: 14px;
  margin-top: 1px;
}

.pick-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pick-cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 60px 24px 50px; grid-template-columns: 1fr; gap: 40px; }
  .hero-stat-number { font-size: 56px; }
  .diff-grid { grid-template-columns: 1fr; }
  .pickflow-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .step:last-child { padding-left: 0; }
  .step:not(:first-child):not(:last-child) { padding-left: 0; }
  .diff-section { padding: 60px 24px; }
  .pickflow { padding: 60px 24px; }
  .principles { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .closing h2 { font-size: 30px; }
  .todays-pick { padding: 60px 24px; }
  .pick-main { flex-direction: column; align-items: flex-start; gap: 24px; }
  .pick-ticker { font-size: 44px; }
  .pick-edge { padding: 20px 22px; }
  .edge-headline { font-size: 19px; }
  .pick-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pick-cta .btn { width: 100%; justify-content: center; }
}