:root {
  --navy: #16204a;
  --navy-2: #1e2f66;
  --teal: #2fc6c2;
  --teal-dark: #17a8a3;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #16204a;
  --text-muted: #5a6478;
  --max-width: 1100px;
  --radius: 14px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

h1, h2, h3 {
  line-height: 1.2;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.1rem; }

p { color: var(--text-muted); margin: 0 0 16px; }

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.section { padding: 72px 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-line1 {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand-line2 {
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--teal-dark);
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover { color: var(--navy); }

.nav-cta {
  background: var(--teal);
  color: #06201d !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-cta:hover { opacity: 0.9; text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero-wave {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 10%, rgba(47, 198, 194, 0.16), transparent 45%),
    radial-gradient(circle at -5% 90%, rgba(30, 47, 102, 0.12), transparent 40%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

.hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 4px var(--teal), 12px 16px 0 0 var(--navy);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--teal);
  font-weight: 800;
  font-size: 3.5rem;
}

.badge {
  display: inline-block;
  background: var(--navy);
  color: var(--teal);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-alt {
  margin: 16px 0 0;
  font-size: 0.88rem;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--teal);
  color: #06241f;
}
.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.btn-lg { font-size: 1.05rem; padding: 16px 34px; }

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.turnstile-wrap { margin: 8px 0 20px; }

/* Pillars (Strategy / Systems / Growth, Speaking) */
.pillars { padding-top: 56px; padding-bottom: 40px; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pillar {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.pillar-accent {
  background: var(--navy);
  border-color: var(--navy);
}
.pillar-accent h3, .pillar-accent p { color: #fff; }
.pillar-accent .pillar-icon { color: var(--teal); }

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--teal-dark);
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h3 { margin-bottom: 8px; }
.pillar p { margin: 0; font-size: 0.92rem; }

/* Stats bar */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.9rem; color: #c3cae0; }

/* Why */
.why { background: var(--bg); }

.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.why p:last-of-type { margin-bottom: 0; }

.dimensions-eyebrow { margin-top: 56px; }
.dimensions-h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.dimensions-grid { margin-top: 24px; }

.pull-quote {
  margin: 0;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.pull-quote em { color: var(--teal); font-style: normal; }

/* Steps (How It Works / What You'll Gain) */
.how { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.gain-grid li p { margin: 0; }

.step-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.steps h3 { margin-bottom: 6px; }
.steps p { margin: 0; font-size: 0.95rem; }

.stay-involved {
  margin-top: 40px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stay-involved h3 { margin: 0 0 10px; font-size: 1.1rem; }
.stay-involved p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.stay-involved a { white-space: nowrap; }

/* Speaking */
.speaking { background: var(--bg); }

/* Fit (Built for / Not for) */
.fit { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.fit-col {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  background: #fff;
}

.fit-yes { border-color: var(--teal); }
.fit-no { background: #fbfcfe; }

.fit-col h3 { margin-bottom: 16px; }
.fit-yes h3 { color: var(--teal-dark); }
.fit-no h3 { color: var(--text-muted); }

.fit-col ul { list-style: none; margin: 0; padding: 0; }
.fit-col li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 8px 0 8px 26px;
  position: relative;
  border-top: 1px solid var(--border);
}
.fit-col li:first-child { border-top: none; }

.fit-yes li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-dark); font-weight: 700; }
.fit-no li::before { content: "✕"; position: absolute; left: 0; color: #b0b8c9; font-weight: 700; }

.fit-note {
  margin: 28px 0 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Gain */
.gain { background: var(--bg); }
.section-divider { border-top: 1px solid var(--border); }

/* FAQ */
.faq-list {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--teal-dark);
  font-size: 1.3rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 14px 0 0; font-size: 0.95rem; }

/* CTA banner */
.cta-banner {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.cta-wave {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(47, 198, 194, 0.25), transparent 45%);
  pointer-events: none;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-tagline { color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.cta-banner p { color: #c3cae0; }
.cta-actions { text-align: center; flex: 0 0 auto; }
.cta-alt { margin-top: 16px; font-size: 0.9rem; color: #c3cae0; }
.cta-alt a { color: var(--teal); font-weight: 600; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 28px;
  background: var(--bg-alt);
}

.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.newsletter-label {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 2px;
  font-size: 0.95rem;
}
.newsletter-sub { margin: 0; font-size: 0.85rem; }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  min-width: 220px;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 198, 194, 0.18);
}
.newsletter-form .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner p { margin: 0; font-size: 0.9rem; }

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--teal-dark); }

/* Form pages (assessment / thank-you) */
.form-hero, .thank-you-hero { padding-bottom: 48px; }

.form-container { max-width: 640px; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0 0 40px;
}

fieldset legend {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 10px;
  width: 100%;
}

.form-row { margin-bottom: 20px; }

.form-row label,
.form-label-static {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 198, 194, 0.18);
}
.form-row textarea { resize: vertical; }

.checkbox-list {
  display: grid;
  gap: 10px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 400;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--teal-dark);
  flex: 0 0 auto;
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
}

/* Assessment wizard */
.a-progress { margin-bottom: 40px; }
.a-progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}
.a-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--teal);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.a-progress-label {
  margin: 10px 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.a-step { display: none; }
.a-step.active { display: block; }

.intro-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.intro-list li {
  padding-left: 26px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.intro-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.q { margin-bottom: 32px; }
.q-text {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 14px;
}

.qc-q {
  border-top: 1px dashed var(--border);
  padding-top: 28px;
}
.qc-q .q-text { color: var(--text-muted); font-weight: 500; }

.scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.scale-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-muted);
  background: #fff;
}
.scale-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.scale-opt:has(input:checked) {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--teal);
}
.scale-opt:has(input:focus-visible) {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.step-error {
  display: none;
  color: #c0392b;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 16px;
}
.step-error.visible { display: block; }

.a-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.a-step[data-step="0"] .a-actions,
.a-step[data-step="0"] { text-align: left; }

.results-summary {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
}
.results-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}
.results-score-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
}
.results-score-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 6px;
}
.results-maturity { flex: 1 1 220px; }
.results-maturity-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.results-maturity p { margin: 0; font-size: 0.92rem; }

.category-breakdown { margin-bottom: 40px; display: grid; gap: 18px; }
.cat-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.cat-bar-track {
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}
.cat-bar-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 999px;
}

