/* ============================================================
   style.css — Adam Atomic
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --bg:        #FDFCFA;
  --bg-alt:    #F3F4ED;
  --ink:       #1C1A16;
  --text:      #1C1A16;
  --text-soft: #6B6358;
  --green:     #69C683;
  --green-dark:#52B06C;
  --amber:     #C49A52;
  --border:    #E5E0D6;
  --white:     #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  --radius:    14px;
  --radius-sm: 8px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; border-radius: var(--radius);}
a { color: inherit; text-decoration: none; }

/* ── BASE TYPOGRAPHY ── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.01em; }

/* ── CONTAINERS ── */
.container       { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.container-s     { max-width: 740px;  margin: 0 auto; padding: 0 5%; }
.container-quote { max-width: 840px;  margin: 0 auto; padding: 0 5%; }
section { padding: 5rem 0; }

/* ── NAV ── */
nav {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 3rem); max-width: 1060px;
  padding: 0 1.6rem; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,252,250,0.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  transition: max-width 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.45s cubic-bezier(0.4,0,0.2,1);
}
.nav-logo { display: flex; align-items: center; gap: 0.55rem; }
.nav-logo-img { height: 32px; width: auto; display: block; }
.nav-logo-name { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.nav-pillars { display: flex; gap: 1.6rem; align-items: center; }
.nav-pillar-link { font-size: 1rem; font-weight: 500; color: var(--text-soft); transition: color 0.2s; white-space: nowrap; }
.nav-pillar-link:hover, .nav-pillar-link.active { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.lang-toggle { display: flex; align-items: center; gap: 0.15rem; }
.lang-btn { background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); min-height: 2.75rem; padding: 0.75rem 0.35rem; display: inline-flex; align-items: center; transition: color 0.2s; }
.lang-btn.active, .lang-btn:hover { color: var(--ink); }
.lang-sep { color: var(--border); font-size: 0.75rem; user-select: none; }

/* ── BUTTONS ── */
.btn-green {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.2rem;
  background: var(--green); color: var(--ink);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700;
  border-radius: 100px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-green:hover { background: var(--green-dark); color: var(--ink); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(105,198,131,0.35); }

.btn-green-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2.4rem;
  background: var(--green); color: var(--ink);
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
  border-radius: 100px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-green-lg:hover { background: var(--green-dark); color: var(--ink); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(105,198,131,0.4); }

.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem;
  border: 2px solid var(--ink); color: var(--ink);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-light:hover { border-color: #fff; color: #fff; }

/* ── LABELS & BADGES ── */
.badge {
  display: inline-block; padding: 0.3rem 0.9rem;
  background: rgba(105,198,131,0.15); color: #3D9955;
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 100px; margin-bottom: 1.2rem;
}
.section-eyebrow, .section-tag {
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 0.7rem;
  display: block;
}
.section-tag { color: var(--green); }

/* ── FOOTER ── */
footer { background: var(--ink); }
.footer-top { padding: 2.8rem 5% 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-top-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1060px; margin: 0 auto; }
.footer-label-dark { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 0.85rem; font-family: 'Poppins', sans-serif; }
.footer-col-dark { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-col-dark a { font-size: 0.9rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col-dark a:hover { color: rgba(255,255,255,0.85); }
.footer-desc { font-size: 0.8rem; color: rgba(255,255,255,0.3); line-height: 1.6; margin-bottom: 0.5rem; }
.footer-bar { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 5%; font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-bar a { color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-bar a:hover { color: rgba(255,255,255,0.6); }

/* ── MOBILE: BURGER ── */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 200; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.28s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE: DRAWER ── */
.nav-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 490; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.nav-drawer-overlay.open { opacity: 1; pointer-events: all; }
.nav-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 90vw; background: var(--bg); z-index: 500; display: flex; flex-direction: column; padding: 1.5rem 1.6rem 2rem; transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; }
.nav-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.2rem; }
.drawer-logo-link { display: flex; align-items: center; gap: 0.5rem; }
.drawer-close { background: none; border: none; cursor: pointer; padding: 0.4rem; color: var(--ink); opacity: 0.45; transition: opacity 0.2s; display: flex; align-items: center; }
.drawer-close:hover { opacity: 1; }
.drawer-links { display: flex; flex-direction: column; flex: 1; }
.drawer-links a { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); padding: 1rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s; letter-spacing: -0.01em; }
.drawer-links a:first-child { border-top: 1px solid var(--border); }
.drawer-links a:hover { color: var(--green-dark); }
.drawer-footer { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.drawer-lang { display: flex; align-items: center; gap: 0.15rem; }
.drawer-lang .lang-toggle { display: flex !important; align-items: center; gap: 0.15rem; }
.drawer-lang .lang-btn { font-size: 0.75rem; padding: 0.5rem 0.35rem; }
.drawer-lang .lang-btn.active { color: var(--ink); }
.drawer-lang .lang-sep { font-size: 0.75rem; }
.drawer-cta { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; font-size: 1rem; border-radius: var(--radius-sm) !important; }

/* ── MOBILE: FIXED CTA BAR ── */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom)); }
.mobile-cta-bar a { display: flex; align-items: center; justify-content: center; width: 100%; padding: 0.9rem 1.5rem; background: var(--green); color: var(--ink); font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; border-radius: 100px; transition: background 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12); }
.mobile-cta-bar a:hover { background: var(--green-dark); }
body.drawer-open { overflow: hidden; }

/* ================================================================
   ARTICLE PAGES
   ================================================================ */

.article-header h1 { font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 1rem; }

.article-wrap { padding-top: 90px; max-width: 1200px; margin: 0 auto; padding-left: 5%; padding-right: 5%; display: grid; grid-template-columns: 1fr 260px; grid-template-rows: auto auto 1fr; gap: 0 3rem; align-items: start; }
.article-header { grid-column: 1; grid-row: 1; padding: 3rem 0 2rem; background: var(--bg); }
.article-header .article-body { max-width: none; margin: 0; padding: 0; }
.article-body { max-width: none; margin: 0; padding: 0 0 5rem; }
.article-layout { display: contents; }
.article-layout .article-body { grid-column: 1; grid-row: 3; }
.toc-sidebar { grid-column: 2; grid-row: 1/span 3; position: sticky; top: 90px; align-self: start; padding-top: 3.5rem; }
.feat-img-photo { width: 100%; display: block; border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; }
.article-body-img { width: 100%; display: block; border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; margin: 2rem 0; }
.toc-sidebar .toc-box { margin: 0; }
.feat-img { grid-column: 1; grid-row: 2; max-width: none; margin: 0; padding: 0; }

.breadcrumb { font-size: 0.8rem; color: var(--text-soft); margin-bottom: 1.2rem; display: flex; gap: 0.35rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-soft); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--border); }
.page-hero .breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-bottom: 1.6rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb .sep { margin: 0 0.5rem; opacity: 0.35; }

