/*
Theme Name: ThinkTrainBuild
Theme URI: https://thinktrainbuild.in
Author: ThinkTrainBuild
Author URI: https://thinktrainbuild.in
Description: A performance-driven blog focused on Body, Mind, and Intelligence. Think clearly. Train consistently. Build better.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thinktrainbuild
Tags: blog, fitness, minimal, clean
*/

:root {
  --green: #3EAB5F;
  --green-light: #D6F0DC;
  --green-mid: #A8DDB5;
  --blue: #2F6FED;
  --blue-light: #D4E4FB;
  --blue-mid: #93BCFB;
  --amber: #F5A623;
  --amber-light: #FEF0D4;
  --bg: #F4F6F0;
  --bg-card: #FAFBF8;
  --beige: #F8F5EE;
  --text: #1A2018;
  --text-mid: #4A5547;
  --text-soft: #8A9487;
  --border: #E2E8DE;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(30,50,26,0.08);
  --shadow-hover: 0 8px 40px rgba(30,50,26,0.14);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,246,240,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800; font-size: 1.25rem;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-train { color: var(--green); }
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); display: inline-block;
}
.site-nav { display: flex; gap: 2px; align-items: center; }
.site-nav a {
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  color: var(--text-mid); text-decoration: none;
  padding: 6px 14px; border-radius: 8px; transition: all 0.2s;
}
.site-nav a:hover { background: var(--green-light); color: var(--green); }
.site-nav .nav-cta {
  background: var(--green); color: #fff !important;
  border-radius: 10px; padding: 8px 18px;
  font-weight: 600; font-size: 0.875rem;
}
.site-nav .nav-cta:hover { background: #34944f; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(62,171,95,0.3); }
.nav-mobile-toggle {
  display: none; cursor: pointer; padding: 8px;
  border-radius: 8px; border: none; background: transparent;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 4px 0; border-radius: 2px; transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 12px; text-decoration: none;
  transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: #34944f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(62,171,95,0.35); }
.btn-secondary { background: var(--bg-card); color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 64px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 80px 5vw; gap: 60px;
  background: linear-gradient(135deg, var(--bg) 60%, var(--green-light) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(62,171,95,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green);
  font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 24px; border: 1px solid var(--green-mid);
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-desc { font-size: 1.1rem; color: var(--text-mid); max-width: 480px; line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 40px;
  padding-top: 36px; border-top: 1px solid var(--border);
}
.hero-stat-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--text); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: var(--text-soft); margin-top: 3px; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-illo {
  width: 100%; max-width: 460px;
  background: var(--bg-card); border-radius: 28px; padding: 40px;
  box-shadow: var(--shadow); border: 1px solid var(--border); position: relative;
  animation: float 6s ease-in-out infinite;
}
.illo-svg { width: 100%; height: auto; display: block; }
.hero-float-card {
  position: absolute; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow);
  font-size: 0.82rem; font-weight: 500; display: flex; align-items: center; gap: 10px;
}
.hero-float-card-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.float-1 { bottom: -20px; left: -30px; animation: float 5s ease-in-out 1s infinite; }
.float-2 { top: -16px; right: -20px; animation: float 7s ease-in-out 0.5s infinite; }
.float-3 { top: 50%; right: -40px; transform: translateY(-50%); animation: float 6s ease-in-out 2s infinite; }

/* ── SECTIONS ── */
.section { padding: 96px 5vw; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--green); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; line-height: 1.7; }
.section-head { margin-bottom: 56px; }
.text-center { text-align: center; }

/* ── PILLARS ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.pillar-think::before { background: linear-gradient(90deg, var(--blue), var(--blue-mid)); }
.pillar-train::before { background: linear-gradient(90deg, var(--green), var(--green-mid)); }
.pillar-build::before { background: linear-gradient(90deg, var(--amber), #fbd38d); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pillar-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.pillar-think .pillar-icon { background: var(--blue-light); }
.pillar-train .pillar-icon { background: var(--green-light); }
.pillar-build .pillar-icon { background: var(--amber-light); }
.pillar-word { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.pillar-think .pillar-word { color: var(--blue); }
.pillar-train .pillar-word { color: var(--green); }
.pillar-build .pillar-word { color: var(--amber); }
.pillar-sub { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 20px; }
.pillar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.78rem; font-weight: 500; padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text-mid); background: var(--bg);
  transition: all 0.2s;
}
.tag:hover { background: var(--green-light); border-color: var(--green-mid); color: var(--green); }

/* ── ARTICLES GRID ── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all 0.3s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.article-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card-img .img-placeholder { font-size: 3rem; }
.article-card-body { padding: 20px 22px 24px; }
.article-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 8px;
  display: inline-block; padding: 3px 10px; border-radius: 999px;
}
.cat-think { background: var(--blue-light); color: var(--blue); }
.cat-train { background: var(--green-light); color: var(--green); }
.cat-build { background: var(--amber-light); color: var(--amber); }
.article-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; letter-spacing: -0.01em; }
.article-meta { font-size: 0.78rem; color: var(--text-soft); }
.article-read { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--green); margin-top: 16px; text-decoration: none; transition: gap 0.2s; }
.article-read:hover { gap: 10px; }

/* ── JOURNEY ── */
.journey-section { background: var(--beige); }
.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.journey-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--green-mid), var(--blue-mid), var(--amber));
  z-index: 0;
}
.journey-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 20px; border: 3px solid var(--bg); box-shadow: 0 0 0 4px var(--bg);
}
.step-1 .step-num { background: var(--green-light); color: var(--green); }
.step-2 .step-num { background: var(--blue-light); color: var(--blue); }
.step-3 .step-num { background: var(--amber-light); color: var(--amber); }
.step-4 .step-num { background: #ede9fe; color: #7c3aed; }
.step-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.step-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }
.mt-48 { margin-top: 48px; }

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
  background: linear-gradient(135deg, #1a2a1e 0%, #1a2535 100%);
  padding: 96px 5vw; text-align: center; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(62,171,95,0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.newsletter-section::after {
  content: ''; position: absolute; bottom: -80px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(47,111,237,0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.newsletter-section .section-title { color: #fff; }
.newsletter-section .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto 40px; }
.newsletter-section .section-label { color: var(--green-mid); }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08); color: #fff;
  font-family: var(--font-body); font-size: 0.95rem; outline: none;
  transition: border-color 0.2s; backdrop-filter: blur(10px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--green); }
.newsletter-form button {
  padding: 14px 24px; background: var(--green); color: #fff;
  border: none; border-radius: 12px; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s; white-space: nowrap;
}
.newsletter-form button:hover { background: #34944f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(62,171,95,0.4); }
.newsletter-note { color: rgba(255,255,255,0.35); font-size: 0.78rem; margin-top: 14px; position: relative; z-index: 1; }

/* ── FOOTER ── */
.site-footer { background: #111a0f; color: rgba(255,255,255,0.6); padding: 64px 5vw 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: all 0.2s;
}
.social-link:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ── BLOG PAGE ── */
.blog-hero { background: linear-gradient(135deg, var(--green-light) 0%, var(--blue-light) 100%); padding: 72px 5vw 56px; }
.blog-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.blog-hero p { font-size: 1rem; color: var(--text-mid); }
.blog-filters {
  display: flex; gap: 10px; align-items: center; padding: 28px 5vw;
  background: var(--bg-card); border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px; border-radius: 999px; border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text-mid); font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.filter-btn.active, .filter-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.blog-main { padding: 56px 5vw; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 64px; }
.page-btn {
  width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--text-mid); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; text-decoration: none;
}
.page-btn.active, .page-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ── SINGLE POST ── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 56px 5vw; max-width: 1200px; margin: 0 auto; }
.article-header-img { height: 420px; border-radius: var(--radius); overflow: hidden; margin-bottom: 36px; }
.article-header-img img { width: 100%; height: 100%; object-fit: cover; }
.article-header-img .img-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 6rem; background: linear-gradient(135deg, var(--green-light), var(--blue-light)); }
.article-header h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.article-byline { display: flex; gap: 20px; align-items: center; font-size: 0.85rem; color: var(--text-soft); padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.entry-content h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: 40px 0 16px; color: var(--text); }
.entry-content p { margin-bottom: 20px; line-height: 1.8; color: var(--text-mid); font-size: 1.05rem; }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; }
.entry-content li { margin-bottom: 8px; color: var(--text-mid); line-height: 1.7; }
.entry-content blockquote { border-left: 3px solid var(--green); padding: 16px 24px; margin: 32px 0; background: var(--bg-card); border-radius: 0 12px 12px 0; font-size: 1.1rem; font-style: italic; color: var(--text-mid); }
.callout { background: var(--green-light); border-left: 4px solid var(--green); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 32px 0; }
.callout strong { color: var(--green); display: block; margin-bottom: 6px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.article-sidebar { position: sticky; top: 80px; height: fit-content; }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.sidebar-widget h3 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); margin-bottom: 16px; }
.toc-link { display: block; font-size: 0.88rem; color: var(--text-mid); text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.toc-link:hover { color: var(--green); }
.toc-link:last-child { border-bottom: none; }
.post-nav { display: flex; justify-content: space-between; gap: 24px; padding: 32px 0; border-top: 1px solid var(--border); margin-top: 48px; }
.post-nav a { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--text); text-decoration: none; transition: color 0.2s; }
.post-nav a:hover { color: var(--green); }
.share-buttons { display: flex; gap: 10px; padding: 32px 0; border-top: 1px solid var(--border); }
.share-btn { padding: 8px 18px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--bg-card); color: var(--text-mid); font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.share-btn:hover { border-color: var(--green); color: var(--green); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0 5vw; }

