/* ============================================================
   MONEYCLARITY — STYLES  ·  direction: "The Vault"
   Palette  vault-green #062A1F · pine #0B3A2B · mint #34E8A0
            saffron #FFAF2E · cloud #F3F6F2 · ink #0A1F17
   Type     Fraunces (display) · Karla (body) · IBM Plex Mono (money)
   Do not edit unless changing the look itself.
   ============================================================ */

:root {
  --void: #062A1F;          /* deep bank-vault green — hero canvas */
  --void-2: #042118;
  --pine: #0B3A2B;          /* raised surfaces on dark */
  --pine-2: #0E4534;
  --mint: #34E8A0;          /* electric mint — the energy accent */
  --mint-dim: #23B87C;
  --mint-ink: #052018;      /* text on mint */
  --saffron: #FFAF2E;       /* Indian warmth — ₹, tags, stamp */
  --saffron-deep: #C87F0A;
  --cloud: #F3F6F2;         /* light section background */
  --card: #FFFFFF;
  --ink: #0A1F17;           /* text on light */
  --ink-soft: #43554C;
  --line: #E0E8E1;
  --on-dark-dim: #9FB8AC;   /* muted text on dark */

  --display: 'Fraunces', Georgia, serif;
  --body: 'Karla', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --pad: clamp(1.15rem, 5vw, 4rem);
  --section-y: clamp(3.5rem, 9vw, 6.5rem);
  --r: 18px;                /* base radius */
  --shadow: 0 1px 2px rgba(6, 42, 31, .06), 0 14px 40px rgba(6, 42, 31, .10);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  background: var(--cloud);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

img, iframe { max-width: 100%; display: block; }
a { color: inherit; }

:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; }

/* ---------- shared section scaffolding ---------- */

.section { padding: var(--section-y) var(--pad); }

.section.on-ink {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(52, 232, 160, .10), transparent 60%),
    var(--void);
  color: var(--cloud);
}

.wrap { max-width: 1120px; margin: 0 auto; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--saffron-deep);
  margin-bottom: 1rem;
}
.on-ink .eyebrow { color: var(--mint); }

.section-heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 24ch;
  margin-bottom: 1.05rem;
}

.section-intro {
  max-width: 58ch;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
}
.on-ink .section-intro { color: var(--on-dark-dim); }

/* ---------- NAV ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--pad);
  background: rgba(6, 42, 31, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cloud);
  border-bottom: 1px solid rgba(52, 232, 160, .22);
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo em { font-style: normal; color: var(--mint); }
.brand-tech { font-style: italic; }
.nav-logo .mc-mark { height: 1.15em; width: auto; display: block; }

.tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--on-dark-dim);
  background: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s, background .18s, border-color .18s;
}
.tab-btn:hover { color: var(--cloud); }
.tab-btn.active {
  color: var(--mint-ink);
  background: var(--mint);
  border-color: var(--mint);
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 480px at 12% -8%, rgba(52, 232, 160, .16), transparent 62%),
    radial-gradient(640px 460px at 95% 8%, rgba(255, 175, 46, .12), transparent 60%),
    linear-gradient(175deg, var(--void) 0%, var(--void-2) 100%);
  color: var(--cloud);
  padding: clamp(3.2rem, 9vw, 6.2rem) var(--pad) clamp(3rem, 8vw, 5.5rem);
}

.hero-rupee {
  position: absolute;
  right: -0.06em; bottom: -0.28em;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(14rem, 34vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(52, 232, 160, .16);
  user-select: none;
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 2.6rem;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; }
}

.stamp {
  display: inline-block;
  width: max-content;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--saffron);
  border: 1.5px solid var(--saffron);
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  transform: rotate(-2deg);
  margin-bottom: 1.6rem;
  background: rgba(255, 175, 46, .06);
}

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

.hero-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.7rem, 9.5vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
}
.hero-headline span { display: block; }
.hero-headline span:nth-child(3) { color: var(--mint); font-style: italic; }

.hero-sub {
  max-width: 52ch;
  font-size: clamp(1rem, 2.6vw, 1.14rem);
  color: var(--on-dark-dim);
  margin-bottom: 1.9rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  transition: transform .16s, box-shadow .16s, background .16s, color .16s;
}
.btn:active { transform: scale(.97); }

.btn-solid {
  background: var(--mint);
  color: var(--mint-ink);
  box-shadow: 0 8px 28px rgba(52, 232, 160, .30);
}
.btn-solid:hover { background: #4BF2B0; transform: translateY(-2px); }

.btn-ghost {
  color: var(--cloud);
  border: 1.5px solid rgba(243, 246, 242, .35);
}
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }

/* --- hero preview card (the CSS "product screenshot") --- */

