/* ============================
   VERTICAL MOTIONS ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ¢ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ GLOBAL STYLES
   wholeexecutive.com
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---- Variables ---- */
:root {
  --navy:      #081e2b;
  --navy-mid:  #0d2d40;
  --navy-soft: #153347;
  --slate:     #5B7C99;
  --orange:    #fc6502;
  --orange-dk: #d95400;
  --icy:       #CFE8EF;
  --white:     #ffffff;
  --ink:       #081e2b;
  --ink-mid:   #334155;
  --ink-soft:  #64748b;
  --ink-faint: #94a3b8;
  --gray-bg:   #f8fafc;
  --border:    #e2e8f0;
  --border-dk: rgba(255,255,255,0.1);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-head:    Arial, 'Helvetica Neue', Helvetica, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --shadow-sm:  0 1px 4px rgba(8,30,43,0.07);
  --shadow-md:  0 4px 20px rgba(8,30,43,0.10);
  --shadow-lg:  0 16px 48px rgba(8,30,43,0.14);
  --shadow-xl:  0 32px 80px rgba(8,30,43,0.20);

  --transition: 0.2s ease;
  --max-w: 1160px;
  --max-w-sm: 760px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
em { font-style: italic; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.0625rem; letter-spacing: -0.01em; }
p  { font-size: 1.0625rem; color: var(--ink-mid); line-height: 1.75; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-body);
}

/* ---- Layout ---- */
.container    { max-width: var(--max-w);    margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 40px; }
section { padding: 100px 0; }
section.tight { padding: 64px 0; }

/* ---- FLOATING PILL NAV ---- */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--max-w);
  background: rgba(8, 30, 43, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  z-index: 100;
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 8px 40px rgba(8,30,43,0.35); }
.nav-inner {
  max-width: 100%;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text .brand   { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.875rem; color: var(--white); letter-spacing: -0.01em; }
.nav-logo-text .tagline { display: block; font-size: 0.62rem; color: rgba(207,232,239,0.5); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; line-height: 1; margin-top: 1px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a { font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 4px; padding: 6px; background: none; border: none; }
.nav-hamburger span { display: block; width: 20px; height: 1.5px; background: rgba(255,255,255,0.8); border-radius: 2px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(252,101,2,0.30); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); color: white; }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 17px 36px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-pill { border-radius: var(--radius-pill); }

/* ---- Hero (homepage) ---- */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 110% 110%, rgba(91,124,153,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at -10% 10%,  rgba(252,101,2,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* grid lines texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(252,101,2,0.12);
  border: 1px solid rgba(252,101,2,0.25);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: rgba(207,232,239,0.8);
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(207,232,239,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }

.hero-proof-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-proof-strip span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(207,232,239,0.45);
}
.hero-proof-strip .sep { color: rgba(207,232,239,0.2); }

/* Hero risk card */
.hero-risk-card {
  margin-top: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-risk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--slate), transparent);
}
.hero-risk-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.hero-risk-card-head span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(207,232,239,0.4);
}
.risk-row {
  display: grid;
  grid-template-columns: 1fr auto 48px;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.risk-row:last-of-type { border-bottom: none; }
.risk-row-label { font-size: 0.8125rem; color: rgba(207,232,239,0.75); font-weight: 500; }
.risk-row-bar { width: 100px; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.risk-row-bar-fill { height: 100%; border-radius: 2px; }
.risk-row-bar-fill.red    { background: #e05353; }
.risk-row-bar-fill.yellow { background: var(--orange); }
.risk-row-bar-fill.green  { background: #4ade80; }
.risk-row-score { font-size: 0.8125rem; font-weight: 700; text-align: right; }
.risk-row-score.red    { color: #e05353; }
.risk-row-score.yellow { color: var(--orange); }
.risk-row-score.green  { color: #4ade80; }
.hero-risk-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-risk-card-footer p {
  font-size: 0.8125rem;
  color: rgba(207,232,239,0.45);
  margin: 0;
  line-height: 1.6;
}
.hero-risk-card-footer strong { color: var(--orange); }

/* ---- Section headings ---- */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 1.0625rem; }
.section-head.left { text-align: left; max-width: none; margin-left: 0; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--slate); }

/* ---- Suite Cards ---- */
.suite-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--white);
}
.suite-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.suite-card-badge {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.suite-card-badge.free { background: var(--icy); color: var(--slate); }
.suite-card-badge.paid { background: var(--navy); color: rgba(207,232,239,0.85); }
.suite-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.suite-card-price { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700; color: var(--orange); margin-bottom: 6px; letter-spacing: 0.01em; }
.suite-card-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.suite-card-desc { font-size: 0.9375rem; color: var(--ink-mid); line-height: 1.72; margin-bottom: 20px; flex: 1; }
.suite-card-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.suite-card-features li { font-size: 0.875rem; color: var(--ink-mid); padding-left: 18px; position: relative; line-height: 1.5; }
.suite-card-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---- Problem Section ---- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-list { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.problem-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.problem-item:last-child { border-bottom: none; }
.problem-item-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--orange);
  padding-top: 3px;
}
.problem-item-text h4 { font-size: 0.9375rem; color: var(--ink); margin-bottom: 4px; }
.problem-item-text p { font-size: 0.875rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}
.process-step h4 { font-size: 1rem; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.process-step p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; margin: 0; text-wrap: pretty; }

/* ---- Stats Row ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.8125rem; color: var(--ink-soft); line-height: 1.4; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(91,124,153,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.cta-section h2 { color: var(--white); max-width: 700px; margin: 0 auto 18px; }
.cta-section p  { color: rgba(207,232,239,0.65); max-width: 540px; margin: 0 auto 40px; }
.cta-section .eyebrow { color: rgba(252,101,2,0.8); margin-bottom: 20px; display: block; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- Dimension Cards ---- */
.dim-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.dim-feature:last-child { border-bottom: none; }
.dim-feature-code {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 2px;
}
.dim-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.dim-feature p  { font-size: 0.875rem; color: var(--ink-soft); margin: 0; line-height: 1.65; }

/* ---- Proof / Quote ---- */
.proof-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.3;
  font-weight: 400;
}
.proof-attr { font-size: 0.875rem; color: rgba(207,232,239,0.5); }
.proof-attr strong { color: rgba(207,232,239,0.8); font-weight: 600; }

/* ---- Who it's for grid ---- */
.for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.for-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  align-items: flex-start;
  transition: border-color var(--transition);
}
.for-card:hover { border-color: var(--slate); }
.for-card-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  background: var(--icy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.for-card-icon img { width: 44px; height: 44px; object-fit: contain; display: block; }
.for-card h4 { font-size: 0.9375rem; margin-bottom: 3px; }
.for-card p  { font-size: 0.8125rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ---- Footer ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 72px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.92); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}

