/* ===================================================================
   RupeeCase Daily Content . Shared Card Styles
   Locked design system . Navy #0D1F3C + paper white only
   Inter (body) + JetBrains Mono (numbers/labels)
   =================================================================== */

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

:root {
  --navy: #0D1F3C;
  --navy-90: rgba(13, 31, 60, 0.90);
  --navy-70: rgba(13, 31, 60, 0.70);
  --navy-55: rgba(13, 31, 60, 0.55);
  --navy-40: rgba(13, 31, 60, 0.40);
  --navy-20: rgba(13, 31, 60, 0.20);
  --navy-12: rgba(13, 31, 60, 0.12);
  --navy-06: rgba(13, 31, 60, 0.06);
  --paper: #FFFFFF;
  --paper-warm: #FBFAF8;
  --line: rgba(13, 31, 60, 0.12);
  --accent: #0D1F3C;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper-warm);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.card {
  width: 1080px;
  height: 1080px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 90px;
}

/* subtle grid background, navy only */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--navy-06) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.card > * { position: relative; z-index: 1; }

/* Eyebrow / pillar tag */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-55);
}

/* Big hook number */
.hook-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 200px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.headline {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.headline .u {
  border-bottom: 6px solid var(--navy);
  padding-bottom: 2px;
}

.kicker {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy-70);
}

.source-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--navy-40);
}

.author-footer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-70);
}

.pagination { display: flex; gap: 8px; }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy-20);
}

.dot.active { background: var(--navy); }

/* Footer row */
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Mono labels and numbers */
.mono { font-family: 'JetBrains Mono', monospace; }

/* Ledger / data table */
.ledger { width: 100%; border-collapse: collapse; }
.ledger th, .ledger td {
  text-align: right;
  padding: 18px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  border-bottom: 1px solid var(--line);
}
.ledger th {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-55);
}
.ledger td.name, .ledger th.name {
  text-align: left;
  font-weight: 600;
}

/* Rule list */
.rule { display: flex; gap: 22px; align-items: flex-start; }
.rule .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-40);
  min-width: 44px;
}
.rule .t { font-size: 27px; font-weight: 500; line-height: 1.4; }

/* CTA bar (final card only) */
.cta-bar {
  background: var(--navy);
  color: var(--paper);
  border-radius: 4px;
  padding: 34px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-bar .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.cta-bar .url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 700;
}

.disclaimer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  color: var(--navy-40);
}
