@charset "UTF-8";
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --paper: #F2EBDB;
  --paper-dark: #E8E0CD;
  --paper-light: #FAF5E8;
  --ink: #0F0E0C;
  --ink-soft: #2A2622;
  --muted: #6F6555;
  --rule: #C8BFA8;
  /* Color system: yellow / blue / orange / green */
  --yellow: #FFD60A;
  --yellow-soft: #FFF3B0;
  --blue: #2563EB;
  --blue-soft: #DBE6FF;
  --orange: #FF6B35;
  --orange-soft: #FFDDD0;
  --green: #65A30D;
  --green-soft: #E0F0B8;
  --pink: #FF3B6B;
  --pink-soft: #FFD6E0;
  --red: #DC2626;
  --radius: 12px;
  --radius-lg: 18px;
}

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

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Paper grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------- Typography ----------- */
.font-display {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.font-italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.font-scribble {
  font-family: 'Caveat', cursive;
  font-weight: 700;
}

/* ----------- Layout ----------- */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.wrap-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ----------- Decorative SVG elements ----------- */
.deco {
  position: absolute;
  pointer-events: none;
}

/* ----------- Nav ----------- */
.nav {
  padding: 24px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 36px;
}

.logo {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 28px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  background: var(--ink);
  color: var(--yellow);
  padding: 4px 8px 2px;
  font-size: 18px;
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
}

.nav-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ----------- Buttons ----------- */
.btn {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 16px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.btn:hover {
  transform: translate(0, 0);
  box-shadow: 0 0 0 var(--ink);
  background: var(--blue);
}

.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.btn:disabled:hover {
  background: var(--ink);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.btn-yellow:hover {
  background: var(--blue);
  color: white;
}

.btn-blue {
  background: var(--blue);
  color: white;
}

.btn-blue:hover {
  background: var(--orange);
}

.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 14px 26px;
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.btn-ghost:hover {
  background: var(--yellow);
  transform: translate(0, 0);
  box-shadow: 0 0 0 var(--ink);
}

.btn-link {
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--blue);
  transition: all 0.15s ease;
}

.btn-link:hover {
  color: var(--blue);
}

/* Google button — sticker style */
.btn-google {
  background: white;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 16px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2.5px, -2.5px);
}

.btn-google:hover {
  transform: translate(0, 0);
  box-shadow: 0 0 0 var(--ink);
  background: var(--yellow);
}

.btn-google svg {
  width: 18px;
  height: 18px;
}

.nsl-container-block {
  text-align: center !important;
}

.nsl-container-block a {
  transform: translate(-2.5px, -2.5px) !important;
  transition: all 0.15s ease !important;
}

.nsl-container-block .nsl-button-google {
  border: none;
  box-shadow: none !important;
  background-color: transparent !important;
}

.nsl-container-block a {
  border-radius: 100px !important;
  height: 55px;
  box-shadow: 5px 5px 0 var(--ink) !important;
  border: 2px solid var(--ink) !important;
  display: flex !important;
  background-color: #ffffff;
}

.nsl-container-block a:hover {
  transform: translate(0, 0) !important;
  box-shadow: 0 0 0 var(--ink) !important;
  background: var(--yellow) !important;
}

.nsl-container-block a .nsl-button-google .nsl-button-label-container {
  display: flex !important;
  align-items: center;
  margin-left: 0 !important;
  font-weight: 600;
}

/* ----------- Highlighter / Sticker styles ----------- */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::before {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6%;
  height: 38%;
  background: var(--yellow);
  z-index: -1;
  transform: skewY(-1deg);
}

.highlight.blue::before {
  background: var(--blue-soft);
}

.highlight.orange::before {
  background: var(--orange-soft);
}

.highlight.green::before {
  background: var(--green-soft);
}

.highlight.pink::before {
  background: var(--pink-soft);
}

.strike {
  text-decoration: line-through;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 4px;
}

.sticker {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
  border: 1.5px solid var(--ink);
}

.sticker.blue {
  background: var(--blue);
  color: white;
}

.sticker.orange {
  background: var(--orange);
  color: white;
}

.sticker.green {
  background: var(--green);
  color: white;
}

/* ----------- Screens ----------- */
.screen {
  display: none;
}

.screen.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================================ */
/* LANDING PAGE                                                  */
/* ============================================================ */
.hero {
  padding: 32px 0 80px;
  text-align: center;
  position: relative;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-eyebrow .star {
  color: var(--orange);
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(50px, 6vw, 144px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero h1 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  text-transform: lowercase;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero h1 .blue {
  color: var(--blue);
}

.hero h1 .orange {
  color: var(--orange);
}

.hero h1 .green {
  color: var(--green);
}

.hero .sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 28px auto 36px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.hero-cta .small {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-cta .small::before {
  content: '↑';
  color: var(--orange);
  font-size: 18px;
}

/* Floating stickers around hero */
.hero-stickers {
  position: relative;
  height: 0;
}

.stickered {
  position: absolute;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 3;
  line-height: 1.2;
}

.stickered.s1 {
  top: 80px;
  left: 6%;
  transform: rotate(-8deg);
  background: var(--yellow);
  max-width: 180px;
}

.stickered.s2 {
  top: 180px;
  right: 4%;
  transform: rotate(6deg);
  background: var(--blue);
  color: white;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
  padding: 8px 14px;
}

.stickered.s3 {
  top: 360px;
  left: 2%;
  transform: rotate(4deg);
  background: var(--orange);
  color: white;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  padding: 8px 14px;
}

@media (max-width: 900px) {
  .stickered.s1, .stickered.s2, .stickered.s3 {
    display: none;
  }
}
/* Hero asterisks decoration */
.ast {
  font-family: 'Anton', sans-serif;
  color: var(--orange);
  font-size: 40px;
  display: inline-block;
  line-height: 1;
  vertical-align: -0.1em;
}

.ast.blue {
  color: var(--blue);
}

.ast.green {
  color: var(--green);
}

.ast.yellow {
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--ink);
}

/* Preview cluster — magazine cover style */
.preview-cluster {
  margin: 72px auto 0;
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

@media (max-width: 720px) {
  .preview-cluster {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.preview-card {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  padding: 22px 18px;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.25s ease;
  position: relative;
}

.preview-cluster:hover .preview-card {
  transform: rotate(0deg);
}

.preview-card:nth-child(1) {
  --rot: -4deg;
  background: var(--orange-soft);
}

.preview-card:nth-child(2) {
  --rot: -1deg;
  background: var(--yellow-soft);
}

.preview-card:nth-child(3) {
  --rot: 1deg;
  background: var(--ink);
  color: var(--paper);
}

.preview-card:nth-child(4) {
  --rot: 4deg;
  background: var(--green-soft);
}

.preview-card .pc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}

.preview-card:nth-child(3) .pc-label {
  color: var(--yellow);
}

.preview-card .pc-num {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.preview-card .pc-num .c {
  font-size: 0.55em;
  color: var(--muted);
  vertical-align: 0.25em;
  margin-right: 2px;
}

.preview-card:nth-child(3) .pc-num .c {
  color: var(--yellow);
}

/* Big quote/manifesto section */
.manifesto {
  padding: 100px 0 80px;
  text-align: center;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin-top: 100px;
  background: var(--paper-dark);
  position: relative;
}

.manifesto h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.manifesto h2 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  text-transform: lowercase;
  font-weight: 400;
}

.manifesto p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.4;
}

/* How it works section */
.how {
  padding: 100px 0 80px;
}

.section-eyebrow {
  text-align: center;
  margin-bottom: 16px;
}

.section-eyebrow .sticker {
  transform: rotate(-2deg);
}

.section-title {
  text-align: center;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.section-title .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  text-transform: lowercase;
  font-weight: 400;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 880px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
.step-card {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  padding: 32px 28px;
  position: relative;
  box-shadow: 5px 5px 0 var(--ink);
  transition: all 0.2s ease;
}

.step-card:nth-child(1) {
  background: var(--yellow-soft);
}

.step-card:nth-child(2) {
  background: var(--blue-soft);
}

.step-card:nth-child(3) {
  background: var(--green-soft);
}

.step-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.step-num {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--ink);
  display: inline-block;
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 8px;
  background: var(--orange);
  z-index: -1;
  transform: skewY(-1deg);
}

.step-card:nth-child(2) .step-num::after {
  background: var(--yellow);
}

.step-card:nth-child(3) .step-num::after {
  background: var(--pink);
}

.step-card h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.05;
}

.step-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* Real talk section */
.reassure {
  padding: 80px 0 100px;
  border-top: 2px solid var(--ink);
}

.reassure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 720px) {
  .reassure-grid {
    grid-template-columns: 1fr;
  }
}
.r-card {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  padding: 24px 28px;
  position: relative;
}

.r-card:nth-child(1) {
  background: var(--orange-soft);
}

.r-card:nth-child(2) {
  background: var(--blue-soft);
}

.r-card:nth-child(3) {
  background: var(--green-soft);
}

.r-card:nth-child(4) {
  background: var(--yellow-soft);
}

.r-card .q {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  line-height: 1.1;
}

.r-card .a {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  text-align: center;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 214, 10, 0.15), transparent 40%), radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.18), transparent 40%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.final-cta h2 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  text-transform: lowercase;
  font-weight: 400;
  color: var(--yellow);
}

