/* =============================================================
   VOLENTE MEDIA - Sub-page Stylesheet
   Shared styles for /about, /audit, /calculator, /benchmark-report
   Loaded AFTER styles.css.
   ============================================================= */

/* ── Page hero (smaller than homepage hero) ───────────────────── */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding: calc(120px + var(--bar-height, 0px)) 0 80px;
  overflow: hidden;
  background: var(--white);
}
.page-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 1.5rem 0 1rem;
}
.page-hero__title em.hero__headline-accent {
  font-style: normal;
}
.page-hero__sub {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--body);
  max-width: 640px;
  margin: 0 auto;
}


/* =============================================================
   ABOUT PAGE
   ============================================================= */
.about-story {
  padding: 100px 0;
  background: var(--lavender);
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story__copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 1.2rem;
}
.about-story__pull {
  font-family: var(--font-head);
  font-size: 1.25rem !important;
  font-weight: 700;
  line-height: 1.4 !important;
  color: var(--navy) !important;
  padding-left: 1.25rem;
  border-left: 3px solid var(--orange);
  margin-top: 2rem !important;
}
.about-story__photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
}
.about-story__photo {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-story__photo-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 3, 33, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: .85rem 1.25rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
}
.about-story__photo-caption strong {
  font-size: 1.05rem;
  font-weight: 800;
}
.about-story__photo-caption span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}


/* Mission / Vision */
.mission {
  padding: 80px 0;
  background: var(--white);
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mission__card {
  background: var(--lavender);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.mission__card--accent {
  background: linear-gradient(160deg, var(--navy) 0%, #0E1252 100%);
  border-color: var(--navy);
  color: var(--white);
}
.mission__label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.mission__label--orange { color: var(--orange); }
.mission__card p {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}
.mission__card--accent p { color: var(--white); }
.mission__card--accent strong { color: var(--orange); }


/* Values */
.values {
  padding: 100px 0;
  background: var(--lavender);
}
.values .section-headline,
.values .section-sub {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.value__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.value__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 56, 255, .18);
}
.value__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 56, 255, .12);
  margin-bottom: .75rem;
  letter-spacing: -.04em;
}
.value__card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: .75rem;
}
.value__card p {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--body);
}


/* Founders */
.founders {
  padding: 100px 0;
  background: var(--white);
}
.founders .section-headline,
.founders .section-sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.founders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.founder__card {
  background: var(--lavender);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.founder__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.founder__photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
}
.founder__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder__photo-wrap--placeholder {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder__initials {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.founder__card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .25rem;
}
.founder__role {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.founder__bio {
  font-size: .98rem;
  line-height: 1.65;
  color: var(--body);
}


/* Team stats */
.team-stats {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.team-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.team-stat {
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .08);
}
.team-stat:last-child { border-right: none; }
.team-stat__num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}
.team-stat__label {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  line-height: 1.3;
}


/* Page CTA (sub-page bottom CTA) */
.page-cta {
  padding: 100px 0;
  background: var(--lavender);
}
.page-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.page-cta__inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.page-cta__inner p {
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.55;
  margin-bottom: 2rem;
}
.page-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* =============================================================
   AUDIT PAGE
   ============================================================= */
.audit-hero {
  padding: calc(140px + var(--bar-height, 0px)) 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,56,255,.05) 0%, transparent 60%),
    var(--white);
  position: relative;
  overflow: hidden;
}
.audit-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.audit-hero__copy {
  padding-top: 1rem;
}
.audit-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 1.25rem 0 1rem;
}
.audit-hero__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: 1.5rem;
}
.audit-hero__bullets {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}
.audit-hero__bullet {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.audit-hero__bullet svg {
  width: 18px; height: 18px;
  color: #19C37D;
  margin-top: 2px;
}

/* Form card */
.audit-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--card-shadow-hover);
  position: sticky;
  top: calc(var(--bar-height, 0px) + 100px);
}
.audit-form-card__head {
  margin-bottom: 1.5rem;
  text-align: center;
}
.audit-form-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .25rem;
}
.audit-form-card__sub {
  font-size: .9rem;
  color: var(--secondary);
}
.audit-form-placeholder {
  background: var(--lavender);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  text-align: center;
}
.audit-form-placeholder svg {
  width: 32px; height: 32px;
  color: var(--blue);
  margin-bottom: 1rem;
}
.audit-form-placeholder p {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.audit-form-placeholder span {
  font-size: .85rem;
  color: var(--body);
  display: block;
  line-height: 1.5;
}
.audit-form-card__foot {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .82rem;
  color: var(--secondary);
}


/* Audit sub-fold: what's in the audit */
.audit-inside {
  padding: 100px 0;
  background: var(--lavender);
}
.audit-inside .section-headline,
.audit-inside .section-sub {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.audit-inside__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.audit-inside__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.audit-inside__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.audit-inside__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0, 56, 255, .10);
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.audit-inside__icon svg { width: 22px; height: 22px; }
.audit-inside__card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
}
.audit-inside__card p {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--body);
}


