/* =========================
   SELF-HOSTED FONTS (LOCKED)
   ========================= */

/* INTER */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* POPPINS */
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* =========================
   FONT ASSIGNMENTS (LOCKED)
   ========================= */
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.h1, h1, h2, .brandStrong, .dropText, .dailyText, .quoteText{
  font-family: "Poppins", "Inter", system-ui;
}


:root{
  --yellow:#FFC316; /* soft smiley yellow */
  --yellow2:#FFC316;
  --ink:#0f0f10;
  --muted: rgba(15,15,16,.68);
  --hair: rgba(15,15,16,.14);
  --paper:#ffffff;
  --bg:#F5F5F6;
  --radius:34px;
  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --shadow2: 0 10px 24px rgba(0,0,0,.08);
  --max: 1080px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.shell{
  max-width: var(--max);
  margin: 18px auto 60px;
  padding: 0 14px;
}

.page{
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

/* Top nav inside hero */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 18px 22px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.brandMark{
  width:34px;height:34px;border-radius:999px;
  background: var(--ink);
  color: var(--yellow);
  display:grid;place-items:center;
  font-weight: 800;
  letter-spacing:.06em;
  flex: 0 0 auto;
}
.brandName{
  font-weight:950;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.navRight{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  border:1px solid rgba(15,15,16,.12);
  border-radius:999px;
  padding:10px 12px;
  font-size:12px;
  font-weight:850;
  background: rgba(255,255,255,.52);
}

.iconBtn{
  width:38px;height:38px;border-radius:999px;
  border:1px solid rgba(15,15,16,.12);
  background: rgba(255,255,255,.52);
  display:grid;place-items:center;
  text-decoration:none;
  color: var(--ink);
  font-weight:900;
}

/* Hero */
.hero{
  background: var(--yellow);
  padding: 14px 22px 26px;
  position:relative;
}

.heroInner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:center;
  padding: 20px 0 10px;
}

.kicker{
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.85;
}
.h1{
  margin:10px 0 0;
  font-size:54px;
  line-height:1.02;
  letter-spacing:-0.03em;
}
.h1 span{
  display:inline-block;
  padding: 0 10px;
  border-radius:12px;
  background: rgba(255,255,255,.36);
}
.lede{
  margin:12px 0 0;
  max-width: 60ch;
  color: rgba(15,15,16,.72);
  line-height:1.75;
  font-size:15px;
}

.actions{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(15,15,16,.14);
  background: rgba(255,255,255,.52);
  color: var(--ink);
  text-decoration:none;
  font-weight:950;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2);}
.btnPrimary{
  background: var(--ink);
  color: white;
  border-color: rgba(15,15,16,.22);
}

.heroCircle{
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 10px solid rgba(255,255,255,.75);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  display:grid;
  place-items:center;
  margin-left:auto;
  overflow:hidden;
}

.heroCircleInner{
  width: 78%;
  height: 78%;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(0,0,0,.10), rgba(0,0,0,.02));
  display:grid;
  place-items:center;
}

.heroCircleInner .gbf{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--yellow);
  display:grid;
  place-items:center;
  font-weight: 800;
  letter-spacing:.08em;
}

/* Section blocks */
.section{
  padding: 28px 22px;
}

.sectionHead{
  text-align:center;
  margin-bottom:18px;
}
.sectionTag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(246,227,90,.35);
  border:1px solid rgba(15,15,16,.10);
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:11px;
}
.sectionTitle{
  margin:10px 0 0;
  font-size:26px;
  letter-spacing:-0.01em;
}

.twoCol{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}

.card{
  border:1px solid var(--hair);
  border-radius: 18px;
  padding:16px;
  background: #fff;
}

.p{
  margin:0;
  color: rgba(15,15,16,.72);
  line-height:1.75;
  font-size:15px;
}

.stats{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}

