
/* ============================================================
   DESIGN TOKENS — Matched to live readikids.org
   ============================================================ */
:root {
  /* Adjusted to match readikids.org: navy / gold / white / warm neutrals */
  --rk-green:        #0A3161;   /* Old Glory Blue */
  --rk-green-mid:    #123F78;   /* secondary blue */
  --rk-green-light:  #2A5E9A;   /* lighter Old Glory Blue */
  --rk-green-pale:   #F5F7FB;   /* pale cool neutral */
  --rk-green-dark:   #08264A;   /* dark Old Glory Blue */
  --rk-gold:         #C9973A;
  --rk-gold-light:   #E2B96A;
  --rk-gold-pale:    #FBF4E6;
  --rk-navy:         #0A3161;
  --rk-topbar:       #B31942;   /* Old Glory Red */
  --rk-cream:        #FAFAF8;
  --rk-warm:         #F7F4EE;
  --rk-white:        #FFFFFF;
  --rk-border:       #D8D4CC;
  --rk-text:         #1C1C1C;
  --rk-text-mid:     #2F3542;
  --rk-text-light:   #4B5563;

  --font-head:  'Merriweather', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --radius:     5px;
  --radius-lg:  10px;
  --radius-xl:  16px;
  --shadow-sm:  0 1px 6px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.14);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--rk-text);
  background: var(--rk-white);
  line-height: 1.6;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
p  { font-size: 1.03rem; line-height: 1.78; color: var(--rk-text-mid); }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   TOP UTILITY BAR — matches live site dark strip
   ============================================================ */
.top-bar {
  background: var(--rk-topbar);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
}
.top-bar-email {
  font-size: 0.80rem; color: rgba(255,255,255,0.88);
  display: flex; align-items: center; gap: 6px;
}
.top-bar-email svg { width: 13px; height: 13px; opacity: 0.85; }
.top-bar-socials {
  display: flex; align-items: center; gap: 10px;
}
.top-bar-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; opacity: 0.82;
  transition: opacity 0.2s;
}
.top-bar-socials a:hover { opacity: 0.9; }
.top-bar-socials svg { width: 14px; height: 14px; fill: #fff; }

/* ============================================================
   MAIN NAV — matches live site green nav bar
   ============================================================ */
.main-nav {
  background: var(--rk-white);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(10,49,97,0.10);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  height: 88px; gap: 14px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px;
}

.nav-logo-tag {
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rk-topbar);
  white-space: nowrap;
}
.nav-logo img {
  height: 54px; width: auto;
  object-fit: contain;
}
/* Fallback text logo if image fails */
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 900;
  color: var(--rk-navy); letter-spacing: -0.02em;
  display: none; /* hidden when image loads */
}
.nav-logo-text span { color: var(--rk-gold); }
.nav-logo img.error + .nav-logo-text,
.nav-logo-fallback { display: block; }

.nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none; margin: 0 auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: flex; align-items: center; gap: 4px;
  padding: 11px 11px;
  font-family: var(--font-body); font-size: 0.96rem; font-weight: 700;
  color: var(--rk-navy); letter-spacing: 0.01em;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li:hover > a,
.nav-links > li:hover > button {
  color: var(--rk-navy);
  background: rgba(10,49,97,0.08);
}
.nav-links > li > a.active { color: var(--rk-topbar); }
.nav-caret {
  font-size: 0.65rem; opacity: 0.65; margin-left: 2px;
  transition: transform 0.2s;
}
.nav-links > li:hover .nav-caret { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--rk-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.06);
  padding: 6px; min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.18s ease; z-index: 200;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 0.875rem; font-weight: 500;
  color: var(--rk-text); border-radius: var(--radius);
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown a::before {
  content: ''; display: block; width: 3px; height: 14px;
  border-radius: 2px; background: var(--rk-green);
  opacity: 0; transition: opacity 0.12s;
}
.nav-dropdown a:hover {
  background: var(--rk-green-pale); color: var(--rk-green);
}
.nav-dropdown a:hover::before { opacity: 1; }