.final-cta h2 .scribble-line {
  position: relative;
  display: inline-block;
}

.final-cta h2 .scribble-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  height: 12px;
  background: var(--orange);
  transform: skewY(-1deg);
}

.final-cta p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: rgba(242, 235, 219, 0.8);
  font-size: 22px;
  margin-bottom: 36px;
}

footer {
  padding: 28px 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-top: 1px solid var(--rule);
}

footer .heart {
  color: var(--orange);
}

/* ============================================================ */
/* AUTH MODAL                                                    */
/* ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 12, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeUp 0.3s ease;
}

.modal {
  background: var(--paper);
  border: 2px solid var(--ink);
  width: 100%;
  max-width: 460px;
  padding: 36px 36px 28px;
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
  animation: pop 0.3s ease;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.94) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
.modal-sticker {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-3deg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.modal-sticker svg {
  width: 12px;
  height: 12px;
}

.modal h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 16px 0 8px;
}

.modal h2 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  text-transform: lowercase;
  font-weight: 400;
  color: var(--blue);
}

.modal-sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-label .opt {
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.form-input {
  width: 100%;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: all 0.15s ease;
}

.form-input:focus {
  background: white;
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(-1.5px, -1.5px);
}

.form-input::placeholder {
  color: var(--muted);
  font-style: italic;
}

.form-error {
  color: var(--orange);
  font-size: 13px;
  margin-top: 6px;
  display: none;
  font-weight: 600;
  font-family: 'Caveat', cursive;
  font-size: 18px;
}

.form-error.visible {
  display: block;
}

.modal-foot {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

/* ============================================================ */
/* APP                                                            */
/* ============================================================ */
.app-shell {
  display: none;
}

