/* ===== CUSTOM FONTS (v23) =====
   Upload Aspal font files to /templates/techtruth/fonts/
   Supports .woff2 (preferred) and .ttf fallback */
@font-face {
  font-family: 'Aspal';
  src: url('../fonts/Aspal.woff2') format('woff2'),
       url('../fonts/Aspal.otf') format('opentype'),
       url('../fonts/Aspal.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #C9A84C;
  --gold-lt:   #E8C97A;
  --gold-dk:   #A07830;
  --cream:     #F8F5EE;
  --cream-dk:  #F0E8D9;
  --dark:      #0E0C09;
  --black:     #1A1710;
  --text:      #2A2520;
  --text-lt:   #5A5550;
  --font:      'Montserrat', sans-serif;
  --serif:     Georgia, 'Times New Roman', serif;
  --display:   'Aspal', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  background: var(--dark);
  overscroll-behavior-y: none;
}
body {
  font-family: var(--font);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
  background: var(--dark);
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  overscroll-behavior-y: none;
}
body > *:not(#marble-bg) { position: relative; z-index: 1; }
.dark-marble > *:not(.dark-marble-canvas) { position: relative; z-index: 1; }
a { color: var(--gold-dk); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  isolation: isolate;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  background: rgba(14,12,9,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo {
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-icon {
  width: 28px; height: 28px;
  display: block;
  object-fit: contain;
}
/* Hamburger toggle — hidden on desktop, shown on mobile (v20) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-lt);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.45);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-lt); text-decoration: none; }

/* ===== HERO — exact viewport height (v19) ===== */
.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem 2rem;
  background: transparent;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(14,12,9,0.82);
  border: 1px solid rgba(201,168,76,0.32);
  padding: 0.55rem 1.5rem;
  border-radius: 3px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  color: var(--dark);
  text-shadow: 0 2px 48px rgba(255,255,255,0.55), 0 1px 0 rgba(255,255,255,0.4);
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  color: var(--black);
  max-width: 520px;
  margin: 0 auto 2.2rem;
  line-height: 1.55;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7), 0 0 14px rgba(255,255,255,0.85);
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold-dk); color: #fff; }
.btn-primary:hover {
  background: var(--gold); color: #fff; text-decoration: none;
  transform: translateY(-2px); box-shadow: 0 10px 32px rgba(160,120,48,0.38);
}
.btn-outline {
  background: rgba(255,255,255,0.55);
  color: var(--dark);
  border: 1.5px solid rgba(26,23,16,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold-dk); color: var(--gold-dk); text-decoration: none;
  transform: translateY(-2px); background: rgba(255,255,255,0.85);
}

/* ===== GOLD DIVIDER ===== */
.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 3.5rem;
}

/* ===== SECTIONS ===== */
section { padding: 7rem 2rem; }
.container { max-width: 1060px; margin: 0 auto; }

/* section-label — BIGGER for readability (v16) */
.section-label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 1.25rem;
  display: block;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 400;
  color: var(--dark); margin-bottom: 1.5rem; line-height: 1.12;
  letter-spacing: -0.005em;
}
.section-desc {
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
  max-width: 580px;
  line-height: 1.75;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7), 0 0 14px rgba(255,255,255,0.85);
}

/* ===== DARK MARBLE WRAPPER ===== */
.dark-marble {
  position: relative;
  overflow: hidden;
}
.dark-marble-canvas { display: block; }
/* Subtle global darkening over the marble — NOT a text backdrop, uniform across whole section (v19) */
.dark-marble::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  pointer-events: none;
  z-index: 0;
}

/* TEXT-LIFT on dark marble — heavy multi-layer dark aura (v17: stronger for reliable readability over gold veins) */
.dark-marble .section-label {
  color: var(--gold-lt);
  font-weight: 800;
  text-shadow:
    0 0 12px rgba(0,0,0,1),
    0 0 28px rgba(0,0,0,0.98),
    0 0 56px rgba(0,0,0,0.90),
    0 0 90px rgba(0,0,0,0.70),
    0 2px 6px rgba(0,0,0,0.98),
    0 1px 0 rgba(0,0,0,0.95);
}
.dark-marble .section-title {
  color: #FAF8F3;
  text-shadow:
    0 0 14px rgba(0,0,0,1),
    0 0 36px rgba(0,0,0,0.98),
    0 0 72px rgba(0,0,0,0.88),
    0 0 120px rgba(0,0,0,0.65),
    0 3px 8px rgba(0,0,0,0.98),
    0 1px 0 rgba(0,0,0,0.95);
}