/* Donate CTA button */
.nav-donate {
  position: relative;
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 50px;
  padding: 0 28px 0 86px !important;
  border-radius: 0 !important;
  clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%, 5% 50%);
  background: linear-gradient(135deg, #0A3161 0%, #173F73 100%) !important;
  color: #FFFFFF !important;
  font-weight: 900 !important;
  font-size: 1.18rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--rk-gold);
  box-shadow: 0 6px 16px rgba(10,49,97,0.22);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s !important;
}
.nav-donate::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 82px;
  background: linear-gradient(135deg, #D5A83C 0%, #BD8F28 100%);
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 16% 50%);
}
.nav-donate::after {
  content: '⛁';
  position: absolute;
  left: 29px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0A3161;
  z-index: 2;
}
.nav-donate:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 22px rgba(10,49,97,0.28);
  filter: brightness(1.04);
  color: #FFFFFF !important;
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.93rem; font-weight: 700;
  letter-spacing: 0.02em; cursor: pointer; transition: all 0.18s;
  text-decoration: none; line-height: 1;
}
.btn-gold {
  background: var(--rk-gold); color: var(--rk-navy);
  box-shadow: 0 3px 12px rgba(201,151,58,0.32);
}
.btn-gold:hover {
  background: var(--rk-gold-light); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,151,58,0.42);
}
.btn-white {
  background: var(--rk-white); color: var(--rk-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(0,0,0,0.15); }
.btn-ghost-white {
  background: transparent; color: var(--rk-white);
  border: 2px solid rgba(255,255,255,0.48);
}
.btn-ghost-white:hover {
  border-color: var(--rk-white); background: rgba(255,255,255,0.09); transform: translateY(-2px);
}
.btn-ghost-green {
  background: transparent; color: var(--rk-green);
  border: 2px solid var(--rk-green);
}
.btn-ghost-green:hover { background: var(--rk-green); color: var(--rk-white); transform: translateY(-2px); }
.btn-green { background: var(--rk-green); color: var(--rk-white); }
.btn-green:hover { background: var(--rk-green-mid); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ============================================================
   SECTION LABEL
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rk-gold); margin-bottom: 14px;
}
.eyebrow-white { color: rgba(255,255,255,0.50); }
.eyebrow-green { color: var(--rk-green); }

/* ============================================================
   HOME — HERO: THE QUIET QUESTION
   ============================================================ */
