/* ─── THRIVE PEOPLE HR — Global Stylesheet v2 ──────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --teal:       #2A7A6E;
  --teal-dark:  #1E5A52;
  --teal-light: #E8F4F1;
  --gold:       #F7C948;
  --gold-light: #FDF6DC;
  --coral:      #E07B5A;
  --coral-dark: #C4623E;
  --cream:      #F4F0E8;
  --white:      #FFFFFF;
  --ink:        #2C2C2C;
  --ink-mid:    #555555;
  --ink-light:  #888888;
  --border:     #DDD8CC;
  --blue-stripe:#185FA5;
  --blue-bg:    #E6F1FB;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  --max-w: 1100px;
  --radius: 10px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--ink); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--ink); }
h3 { font-size: 1.25rem; color: var(--ink); }
p  { color: var(--ink-mid); line-height: 1.75; }
.eyebrow { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); padding: 0 2rem; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; height: 96px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 80px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--ink-mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { background: var(--coral); color: var(--white) !important; padding: 0.55rem 1.25rem; border-radius: 6px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--coral-dark) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: all 0.3s; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.75rem 1.75rem; border-radius: 6px; font-weight: 600; font-size: 0.92rem; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; }
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); }
.btn-secondary { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-secondary:hover { background: var(--teal); color: var(--white); }
.btn-white { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-white:hover { background: var(--cream); }

/* HERO */
.hero { background: var(--cream); padding: 6rem 0 5rem; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text p  { font-size: 1.1rem; margin-bottom: 2rem; max-width: 46ch; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { background: var(--teal-light); border-radius: var(--radius-lg); height: 360px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-family: var(--font-display); font-size: 1.1rem; text-align: center; padding: 2rem; border: 1px solid var(--border); }

/* STATS — single row */
.stats-section { background: var(--teal); padding: 4rem 0; }
.stats-section h2 { color: var(--white); margin-bottom: 0.5rem; }
.stats-section .section-sub { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 56ch; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1.75rem 1.5rem; }
.stat-number { font-family: var(--font-mono); font-size: 2.6rem; font-weight: 500; color: var(--gold); display: block; border-bottom: 2px solid var(--gold); padding-bottom: 0.5rem; margin-bottom: 0.75rem; line-height: 1; }
.stat-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.stats-transition { color: rgba(255,255,255,0.9); font-size: 1rem; max-width: 60ch; margin-bottom: 2rem; font-style: italic; }

/* WINNING TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2.5rem 0; }
.team-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: transform 0.2s, box-shadow 0.2s; }
.team-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.team-card-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.3rem; }
.team-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.team-card p  { font-size: 0.9rem; }
.quote-block { background: var(--gold-light); border-left: 4px solid var(--gold); padding: 1.25rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 2rem 0; }
.quote-block blockquote { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); font-style: italic; }
.quote-block cite { display: block; font-size: 0.8rem; color: var(--ink-light); margin-top: 0.5rem; font-style: normal; }

/* TRUST */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.proof-card { border-left: 3px solid var(--teal); padding-left: 1.25rem; }
.proof-card strong { display: block; font-family: var(--font-mono); font-size: 1.4rem; color: var(--teal); margin-bottom: 0.25rem; }
.proof-card p { font-size: 0.88rem; }
.logo-row { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin: 2rem 0; padding: 1.25rem 1.5rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); }
.logo-pill { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; color: var(--ink-mid); letter-spacing: 0.04em; padding: 0.35rem 0.9rem; background: var(--cream); border-radius: 20px; border: 1px solid var(--border); }
.cred-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.cred-pill { font-size: 0.78rem; font-weight: 500; color: var(--teal-dark); background: var(--teal-light); padding: 0.3rem 0.85rem; border-radius: 20px; border: 1px solid rgba(42,107,94,0.2); }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); padding: 4.5rem 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.8); max-width: 50ch; margin: 0 auto 2rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-secondary-link { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 1.25rem; display: block; }
.cta-secondary-link a { color: var(--gold); text-decoration: underline; }