/* Audit deliverables list */
.audit-deliver {
  padding: 100px 0;
  background: var(--white);
}
.audit-deliver__grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.audit-deliver .section-headline,
.audit-deliver .section-sub {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.audit-deliver__item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: var(--lavender);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.4;
  align-items: center;
}
.audit-deliver__item svg {
  width: 22px; height: 22px;
  color: #19C37D;
}


/* =============================================================
   CALCULATOR PAGE
   ============================================================= */
.calc {
  padding: calc(120px + var(--bar-height, 0px)) 0 80px;
  background: var(--white);
}
.calc-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.calc-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 1rem 0;
}
.calc-hero__sub {
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.55;
}

.calc-app {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

/* Input panel */
.calc-inputs {
  background: var(--lavender);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.calc-inputs__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.calc-group { margin-bottom: 1.5rem; }
.calc-group:last-child { margin-bottom: 0; }
.calc-group__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.calc-group__hint {
  font-size: .75rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0;
  text-transform: none;
}
.calc-group__value {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--blue);
}

.calc-input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.calc-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,56,255,.12);
}
.calc-prefix {
  position: relative;
}
.calc-prefix__symbol {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  pointer-events: none;
}
.calc-prefix .calc-input { padding-left: 28px; }

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(0, 56, 255, .15);
  border-radius: 100px;
  outline: none;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,56,255,.3);
  transition: transform .2s ease;
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0,56,255,.3);
}

.calc-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}
.calc-radio {
  display: none;
}
.calc-radio-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  color: var(--body);
  transition: background var(--transition), color var(--transition);
}
.calc-radio:checked + .calc-radio-label {
  background: var(--navy);
  color: var(--white);
}

/* Outputs panel */
.calc-outputs {
  background: linear-gradient(160deg, var(--navy) 0%, #0E1252 100%);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: calc(var(--bar-height, 0px) + 100px);
  align-self: start;
}
.calc-outputs__title {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1rem;
}
.calc-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--orange);
  margin-bottom: .5rem;
}
.calc-headline-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 2rem;
}

.calc-outputs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.calc-out-tile {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.calc-out-tile__label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .5rem;
}
.calc-out-tile__value {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.calc-out-tile__unit {
  font-size: .5em;
  color: rgba(255, 255, 255, .5);
  font-weight: 700;
  margin-left: 2px;
}

.calc-infra {
  background: rgba(255, 98, 64, .12);
  border: 1px solid rgba(255, 98, 64, .35);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.calc-infra__title {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.calc-infra__row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: .95rem;
  padding: .35rem 0;
}
.calc-infra__row strong {
  color: var(--white);
  font-weight: 700;
}
.calc-infra__row span {
  color: rgba(255, 255, 255, .65);
}

.calc-outputs__cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}
.calc-outputs__cta .btn { justify-content: center; }
.calc-outputs__disclaimer {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
  text-align: center;
  margin-top: 1rem;
}


/* =============================================================
   BENCHMARK REPORT (WAITLIST) PAGE
   ============================================================= */
.benchmark-hero {
  padding: calc(140px + var(--bar-height, 0px)) 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 98, 64, .06) 0%, transparent 60%),
    var(--white);
}
.benchmark-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.benchmark-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 98, 64, .10);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.benchmark-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.benchmark-hero__sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.benchmark-form {
  background: var(--lavender);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.benchmark-form-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  text-align: center;
}
.benchmark-form-placeholder p {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.benchmark-form-placeholder span {
  font-size: .9rem;
  color: var(--body);
}

.benchmark-preview {
  padding: 80px 0;
  background: var(--lavender);
}
.benchmark-preview .section-headline,
.benchmark-preview .section-sub {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.benchmark-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.benchmark-preview__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.benchmark-preview__card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
}
.benchmark-preview__card p {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--body);
}