.hero {
  background: var(--rk-green-dark);
  min-height: 92vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 75% 35%, rgba(42,120,85,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 15% 75%, rgba(201,151,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-content {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px; padding: 6px 14px;
  font-size: 0.77rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--rk-gold);
}
.hero-question {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400; font-style: italic;
  color: var(--rk-white); line-height: 1.32; margin-bottom: 28px;
}
.hero-layers {
  padding-left: 20px;
  border-left: 3px solid rgba(201,151,58,0.45);
  margin-bottom: 36px;
}
.hero-layers p {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 300;
  font-style: italic; color: rgba(255,255,255,0.96); line-height: 1.9; text-shadow: 0 2px 10px rgba(0,0,0,0.28); font-weight: 500;
  margin: 0;
}
.hero-divider {
  width: 48px; height: 2px; background: var(--rk-gold);
  opacity: 0.7; margin-bottom: 28px;
}
.hero-tagline {
  font-size: 1.08rem; color: rgba(255,255,255,0.92); line-height: 1.75;
  margin-bottom: 40px; font-weight: 500; text-shadow: 0 2px 10px rgba(0,0,0,0.24);
}
.hero-tagline strong { color: var(--rk-white); font-weight: 700; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero right card */
.hero-card {
  background: linear-gradient(180deg, #C22942 0%, #A61B38 100%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px; padding: 38px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.20);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events:none;
}
.hero-card-label {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rk-gold); margin-bottom: 20px;
}
.hero-stat-row {
  display: flex; flex-direction: column; gap: 16px;
}
.hero-stat-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255,255,255,0.10);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s;
}
.hero-stat-item:hover { background: rgba(255,255,255,0.14); }
.hero-stat-num {
  font-family: var(--font-head); font-size: 1.95rem; font-weight: 900;
  color: var(--rk-gold); line-height: 1; flex-shrink: 0; min-width: 64px;
}
.hero-stat-text {
  font-size: 0.97rem; color: rgba(255,255,255,0.98); line-height: 1.55;
  padding-top: 4px; font-weight: 700;
}
.hero-card-footer {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 0.82rem; font-style: italic; color: rgba(255,255,255,0.84);
  line-height: 1.5;
}

/* ============================================================
   READINESS CHALLENGE
   ============================================================ */
.challenge { background: var(--rk-navy); padding: 88px 0; }
.challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.challenge h2 { color: var(--rk-white); margin-bottom: 22px; }
.challenge-body { color: rgba(255,255,255,0.74); font-size: 1.02rem; line-height: 1.80; margin-bottom: 18px; }
.challenge-body strong { color: var(--rk-white); }
.challenge-pullquote {
  font-style: italic; color: rgba(255,255,255,0.50); font-size: 0.96rem;
  line-height: 1.72; border-left: 3px solid var(--rk-gold);
  padding: 4px 0 4px 18px; margin-top: 24px;
}
.impact-list { display: flex; flex-direction: column; gap: 16px; }
.impact-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg); padding: 22px 24px;
  transition: background 0.18s, border-color 0.18s;
}
.impact-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,151,58,0.35);
}
.impact-card-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); margin-bottom: 7px;
}
.impact-card-text {
  font-size: 0.93rem; color: rgba(255,255,255,0.72); line-height: 1.60;
}

/* ============================================================
   THE PROMISE
   ============================================================ */
.promise { background: var(--rk-warm); padding: 88px 0; }
.promise-center { max-width: 740px; margin: 0 auto; text-align: center; }
.promise h2 { color: var(--rk-green); margin-bottom: 20px; }
.promise-body { font-size: 1.05rem; margin-bottom: 44px; }
.manifesto {
  border: 1px solid var(--rk-border); border-radius: var(--radius-xl);
  overflow: hidden; background: var(--rk-white);
  box-shadow: var(--shadow-sm); text-align: left;
}
.manifesto-item {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--rk-border);
  font-family: var(--font-head); font-size: 1.12rem; font-style: italic;
  color: var(--rk-text); transition: background 0.15s;
}
.manifesto-item:last-child { border-bottom: none; }
.manifesto-item:hover { background: var(--rk-green-pale); }
.manifesto-bar {
  width: 4px; height: 28px; border-radius: 2px;
  background: var(--rk-gold); flex-shrink: 0;
}

/* ============================================================
   SYSTEM INTRO — HAVE DO BECOME
   ============================================================ */
.system-intro { background: var(--rk-white); padding: 88px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.section-head h2 { color: var(--rk-green); margin-bottom: 16px; }
.cycle {
  display: flex; align-items: stretch;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 56px;
  border: 1px solid var(--rk-border);
}
.cycle-step {
  flex: 1; padding: 40px 28px; background: var(--rk-white);
  border-right: 1px solid var(--rk-border);
  transition: background 0.18s;
}
.cycle-step:last-child { border-right: none; }
.cycle-step:hover { background: var(--rk-green-pale); }
.cycle-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rk-text-light); margin-bottom: 10px;
}
.cycle-word {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--rk-green); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.cycle-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--rk-gold); flex-shrink: 0;
}
.cycle-body { font-size: 0.93rem; line-height: 1.72; color: var(--rk-text-mid); }
.cycle-arrow {
  display: flex; align-items: center; padding: 0 8px;
  color: var(--rk-green-light); font-size: 1.2rem;
  background: var(--rk-white);
  border-right: 1px solid var(--rk-border);
}