/* TIERS */
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0; }
.tier-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; transition: box-shadow 0.2s; position: relative; }
.tier-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.tier-card.featured { border: 2px solid var(--teal); }
.tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; padding: 3px 12px; border-radius: 12px; text-transform: uppercase; white-space: nowrap; }
.tier-headline { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: 1.5rem; line-height: 1.25; }
.tier-best-for { font-size: 0.95rem; font-weight: 500; background: var(--cream); border-radius: 6px; padding: 0.9rem 1rem; margin-bottom: 1.25rem; color: var(--ink); line-height: 1.5; }
.tier-includes { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.tier-includes li { font-size: 0.88rem; color: var(--ink-mid); padding: 0.4rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 0.5rem; align-items: flex-start; }
.tier-includes li:last-child { border-bottom: none; }
.tier-includes li::before { content: "—"; color: var(--teal); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }
.tier-timeline { font-size: 0.78rem; color: var(--ink-light); margin-bottom: 1.25rem; }
.tier-scorecard { font-size: 0.78rem; background: var(--teal-light); border-radius: 6px; padding: 0.6rem 0.75rem; color: var(--teal-dark); margin-bottom: 1.5rem; }
.tier-scorecard strong { display: block; margin-bottom: 0.2rem; }

/* EDGE SESSIONS */
.edge-sessions { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.edge-session { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; border-top: 3px solid #B7950B; }
.edge-session h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.edge-session p { font-size: 0.88rem; }

/* LIFECYCLE */
.lifecycle-image-wrap { text-align: center; margin: 2.5rem 0; }
.lifecycle-image-wrap img { max-width: 560px; width: 100%; margin: 0 auto; border-radius: var(--radius-lg); }

/* LIFECYCLE CARDS */
.lifecycle-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin: 2.5rem 0; }
.lc-card-wide { grid-column: span 2; }
.lc-card { background: var(--white); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; transition: background 0.15s; }
.lc-card:hover { background: var(--cream); }
.lc-top { display: flex; align-items: center; gap: 0.75rem; }
.lc-dot { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.lc-stage { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.lc-hook { font-size: 0.95rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin: 0; }
.lc-body { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.65; }
.lc-thrive { font-size: 0.85rem; font-weight: 500; color: var(--blue-stripe); background: var(--blue-bg); border-left: 3px solid var(--blue-stripe); padding: 0.6rem 0.85rem; border-radius: 0 6px 6px 0; line-height: 1.55; }
.lc-roi-toggle { font-size: 0.78rem; color: var(--coral); font-weight: 600; cursor: pointer; background: none; border: none; padding: 0; text-align: left; display: flex; align-items: center; gap: 0.4rem; }
.lc-roi-toggle:hover { color: var(--coral-dark); }
.lc-detail { display: none; flex-direction: column; gap: 0.75rem; margin-top: 0.25rem; }
.lc-detail.open { display: flex; }
.lc-stat { font-size: 0.8rem; font-weight: 500; padding: 0.7rem 0.9rem; border-radius: 6px; line-height: 1.55; }

/* SPLIT GRID (text + image, 2-up sections) */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* WORKFORCE BANNER */
.workforce-banner { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 1.75rem 2rem; margin: 1.5rem 0; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.workforce-banner h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.workforce-banner p  { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-photo { background: var(--teal-light); border-radius: var(--radius-lg); height: 420px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-family: var(--font-display); font-size: 1rem; text-align: center; padding: 2rem; border: 1px solid var(--border); }
.about-text p { margin-bottom: 1.25rem; }
.beyond-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.beyond-pill { font-size: 0.82rem; font-weight: 500; padding: 0.4rem 1rem; border-radius: 20px; background: var(--gold-light); color: var(--ink); border: 1px solid rgba(247,201,72,0.4); }


/* ABOUT PHOTO */
.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  position: sticky;
  top: 88px;
}

/* QUIZ */
.quiz-wrap { max-width: 680px; margin: 0 auto; }
.quiz-progress { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 2.5rem; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--teal); border-radius: 2px; transition: width 0.4s ease; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-q { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); margin-bottom: 1.5rem; line-height: 1.4; }
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-option { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.2s; font-size: 0.92rem; color: var(--ink-mid); text-align: left; }
.quiz-option:hover { border-color: var(--teal); background: var(--teal-light); }
.quiz-option.selected { border-color: var(--teal); background: var(--teal-light); color: var(--ink); }
.quiz-option-key { width: 24px; height: 24px; border-radius: 50%; background: var(--cream); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 600; flex-shrink: 0; margin-top: 1px; color: var(--ink-mid); }
.quiz-option.selected .quiz-option-key { background: var(--teal); border-color: var(--teal); color: var(--white); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
.quiz-counter { font-size: 0.82rem; color: var(--ink-light); }
.capture-form { display: flex; flex-direction: column; gap: 1rem; max-width: 460px; }
.capture-form input { padding: 0.8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-body); background: var(--white); color: var(--ink); transition: border-color 0.2s; }
.capture-form input:focus { outline: none; border-color: var(--teal); }
.result-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea { padding: 0.8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.92rem; font-family: var(--font-body); color: var(--ink); background: var(--white); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.blog-tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 0.75rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card p  { font-size: 0.88rem; flex: 1; }
.blog-card-link { font-size: 0.82rem; font-weight: 600; color: var(--coral); margin-top: 1.25rem; display: inline-block; }

/* FOOTER */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; align-items: stretch; }
.footer-brand .footer-logo img { height: 56px; width: auto; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; max-width: 28ch; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; }
.footer-linkedin { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-linkedin:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { height: 220px; }
  .stats-grid    { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .proof-grid    { grid-template-columns: 1fr; }
  .tiers-grid    { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  .split-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .lifecycle-cards { grid-template-columns: 1fr; }
  .lc-card-wide { grid-column: span 1; }
  .edge-sessions { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; top: auto; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 96px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; gap: 1rem; z-index: 99; }
  .nav-toggle { display: block; }
  .hero-ctas { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .lc-card { padding: 1.25rem; }
  .tier-card { padding: 1.5rem; }
  .result-card { padding: 1.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