.hero-visual { position: relative; }

.preview-card {
  position: relative;
  background: linear-gradient(165deg, var(--pine-2), var(--pine));
  border: 1px solid rgba(52, 232, 160, .28);
  border-radius: 24px;
  padding: 1.4rem 1.4rem 1.55rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  max-width: 380px;
  margin: 0 auto;
  transform: rotate(1.5deg);
}
@media (min-width: 880px) { .preview-card { margin: 0 0 0 auto; } }

.preview-card::before {
  content: "";
  position: absolute; inset: -34px;
  background: radial-gradient(closest-side, rgba(52, 232, 160, .22), transparent 72%);
  z-index: -1;
  filter: blur(10px);
  animation: aura 7s ease-in-out infinite alternate;
}
@keyframes aura { from { opacity: .65; } to { opacity: 1; } }

.preview-title {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.05rem;
}
.preview-title .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.preview-num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(2rem, 8vw, 2.6rem);
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.1;
}
.preview-num small {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0;
  color: var(--on-dark-dim);
  margin-top: 0.2rem;
}

.preview-rows { margin-top: 1.15rem; border-top: 1px solid rgba(243, 246, 242, .12); }
.preview-rows .prow {
  display: flex; justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(243, 246, 242, .08);
}
.preview-rows .prow .pk { color: var(--on-dark-dim); }
.preview-rows .prow .pv { font-family: var(--mono); font-weight: 600; color: var(--saffron); }

.preview-bar {
  margin-top: 1.15rem;
  height: 10px;
  border-radius: 999px;
  background: rgba(243, 246, 242, .12);
  overflow: hidden;
}
.preview-bar i {
  display: block; height: 100%; width: 62%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--saffron));
}
.preview-note {
  margin-top: 0.55rem;
  font-size: 0.75rem;
  color: var(--on-dark-dim);
}

/* ---------- STATS STRIP ---------- */

.stats-strip { background: var(--void-2); padding: 0 var(--pad); }
.stats-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid rgba(52, 232, 160, .16);
}
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: 1.5rem 1.2rem 1.6rem;
  border-right: 1px solid rgba(52, 232, 160, .16);
  border-bottom: 1px solid rgba(52, 232, 160, .16);
}
.stat .n {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  color: var(--mint);
  line-height: 1.15;
}
.stat .l {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--on-dark-dim);
  margin-top: 0.25rem;
}

/* ---------- TICKER ---------- */

.ticker {
  background: var(--mint);
  color: var(--mint-ink);
  overflow: hidden;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(5, 32, 24, .12);
}
.ticker-track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 46s linear infinite;
  padding-left: 100%;
}
@keyframes ticker { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; padding-left: 1rem; }
}
.ticker-item {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
}
.ticker-item::before { content: "₹ "; color: var(--saffron-deep); font-weight: 700; }

/* ---------- SPOTLIGHT (dark product band) ---------- */

.spotlight-band {
  background:
    radial-gradient(680px 420px at 10% 110%, rgba(255, 175, 46, .10), transparent 60%),
    var(--void);
  color: var(--cloud);
  padding: var(--section-y) var(--pad);
}
.spotlight-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; gap: 2.4rem; align-items: center;
}
@media (min-width: 880px) { .spotlight-grid { grid-template-columns: 1fr 1fr; } }

.spotlight-band .eyebrow { color: var(--mint); }
.spotlight-band .section-heading { color: #fff; }
.spotlight-band .section-intro { color: var(--on-dark-dim); margin-bottom: 1.6rem; }

.spotlight-points { list-style: none; margin: 0 0 1.8rem; }
.spotlight-points li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.7rem;
  font-size: 0.98rem;
  color: #D7E4DC;
}
.spotlight-points li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--saffron);
  font-weight: 700;
}

/* CSS score dial */
.dial-card {
  background: linear-gradient(165deg, var(--pine-2), var(--pine));
  border: 1px solid rgba(52, 232, 160, .28);
  border-radius: 24px;
  padding: 1.8rem 1.5rem 1.6rem;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .40);
  transform: rotate(-1.5deg);
}
.dial {
  width: 190px; height: 95px;
  margin: 0 auto 0.9rem;
  border-radius: 190px 190px 0 0;
  background: conic-gradient(from 270deg at 50% 100%,
    #E4572E 0deg, var(--saffron) 62deg, var(--mint) 128deg, var(--mint) 180deg,
    transparent 180deg);
  position: relative;
}
.dial::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0; top: 14px;
  border-radius: 176px 176px 0 0;
  background: var(--pine);
}
.dial-score {
  position: relative;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 2.3rem;
  color: #fff;
  margin-top: -2.9rem;
}
.dial-band {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-ink);
  background: var(--mint);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-top: 0.55rem;
}
.dial-note { font-size: 0.8rem; color: var(--on-dark-dim); margin-top: 0.9rem; }