.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tool-card {
  background: var(--rk-white); border: 1px solid var(--rk-border);
  border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
}
.tool-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--rk-green);
}
.tool-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tool-icon { font-size: 2rem; margin-bottom: 16px; }
.tool-card h3 { color: var(--rk-green); margin-bottom: 12px; }
.tool-card p { font-size: 0.95rem; }
.tool-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 18px; font-size: 0.85rem; font-weight: 700;
  color: var(--rk-green); letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.tool-link:hover { border-color: var(--rk-green); }
.explore-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   FOUR BUILDING BLOCKS
   ============================================================ */
.blocks { background: var(--rk-green); padding: 88px 0; }
.blocks .section-head h2 { color: var(--rk-white); }
.blocks .section-head p { color: rgba(255,255,255,0.72); }
.blocks-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.block-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-xl); padding: 28px 22px;
  transition: all 0.22s;
}
.block-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  border-color: rgba(201,151,58,0.4);
}
.block-icon { font-size: 1.9rem; margin-bottom: 14px; }
.block-name {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--rk-white); margin-bottom: 10px;
}
.block-body { font-size: 0.88rem; line-height: 1.70; color: rgba(255,255,255,0.72); }
.blocks-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   AGE STAGES
   ============================================================ */
.stages { background: var(--rk-warm); padding: 88px 0; }
.stages .section-head h2 { color: var(--rk-green); }
.stages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.stage-card {
  background: var(--rk-white); border-radius: var(--radius-xl);
  padding: 36px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--rk-border);
  position: relative; overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
}
.stage-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
}
.stage-card.s1::after { background: #5BA08A; }
.stage-card.s2::after { background: var(--rk-green); }
.stage-card.s3::after { background: var(--rk-gold); }
.stage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stage-pill {
  display: inline-block; padding: 3px 11px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 18px;
}
.s1 .stage-pill { background: #EEF2F8; color: #243556; }
.s2 .stage-pill { background: var(--rk-green-pale); color: var(--rk-green); }
.s3 .stage-pill { background: var(--rk-gold-pale); color: #8B6520; }
.stage-name {
  font-family: var(--font-head); font-size: 1.45rem; font-weight: 700;
  color: var(--rk-text); margin-bottom: 5px;
}
.stage-ages { font-size: 0.83rem; color: var(--rk-text-light); font-weight: 600; margin-bottom: 6px; }
.stage-role {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--rk-text-light);
  margin-bottom: 16px;
}
.stage-body { font-size: 0.93rem; line-height: 1.74; color: var(--rk-text-mid); }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.testimonials { background: var(--rk-navy); padding: 88px 0; }
.testimonials .section-head h2 { color: var(--rk-white); }
.testimonials .section-head p { color: rgba(255,255,255,0.65); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.testi-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl); padding: 32px;
}
.testi-quote {
  font-family: var(--font-head); font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.74; margin-bottom: 24px;
  position: relative;
}
.testi-quote::before {
  content: '\201C'; font-size: 3rem; line-height: 1;
  color: rgba(255,255,255,0.45); opacity: 0.9;
  font-family: var(--font-head);
  display: block; margin-bottom: -8px;
}
.testi-source { font-size: 0.83rem; color: rgba(255,255,255,0.48); font-weight: 600; }
.testi-source strong { color: rgba(255,255,255,0.72); }
.testi-note { text-align:center; margin-top:20px; font-size:0.76rem; font-style:italic; color:rgba(255,255,255,0.28); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--rk-green-dark) 0%, var(--rk-green) 60%, var(--rk-green-mid) 100%);
  padding: 96px 0; text-align: center;
}
.final-cta h2 { color: var(--rk-white); font-size: clamp(1.6rem,3.2vw,2.5rem); margin-bottom: 18px; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.06rem; line-height: 1.80; max-width: 600px; margin: 0 auto 40px; }
.final-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   BOOK
   ============================================================ */