.article-meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1.2rem; flex-wrap: wrap; }
.meta-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); background: rgba(105,198,131,0.12); padding: 0.3rem 0.75rem; border-radius: 100px; }
.meta-info { font-size: 0.8rem; color: var(--text-soft); }
.article-intro { font-size: 1.2rem; color: var(--text-soft); line-height: 1.75; margin-top: 1rem; max-width: 640px; }

.toc-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin: 2.5rem 0; box-shadow: var(--shadow-sm); }
.toc-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.toc-list li { display: flex; align-items: baseline; }
.toc-n { display: none; }
.toc-list a { font-size: 0.9rem; color: var(--ink); transition: color 0.2s; line-height: 1.4; }
.toc-list a:hover { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }

.article-body h2 { scroll-margin-top: 90px; font-size: clamp(1.25rem,2.5vw,1.6rem); font-weight: 700; color: var(--ink); margin: 3rem 0 0.9rem; padding-top: 0.5rem; }
.article-body h3 { font-size: 1.2rem; font-weight: 600; color: var(--ink); margin: 1.8rem 0 0.6rem; }
.article-body p { color: var(--text-soft); line-height: 1.85; margin-bottom: 1.1rem; font-size: 1rem; }
.article-body a { color: var(--ink); }
.article-body a:hover { color: var(--green-dark); }
.article-body strong { color: var(--ink); font-weight: 600; }