/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .mission__grid,
  .values__grid,
  .founders__grid { grid-template-columns: 1fr; }
  .team-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .team-stat:nth-child(2) { border-right: none; }

  .audit-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .audit-form-card { position: static; }
  .audit-inside__grid { grid-template-columns: 1fr; }
  .audit-deliver__grid { grid-template-columns: 1fr; }

  .calc-app { grid-template-columns: 1fr; }
  .calc-outputs { position: static; }

  .benchmark-preview__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .page-hero { padding: calc(100px + var(--bar-height, 0px)) 0 60px; }
  .about-story,
  .mission,
  .values,
  .founders,
  .team-stats,
  .page-cta,
  .audit-inside,
  .audit-deliver,
  .benchmark-preview { padding: 64px 0; }
  .team-stats__grid { grid-template-columns: 1fr; }
  .team-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 1rem; }
  .team-stat:last-child { border-bottom: none; }
  .calc-outputs__grid { grid-template-columns: 1fr; }
}


/* =============================================================
   HOW IT WORKS PAGE
   ============================================================= */
.hiw-weeks {
  padding: 60px 0 100px;
  background: var(--white);
}

.hiw-week {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  position: relative;
  padding-bottom: 3rem;
}

/* Left rail with badge + connector line */
.hiw-week__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hiw-week__badge {
  position: sticky;
  top: calc(var(--bar-height, 0px) + 100px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 100px;
  z-index: 2;
  box-shadow: var(--card-shadow);
  white-space: nowrap;
}
.hiw-week__badge--orange {
  background: var(--orange);
  color: var(--white);
}
.hiw-week__badge--ongoing {
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.hiw-week__line {
  position: absolute;
  top: 50px;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, var(--border) 0%, var(--border) 100%);
  z-index: 1;
}
.hiw-week__line--last {
  background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
}

/* Right side body */
.hiw-week__body {
  background: var(--lavender);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hiw-week__body:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}
.hiw-week--accent .hiw-week__body {
  background: linear-gradient(160deg, var(--navy) 0%, #0E1252 100%);
  border-color: var(--navy);
  color: var(--white);
}

.hiw-week__head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.hiw-week--accent .hiw-week__head { border-bottom-color: rgba(255,255,255,.12); }

.hiw-week__head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--navy);
  margin-bottom: .75rem;
}
.hiw-week--accent .hiw-week__head h2 { color: var(--white); }

.hiw-week__head p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body);
}
.hiw-week--accent .hiw-week__head p { color: rgba(255,255,255,.78); }

/* 3-column grid: what we do / what you do / what you'll see */
.hiw-week__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hiw-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.25rem 1.5rem;
}
.hiw-week--accent .hiw-col {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}

.hiw-col__label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid rgba(0,56,255,.12);
}
.hiw-col--you .hiw-col__label { color: var(--orange); border-bottom-color: rgba(255,98,64,.18); }
.hiw-col--see .hiw-col__label { color: #19C37D;       border-bottom-color: rgba(25,195,125,.18); }
.hiw-week--accent .hiw-col__label { border-bottom-color: rgba(255,255,255,.10); }

.hiw-col__list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.hiw-col__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--body);
}
.hiw-col__list li svg {
  width: 16px; height: 16px;
  color: var(--blue);
  margin-top: 3px;
}
.hiw-col--you .hiw-col__list li svg { color: var(--orange); }
.hiw-col--see .hiw-col__list li svg { color: #19C37D; }
.hiw-week--accent .hiw-col__list li { color: rgba(255,255,255,.82); }

@media (max-width: 900px) {
  .hiw-week { grid-template-columns: 1fr; gap: 1rem; padding-bottom: 2rem; }
  .hiw-week__rail { flex-direction: row; justify-content: flex-start; gap: 1rem; }
  .hiw-week__badge { position: static; }
  .hiw-week__line { display: none; }
  .hiw-week__grid { grid-template-columns: 1fr; }
}


/* =============================================================
   SCORECARD PAGE
   ============================================================= */
.sc {
  padding: calc(120px + var(--bar-height, 0px)) 0 100px;
  background: var(--white);
  min-height: 90vh;
}

/* Intro screen */
.sc-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.sc-intro__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 1.25rem 0 1rem;
}
.sc-intro__sub {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--body);
  margin-bottom: 2.5rem;
}
.sc-intro__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.sc-intro__tile {
  background: var(--lavender);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sc-intro__tile strong {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .35rem;
  letter-spacing: -.03em;
}
.sc-intro__tile span {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: .03em;
}
.sc-intro__note {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--secondary);
}

/* Quiz */
.sc-quiz {
  max-width: 720px;
  margin: 0 auto;
}
.sc-progress {
  margin-bottom: 2rem;
}
.sc-progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: .5rem;
}
.sc-progress__step strong { color: var(--navy); font-weight: 800; }
.sc-progress__cat {
  background: rgba(0,56,255,.10);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: .04em;
}
.sc-progress__bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.sc-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  border-radius: 100px;
  transition: width .35s cubic-bezier(.4,0,.2,1);
}