/* ===== ABOUT ===== */
#about {
  clip-path: polygon(0 3.5rem, 100% 0, 100% 100%, 0 calc(100% - 1.5rem));
  padding-top: 9rem;
  padding-bottom: 8rem;
  margin-top: -1px;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
/* About body text — heavy text-lift so paragraphs read cleanly over gold veins (v17) */
.about-text p {
  color: #F8F5EE;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1.15rem;
  line-height: 1.8;
  text-shadow:
    0 0 10px rgba(0,0,0,1),
    0 0 22px rgba(0,0,0,0.98),
    0 0 44px rgba(0,0,0,0.85),
    0 0 80px rgba(0,0,0,0.55),
    0 2px 5px rgba(0,0,0,0.98),
    0 1px 0 rgba(0,0,0,0.95);
}
.about-quote {
  border-left: 2px solid var(--gold);
  padding: 2rem 1.5rem 2rem 2rem;
  font-size: 1.08rem; font-weight: 600; font-style: italic;
  color: #FAF8F3; line-height: 1.65;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
#about a.btn-outline {
  color: #FAF8F3;
  border-color: rgba(201,168,76,0.42);
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-top: 1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
#about a.btn-outline:hover {
  color: var(--gold-lt);
  border-color: var(--gold);
  background: rgba(0,0,0,0.68);
  text-decoration: none;
}

/* ===== PILLARS — premium editorial cards with SVG icons (v16) ===== */
#pillars {
  text-align: center;
  background: transparent;
  padding-top: 8rem;
  padding-bottom: 7rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  counter-reset: pillar;
}
.pillar {
  position: relative;
  padding: 3rem 2rem 2.4rem;
  background: linear-gradient(155deg, rgba(255,253,248,0.95) 0%, rgba(248,243,234,0.88) 100%);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(201,168,76,0.18);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 14px 40px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
  text-align: left;
  counter-increment: pillar;
  transition: transform 0.45s ease, box-shadow 0.45s, border-color 0.45s;
  overflow: hidden;
  isolation: isolate;
}
.pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold-dk) 0%, var(--gold-lt) 50%, var(--gold-dk) 100%);
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pillar:hover::after { transform: scaleX(1); }
.pillar::before {
  content: '0' counter(pillar);
  position: absolute;
  top: 1.1rem; right: 1.4rem;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(160,120,48,0.22);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.45s, transform 0.45s;
  z-index: -1;
}
.pillar:hover::before { color: rgba(201,168,76,0.50); transform: scale(1.08); }
.pillar:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.40);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 30px 70px rgba(0,0,0,0.15);
}
/* Icon in gold-tinted circle — SVG stroke icons (v16) */
.pillar-icon {
  width: 58px; height: 58px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(201,168,76,0.20) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: transform 0.45s, border-color 0.45s, background 0.45s;
}
.pillar-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold-dk);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.45s;
}
.pillar:hover .pillar-icon {
  transform: scale(1.06) rotate(-3deg);
  border-color: rgba(201,168,76,0.60);
  background: linear-gradient(145deg, rgba(201,168,76,0.28) 0%, rgba(201,168,76,0.08) 100%);
}
.pillar:hover .pillar-icon svg { stroke: var(--gold); }
.pillar h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.6rem;
  text-transform: none; letter-spacing: 0; line-height: 1.3;
}
.pillar p {
  font-size: 1rem; color: var(--text);
  font-weight: 400; line-height: 1.65;
}