.callout { border-radius: var(--radius-sm); padding: 1.2rem 1.5rem; margin: 1.8rem 0; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.callout-tip { background: rgba(105,198,131,0.1); border-left: 3px solid var(--green); }
.callout-note { background: rgba(196,154,82,0.1); border-left: 3px solid var(--amber); }
.callout-dark { background: #FBF5ED; color: var(--ink); padding: 1.8rem 2rem; }
.callout-label { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.callout-tip .callout-label { color: var(--green-dark); }
.callout-note .callout-label, .callout-dark .callout-label { color: var(--amber); }
.callout p { margin-bottom: 0; font-size: 0.9rem; }
.callout-tip p, .callout-note p { color: var(--ink); }
.callout-dark p { color: var(--text-soft); }

.img-ph { border: 2px dashed var(--border); border-radius: var(--radius); padding: 3rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; color: var(--text-soft); margin: 2rem 0; background: var(--bg-alt); }
.img-ph svg { opacity: 0.35; }
.img-ph span { font-size: 0.8rem; }

.rr-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--green-dark); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.rr-link:hover { border-color: var(--green-dark); }

.article-cta { background: var(--ink); padding: 1rem 2rem; margin: 4rem 0 0; border-radius: var(--radius); text-align: center; }
.article-cta a:hover { color: var(--ink); }
.article-cta h2 { color: var(--white); font-size: clamp(1.25rem,2.5vw,1.6rem); margin-bottom: 0.8rem; }
.article-cta p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 440px; margin: 1rem auto 1.8rem; line-height: 1.7; }
.cta-note { margin-top: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.related-section { margin-top: 0rem; }
.related-section h2 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; font-family: 'Poppins', sans-serif; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.rel-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1.1rem; transition: box-shadow 0.2s, transform 0.15s; display: block; }
.rel-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.rel-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; display: block; }
.rel-card h3 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--ink); line-height: 1.4; }

/* About author section */
.about-author-section { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4rem 5%; }
.about-author-inner { max-width: 860px; margin: 0 auto; display: flex; gap: 2.5rem; align-items: center; }
.about-author-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }
.about-author-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 0.3rem; }
.about-author-name { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; }
.about-author-bio { font-size: 0.9rem; color: var(--text-soft); line-height: 1.78; margin-bottom: 1.2rem; }

/* Related articles full-width */
.related-full-section { background: var(--bg); padding: 4rem 5%; }
.related-full-inner { max-width: 1200px; margin: 0 auto; }
.related-full-title { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 2rem; }
.related-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.rel-full-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.22s, transform 0.18s; }
.rel-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.rel-full-img-wrap { aspect-ratio: 16/9; overflow: hidden; border-radius: 0; }
.rel-full-img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; display: block; transition: transform 0.35s ease; }
.rel-full-card:hover .rel-full-img { transform: scale(1.04); }
.rel-full-body { padding: 1.25rem 1.25rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.rel-full-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }
.rel-full-card h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.45; }
.rel-full-excerpt { font-size: 0.85rem; color: var(--text-soft); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ================================================================
   LANDING PAGE
   ================================================================ */

#hero { position: fixed; inset: 0; z-index: 0; background: #0A0A14; display: flex; flex-direction: column; justify-content: center; }
spline-viewer { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; opacity: 0.45; }
.hero-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to right, rgba(0,0,0,0.78), transparent 28%, transparent 72%, rgba(0,0,0,0.78)), linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 40%, transparent 52%, rgba(0,0,0,0.92) 100%); }
#hero-light-overlay { position: absolute; inset: 0; z-index: 2; background: var(--bg); opacity: 0; pointer-events: none; transition: opacity 0.05s linear; }
.hero-inner { position: relative; z-index: 3; padding: 8rem 0 4rem; }
#hero h1 { max-width: 17ch; margin-bottom: 1.4rem; color: #fff; }
.hero-sub { font-size: 1.2rem; font-weight: 500; color: rgba(255,255,255,0.8); max-width: 65ch; margin-bottom: 2.4rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.hero-note { font-size: 1rem; color: rgba(255,255,255,0.65); }
#hero .badge { background: rgba(105,198,131,0.12); color: var(--green); border: 1px solid rgba(105,198,131,0.2); }

#page-content { position: relative; z-index: 1; margin-top: calc(100dvh - 2rem); }
.stats-outer { max-width: 1100px; margin: 0 auto 80px; padding: 0 5%; }

.stats-strip { background: var(--green); border-radius: var(--radius); overflow: hidden; }
.stats-inner { display: grid; grid-template-columns: repeat(3,1fr); }
.stat-item { padding: 1.8rem 2rem; border-right: 1px solid rgba(0,0,0,0.08); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1; color: var(--ink); margin-bottom: 0.25rem; }
.stat-l { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(28,26,22,0.65); }

#signal { padding: 6rem 0; background: var(--bg); }
.signal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2.8rem; }
.signal-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.22s; }
.signal-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.signal-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.signal-card h3 { margin-bottom: 0.5rem; }
.signal-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.72; }