.book-section { background: var(--rk-warm); padding: 88px 0; }
.book-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: center; }
.book-cover {
  background: var(--rk-navy); border-radius: var(--radius-xl);
  aspect-ratio: 2/3; display: flex; align-items: center; justify-content: center;
  padding: 28px; box-shadow: var(--shadow-lg);
}
.book-cover-title {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  color: var(--rk-white); line-height: 1.35; text-align: center; margin-bottom: 16px;
}
.book-cover-authors { font-size: 0.83rem; color: rgba(255,255,255,0.55); text-align: center; }
.book-content h2 { color: var(--rk-green); margin-bottom: 18px; }
.book-content p { font-size: 1.02rem; margin-bottom: 16px; }

/* ============================================================
   FOOTER — matches live site structure
   ============================================================ */
footer { background: var(--rk-navy); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-logo-name {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 900;
  color: var(--rk-white); margin-bottom: 10px;
}
.footer-logo-name span { color: var(--rk-gold); }
.footer-tagline { font-size: 0.87rem; color: rgba(255,255,255,0.48); line-height: 1.70; margin-bottom: 16px; }
.footer-np { font-size: 0.76rem; color: rgba(255,255,255,0.30); line-height: 1.60; }
.footer-col-head {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 14px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.56); transition: color 0.15s; }
.footer-links a:hover { color: var(--rk-gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.16); }
.footer-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.60); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-legal { font-size: 0.78rem; color: rgba(255,255,255,0.30); }

/* ============================================================
   INNER PAGE COMPONENTS
   ============================================================ */
.breadcrumb {
  background: var(--rk-white); border-bottom: 1px solid rgba(10,49,97,0.10);
  padding: 10px 0;
}
.crumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.80rem; color: var(--rk-text-light); }
.crumb-inner a { color: var(--rk-green); font-weight: 600; transition: color 0.15s; }
.crumb-inner a:hover { color: var(--rk-green-mid); }

.inner-hero { background: var(--rk-green); padding: 88px 0 72px; position: relative; overflow: hidden; }
.inner-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(201,151,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero-content { position: relative; z-index: 2; max-width: 720px; }
.inner-hero h1 { color: var(--rk-white); margin-bottom: 18px; }
.inner-hero-sub { font-size: 1.10rem; color: rgba(255,255,255,0.73); line-height: 1.76; }

.content-sec { padding: 76px 0; }
.content-sec.alt { background: var(--rk-warm); }
.content-sec.navy { background: var(--rk-navy); }
.content-sec.green { background: var(--rk-green); }
.content-sec.pale { background: var(--rk-green-pale); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.rich-text h3 { color: var(--rk-green); margin: 28px 0 12px; }
.rich-text h3:first-child { margin-top: 0; }
.rich-text p { margin-bottom: 16px; }

.callout {
  background: var(--rk-green-pale); border-left: 4px solid var(--rk-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 24px 0;
}
.callout p { font-weight: 600; color: var(--rk-green); margin: 0; font-size: 0.98rem; }
.callout-gold { background: var(--rk-gold-pale); border-color: var(--rk-gold); }
.callout-gold p { color: #8B6520; }

.compare-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin: 28px 0;
}
.compare-table th {
  background: var(--rk-green); color: var(--rk-white);
  padding: 14px 22px; font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.04em; text-align: left;
}
.compare-table th:first-child { background: var(--rk-navy); }
.compare-table td {
  padding: 13px 22px; font-size: 0.92rem; color: var(--rk-text-mid);
  border-bottom: 1px solid var(--rk-border);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--rk-warm); }

.anchor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.anchor-card {
  background: var(--rk-white); border: 1px solid var(--rk-border);
  border-radius: var(--radius-xl); padding: 28px;
  transition: box-shadow 0.18s;
}
.anchor-card:hover { box-shadow: var(--shadow-md); }
.anchor-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--rk-green); color: var(--rk-white);
  font-weight: 700; font-size: 0.90rem; margin-bottom: 14px;
}
.anchor-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--rk-green); margin-bottom: 6px; }
.anchor-q { font-style: italic; font-size: 0.87rem; color: var(--rk-text-light); margin-bottom: 10px; }
.anchor-why { font-size: 0.90rem; color: var(--rk-text-mid); line-height: 1.68; }
.anchor-tip {
  margin-top: 14px; padding: 10px 14px;
  background: var(--rk-green-pale); border-radius: var(--radius);
  font-size: 0.83rem; color: var(--rk-green); line-height: 1.56;
}