/* ---- Assessment / Forms ---- */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(8,30,43,0.07);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Progress bar */
.progress-wrap { margin-bottom: 36px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.progress-track { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--orange)); border-radius: 3px; transition: width 0.4s ease; }

/* Question cards */
.question-block {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}
.question-block:hover { border-color: var(--slate); }
.question-num { font-size: 0.68rem; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.question-text { font-family: var(--font-head); font-size: 1.0625rem; font-weight: 600; color: var(--ink); margin-bottom: 18px; line-height: 1.4; }
.options-list { display: flex; flex-direction: column; gap: 8px; }
.option-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.option-item:hover { border-color: var(--navy); background: rgba(8,30,43,0.02); }
.option-item input[type="radio"] { display: none; }
.option-item.selected { border-color: var(--navy); background: rgba(8,30,43,0.04); }
.option-letter {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--ink-faint);
  flex-shrink: 0;
  transition: all var(--transition);
}
.option-item.selected .option-letter { background: var(--navy); border-color: var(--navy); color: var(--white); }
.option-text { font-size: 0.9375rem; color: var(--ink-mid); padding-top: 2px; line-height: 1.5; }

/* ---- Results ---- */
.risk-tier { display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.03em; }
.risk-tier.high   { background: rgba(224,83,83,0.1);  color: #c62828; }
.risk-tier.medium { background: rgba(252,101,2,0.12); color: #c25000; }
.risk-tier.low    { background: rgba(74,222,128,0.12); color: #166534; }

.dim-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 14px; }
.dim-card-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: var(--gray-bg); }
.dim-card-head h4 { font-size: 0.9375rem; }
.dim-card-body { padding: 18px 22px; }
.dim-bar-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 12px; }
.dim-bar-fill  { height: 100%; border-radius: 3px; transition: width 1s ease; }
.dim-bar-fill.green  { background: linear-gradient(90deg, #22c55e, #4ade80); }
.dim-bar-fill.yellow { background: linear-gradient(90deg, var(--orange), #fbbf24); }
.dim-bar-fill.red    { background: linear-gradient(90deg, #e05353, #ef4444); }
.dim-card-body p { font-size: 0.875rem; color: var(--ink-soft); margin: 0; line-height: 1.65; }

.risk-flag { display: flex; gap: 16px; padding: 20px 22px; border-radius: var(--radius-md); border: 1px solid; margin-bottom: 12px; }
.risk-flag.critical { border-color: rgba(198,40,40,0.25); background: rgba(198,40,40,0.03); }
.risk-flag.warning  { border-color: rgba(252,101,2,0.25);  background: rgba(252,101,2,0.03); }
.risk-flag-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; flex-shrink: 0; line-height: 1; padding-top: 2px; }
.risk-flag.critical .risk-flag-num { color: #c62828; }
.risk-flag.warning  .risk-flag-num { color: var(--orange); }
.risk-flag-body h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.risk-flag-body p  { font-size: 0.875rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* ---- Team Grid ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.team-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-card-header { background: var(--navy); padding: 24px; }
.team-card-initials { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: white; margin-bottom: 12px; }
.team-card-header h3 { font-size: 1.05rem; color: white; margin-bottom: 3px; }
.team-card-header .role { font-size: 0.72rem; color: rgba(207,232,239,0.65); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.4; }
.team-card-body { padding: 20px 24px; }
.team-card-body p { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.7; }

/* ---- About ---- */
.about-hero { background: var(--navy); color: white; padding: 160px 0 96px; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 110% 0%, rgba(91,124,153,0.18) 0%, transparent 60%); pointer-events: none; }
.about-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
.about-hero h1 { color: white; font-family: var(--font-display); font-weight: 400; max-width: 700px; margin-bottom: 20px; position: relative; z-index: 1; }
.about-hero p  { color: rgba(207,232,239,0.75); max-width: 560px; font-size: 1.125rem; position: relative; z-index: 1; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-value { padding: 26px; background: rgba(255,255,255,0.04); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.08); }
.about-value .num { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: rgba(252,101,2,0.5); line-height: 1; margin-bottom: 10px; }
.about-value h4 { font-size: 0.9375rem; color: white; margin-bottom: 6px; }
.about-value p  { font-size: 0.875rem; color: rgba(207,232,239,0.6); margin: 0; line-height: 1.65; }

/* ---- LDNA dims ---- */
.ldna-dim { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 22px; border-radius: var(--radius-md); background: white; border: 1px solid var(--border); margin-bottom: 10px; transition: border-color var(--transition), box-shadow var(--transition); }
.ldna-dim:hover { border-color: var(--slate); box-shadow: var(--shadow-sm); }
.ldna-dim-code { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; flex-shrink: 0; }
.ldna-dim h4 { font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.ldna-dim p  { font-size: 0.875rem; color: var(--ink-soft); margin: 0; line-height: 1.65; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--icy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-info-item h4 { font-size: 0.875rem; margin-bottom: 2px; }
.contact-info-item p  { font-size: 0.9375rem; margin: 0; }

/* ---- Scorecard sidebar ---- */
.sidebar-card { position: sticky; top: 100px; background: var(--gray-bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; }
.sidebar-dim { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: white; margin-bottom: 8px; transition: all var(--transition); }
.sidebar-dim.active { border-color: var(--navy); background: rgba(8,30,43,0.03); }
.sidebar-dim.done   { border-color: var(--slate); background: var(--icy); }
.sidebar-dim-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.sidebar-dim.active .sidebar-dim-dot { background: var(--navy); }
.sidebar-dim.done   .sidebar-dim-dot { background: var(--slate); }
.sidebar-dim span { font-size: 0.8125rem; color: var(--ink-soft); font-weight: 500; }
.sidebar-dim.active span { color: var(--navy); font-weight: 600; }
.sidebar-dim.done   span { color: var(--slate); }

/* ---- Page heroes (non-home) ---- */
.page-hero {
  background: var(--navy);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(91,124,153,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; color: white; max-width: 720px; margin-bottom: 16px; }
.page-hero p  { color: rgba(207,232,239,0.75); max-width: 600px; font-size: 1.0625rem; line-height: 1.7; }

/* ---- Utility ---- */
.bg-gray { background: var(--gray-bg); }
.bg-icy  { background: var(--icy); }
.bg-navy { background: var(--navy); }
.text-center { text-align: center; }
.text-white  { color: white; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.divider { height: 1px; background: var(--border); margin: 48px 0; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-orange { background: rgba(252,101,2,0.10); color: var(--orange); }
.badge-navy   { background: rgba(8,30,43,0.08);  color: var(--navy); }
.badge-icy    { background: var(--icy); color: var(--slate); }
.badge-ghost  { background: rgba(207,232,239,0.15); color: rgba(207,232,239,0.85); }

.notice { padding: 14px 18px; border-radius: var(--radius-sm); border-left: 3px solid; margin-bottom: 22px; }
.notice.info { background: rgba(207,232,239,0.35); border-color: var(--slate); }
.notice p { font-size: 0.875rem; color: var(--ink-mid); margin: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up           { animation: fadeUp 0.65s ease both; }
.fade-up-delay-1   { animation-delay: 0.1s; }
.fade-up-delay-2   { animation-delay: 0.22s; }
.fade-up-delay-3   { animation-delay: 0.35s; }

/* ---- Responsive ---- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-risk-card { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:nth-child(odd) { border-right: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-values { grid-template-columns: 1fr; }
}
/* ---- 880px: tablets & large phones ---- */
@media (max-width: 880px) {
  /* Inline split-grid helper (class added to HTML) */
  .split-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Section padding ~30% reduction */
  section { padding: 70px 0; }
  section.tight { padding: 44px 0; }
  .cta-section { padding: 70px 0; }
  .proof-section { padding: 56px 0; }
  .about-hero { padding: 130px 0 72px; }
  .page-hero { padding: 120px 0 52px; }
  .section-head { margin-bottom: 48px; }

  /* Collapse multi-col grids to single column */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-risk-card { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .for-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:nth-child(odd) { border-right: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* H1 scale down */
  h1 { font-size: clamp(2rem, 7.5vw, 2.8rem); }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }

  /* Full-width CTA buttons */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Table overflow scrolling */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---- 720px: phones ---- */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  nav { width: calc(100% - 24px); top: 12px; }
  .nav-inner { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 84px; left: 12px; right: 12px; background: var(--navy); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 20px 24px; gap: 18px; box-shadow: var(--shadow-xl); z-index: 99; }
  .nav-hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  section { padding: 56px 0; }
  .hero { padding: 100px 0 56px; min-height: auto; }
  .hero h1 { font-size: clamp(2.1rem, 9.5vw, 3rem); }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---- 480px: small phones ---- */
@media (max-width: 480px) {
  /* Tighter typography */
  h1 { font-size: clamp(1.75rem, 9vw, 2.25rem); }
  h2 { font-size: clamp(1.375rem, 7vw, 1.875rem); }
  h3 { font-size: clamp(1.1rem, 5vw, 1.375rem); }
  p { font-size: 0.9375rem; }
  .hero h1 { font-size: clamp(1.9rem, 9.5vw, 2.6rem); }
  .hero-sub { font-size: 1rem; }
  .proof-quote { font-size: 1.2rem; line-height: 1.45; }

  /* Tighter sections */
  section { padding: 48px 0; }
  section.tight { padding: 30px 0; }
  .cta-section { padding: 52px 0; }
  .proof-section { padding: 44px 0; }
  .container, .container-sm { padding: 0 16px; }
  .hero { padding: 96px 0 48px; }
  .about-hero { padding: 108px 0 44px; }
  .page-hero { padding: 108px 0 36px; }
  footer { padding: 48px 0 28px; }
  .footer-grid { gap: 28px; }
  .section-head { margin-bottom: 36px; }

  /* Stats: single column */
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-cell:last-child { border-bottom: none; }

  /* Process steps: compact */
  .process-step { padding: 22px 16px; }
  .process-step-num { font-size: 2.2rem; margin-bottom: 10px; }

  /* Suite cards */
  .suite-card-body { padding: 24px 18px; }
  .suite-card-title { font-size: 1.05rem; }

  /* Nav: hide tagline on tiny screens to save space */
  .nav-logo-text .tagline { display: none; }

  /* Results stats inline grid */
  .results-stats-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* For-cards: compact */
  .for-card { padding: 16px; }

  /* Question blocks: compact */
  .question-block { padding: 20px 18px; }
  .option-item { padding: 11px 14px; }
}

@keyframes spin { to { transform: rotate(360deg); } }