.quote-block { position: relative; padding: 7rem 0; text-align: center; overflow: hidden; background: var(--ink) url('../images/adam-speak-2.jpg') top center/cover no-repeat; }
.quote-block::before { content: ''; position: absolute; inset: 0; background: rgba(18,16,12,0.78); }
.quote-block .container-quote { position: relative; z-index: 1; }
.quote-block blockquote { font-family: 'Poppins', sans-serif; font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; line-height: 1.5; color: var(--white); max-width: 680px; margin: 0 auto; letter-spacing: -0.02em; }
.quote-block blockquote::before { content: '\201C'; color: var(--green); margin-right: 0.05em; }
.quote-block blockquote::after  { content: '\201D'; color: var(--green); margin-left:  0.05em; }
.quote-block blockquote em { color: var(--green); font-style: normal; }
.quote-block cite { display: block; margin-top: 1.8rem; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,0.42); font-style: normal; }

#problem { padding: 6rem 0; background: var(--bg-alt); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 2rem; }
.problem-text p { font-size: 1rem; color: var(--text-soft); line-height: 1.85; }
.problem-text p + p { margin-top: 1rem; }
.problem-text strong { color: var(--ink); font-weight: 600; }

#approach { padding: 6rem 0; background: var(--bg); }
.approach-list { list-style: none; margin-top: 3rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.approach-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: box-shadow 0.25s; }
.approach-item:hover { box-shadow: var(--shadow-md); }
.appr-icon-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; margin-bottom: 1.1rem; }
.appr-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.appr-num { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--green-dark); letter-spacing: 0.05em; }
.appr-body h3 { margin-bottom: 0.4rem; }
.appr-body p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.72; }

#about { padding: 6rem 0; background: var(--bg-alt); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-left h2 { margin-bottom: 1.2rem; }
.about-line { width: 36px; height: 3px; background: var(--green); border-radius: 2px; margin-bottom: 1.4rem; }
.about-left > p, .about-bio p { font-size: 1rem; color: var(--text-soft); line-height: 1.85; }
.about-bio { margin-top: 1.4rem; }
.about-bio p + p { margin-top: 1rem; }
.about-bio strong { color: var(--ink); font-weight: 600; }
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }

#offer { padding: 6rem 0; background: var(--bg); }
.offer-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 2rem; margin-top: 3rem; align-items: stretch; }
.offer-main { background: var(--ink); border-radius: var(--radius); padding: 2.8rem 2.4rem; box-shadow: var(--shadow-lg); }
.offer-entry-badge { display: inline-block; background: var(--green); color: var(--ink); font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.75rem; border-radius: 100px; margin-bottom: 1.4rem; }
.offer-main h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.2rem; }
.offer-format-tag { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.8rem; }
.offer-price-big { font-family: 'Poppins', sans-serif; font-size: 4.5rem; font-weight: 800; line-height: 1; color: var(--white); margin-bottom: 0.3rem; }
.offer-price-note { font-size: 0.75rem; color: rgba(255,255,255,0.38); margin-bottom: 2rem; }
.offer-includes { list-style: none; margin-bottom: 2.4rem; }
.offer-includes li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.9rem; color: rgba(255,255,255,0.62); }
.offer-includes li:last-child { border-bottom: none; }
.offer-includes li svg { flex-shrink: 0; margin-top: 0.1rem; }
.offer-side { display: flex; flex-direction: column; gap: 1.2rem; }
.offer-side-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; flex: 1; }
.offer-side-card h3 { margin-bottom: 0.25rem; }
.offer-side-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.7rem; }
.offer-side-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; flex: 1; }
.offer-side-card .btn-green-lg { margin-top: 1.4rem; font-size: 0.9rem; padding: 0.75rem 1.2rem; }
.price-on-call { display: inline-block; margin-top: 0.75rem; padding: 0.3rem 0.85rem; border: 1.5px solid var(--green); color: var(--green-dark); font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; border-radius: 100px; }
.offer-bottom-note { margin-top: 1.4rem; text-align: center; font-size: 0.9rem; color: var(--text-soft); font-style: italic; }