/* ===== SUPPORT — dark marble with MIRRORED clip-path (v17: left tall, right short — opposite of #about/#educators) ===== */
#support {
  text-align: center;
  padding: 6.5rem 2rem;
  clip-path: polygon(0 0, 100% 2.5rem, 100% calc(100% - 2.5rem), 0 100%);
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.support-inner { max-width: 680px; margin: 0 auto; }
#support .section-label {
  margin-bottom: 1.75rem;
}
.support-quote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: #FAF8F3;
  line-height: 1.4;
  margin-bottom: 1.8rem;
  letter-spacing: -0.005em;
  text-shadow:
    0 0 14px rgba(0,0,0,1),
    0 0 32px rgba(0,0,0,0.98),
    0 0 64px rgba(0,0,0,0.88),
    0 0 110px rgba(0,0,0,0.60),
    0 3px 8px rgba(0,0,0,0.98),
    0 1px 0 rgba(0,0,0,0.95);
}
.support-quote em {
  color: var(--gold-lt);
  font-style: italic;
}
.support-note {
  font-size: 1rem;
  color: #F8F5EE;
  font-weight: 500;
  margin-bottom: 2.4rem;
  line-height: 1.8;
  text-shadow:
    0 0 10px rgba(0,0,0,1),
    0 0 22px rgba(0,0,0,0.98),
    0 0 44px rgba(0,0,0,0.85),
    0 0 80px rgba(0,0,0,0.55),
    0 2px 5px rgba(0,0,0,0.98),
    0 1px 0 rgba(0,0,0,0.95);
}
#support .btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 6px 22px rgba(201,168,76,0.25);
}
#support .btn-primary:hover {
  background: var(--gold-lt);
  color: var(--dark);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(201,168,76,0.42);
}

/* ===== ESSAYS — magazine cards, alternating tints ===== */
#essays {
  background: transparent;
  padding-top: 7.5rem;
  padding-bottom: 8rem;
  position: relative;
}
#essays .section-title { color: var(--dark); }
.essays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
  counter-reset: essay;
}
.essay-card {
  position: relative;
  padding: 2.6rem 2rem 2.2rem;
  background: linear-gradient(155deg, rgba(255,253,248,0.95) 0%, rgba(248,244,236,0.88) 100%);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border: 1px solid rgba(0,0,0,0.04);
  border-left: 3px solid var(--gold-dk);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 12px 36px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
  counter-increment: essay;
  transition: transform 0.45s ease, box-shadow 0.45s, border-left-color 0.45s;
  overflow: hidden;
}
.essay-card:nth-child(even) {
  background: linear-gradient(155deg, rgba(250,244,232,0.95) 0%, rgba(238,228,207,0.85) 100%);
  border-left-color: var(--gold);
}
.essay-card::before {
  content: '0' counter(essay);
  position: absolute;
  top: 1.1rem; right: 1.5rem;
  font-family: var(--serif);
  font-size: 3.2rem; font-style: italic; font-weight: 400;
  color: rgba(160,120,48,0.22);
  letter-spacing: -0.03em; line-height: 1;
  transition: color 0.45s, transform 0.45s;
}
.essay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 30px 70px rgba(0,0,0,0.15);
  border-left-color: var(--gold);
}
.essay-card:hover::before { color: rgba(201,168,76,0.55); transform: scale(1.08); }
.essay-tag {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold-dk); margin-bottom: 0.9rem; display: block;
}
.essay-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.8rem;
  line-height: 1.3; max-width: 85%;
}
.essay-card p {
  font-size: 1rem; color: var(--text);
  font-weight: 400; margin-bottom: 1.4rem; line-height: 1.65;
}
.essay-link {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dk);
}
.essay-link:hover { color: var(--gold); text-decoration: none; }
.essay-link::after { content: ' →'; }

/* ===== EDUCATORS — dark marble, diagonal top ===== */
#educators {
  text-align: center;
  clip-path: polygon(0 3.5rem, 100% 0, 100% 100%, 0 100%);
  padding-top: 9rem;
  padding-bottom: 6rem;
  margin-top: -1px;
}
.educators-box {
  max-width: 580px; margin: 3rem auto 0; padding: 3rem;
  border: 1px solid rgba(201,168,76,0.32);
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Educators box text — stronger lift to match About paragraphs (v17) */
.educators-box p {
  color: #F8F5EE;
  font-weight: 500; margin-bottom: 2rem; line-height: 1.8;
  text-shadow:
    0 0 10px rgba(0,0,0,1),
    0 0 22px rgba(0,0,0,0.98),
    0 0 44px rgba(0,0,0,0.85),
    0 2px 5px rgba(0,0,0,0.98);
}
.educators-box .btn-primary { background: var(--gold); color: var(--dark); }
.educators-box .btn-primary:hover { background: var(--gold-lt); color: var(--dark); text-decoration: none; }

/* ===== SUBSCRIBE — LIGHT section ===== */
#subscribe {
  text-align: center;
  background: transparent;
  padding: 7rem 2rem;
}
#subscribe .section-label { color: var(--gold-dk); }
#subscribe .section-title {
  color: var(--dark);
  text-shadow: 0 2px 20px rgba(255,255,255,0.70), 0 1px 3px rgba(255,255,255,0.65);
}
.subscribe-inner { max-width: 540px; margin: 0 auto; }
.subscribe-inner p {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 2.5rem; line-height: 1.75;
  text-shadow: 0 1px 0 rgba(255,255,255,0.70), 0 0 12px rgba(255,255,255,0.85);
}
#subscribe .btn-primary { background: var(--gold-dk); color: #fff; }
#subscribe .btn-primary:hover { background: var(--gold); color: #fff; text-decoration: none; }