.results-fieldset { margin-top: 8px; }
.results-note { margin-top: -6px; }

/* Profile page */
.operating-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.timeline {
  margin-top: 32px;
  display: grid;
  gap: 32px;
}
.timeline-compact { gap: 18px; }
.timeline-item {
  border-left: 2px solid var(--teal);
  padding-left: 24px;
}
.timeline-details summary {
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
  list-style: none;
}
.timeline-details summary::-webkit-details-marker { display: none; }
.timeline-details[open] summary { margin-bottom: 8px; }
.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.timeline-header h3 { margin: 0; }
.timeline-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.timeline-company {
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 12px;
  font-size: 0.92rem;
}
.timeline-item ul {
  margin: 0;
  padding-left: 20px;
}
.timeline-item li {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.engagements-intro {
  margin-top: 16px;
  max-width: 640px;
  color: var(--text-muted);
}

.client-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.client-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.client-card h3 { font-size: 1rem; margin-bottom: 6px; }
.client-card p { margin: 0; font-size: 0.85rem; }

.skill-tags,
.problem-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skill-tags span,
.problem-tags span {
  background: var(--navy);
  color: var(--teal);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}

.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.education-grid .intro-list li::before { top: 2px; }

/* Responsive */
@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .fit-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-photo { width: 160px; height: 160px; margin: 0 auto; }
  .hero-sub { max-width: 100%; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .scale { gap: 6px; }
  .scale-opt { padding: 10px 0; font-size: 0.9rem; }
  .results-summary { flex-direction: column; text-align: center; }
  .a-actions { flex-wrap: wrap; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .newsletter-form input[type="email"] { flex: 1 1 auto; min-width: 0; }
  .education-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline-header { flex-direction: column; align-items: flex-start; }
}