/* ---------- PILLARS ---------- */

.pillar-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.7rem 1.5rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform .18s, border-color .18s;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--mint-dim); }
.pillar h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}
.pillar h3::before {
  content: "";
  display: block;
  width: 34px; height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--saffron));
  margin-bottom: 0.9rem;
}
.pillar p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- TOOLS ---------- */

.app-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.6rem;
}
@media (min-width: 700px) { .app-grid { grid-template-columns: repeat(2, 1fr); } }

.app-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: linear-gradient(165deg, var(--pine-2), var(--pine));
  border: 1px solid rgba(52, 232, 160, .22);
  border-radius: var(--r);
  padding: 1.6rem 1.5rem 1.5rem;
  overflow: hidden;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .35);
}
.app-card::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(52, 232, 160, .18), transparent);
}
.app-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid rgba(255, 175, 46, .5);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.9rem;
}
.app-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.app-card p { font-size: 0.93rem; color: var(--on-dark-dim); margin-bottom: 1.1rem; }
.app-go { font-weight: 700; font-size: 0.9rem; color: var(--mint); }

.tool-subhead {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.1rem;
}

.tool-grid { display: grid; gap: 0.9rem; }

.tool {
  background: rgba(243, 246, 242, .04);
  border: 1px solid rgba(243, 246, 242, .14);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .18s;
}
.tool.open { border-color: var(--mint-dim); }

.tool-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
}
.tool-head h3 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: #fff; }
.tool-desc { font-size: 0.86rem; color: var(--on-dark-dim); margin-top: 0.15rem; }

.tool-toggle {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--mint);
  background: none;
  color: var(--mint);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.tool.open .tool-toggle { background: var(--mint); color: var(--mint-ink); }

.tool-body { display: none; padding: 0.4rem 1.25rem 1.4rem; }
.tool.open .tool-body { display: block; }

.tool-body label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.86rem;
  font-weight: 600;
  color: #D7E4DC;
  margin: 1.05rem 0 0.45rem;
}
.tool-body output {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--saffron);
}

.tool-body input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background: rgba(243, 246, 242, .16);
  outline-offset: 4px;
}
.tool-body input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--void);
  box-shadow: 0 0 0 1.5px var(--mint), 0 4px 12px rgba(0, 0, 0, .4);
  cursor: pointer;
}
.tool-body input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--void);
  box-shadow: 0 0 0 1.5px var(--mint);
  cursor: pointer;
}

.tool-result { margin-top: 1.3rem; border-top: 1px solid rgba(243, 246, 242, .14); }
.tool-result .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(243, 246, 242, .08);
  font-size: 0.92rem;
}
.tool-result .row .k { color: var(--on-dark-dim); }
.tool-result .row .v { font-family: var(--mono); font-weight: 600; color: #fff; }
.tool-result .hero-row .k { color: #D7E4DC; font-weight: 700; }
.tool-result .hero-row .v { color: var(--mint); font-size: 1.28rem; }

.tool-links { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.65rem; }
.tool-links a {
  color: var(--mint); font-weight: 600; font-size: 0.95rem;
  padding: 0.6rem 1.05rem; border: 1px solid rgba(52, 232, 160, 0.35);
  border-radius: 999px; transition: background 0.2s ease, border-color 0.2s ease;
}
.tool-links a:hover { background: rgba(52, 232, 160, 0.1); border-color: var(--mint); }

/* ---------- ARTICLES ---------- */

.article-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .article-grid { grid-template-columns: repeat(3, 1fr); } }

.article {
  display: flex; flex-direction: column;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 5px solid var(--mint);
  border-radius: var(--r);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .18s, border-color .18s;
}
.article:hover { transform: translateY(-4px); border-color: var(--mint-dim); }
.article:nth-child(3n + 2) { border-top-color: var(--saffron); }
.article:nth-child(3n) { border-top-color: var(--pine-2); }

.article-meta {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}
.article-meta .tag {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  background: rgba(255, 175, 46, .14);
  border-radius: 999px;
  padding: 0.24rem 0.65rem;
}
.article h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}
.article p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; margin-bottom: 1rem; }
.article .read { font-weight: 700; font-size: 0.9rem; color: var(--mint-dim); }
.article .soon {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- VIDEOS ---------- */

.video-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
.video-frame { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--r); }
.video-soon {
  background: rgba(243, 246, 242, .05);
  border: 1px dashed rgba(52, 232, 160, .4);
  border-radius: var(--r);
  padding: 2.2rem 1.6rem;
  font-size: 1rem;
  color: #D7E4DC;
  max-width: 56ch;
}
.video-soon a { color: var(--mint); font-weight: 700; }

