/* RupeeCase Carousel Template | shared design tokens
 * 1080 x 1350 portrait. Navy + white only. Inter + JetBrains Mono.
 * Locked rules: no emoji . no comma in numbers . NSE BhavCopy attribution
 * footer line . soft CTA on every card . pagination dots at bottom.
 */
:root {
  --navy: #0D1F3C;
  --paper: #FFFFFF;
  --soft: #F4F5F8;
  --rule: #E2E5EC;
  --muted: #5A6478;
  --whisper: #B8BDC9;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #2A2A2E; }
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.card {
  width: 1080px;
  height: 1350px;
  background: var(--paper);
  color: var(--navy);
  padding: 60px 60px 40px 60px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.topstrip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
}
.brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pillar {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta {
  background: var(--navy);
  color: var(--paper);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-text { font-size: 19px; font-weight: 500; line-height: 1.3; }
.cta-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 9px 16px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.footer {
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: center;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rule);
}
.dot.active { background: var(--navy); width: 22px; border-radius: 4px; }

.title-block { margin-top: 28px; margin-bottom: 22px; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 19px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
  max-width: 940px;
}
.takeaway {
  margin-top: 18px;
  padding: 18px 22px;
  border-left: 4px solid var(--navy);
}
.takeaway-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.takeaway-text {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}