.sc-q {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
}
.sc-q__category {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,56,255,.08);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.sc-q__text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.sc-q__hint {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--body);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.sc-q__answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.sc-answer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  transition: all .2s ease;
}
.sc-answer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--secondary);
  transition: all .2s ease;
}
.sc-answer__icon svg { width: 18px; height: 18px; }
.sc-answer:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}
.sc-answer--yes:hover {
  border-color: #19C37D;
  color: #16A065;
}
.sc-answer--yes:hover .sc-answer__icon {
  background: rgba(25,195,125,.15);
  color: #19C37D;
}
.sc-answer--no:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.sc-answer--no:hover .sc-answer__icon {
  background: rgba(255,98,64,.15);
  color: var(--orange);
}
.sc-answer--active {
  border-color: var(--navy);
  background: rgba(0,3,33,.04);
}

.sc-q__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.sc-q__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.sc-q__back svg { width: 14px; height: 14px; }
.sc-q__back:hover:not(:disabled) {
  color: var(--navy);
  background: var(--lavender);
}
.sc-q__back:disabled { opacity: .35; cursor: not-allowed; }
.sc-q__score {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--secondary);
}

/* Result screen */
.sc-result {
  max-width: 820px;
  margin: 0 auto;
}
.sc-grade {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(160deg, var(--navy) 0%, #0E1252 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.sc-grade__letter {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: #19C37D;
  flex-shrink: 0;
  min-width: 110px;
  text-align: center;
}
.sc-grade__letter[data-tone="ok"]      { color: #FFC857; }
.sc-grade__letter[data-tone="warning"] { color: var(--orange); }
.sc-grade__letter[data-tone="bad"]     { color: #FF5757; }
.sc-grade__pct-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: .35rem;
}
.sc-grade__pct-label {
  font-family: var(--font-head);
  font-size: .92rem;
  color: rgba(255,255,255,.65);
}

.sc-result__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.sc-result__sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--body);
  margin-bottom: 2rem;
}

/* Category breakdown */
.sc-result__cats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.sc-cat {
  background: var(--lavender);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.sc-cat__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}
.sc-cat__name {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
}
.sc-cat__score {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 800;
  color: var(--navy);
}
.sc-cat__bar {
  width: 100%;
  height: 6px;
  background: rgba(0,3,33,.06);
  border-radius: 100px;
  overflow: hidden;
}
.sc-cat__bar-fill {
  height: 100%;
  background: #19C37D;
  border-radius: 100px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.sc-cat[data-tone="ok"]      .sc-cat__bar-fill { background: #FFC857; }
.sc-cat[data-tone="warning"] .sc-cat__bar-fill { background: var(--orange); }
.sc-cat[data-tone="bad"]     .sc-cat__bar-fill { background: #FF5757; }

/* PDF email gate */
.sc-pdf {
  background: var(--lavender);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.sc-pdf__head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.sc-pdf__label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}
.sc-pdf__head h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
}
.sc-pdf__sub {
  font-size: .98rem;
  line-height: 1.5;
  color: var(--body);
  max-width: 500px;
  margin: 0 auto;
}

/* Next steps */
.sc-next {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.sc-next h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
}
.sc-next p {
  font-size: 1rem;
  color: var(--body);
  margin-bottom: 1.5rem;
}
.sc-next__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.sc-restart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.sc-restart svg { width: 16px; height: 16px; }
.sc-restart:hover {
  color: var(--navy);
  background: var(--lavender);
}

@media (max-width: 600px) {
  .sc { padding-top: calc(90px + var(--bar-height, 0px)); padding-bottom: 64px; }
  .sc-intro__tiles { grid-template-columns: 1fr; gap: .75rem; }
  .sc-q { padding: 2rem 1.25rem; }
  .sc-q__answers { grid-template-columns: 1fr; }
  .sc-grade { flex-direction: column; text-align: center; gap: 1rem; padding: 2rem 1.5rem; }
  .sc-grade__letter { font-size: 5rem; }
  .sc-next__actions { flex-direction: column; }
  .sc-next__actions .btn { width: 100%; justify-content: center; }
}


/* How It Works — timeline disclaimer (sits at bottom of weeks list) */
.hiw-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 760px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 98, 64, .06);
  border: 1px solid rgba(255, 98, 64, .22);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  line-height: 1.6;
  color: var(--body);
}
.hiw-disclaimer svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.hiw-disclaimer strong {
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  margin-right: 2px;
}