/* ---------- READS: MODULE GROUPS ---------- */

.read-group { margin-bottom: 3.2rem; }
.read-group:last-child { margin-bottom: 0; }

.read-group-head { margin-bottom: 1.3rem; }

.read-group-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 3.4vw, 1.6rem);
  letter-spacing: -0.01em;
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 3px solid var(--mint);
}

.read-group-note {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.article-meta .part {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  border: 1.5px solid var(--saffron-deep);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
}

/* ---------- WATCH: VIDEO CARDS ---------- */

.video-card {
  background: var(--pine);
  border: 1px solid rgba(52, 232, 160, .18);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.video-card .video-frame { border-radius: 0; }

.video-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--cloud);
  padding: 1rem 1.2rem 0.35rem;
}

.video-article {
  display: block;
  padding: 0 1.2rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--mint);
  text-decoration: none;
}
.video-article:hover { text-decoration: underline; }

.video-channel { margin-top: 2rem; }

/* ---------- MYTH vs FACT ---------- */

.myths-band {
  background:
    radial-gradient(700px 420px at 10% -15%, rgba(255, 175, 46, .10), transparent 60%),
    var(--void);
}

.myth-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .myth-grid { grid-template-columns: repeat(2, 1fr); } }

.myth-card {
  background: var(--pine);
  border: 1px solid rgba(243, 246, 242, .14);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s ease;
}
.myth-card.revealed { border-color: rgba(52, 232, 160, .45); }

.myth-front {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 1.25rem 1.3rem;
  color: var(--cloud);
  font-family: var(--body);
}

.myth-q {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

.myth-hint {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}
.myth-card.revealed .myth-hint { display: none; }

.myth-back { padding: 0 1.3rem 1.3rem; }

/* Verdict — set like the site's rubber stamp */
.verdict {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border: 2px solid currentColor;
  border-radius: 6px;
  transform: rotate(-2deg);
  margin-bottom: 0.8rem;
}
.verdict-myth { color: var(--saffron); }
.verdict-fact { color: var(--mint); }

.myth-why {
  font-size: 0.95rem;
  color: #D7E4DC;
  margin-bottom: 0.7rem;
}

.myth-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--mint);
  text-decoration: none;
}
.myth-link:hover { text-decoration: underline; }

/* ---------- NEWSLETTER ---------- */

.section.newsletter {
  background:
    radial-gradient(600px 380px at 90% -20%, rgba(52, 232, 160, .14), transparent 60%),
    var(--void);
  color: var(--cloud);
}
.section.newsletter .eyebrow { color: var(--saffron); }
.section.newsletter .section-heading { color: #fff; }
.section.newsletter .section-intro { color: var(--on-dark-dim); }

.newsletter-form {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1 1 220px;
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--cloud);
  background: rgba(243, 246, 242, .07);
  border: 1.5px solid rgba(243, 246, 242, .25);
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
}
.newsletter-form input::placeholder { color: var(--on-dark-dim); }
.newsletter-form input:focus { outline: none; border-color: var(--mint); }
.newsletter-form .btn { border: 0; cursor: pointer; }
.newsletter-note { margin-top: 0.9rem; font-size: 0.9rem; color: var(--saffron); }
.newsletter-embed { max-width: 560px; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 720px; display: grid; gap: 0.8rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.15rem 3rem 1.15rem 1.35rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 1.25rem; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--mint-dim);
  color: var(--mint-dim);
  font-size: 1.15rem;
  line-height: 27px;
  text-align: center;
}
.faq-item[open] summary::after { content: "−"; background: var(--mint); border-color: var(--mint); color: var(--mint-ink); }
.faq-a { padding: 0 1.35rem 1.3rem; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- CUSTOM ---------- */

.custom-block h2 { font-family: var(--display); margin-bottom: 0.8rem; }
.custom-block p { max-width: 62ch; }

/* ---------- FOOTER ---------- */

.footer {
  background: var(--void-2);
  color: var(--on-dark-dim);
  padding: 3.2rem var(--pad) 2.6rem;
  border-top: 1px solid rgba(52, 232, 160, .18);
}
.footer-brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cloud);
  margin-bottom: 1.2rem;
}
.footer-brand em { font-style: normal; color: var(--mint); }
.footer-links {
  display: flex; flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.footer-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #C4D4CB;
  text-decoration: none;
}
.footer-links a:hover { color: var(--mint); }
.footer-disclaimer { font-size: 0.8rem; max-width: 68ch; margin-top: 1.2rem; }
.footer-byline { font-size: 0.8rem; margin-top: 0.9rem; }