#process { padding: 6rem 0; background: var(--bg-alt); }
.tl-list { list-style: none; margin-top: 3rem; max-width: 680px; }
.tl-item { display: grid; grid-template-columns: 44px 1fr; gap: 0 1.4rem; position: relative; }
.tl-item:not(:last-child) .tl-left::after { content: ''; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--border); }
.tl-item.tl-completed:not(:last-child) .tl-left::after { background: var(--green); }
.tl-item.tl-active:not(:last-child) .tl-left::after { background: linear-gradient(to bottom, var(--green), var(--border)); }
.tl-left { display: flex; flex-direction: column; align-items: center; position: relative; }
.tl-dot { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; box-shadow: var(--shadow-sm); transition: border-color 0.2s, background 0.2s; }
.tl-completed .tl-dot { background: var(--green); border-color: var(--green); }
.tl-active .tl-dot { border-color: var(--green); animation: tl-pulse 2s ease-in-out infinite; }
@keyframes tl-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(105,198,131,0.4); } 50% { box-shadow: 0 0 0 6px rgba(105,198,131,0); } }
.tl-dot svg { flex-shrink: 0; }
.tl-right { padding: 0.6rem 0 2.8rem; }
.tl-item:last-child .tl-right { padding-bottom: 0; }
.tl-label { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 0.25rem; }
.tl-pending .tl-label { color: var(--text-soft); }
.tl-title { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; letter-spacing: -0.01em; }
.tl-pending .tl-title { color: var(--text-soft); }
.tl-desc { font-size: 0.9rem; color: var(--text-soft); line-height: 1.72; }
.tl-card { margin-top: 0.8rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; box-shadow: var(--shadow-sm); font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; }
.tl-completed .tl-card { border-color: rgba(105,198,131,0.25); }
.tl-active .tl-card { border-color: var(--green); background: rgba(105,198,131,0.05); }

#faq { padding: 6rem 0; background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
.faq-left h2 { margin-bottom: 0.8rem; }
.faq-left p { font-size: 1rem; color: var(--text-soft); line-height: 1.75; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; cursor: pointer; gap: 1rem; background: none; border: none; width: 100%; text-align: left; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); transition: color 0.2s; }
.faq-q:hover { color: var(--green-dark); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; background: rgba(105,198,131,0.15); border-radius: 50%; position: relative; color: var(--green-dark); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: currentColor; border-radius: 1px; top: 50%; left: 50%; }
.faq-icon::before { width: 9px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.5px; height: 9px; transform: translate(-50%,-50%); transition: transform 0.25s, opacity 0.25s; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding-bottom: 1.2rem; font-size: 0.9rem; color: var(--text-soft); line-height: 1.8; }
.faq-a-inner strong { color: var(--ink); font-weight: 600; }

#apply { background: var(--ink); padding: 3rem 0; text-align: center; }
#apply .section-eyebrow { color: var(--green); }
#apply h2 { color: var(--white); max-width: 16ch; margin: 0.6rem auto 1.6rem; }
#apply .apply-sub { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 44ch; margin: 0 auto 2.8rem; line-height: 1.8; }
#apply .apply-meta { margin-top: 1.2rem; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.articles-section { padding: 5rem 5% 5.5rem; background: var(--bg-alt); border-top: 1px solid var(--border); }
.articles-section-inner { max-width: 1060px; margin: 0 auto; }
.articles-section h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; font-family: 'Poppins', sans-serif; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.articles-section .section-sub { font-size: 1rem; color: var(--text-soft); margin-bottom: 2.5rem; line-height: 1.6; }
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.art-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.3rem; transition: box-shadow 0.2s, transform 0.15s; display: flex; flex-direction: column; gap: 0.55rem; }
.art-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.art-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.art-title { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.45; }
.art-arrow { font-size: 0.75rem; color: var(--text-soft); margin-top: auto; padding-top: 0.3rem; }

/* ================================================================
   PILLAR PAGES
   ================================================================ */