.page-cta {
  background: var(--rk-gold-pale); border-top: 1px solid rgba(201,151,58,0.18); padding: 52px 0;
}
.page-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.page-cta h3 { color: var(--rk-green); font-family: var(--font-head); }
.page-cta p { color: var(--rk-text-mid); margin-top: 6px; font-size: 0.93rem; }

/* Transfer steps */
.transfer-row { display: flex; gap: 0; border: 1px solid var(--rk-border); border-radius: var(--radius-xl); overflow: hidden; margin: 28px 0; }
.transfer-step { flex: 1; padding: 28px 20px; background: var(--rk-white); border-right: 1px solid var(--rk-border); text-align: center; }
.transfer-step:last-child { border-right: none; }
.transfer-step-icon { font-size: 1.6rem; margin-bottom: 10px; }
.transfer-step-role { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--rk-green); margin-bottom: 6px; }
.transfer-step-age { font-size: 0.78rem; color: var(--rk-text-light); margin-bottom: 10px; }
.transfer-step-body { font-size: 0.85rem; color: var(--rk-text-mid); line-height: 1.58; }

/* Resistance table */
.resist-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; margin: 20px 0; }
.resist-table th { background: var(--rk-green); color: var(--rk-white); padding: 11px 18px; font-size: 0.83rem; font-weight: 700; text-align: left; }
.resist-table td { padding: 11px 18px; font-size: 0.88rem; border-bottom: 1px solid var(--rk-border); color: var(--rk-text-mid); }
.resist-table tr:nth-child(even) td { background: var(--rk-warm); }
.resist-table tr:last-child td { border-bottom: none; }