/* ── CATEGORY PAGES ── */
.cat-hero { padding: 72px 5vw 56px; position: relative; overflow: hidden; }
.cat-hero-think { background: linear-gradient(135deg, var(--blue-light) 0%, var(--bg) 100%); }
.cat-hero-train { background: linear-gradient(135deg, var(--green-light) 0%, var(--bg) 100%); }
.cat-hero-build { background: linear-gradient(135deg, var(--amber-light) 0%, var(--bg) 100%); }
.cat-icon-big { font-size: 4rem; margin-bottom: 16px; display: block; }
.cat-hero h1 { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 12px; }
.topic-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.topic-chip { padding: 8px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; border: 1.5px solid; text-decoration: none; }
.topic-chip:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* ── START HERE PAGE ── */
.start-hero { background: linear-gradient(135deg, var(--text) 0%, #2a3a26 100%); color: #fff; padding: 96px 5vw; text-align: center; }
.start-hero h1 { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.04em; color: #fff; margin-bottom: 16px; }
.start-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }
.roadmap { padding: 80px 5vw; max-width: 860px; margin: 0 auto; }
.roadmap-step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; margin-bottom: 48px; position: relative; }
.roadmap-step:not(:last-child)::after { content: ''; position: absolute; left: 39px; top: 80px; bottom: -16px; width: 2px; background: linear-gradient(to bottom, var(--green-mid), var(--blue-mid)); }
.roadmap-num { width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; flex-shrink: 0; position: relative; z-index: 1; }
.rn-1 { background: var(--green-light); color: var(--green); border: 2px solid var(--green-mid); }
.rn-2 { background: var(--blue-light); color: var(--blue); border: 2px solid var(--blue-mid); }
.rn-3 { background: var(--amber-light); color: var(--amber); border: 2px solid #fbd38d; }
.rn-4 { background: #ede9fe; color: #7c3aed; border: 2px solid #c4b5fd; }
.roadmap-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; }
.roadmap-content h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.roadmap-content p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.65; margin-bottom: 16px; }
.roadmap-links { display: flex; flex-wrap: wrap; gap: 8px; }
.roadmap-link { font-size: 0.82rem; font-weight: 500; padding: 6px 14px; border-radius: 8px; background: var(--bg); border: 1px solid var(--border); color: var(--text-mid); text-decoration: none; transition: all 0.2s; }
.roadmap-link:hover { background: var(--green-light); border-color: var(--green-mid); color: var(--green); }

/* ── ABOUT PAGE ── */
.about-hero { background: linear-gradient(135deg, var(--beige) 0%, var(--green-light) 100%); padding: 96px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-hero h1 { font-family: var(--font-head); font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 24px; }
.about-hero p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.about-illo { background: var(--bg-card); border-radius: 28px; padding: 48px; border: 1px solid var(--border); text-align: center; font-size: 6rem; box-shadow: var(--shadow); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 80px 5vw; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: all 0.3s; }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-icon { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.value-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── RESOURCES PAGE ── */
.resources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 56px 5vw; }
.resource-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.resource-section h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.resource-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.resource-item:last-child { border-bottom: none; }
.resource-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.resource-item h4 { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.resource-item p { font-size: 0.82rem; color: var(--text-soft); line-height: 1.5; }
.resource-link { font-size: 0.78rem; font-weight: 600; color: var(--green); text-decoration: none; margin-top: 4px; display: inline-block; }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 5vw; max-width: 1000px; margin: 0 auto; }
.contact-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--bg); font-family: var(--font-body); font-size: 0.95rem; color: var(--text); outline: none; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { min-height: 120px; }
.contact-info h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-item h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.85rem; color: var(--text-soft); margin: 0; }