.app-shell.active {
  display: block;
}

.app-nav {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 48px;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  border: 2px solid var(--ink);
  transform: rotate(-3deg);
}

/* Burn rate persistent strip */
.br-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 24px;
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.br-strip .l {
  display: flex;
  align-items: center;
  gap: 14px;
}

.br-strip .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  font-weight: 700;
}

.br-strip .v {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.br-strip .v .c {
  color: var(--yellow);
  font-size: 0.7em;
  margin-right: 2px;
}

.br-strip .edit {
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--paper);
  padding: 6px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 100px;
}

.br-strip .edit:hover {
  background: var(--orange);
  color: white;
}

/* Calculator title */
.calc-head {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}

.calc-head .step-pill {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 7px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 18px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-2deg);
}

.calc-head h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.calc-head h2 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  text-transform: lowercase;
  font-weight: 400;
}

.calc-head h2 .blue {
  color: var(--blue);
}

.calc-head h2 .orange {
  color: var(--orange);
}

.calc-head h2 .green {
  color: var(--green);
}

.calc-head .sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Calc card */
.calc-card {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  padding: 36px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
}

/* Money input */
.money-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  background: white;
  border: 2px solid var(--ink);
  transition: all 0.15s ease;
}

.money-row:focus-within {
  background: var(--yellow-soft);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.money-sym {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--muted);
}

.money-input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--ink);
  outline: none;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  min-width: 0;
}

.money-input::placeholder {
  color: #BFB6A0;
}

.money-input::-webkit-outer-spin-button,
.money-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.money-input {
  -moz-appearance: textfield;
}

.money-suf {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  white-space: nowrap;
}

/* Tip box — sticker style */
.tip {
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 16px 20px;
  margin-top: 22px;
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
}

.tip.blue {
  background: var(--blue);
  color: white;
}

.tip.orange {
  background: var(--orange);
  color: white;
}

.tip.green {
  background: var(--green);
  color: white;
}

.tip.pink {
  background: var(--pink);
  color: white;
}

.tip-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  border-radius: 50%;
}

.tip.blue .tip-icon, .tip.orange .tip-icon, .tip.green .tip-icon, .tip.pink .tip-icon {
  background: white;
  color: var(--ink);
}

.tip strong {
  font-weight: 700;
}

/* Danger banner — for break-even warning */
.danger-banner {
  background: var(--red);
  color: white;
  padding: 11px 14px;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 3px 3px 0 var(--ink);
  line-height: 1.2;
}

.danger-banner-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: white;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  line-height: 1;
  border-radius: 50%;
}