.stat{
  grid-column: span 6;
  border:1px solid var(--hair);
  border-radius: 18px;
  padding:16px;
  background:#fff;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}
.statNum{
  font-size:44px;
  line-height:1;
  font-weight: 800;
  letter-spacing:-0.02em;
}
.statLabel{
  font-size:12px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: rgba(15,15,16,.62);
}

/* Feature row */
.features{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.feature{
  grid-column: span 4;
  border:1px solid var(--hair);
  border-radius:18px;
  padding:16px;
  background:#fff;
}
.featureIcon{
  width:42px;height:42px;border-radius:12px;
  background: rgba(246,227,90,.45);
  border:1px solid rgba(15,15,16,.10);
  display:grid;place-items:center;
  font-weight: 800;
}
.featureTitle{
  margin:10px 0 0;
  font-weight:950;
}
.featureText{
  margin:8px 0 0;
  color: rgba(15,15,16,.72);
  line-height:1.65;
  font-size:14px;
}

/* Daily page */
.dailyHeader{
  background: var(--yellow);
  padding: 14px 22px 18px;
}

.dailyRow{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.switches{display:flex; gap:10px; flex-wrap:wrap}
.switch{
  font-size:12px;
  border:1px solid rgba(15,15,16,.14);
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  color: var(--ink);
  font-weight:950;
  background: rgba(255,255,255,.52);
}
.switch.isOn{
  background: var(--ink);
  color: white;
  border-color: rgba(15,15,16,.22);
}

.drop{
  background:#fff;
  border:1px solid var(--hair);
  border-radius: 18px;
  padding: 18px;
  margin: 18px 22px 26px;
}

.metaRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.tag{
  font-weight:950;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
}
.count{
  font-size:12px;
  color: rgba(15,15,16,.62);
}
.big{
  margin:14px 0 10px;
  font-size:30px;
  line-height:1.25;
  letter-spacing:-0.02em;
  font-weight: 800;
}
.prompt{
  margin:0;
  color: rgba(15,15,16,.72);
  line-height:1.75;
  font-size:15px;
}
.rule{
  height:1px;
  background: var(--hair);
  margin: 16px 0 12px;
}
.footerNote{
  font-size:12px;
  color: rgba(15,15,16,.62);
}

@media (max-width: 900px){
  .heroInner{grid-template-columns: 1fr;}
  .heroCircle{margin-left:0}
  .twoCol{grid-template-columns:1fr}
  .feature{grid-column: span 12}
  .stat{grid-column: span 12}
}
@media (max-width: 520px){
  .h1{font-size:40px}
  .heroCircle{width:200px;height:200px}
  .big{font-size:24px}
}


/* ================= RESPONSIVE IMPROVEMENTS (v2) ================= */
/* Fluid type + spacing so it scales cleanly across phones/tablets/desktops */
:root{
  --radius: clamp(22px, 3vw, 34px);
}

.shell{
  margin: clamp(12px, 2vw, 18px) auto 60px;
}

.nav{
  padding: clamp(12px, 2.2vw, 18px) clamp(14px, 2.6vw, 22px) 0;
}

.hero{
  padding: clamp(12px, 2.2vw, 14px) clamp(14px, 2.6vw, 22px) clamp(18px, 3vw, 26px);
}

.heroInner{
  padding: clamp(14px, 2.6vw, 20px) 0 clamp(6px, 1.6vw, 10px);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
}

.h1{
  font-size: clamp(34px, 5.2vw, 54px);
  letter-spacing: -0.035em;
}

.lede{
  font-size: clamp(14px, 1.7vw, 15px);
}

.heroCircle{
  width: clamp(170px, 34vw, 240px);
  height: clamp(170px, 34vw, 240px);
  border-width: clamp(8px, 1.6vw, 10px);
}

.heroCircleInner .gbf{
  width: clamp(60px, 10vw, 74px);
  height: clamp(60px, 10vw, 74px);
}

/* Better stacking for tablets */
@media (max-width: 980px){
  .heroInner{grid-template-columns: 1fr; align-items:start}
  .heroCircle{margin-left:0; margin-top: 14px}
  .twoCol{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(12,1fr)}
  .stat{grid-column: span 12}
  .features{grid-template-columns:repeat(12,1fr)}
  .feature{grid-column: span 12}
}

/* Tighter mobile layout */
@media (max-width: 520px){
  .navRight .pill{display:none;} /* keeps top clean on tiny screens */
  .section{padding: 22px 16px;}
  .drop{margin: 16px 16px 22px;}
  .dailyHeader{padding: 14px 16px 16px;}
  .btn{padding: 11px 14px;}
}


/* ================= HOMEPAGE LOWER SECTIONS POLISH (v3) ================= */
/* Make bottom sections feel more 'designed' and less like random boxes */

.section{
  padding: clamp(22px, 3vw, 34px) clamp(16px, 2.6vw, 22px);
}

.sectionHead{
  text-align:center;
  margin-bottom: clamp(14px, 2.4vw, 22px);
}

.sectionTitle{
  margin: 10px 0 0;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -0.01em;
}

.sectionTag{
  background: rgba(246,227,90,.40);
}

/* Stats cards: match heights + align content */
.stats{
  align-items: stretch;
}
.stat{
  min-height: 108px;
}
.statNum{
  font-size: clamp(34px, 4.2vw, 44px);
}

/* Features: consistent card design with a top accent + better icon treatment */
.features{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.feature{
  grid-column: span 4;
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 18px 18px 16px;
  background: #fff;
  position:relative;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

/* subtle top accent line like the reference */
.feature::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:6px;
  background: linear-gradient(90deg, rgba(15,15,16,.10), rgba(15,15,16,0));
}
.feature:nth-child(1)::before{ background: linear-gradient(90deg, rgba(246,227,90,.95), rgba(246,227,90,0)); }
.feature:nth-child(2)::before{ background: linear-gradient(90deg, rgba(246,227,90,.70), rgba(246,227,90,0)); }
.feature:nth-child(3)::before{ background: linear-gradient(90deg, rgba(246,227,90,.55), rgba(246,227,90,0)); }

.featureIcon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(246,227,90,.55);
  border: 1px solid rgba(15,15,16,.10);
  display:grid;
  place-items:center;
  font-weight: 800;
  margin-bottom: 10px;
}

.featureTitle{
  margin: 0;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.featureText{
  margin: 8px 0 0;
  color: rgba(15,15,16,.72);
  line-height: 1.7;
  font-size: 14px;
}

/* Equal heights + better alignment */
.feature{
  display:flex;
  flex-direction:column;
}
.featureText{
  flex:1;
}
.feature .featureText + *{
  margin-top:auto;
}

/* Mobile stacking: 1 per row, with comfy spacing */
@media (max-width: 900px){
  .feature{ grid-column: span 12; }
}


/* ================= ALIGNMENT + NAV SCALING (v4) ================= */

/* Left-align the lower sections for a cleaner editorial feel */
.sectionHead{
  text-align:left;
  margin-bottom: clamp(14px, 2.4vw, 20px);
}
.sectionTag{
  margin-left:0;
}
.sectionTitle{
  text-align:left;
}

/* Ensure the two-column area reads left-aligned */
.twoCol{
  align-items: stretch;
}
.card, .stat, .feature{
  text-align:left;
}

/* Top-right pills scale better (no weird wrapping) */
.navRight{
  gap: clamp(6px, 1.4vw, 10px);
}

.pill{
  font-size: clamp(10px, 1.25vw, 12px);
  padding: clamp(8px, 1.2vw, 10px) clamp(10px, 1.6vw, 12px);
  white-space: nowrap;
}

/* On small screens, keep only the most useful pill */
@media (max-width: 520px){
  .navRight .pill{display:none;}
  .navRight .pill:first-child{display:inline-block;}
}

/* Replace the hero circle with a 'badge' card that can contain a QR */
.heroCircle{
  width: clamp(210px, 40vw, 280px);
  height: clamp(210px, 40vw, 280px);
  border-radius: 28px;
  border-width: 0;
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.heroCircleInner{
  width:100%;
  height:100%;
  border-radius: 22px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,15,16,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 14px;
}

/* QR block */
.fakeQR{
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15,15,16,.14);
  display:grid;
  place-items:center;
}

.fakeQR svg{
  width: 104px;
  height: 104px;
  display:block;
}


/* ================= ROUND BADGE + MOBILE SCALE TUNING (v5) ================= */

/* Make the hero badge round (matches your real product) */
.heroCircle{
  width: clamp(180px, 46vw, 250px);
  height: clamp(180px, 46vw, 250px);
  border-radius: 999px;
  padding: 14px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  position:relative;
}

/* subtle outer rim */
.heroCircle::before{
  content:"";
  position:absolute;
  inset: 8px;
  border-radius: 999px;
  border: 2px solid rgba(15,15,16,.10);
  pointer-events:none;
}

.heroCircleInner{
  border-radius: 999px;
  padding: 16px;
  border: 1px solid rgba(15,15,16,.12);
  background: rgba(255,255,255,.78);
}

/* QR sits nicely inside circle */
.fakeQR{
  width: clamp(98px, 22vw, 118px);
  height: clamp(98px, 22vw, 118px);
  border-radius: 14px;
}

/* Tighten hero vertical rhythm on phones */
@media (max-width: 520px){
  .hero{ padding: 12px 16px 18px; }
  .heroInner{ padding: 14px 0 6px; gap: 12px; }
  .kicker{ margin-top: 2px; }
  .lede{ margin-top: 10px; }
  .actions{ margin-top: 12px; gap: 10px; }
  .btn{ padding: 11px 14px; border-radius: 12px; }

  /* Slightly smaller headline so it breathes */
  .h1{ font-size: 38px; line-height: 1.03; }

  /* Reduce dominance of badge and tighten spacing */
  .heroCircle{ margin-top: 8px; width: min(235px, 78vw); height: min(235px, 78vw); }
}

/* Prevent top-right pills from forcing layout on narrow widths */
@media (max-width: 380px){
  .navRight .pill{display:none;}
}


/* ================= HOMEPAGE SIMPLIFICATION (v6) ================= */

/* Brand name stronger + readable on mobile */
.brandName{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brandStrong{
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
}
.brandSub{
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: .72;
}

/* Top-right link pill */
.pillLink{
  text-decoration:none;
  color: var(--ink);
}

/* QR presentation */
.fakeQRWrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.fakeQR{
  width: clamp(128px, 26vw, 150px);
  height: clamp(128px, 26vw, 150px);
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.fakeQR svg{width:100%; height:100%}
.qrCaption{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .72;
}

/* Combined "Daily drops" card */
.card.callout{
  background: rgba(255,255,255,.92);
}
.calloutTag{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(246,227,90,.45);
  border: 1px solid rgba(15,15,16,.10);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
}
.calloutTitle{
  margin-top: 10px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.01em;
}
.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(15,15,16,.78);
  line-height: 1.7;
  font-size: 14px;
}
.bullets li{margin: 8px 0}
.bullets strong{color: var(--ink)}

/* Remove icon button styling (kept harmless) */
.iconBtn{display:none}

/* Mobile: keep header clean */
@media (max-width: 520px){
  .brandStrong{font-size: 12px}
  .brandSub{font-size: 10px}
  .pillLink{font-size: 11px}
  .twoCol{gap:14px}
}


/* ================= THREE CARD ROW (v8) ================= */
.threeCol{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  align-items: stretch;
}
.threeCol > .card{
  grid-column: span 4;
}

/* Make callout cards feel consistent in height */
.card.callout{
  display:flex;
  flex-direction:column;
}
.card.callout .p{margin-top:10px}
.card.callout .bullets{margin-top:10px}

/* Responsive: 2-up on tablets, 1-up on phones */
@media (max-width: 900px){
  .threeCol > .card{grid-column: span 12;}
}


body{font-family:'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial;}


/* ================= TYPOGRAPHY + LOGO (v10) ================= */
:root{
  --bg: #F6F2EA; /* warm off-white like your reference */
}

/* Logo mark */
.logoMark{
  width: 38px;
  height: 44px;
  display:block;
  flex: 0 0 auto;
}

/* Make brand read stronger */
.brandStrong{
  font-weight: 800;
  letter-spacing: .20em;
}
.brandSub{
  font-weight: 700;
}

/* Big, confident headline like the reference */
.h1{
  font-weight: 800;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

/* Tighter hero text rhythm */
.kicker{
  font-weight: 700;
  letter-spacing: .22em;
}

.lede{
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 52ch;
}

/* Buttons more editorial */
.btn{
  border-radius: 14px;
  font-weight: 700;
}
.btnPrimary{
  border-radius: 14px;
}

/* Improve top nav spacing on mobile */
@media (max-width: 520px){
  .logoMark{width: 34px; height: 40px;}
  .h1{font-size: 44px;}
}


/* ================= LOGO VISIBILITY (v11) ================= */
.logoMark{
  /* subtle pop on light backgrounds */
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.06));
}


/* ================= HEADER LOGO CONTRAST (v12) ================= */
.logoMark{
  background: rgba(255,255,255,.92);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(15,15,16,.10);
}

/* ================= DAILY DROP TYPO VARIATION (v12) ================= */
.big{
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
}

.drop--quote .big,
.drop--poem .big{
  font-size: clamp(30px, 4.6vw, 52px);
  letter-spacing: -0.015em;
}

.drop--poem .big{
  font-style: italic;
}

.prompt{
  font-size: clamp(14px, 1.7vw, 16px);
}


/* =========================
   FONT OVERRIDES (v13)
   ========================= */
body { font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial; }
.h1, h1, h2, .brandStrong, .dropText, .dailyText, .quoteText { font-family: "Poppins", "Inter", system-ui; }


/* =========================
   FINAL POLISH PASS (v14)
   ========================= */

/* 1) Headings slightly less blocky, keep logo strong */
.h1, h1, h2{
  font-weight: 700 !important;
}
.brandStrong{
  font-weight: 800 !important;
}

/* 2) Body text breathes a touch more */
.lede, .card p, .feature p{
  line-height: 1.6 !important;
}

/* Slightly calmer body size on wider screens */
@media (min-width: 900px){
  body{ font-size: 15.5px; }
}

/* 3) Logo mark presence in hero/nav */
.logoMark{
  transform: scale(1.08);
  transform-origin: left center;
}

/* 4) Card title spacing for better hierarchy */
.card h2, .card h3, .cardTitle{
  margin-top: 10px !important;
}