.page-hero { background: #0E1117; padding: 9rem 0 6rem; }
.page-hero h1 { color: #fff; margin-bottom: 1.4rem; max-width: 20ch; }
.page-hero .hero-sub { color: rgba(255,255,255,0.65); max-width: 56ch; }
.page-hero .hero-note { font-size: 0.9rem; color: rgba(255,255,255,0.35); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.text-right { direction: rtl; }
.two-col.text-right > * { direction: ltr; }
.col-text h2 { margin-bottom: 1.4rem; }
.col-text p { color: var(--text-soft); }

.img-placeholder { aspect-ratio: 4/3; background: var(--bg-alt); border: 2px dashed var(--border); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; color: var(--text-soft); }
.img-placeholder svg { opacity: 0.4; }
.img-placeholder span { font-size: 0.75rem; letter-spacing: 0.04em; }

.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.bento-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.8rem 2rem; box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.25s; }
.bento-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.bento-card.accent { border-color: var(--green); border-width: 2px; }
.card-num { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 0.9rem; display: block; }
.bento-card h3 { margin-bottom: 0.55rem; color: var(--ink); }
.bento-card p { font-size: 1rem; color: var(--text-soft); line-height: 1.7; }

.pull-quote { font-family: 'Poppins', sans-serif; font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; line-height: 1.45; color: var(--ink); border-left: 3px solid var(--green); padding: 0.5rem 0 0.5rem 2rem; margin: 3rem 0; }
.pull-quote cite { display: block; font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 400; color: var(--text-soft); margin-top: 0.8rem; font-style: normal; }

.section-dark { background: var(--ink); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark .section-tag { color: var(--green); }
.section-dark p { color: rgba(255,255,255,0.6); }

.quote-dark { background: var(--ink); padding: 5rem 0; }
.quote-dark blockquote { font-family: 'Poppins', sans-serif; font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; line-height: 1.4; color: #fff; text-align: center; max-width: 32ch; margin: 0 auto; }
.quote-dark blockquote::before { content: '"'; font-size: 4rem; color: var(--green); line-height: 0; vertical-align: -1.2rem; display: block; margin-bottom: 1.2rem; }

.cta-section { background: var(--ink); padding: 6rem 0; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 1.2rem; }
.cta-sub { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 48ch; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-section .cta-note { font-size: 0.9rem; }

.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.process-step { display: grid; grid-template-columns: 72px 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--border); }
.process-step:last-child { border-bottom: 1px solid var(--border); }
.step-num { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--green); line-height: 1; padding-top: 0.15rem; opacity: 0.7; }
.step-body h3 { margin-bottom: 0.55rem; }
.step-body p { font-size: 1rem; color: var(--text-soft); line-height: 1.75; }

.types-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 1.5rem; }
.type-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.2rem; }
.type-dot { display: block; width: 10px; height: 10px; border-radius: 50%; margin-bottom: 0.9rem; }
.type-card h3 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.type-card p { font-size: 0.75rem; color: var(--text-soft); line-height: 1.6; }

.types-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 1.5rem; }
.type-bcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.2rem; grid-column: span 2; transition: box-shadow 0.2s, transform 0.15s; box-shadow: var(--shadow-sm); }
.type-bcard:nth-child(4), .type-bcard:nth-child(5) { grid-column: span 3; }
.type-bcard:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }
.type-bcard h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; }
.type-bcard p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 900px) {
  /* Nav → mobile */
  .nav-burger { display: flex; }
  .nav-pillars, .nav-right .lang-toggle, .nav-right .btn-green, .nav-right #nav-cta, .nav-right { display: none !important; }
  nav#main-nav { position: relative !important; top: auto !important; left: auto !important; transform: none !important; width: 100% !important; max-width: 100% !important; border-radius: 0 !important; border-left: none !important; border-right: none !important; border-top: none !important; margin: 0 !important; justify-content: flex-start !important; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 80px; }
  .container, .container-s, .container-quote { padding-left: 25px !important; padding-right: 25px !important; }
  section { padding-top: 3rem !important; padding-bottom: 3rem !important; }

  /* Article */
  .article-wrap { padding-top: 0; grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; }
  .toc-sidebar { grid-column: 1; grid-row: 2; position: relative; top: 0; padding-top: 0; padding-bottom: 1.5rem; }
  .feat-img { grid-row: 3; }
  .article-layout .article-body { grid-column: 1; grid-row: 4; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .about-author-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .related-full-grid { grid-template-columns: 1fr 1fr; }

  /* Landing */
  .problem-grid, .about-inner, .offer-layout { grid-template-columns: 1fr; }
  .problem-grid { gap: 2rem; }
  .about-inner { gap: 2.5rem; }
  .about-photo { aspect-ratio: 3/4 !important; }
  .approach-list, .faq-layout { grid-template-columns: 1fr; }
  .faq-layout { gap: 2rem; }

  /* Pillar */
  .two-col, .two-col.text-right { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .types-bento { grid-template-columns: 1fr; }
  .type-bcard, .type-bcard:nth-child(4), .type-bcard:nth-child(5) { grid-column: span 1; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 640px) {
  .articles-grid { grid-template-columns: 1fr; }
  .tl-list { max-width: 100%; }
}

@media (max-width: 620px) {
  .signal-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .approach-list { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  h1, .article-header h1 { font-size: 2.2rem; }
  .related-grid, .bento-grid, .related-full-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 4rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── ACCESSIBILITY ── */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