/* Days grid */
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin: 8px 0;
}

@media (max-width: 600px) {
  .days-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.day-btn {
  background: white;
  border: 2px solid var(--ink);
  padding: 16px 4px 12px;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  line-height: 1;
}

.day-btn small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 6px;
}

.day-btn:hover {
  background: var(--yellow-soft);
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.day-btn.selected {
  background: var(--ink);
  color: var(--yellow);
}

.day-btn.selected small {
  color: var(--paper);
}

.day-btn.recommended::before {
  content: '★';
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 13px;
  color: var(--orange);
}

.day-btn.selected.recommended::before {
  color: var(--yellow);
}

/* Burn rate hero */
.br-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
}

.br-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 30%, rgba(255, 107, 53, 0.25), transparent 50%), radial-gradient(circle at 75% 70%, rgba(255, 214, 10, 0.15), transparent 55%);
  pointer-events: none;
}

.br-hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--yellow);
  margin-bottom: 24px;
  position: relative;
  font-weight: 700;
}

.br-hero-val {
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 14vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  position: relative;
}

.br-hero-val .c {
  font-size: 0.5em;
  color: var(--orange);
  vertical-align: 0.4em;
  margin-right: 8px;
}

.br-hero-unit {
  color: rgba(242, 235, 219, 0.7);
  font-size: 20px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  position: relative;
}

.br-hero-math {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed rgba(242, 235, 219, 0.25);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(242, 235, 219, 0.55);
  letter-spacing: 0.04em;
  position: relative;
}

/* Advice box */
.advice {
  background: var(--blue-soft);
  border: 2px solid var(--ink);
  padding: 28px;
  box-shadow: 5px 5px 0 var(--ink);
  margin-bottom: 24px;
}

.advice.green {
  background: var(--green-soft);
}

.advice.orange {
  background: var(--orange-soft);
}

.advice.yellow {
  background: var(--yellow-soft);
}

.advice-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.advice-icon {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  border-radius: 50%;
}

.advice-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.advice ul {
  list-style: none;
  padding: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.advice li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.advice li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-family: 'Anton', sans-serif;
}

.advice li strong {
  color: var(--ink);
  font-weight: 700;
}

/* Project inputs */
.toggle-row {
  display: inline-flex;
  background: white;
  padding: 4px;
  border: 2px solid var(--ink);
}

.toggle-btn {
  background: transparent;
  border: none;
  padding: 8px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toggle-btn.active {
  background: var(--ink);
  color: var(--yellow);
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

@media (max-width: 600px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}
.num-field {
  background: white;
  border: 2px solid var(--ink);
  padding: 20px 22px;
  transition: all 0.15s ease;
}

.num-field:focus-within {
  background: var(--blue-soft);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.num-field .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 10px;
}

.num-input {
  background: transparent;
  border: none;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--ink);
  outline: none;
  width: 100%;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  padding: 0;
  line-height: 1;
}

.num-input::placeholder {
  color: #BFB6A0;
}

.num-input::-webkit-outer-spin-button,
.num-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.num-input {
  -moz-appearance: textfield;
}

.num-field .meta {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

/* Button rows */
.btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-row.center {
  justify-content: center;
}

/* ============================================================ */
/* RESULTS                                                       */
/* ============================================================ */
.results-head {
  text-align: center;
  margin-bottom: 32px;
}

.results-head h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.results-head h2 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  text-transform: lowercase;
  font-weight: 400;
  color: var(--blue);
}

.results-head h2 .yellow-hl {
  position: relative;
  display: inline-block;
}

.results-head h2 .yellow-hl::before {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6%;
  height: 38%;
  background: var(--yellow);
  z-index: -1;
  transform: skewY(-1deg);
}

.results-head .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.math-row {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 22px;
  text-align: center;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--blue);
}

.math-row .a {
  color: var(--yellow);
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}
.price-card {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  padding: 28px;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: 5px 5px 0 var(--ink);
}

.price-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.price-card.minimum {
  background: var(--orange-soft);
}

.price-card.acceptable {
  background: var(--yellow-soft);
}

.price-card.recommended {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--blue);
}

.price-card.recommended:hover {
  box-shadow: 8px 8px 0 var(--blue);
}

.price-card.premium {
  background: var(--green-soft);
}

.tier-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 700;
}

.price-card.recommended .tier-label {
  color: var(--yellow);
}

.tier-name {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.005em;
}

.tier-name .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  text-transform: lowercase;
  font-weight: 400;
}