/* ===== FOOTER — bigger text + lift effect + no clip-path + dark safety shadow (v16) ===== */
footer {
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.30);
  margin-top: 0;
  /* Dark safety shadow extends below footer — kills white marble overscroll */
  box-shadow: 0 500px 0 500px var(--dark);
}
.footer-logo {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.7rem;
  display: block;
  text-shadow:
    0 0 20px rgba(0,0,0,0.98),
    0 0 40px rgba(0,0,0,0.75),
    0 2px 5px rgba(0,0,0,0.92);
}
footer p {
  font-size: 1rem;
  color: #F0ECE4;
  font-weight: 500;
  line-height: 2;
  text-shadow:
    0 0 16px rgba(0,0,0,0.95),
    0 0 32px rgba(0,0,0,0.65),
    0 2px 4px rgba(0,0,0,0.88);
}
footer a {
  color: #FAF8F3;
  font-weight: 600;
  margin: 0 0.9rem;
  transition: color 0.2s;
}
footer a:hover { color: var(--gold-lt); text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  /* BIGGER body text on mobile for readability (v21) */
  body { font-size: 17.5px; line-height: 1.7; }
  nav { padding: 1rem 1.25rem; flex-wrap: wrap; align-items: center; }
  nav.nav-open { background: rgba(14,12,9,0.98); }
  .nav-toggle { display: block; }
  /* Dropdown flows naturally via flex-wrap — nav itself grows taller when open.
     No position:fixed/absolute on dropdown. Nav is already fixed, so an expanded
     nav covers hero content below. Eliminates ALL z-index / stacking-context issues. (v25) */
  .nav-links {
    flex-basis: 100%;
    order: 3;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    transition: max-height 0.35s ease, margin-top 0.35s ease, padding 0.35s ease;
  }
  /* Kill hero-badge backdrop-filter on mobile (v22) */
  .hero-badge { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links li { padding: 0; }
  .nav-links a { display: block; padding: 0.9rem 0; color: rgba(245,242,236,0.85); font-size: 0.78rem; border-top: 1px solid rgba(201,168,76,0.08); }
  .nav-links li:first-child a { border-top: none; }
  nav.nav-open .nav-links { max-height: 420px; margin-top: 0.6rem; padding: 0.3rem 0 0.5rem; border-top: 1px solid rgba(201,168,76,0.18); }
  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* Hero sub bigger */
  .hero-sub { font-size: 1.05rem; line-height: 1.6; max-width: 100%; }
  .hero-badge { font-size: 0.60rem; padding: 0.5rem 1.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Body paragraphs bigger on mobile */
  .about-text p,
  .educators-box p,
  .subscribe-inner p,
  .support-note,
  .section-desc,
  .essay-card p,
  .pillar p,
  footer p {
    font-size: 1.08rem;
    line-height: 1.75;
  }
  .about-quote { font-size: 1.12rem; line-height: 1.7; }
  .pillar h3, .essay-card h3 { font-size: 1.15rem; }
  section { padding: 5rem 1.25rem; }
  #about, #educators, #support { clip-path: none; padding-top: 5rem; padding-bottom: 5rem; margin-top: 0; margin-bottom: 0; }
  #pillars, #subscribe { padding: 5rem 1.25rem; }
  footer { padding: 3.5rem 1.25rem 2.5rem; }
  .educators-box { padding: 2rem 1.25rem; }
  .pillar::before, .essay-card::before { font-size: 2.4rem; }
  .section-label { font-size: 0.82rem; letter-spacing: 0.24em; }
}