/* Building blocks deep */
.bb-section { padding: 52px 0; border-bottom: 1px solid var(--rk-border); }
.bb-section:last-child { border-bottom: none; }
.bb-header { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 28px; }
.bb-icon { width: 68px; height: 68px; border-radius: 14px; background: var(--rk-green-pale); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; flex-shrink: 0; }
.bb-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rk-text-light); margin-bottom: 4px; }
.bb-title { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--rk-green); margin-bottom: 6px; }
.bb-sub { font-size: 0.95rem; color: var(--rk-text-light); font-style: italic; }
.underbuilt {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FFF3E0; border: 1px solid #FFB74D; border-radius: 20px;
  padding: 3px 12px; font-size: 0.74rem; font-weight: 700;
  color: #E65100; letter-spacing: 0.05em; margin-top: 6px;
}
.bb-content { display: grid; grid-template-columns: 3fr 2fr; gap: 44px; }
.bb-skills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.skill-chip {
  background: var(--rk-warm); border: 1px solid var(--rk-border);
  border-radius: var(--radius); padding: 9px 13px; font-size: 0.85rem;
  color: var(--rk-text-mid); line-height: 1.40;
}
.skill-chip strong { color: var(--rk-green); display: block; font-size: 0.77rem; margin-bottom: 2px; }
.bb-sidebar-box {
  background: var(--rk-warm); border: 1px solid var(--rk-border);
  border-radius: var(--radius-xl); padding: 24px;
}
.ex-stage-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; margin: 14px 0 8px; }
.ex-stage-label:first-child { margin-top: 0; }
.ex-item { display: flex; gap: 8px; font-size: 0.85rem; color: var(--rk-text-mid); line-height: 1.50; margin-bottom: 8px; }
.ex-item::before { content: '→'; color: var(--rk-gold); font-weight: 700; flex-shrink: 0; }
.critical-box { background: #FFF3E0; border: 1px solid #FFB74D; border-radius: var(--radius-xl); padding: 18px 20px; margin-top: 14px; }
.critical-box-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: #E65100; margin-bottom: 6px; }
.critical-box-text { font-size: 0.84rem; color: #BF360C; line-height: 1.56; margin: 0; }

/* Resource cards */
.resource-card { background: var(--rk-white); border: 1px solid var(--rk-border); border-radius: var(--radius-xl); padding: 20px 24px; display: flex; gap: 18px; align-items: flex-start; margin-bottom: 14px; box-shadow: var(--shadow-sm); transition: box-shadow 0.18s; }
.resource-card:hover { box-shadow: var(--shadow-md); }
.res-tag { flex-shrink: 0; padding: 3px 11px; border-radius: 20px; font-size: 0.70rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.tag-free { background: #EEF2F8; color: #243556; }
.tag-book { background: var(--rk-gold-pale); color: #8B6520; }
.tag-web  { background: #E3F2FD; color: #1565C0; }
.res-title { font-weight: 700; color: var(--rk-text); margin-bottom: 3px; font-size: 0.97rem; }
.res-desc  { font-size: 0.88rem; color: var(--rk-text-light); line-height: 1.54; }

/* Download cards */
.dl-card { background: var(--rk-white); border: 2px solid var(--rk-green-pale); border-radius: var(--radius-xl); padding: 28px; display: flex; gap: 20px; align-items: center; margin-bottom: 16px; transition: border-color 0.18s, box-shadow 0.18s; }
.dl-card:hover { border-color: var(--rk-green-light); box-shadow: var(--shadow-md); }
.dl-icon { width: 52px; height: 52px; border-radius: 11px; background: var(--rk-green); color: var(--rk-white); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.dl-title { font-weight: 700; color: var(--rk-text); margin-bottom: 3px; }
.dl-desc  { font-size: 0.88rem; color: var(--rk-text-light); line-height: 1.52; }
.dl-action { flex-shrink: 0; margin-left: auto; }

/* highlight pull */
.pull {
  font-family: var(--font-head); font-size: clamp(1rem,1.8vw,1.28rem); font-style: italic;
  color: var(--rk-green); border-left: 4px solid var(--rk-gold);
  padding: 18px 22px; background: var(--rk-gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0; margin: 28px 0;
}
.pull-white { color: var(--rk-white); border-color: var(--rk-gold); background: rgba(255,255,255,0.07); }

/* checklist */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--rk-text-mid); line-height: 1.50; }
.check-list li .ck { color: var(--rk-green); font-weight: 700; flex-shrink: 0; }

/* stat block reused */
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.14); border-radius: var(--radius-lg); overflow: hidden; }
.stat-col { background: rgba(255,255,255,0.05); padding: 36px 24px; text-align: center; }
.stat-col:hover { background: rgba(255,255,255,0.09); }
.stat-num { font-family: var(--font-head); font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; color: var(--rk-gold); line-height: 1; margin-bottom: 10px; }
.stat-lbl { font-size: 0.90rem; color: rgba(255,255,255,0.75); line-height: 1.50; }
.stat-note-row { text-align:center; margin-top:16px; font-size:0.74rem; color:rgba(255,255,255,0.36); font-style:italic; }

/* green info card */
.green-info { background: var(--rk-topbar); border-radius: var(--radius-xl); padding: 36px; color: var(--rk-white); box-shadow: 0 14px 28px rgba(179,25,66,0.16); }
.green-info-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.50); margin-bottom: 18px; }

/* ============================================================
   SHARED FOOTER CONTENT
   ============================================================ */
.site-footer { background: var(--rk-navy); padding: 56px 0 28px; }