.tier-amount {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 6vw, 56px);
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.tier-amount .c {
  font-size: 0.45em;
  vertical-align: 0.5em;
  margin-right: 4px;
  color: var(--muted);
}

.price-card.recommended .tier-amount .c {
  color: var(--orange);
}

.tier-mult {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 18px;
}

.price-card.recommended .tier-mult {
  color: rgba(242, 235, 219, 0.5);
}

.tier-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  border-top: 1.5px solid var(--ink);
  padding-top: 14px;
}

.price-card.recommended .tier-copy {
  color: rgba(242, 235, 219, 0.88);
  border-top-color: rgba(242, 235, 219, 0.2);
}

.tier-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.price-card.recommended .tier-copy strong {
  color: var(--yellow);
}

.recommend-stamp {
  position: absolute;
  top: -16px;
  right: 18px;
  background: var(--orange);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  font-weight: 700;
  border: 2px solid var(--ink);
  transform: rotate(4deg);
  box-shadow: 3px 3px 0 var(--ink);
}

/* Footnote */
.footnote {
  text-align: center;
  margin-top: 48px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  padding-top: 28px;
  border-top: 1px dashed var(--rule);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.err {
  color: var(--orange);
  font-family: 'Caveat', cursive;
  font-size: 18px;
  margin-top: 10px;
  display: none;
  font-weight: 700;
}

.err.visible {
  display: block;
}

/* Hand-drawn arrow */
.hand-arrow {
  display: inline-block;
  font-family: 'Caveat', cursive;
  color: var(--orange);
  font-size: 28px;
  font-weight: 700;
  transform: rotate(-5deg);
}

/* ============================================================ */
/* ABOUT THE BUILDER                                            */
/* ============================================================ */
.builder {
  padding: 96px 0 100px;
  border-top: 2px solid var(--ink);
  background: var(--paper-dark);
  position: relative;
}

.builder .section-title {
  margin-bottom: 48px;
}

.builder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 720px) {
  .builder-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .builder-photo {
    max-width: 240px;
    margin: 0 auto;
  }
}
.builder-photo {
  position: relative;
  transform: rotate(-2deg);
}

.builder-photo img {
  display: block;
  width: 100%;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--paper);
}

.builder-sticker {
  position: absolute;
  top: -14px;
  right: -16px;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(6deg);
  z-index: 2;
}

.builder-tag {
  position: absolute;
  bottom: -18px;
  left: -16px;
  background: var(--blue);
  color: white;
  padding: 6px 12px;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 20px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-4deg);
  z-index: 2;
}

.builder-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.builder-text p strong {
  color: var(--ink);
  font-weight: 700;
}

.builder-text p em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

.builder-text p:last-of-type {
  margin-bottom: 0;
}

.builder-socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
  transition: all 0.15s ease;
  border-radius: 100px;
}

.social-link:hover {
  transform: translate(0, 0);
  box-shadow: 0 0 0 var(--ink);
  background: var(--yellow);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.builder-oc {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1.5px dashed var(--rule);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.builder-oc img {
  height: 32px;
  width: auto;
}

.builder-oc a {
  color: var(--ink);
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}

.builder-oc a:hover {
  color: var(--orange);
}

/* ============================================================ */
/* FOOTER UPDATE                                                */
/* ============================================================ */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 0 32px;
  border-top: 2px solid var(--ink);
}

footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

footer .footer-oc img {
  height: 44px;
  width: auto;
  opacity: 0.95;
}

footer .footer-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(242, 235, 219, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  line-height: 1.9;
}

footer .footer-text a {
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.15s ease;
}

footer .footer-text a:hover {
  color: var(--orange);
}

footer .heart {
  color: var(--orange);
}

/* ============================================================ */
/* NILANJAN NOTE on results page                                */
/* ============================================================ */
.nilanjan-note {
  background: var(--yellow-soft);
  border: 2px solid var(--ink);
  padding: 28px 30px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
}

@media (max-width: 560px) {
  .nilanjan-note {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .nilanjan-note .note-photo {
    margin: 0 auto;
  }
}
.nilanjan-note::before {
  content: '★ FROM THE BUILDER';
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--ink);
  color: var(--yellow);
  padding: 4px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: 2px solid var(--ink);
}

.nilanjan-note .note-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
  transform: rotate(-3deg);
}

.nilanjan-note .note-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nilanjan-note p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.nilanjan-note p strong {
  color: var(--ink);
  font-weight: 700;
}

.nilanjan-note p em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
}

.nilanjan-note .note-sig {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 24px;
  color: var(--orange);
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 1;
}

/*# sourceMappingURL=custom.css.map */