/* ── NEWSLETTER PAGE ── */
.newsletter-page { max-width: 700px; margin: 0 auto; padding: 80px 5vw; text-align: center; }
.newsletter-page h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.newsletter-page p { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 40px; }
.lead-magnet-card { background: linear-gradient(135deg, var(--green-light), var(--blue-light)); border: 1px solid var(--green-mid); border-radius: var(--radius); padding: 40px 36px; margin-bottom: 48px; text-align: left; }
.lead-magnet-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.lead-magnet-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 24px; }
.perks { list-style: none; margin-bottom: 28px; }
.perks li { font-size: 0.9rem; padding: 6px 0; color: var(--text-mid); display: flex; gap: 10px; align-items: center; }
.perks li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-visual { animation: fadeIn 0.9s ease 0.4s both; }

/* ── SCROLL ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 5vw; }
  .hero-visual { order: -1; }
  .hero-illo { max-width: 340px; margin: 0 auto; }
  .float-1, .float-2, .float-3 { display: none; }
  .about-hero { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-mobile-toggle { display: block; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px 5vw 20px; gap: 4px; z-index: 99; }
  .pillars, .articles-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-steps::before { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}
@media (max-width: 480px) {
  .journey-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .roadmap-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .roadmap-num { width: 60px; height: 60px; font-size: 1.4rem; }
}
/* ── MOBILE OVERFLOW FIX ── */
@media (max-width: 768px) {
  .entry-content h2 {
    font-size: 1.3rem !important;
    line-height: 1.25;
    word-break: break-word;
  }
  .entry-content p {
    font-size: 1rem !important;
    line-height: 1.8;
    word-break: break-word;
  }
  .entry-content li {
    font-size: 1rem !important;
    word-break: break-word;
  }
  .article-main {
    overflow: hidden;
    word-wrap: break-word;
  }
}
/* ── KEY TAKEAWAYS CONTRAST ── */
.key-takeaways {
  background: #EAF4EC;
  border: 1.5px solid var(--green-mid);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 36px 0;
}
.key-takeaways-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.key-takeaways-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.key-takeaways-toggle {
  font-size: 1rem;
  color: var(--green);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.key-takeaways-toggle.open {
  transform: rotate(180deg);
}
.key-takeaways-content {
  margin-top: 16px;
  display: none;
}
.key-takeaways-content.open {
  display: block;
}
.key-takeaways-content ul {
  margin: 0;
  padding-left: 20px;
}
.key-takeaways-content li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 10px;
}