/* ============================================================
   Even The Odds™ - styles
   Blue field. White cards. Signal nothing.
   ============================================================ */

/* Source Sans 3 (Adobe, SIL OFL) - self-hosted variable font, no CDN dependency */
@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url("fonts/source-sans-3-ext-italic.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("fonts/source-sans-3-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("fonts/source-sans-3.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url("fonts/source-sans-3-italic.woff2") format("woff2");
}

:root {
  --blue: #0A66C2;
  --blue-dark: #084F97;
  --blue-darker: #06407C;
  --blue-light: #1573CF;
  --ink: #191919;
  --ink-soft: #4b4b4b;
  --white: #FFFFFF;
  --card-radius: 8px;
  --maxw: 1200px;
  --font: "Source Sans 3", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --blue-line: rgba(160, 205, 245, .38);
  --blue-line-strong: rgba(210, 232, 252, .75);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--blue);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; font-size: 1rem; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 860px; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  text-decoration: none;
  text-align: center;
  transition: background .15s ease, color .15s ease, box-shadow .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 13px 34px; font-size: 1.08rem; }
.btn-xl { padding: 16px 46px; font-size: 1.25rem; }

.btn-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 3px 10px rgba(3, 32, 61, .30), 0 1px 2px rgba(3, 32, 61, .20);
}
.btn-white:hover { background: #fdfefe; box-shadow: 0 7px 20px rgba(3, 32, 61, .34), 0 2px 5px rgba(3, 32, 61, .22); }

.btn-outline-white {
  background: rgba(255,255,255,.14);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(3, 32, 61, .22);
}
.btn-outline-white:hover { background: rgba(255,255,255,.22); box-shadow: 0 7px 18px rgba(3, 32, 61, .28); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(9, 62, 115, .30), 0 1px 2px rgba(9, 62, 115, .22);
}
.btn-blue:hover { background: var(--blue-light); box-shadow: 0 7px 20px rgba(9, 62, 115, .36), 0 2px 5px rgba(9, 62, 115, .24); }

.btn-outline-blue {
  background: #eaf3fb;
  color: var(--blue);
  box-shadow: 0 2px 7px rgba(9, 62, 115, .18);
}
.btn-outline-blue:hover { background: #ddecf9; box-shadow: 0 5px 14px rgba(9, 62, 115, .24); }

.text-link {
  background: none;
  border: none;
  color: var(--blue);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}
.text-link:hover { color: var(--blue-dark); }

/* ============ Cards ============ */
.card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,.14);
}

/* ============ Nav ============ */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  border-bottom: 1px solid var(--blue-line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  min-width: 0;
}
.brand-stack { display: flex; flex-direction: column; line-height: 1.15; }
.in-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
  font-size: .95rem;
  line-height: 1;
}
.in-logo-xs { width: 14px; height: 14px; font-size: .6rem; border-radius: 3px; flex: 0 0 14px; }
.powered em { font-style: italic; }
.footer-right em { font-style: italic; }
.brand-name { font-weight: 700; font-size: 1.08rem; white-space: nowrap; }
.powered {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: .68rem;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  letter-spacing: .01em;
}
.powered .in-logo-xs { background: #FFFFFF; color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; gap: 8px; }
.nav-cta { padding: 9px 22px; font-size: .95rem; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  opacity: .92;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.nav-links a:hover { opacity: 1; background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.28); }

/* ============ Views (SPA) ============ */
.view { display: none; }
.view.active { display: block; }

/* ============ Landing (the door) ============ */
body.on-landing #footer { display: none; }
body.on-landing #nav { display: none; }
.door-brand { padding: 56px 0 0; }
.door-brand .container { max-width: none; padding: 0 72px; }
.door-brand-name {
  display: block;
  margin-left: -0.05em;
  font-size: clamp(3.4rem, 9.2vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}
.door-brand .powered { margin-top: 8px; font-size: .88rem; }
.door-brand .in-logo-xs { width: 16px; height: 16px; font-size: .66rem; flex-basis: 16px; }
#view-landing.active { display: flex; flex-direction: column; min-height: 100svh; }
.door-brand { flex: 0 0 auto; }
.door {
  flex: 1;
  display: flex;
  align-items: center;
}
.feature-row-topper { margin-top: 10px; font-style: italic; font-weight: 600; font-size: 1.02rem; opacity: .95; }
.feature-row-topper-lead { margin-top: 0; margin-bottom: 10px; }
.door-headline {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.door-subline {
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 600;
  margin-bottom: 28px;
}
.door-entry { display: flex; align-items: stretch; gap: 12px; width: min(660px, 100%); }
.door-entry input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-size: 1.05rem;
  outline: none;
}
.door-entry input::placeholder { color: rgba(255,255,255,.68); }
.door-entry input:focus { border-color: var(--white); box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
.door-generate {
  display: block;
  margin-top: 14px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: .92rem;
  opacity: .82;
}
.door-generate:hover { opacity: 1; }
.door-fine { margin-top: 20px; font-size: .8rem; opacity: .6; }

.section { padding: 64px 0; }

/* ============ Footer ============ */
#footer { background: var(--blue); border-top: 1px solid var(--blue-line); padding: 28px 0 20px; }
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px 24px;
}
.footer-left { justify-self: start; }
.footer-center { justify-self: center; }
.footer-right { justify-self: end; }
.footer-left { font-size: .92rem; opacity: .88; }
.footer-center { display: flex; gap: 20px; }
.footer-center a { color: var(--white); text-decoration: none; font-size: .92rem; opacity: .88; }
.footer-center a:hover { opacity: 1; text-decoration: underline; }
.footer-right { display: inline-flex; align-items: center; }
.footer-right .powered { font-size: .85rem; }
.footer-eoe { text-align: center; font-size: .82rem; opacity: .68; margin-top: 18px; }

/* ============ Optimization ============ */
body.in-optimize #footer { display: none; }

#view-optimize .step {
  display: none;
  min-height: 100vh;
  padding: 96px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
#view-optimize .step.revealed { display: flex; }

.step-card {
  width: min(620px, 100%);
  padding: 40px;
  text-align: center;
}
.step-headline { font-size: 1.65rem; font-weight: 700; margin-bottom: 10px; }
.step-subline { color: var(--ink-soft); margin-bottom: 26px; }
.fine-line { margin-top: 16px; font-size: .85rem; color: #6e6e6e; }

/* Step 1 - Entry */
.entry-fields { display: flex; flex-direction: column; gap: 14px; margin: 22px 0 24px; }
.entry-fields input,
.ask-block input,
.ask-block textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #c9d5e0;
  border-radius: var(--card-radius);
  color: var(--ink);
  outline: none;
}
.entry-fields input::placeholder { font-size: .92rem; }
.entry-fields input:focus,
.ask-block input:focus,
.ask-block textarea:focus:focus { border-color: var(--blue); }
.entry-fields .text-link { align-self: center; }
.input-nudge { border-color: var(--blue) !important; }

.mm-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 18px;
  color: #9aa7b2;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mm-divider::before, .mm-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid #e4ebf1;
}
.mm-shortcut-line { margin-top: 10px; font-size: .88rem; color: #6e6e6e; }

/* Step 2 / 9 - scan checklist */
.step-fullblue { text-align: center; }
.scan-list {
  list-style: none;
  text-align: left;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.scan-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.scan-list li.on { opacity: 1; transform: none; }
.check {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  border: 2px solid var(--white);
  position: relative;
}
li.checked .check { background: var(--white); }
li.checked .check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid var(--blue);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* Step 3 - NameSync result */
.name-stage { min-height: 120px; display: flex; flex-direction: column; justify-content: center; margin-bottom: 8px; }
.name-before {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
}
.name-before.shown { opacity: 1; }
.name-before.gone { opacity: 0; transform: translateY(-14px); }
.name-after {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.name-after.shown { opacity: 1; transform: none; }
.meet-line { font-weight: 600; color: var(--blue); margin-bottom: 26px; }

.meter-block { margin: 0 auto 22px; max-width: 420px; }
.meter-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6e6e6e;
  text-align: left;
  margin-bottom: 8px;
}
.meter-label strong { color: var(--blue); font-size: .96rem; letter-spacing: 0; }
.meter-track {
  height: 10px;
  background: #e4ebf1;
  border-radius: 999px;
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  width: 0;
  background: var(--blue);
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(.25,.6,.3,1);
}

.receipts { margin-bottom: 18px; }
.receipt-line { font-size: .92rem; color: #6e6e6e; }
.closing-line { font-weight: 700; font-size: 1.12rem; margin-bottom: 26px; }

.name-controls { display: flex; align-items: center; justify-content: center; gap: 22px; }

.step-transition { text-align: center; }
.transition-line { font-weight: 600; margin-bottom: 14px; opacity: .95; }

/* Step 4 - The Ask */
.ask-card { text-align: left; width: min(680px, 100%); }
.ask-card .step-headline, .ask-card .step-subline { text-align: center; }
.ask-block { margin-bottom: 26px; }
.ask-label { display: block; font-weight: 700; font-size: .95rem; margin-bottom: 8px; }
.ask-block .text-link { margin-top: 8px; font-size: .88rem; }
#optimize-materials { display: block; margin: 8px auto 0; }

/* Step 5 - Materials */
.materials-stack { display: flex; flex-direction: column; gap: 20px; width: min(680px, 100%); }
.material-card { text-align: left; }
.material-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.material-original {
  color: #8a8a8a;
  font-size: .92rem;
  text-decoration: line-through;
  text-decoration-color: rgba(138,138,138,.5);
  margin-bottom: 10px;
}
.material-optimized { font-size: 1.08rem; font-weight: 600; margin-bottom: 12px; }
.material-receipt { font-size: .88rem; color: #6e6e6e; }
.materials-close { text-align: center; font-size: .95rem; font-weight: 600; margin: 4px auto 0; opacity: .92; }
.meter-card { width: min(680px, 100%); padding: 22px 28px; }
.meter-card .meter-block { margin-bottom: 0; }
.product-line { font-weight: 600; font-size: 1.08rem; text-align: center; max-width: 560px; }

/* Step 6 - FaceSync */
.facesync-card { width: min(640px, 100%); }
.face-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.face-card {
  border: 2px solid #dfe7ee;
  border-radius: var(--card-radius);
  background: var(--white);
  padding: 14px 12px 12px;
  text-align: center;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.face-card:hover { border-color: var(--blue-light); }
.face-card.selected { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(10,102,194,.25); }
.face-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  background: #dfe7ee;
}
.face-photo svg { display: block; width: 100%; height: 100%; }
.face-photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.04) brightness(1.02); }
.face-name { font-weight: 700; font-size: .98rem; }
.face-tag { font-size: .78rem; color: #6e6e6e; }
.face-confirm { font-weight: 600; color: var(--blue); margin-bottom: 16px; }
.face-controls { display: flex; align-items: center; justify-content: center; gap: 22px; }

/* Step 7 / 9 - Packet */
.packet { width: min(760px, 100%); }
.packet-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.packet-tab {
  border: none;
  background: rgba(255,255,255,.16);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 10px 20px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}
.packet-tab.active { background: var(--white); color: var(--ink); }
.packet-panels .card { border-radius: 0 var(--card-radius) var(--card-radius) var(--card-radius); }
.packet-panel { display: none; padding: 36px; text-align: left; min-height: 480px; }
.packet-panel.active { display: block; }
.packet-line { font-weight: 600; text-align: center; max-width: 520px; }
.packet-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* The final choice. Both identities carry the same record. */
.exit-choice {
  width: min(760px, 100%);
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--card-radius);
  background: var(--blue);
  text-align: left;
}
.exit-kicker { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .68; }
.exit-title { margin-top: 7px; font-size: clamp(1.45rem, 3vw, 2rem); }
.exit-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.exit-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  text-align: left;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.exit-option:hover { background: rgba(255,255,255,.13); border-color: var(--white); transform: translateY(-1px); }
.exit-option.selected { background: var(--white); color: var(--ink); border-color: var(--white); }
.exit-option-label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .65; }
.exit-option-name { font-size: 1.25rem; font-weight: 750; }
.exit-option-score { margin-top: auto; font-size: .88rem; opacity: .76; }
.exit-option-breakdown { font-size: .76rem; line-height: 1.35; opacity: .66; }
.exit-option-note {
  margin-top: 7px;
  padding-top: 9px;
  border-top: 1px solid currentColor;
  font-size: .82rem;
  font-weight: 650;
  line-height: 1.35;
  opacity: .86;
}
.exit-receipt { margin-top: 24px; text-align: center; }
.exit-receipt span { display: block; }
.exit-receipt span:first-child { font-size: 1.08rem; font-weight: 700; }
.exit-receipt span:last-child { margin-top: 4px; font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 900; line-height: 1.2; }
.exit-download { display: block; margin: 24px auto 0; }
.packet-signoff {
  margin: 4px 0 -10px;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

/* Profile doc */
.doc-profile-head { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.doc-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: #dfe7ee;
  flex: 0 0 88px;
}
.doc-avatar svg { display: block; width: 100%; height: 100%; }
.doc-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.04) brightness(1.02); }
.doc-avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue);
  background: #eaf3fb;
}
.doc-name { font-size: 1.55rem; font-weight: 700; line-height: 1.2; }
.doc-headline { color: var(--ink-soft); margin-top: 4px; }
.doc-meta { font-size: .88rem; color: #6e6e6e; margin-top: 6px; }
.doc-section { margin-top: 20px; }
.doc-section-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6e6e6e;
  margin-bottom: 8px;
  border-bottom: 1px solid #e4ebf1;
  padding-bottom: 4px;
}
.doc-body { font-size: .98rem; }

/* Resume doc */
.resume-name { font-size: 1.7rem; font-weight: 700; text-align: center; }
.resume-contact { text-align: center; font-size: .9rem; color: #6e6e6e; margin: 4px 0 18px; }
.resume-rule { border: none; border-top: 2px solid var(--ink); margin-bottom: 18px; }
.resume-target { font-size: 1.18rem; line-height: 1.25; font-weight: 750; text-align: center; }
.resume-positioning { max-width: 620px; margin: 6px auto 0; text-align: center; color: var(--ink-soft); }
.resume-proofline { margin-top: 10px; text-align: center; font-size: .86rem; font-weight: 700; color: var(--blue); letter-spacing: .015em; }
.resume-bullets { padding-left: 20px; }
.resume-bullets li { margin-bottom: 7px; line-height: 1.48; }
.resume-bullets li::marker { color: var(--blue); }
.resume-skills { line-height: 1.65; }
.skill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-chip {
  border: 1px solid #c9d5e0;
  border-radius: 999px;
  padding: 3px 12px;
  font-size: .85rem;
  color: var(--ink-soft);
}

/* Cover letter doc */
.letter-body p { margin-bottom: 16px; }
.letter-meta { margin-bottom: 24px; color: #6e6e6e; font-size: .9rem; }
.letter-meta p + p { margin-top: 3px; }
.letter-sign { margin-top: 26px; }
.letter-sign-name { font-weight: 700; margin-top: 4px; }

/* Recruiter view doc */
.recruiter-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.fit-score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.fit-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0deg 331deg, #e4ebf1 331deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fit-ring-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
}
.recruiter-quals { list-style: none; margin: 10px 0 4px; }
.recruiter-quals li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.recruiter-quals li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 5px;
  height: 9px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.recruiter-final { margin-top: 18px; font-weight: 600; }
.recruiter-note { margin-top: 22px; padding-top: 16px; border-top: 1px solid #e4ebf1; font-size: .88rem; color: #6e6e6e; }

/* Step 8 - Other Expedients */
.expedients-card { width: min(680px, 100%); text-align: left; }
.expedients-card .step-headline, .expedients-card .step-subline { text-align: center; }
.expedient-close { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line, #e3e7ec); font-weight: 600; text-align: center; }
.expedient { padding: 18px 0; border-top: 1px solid #e4ebf1; }
.expedient:first-of-type { border-top: none; }
.expedient-title { font-size: 1.08rem; font-weight: 700; margin-bottom: 4px; }
.expedient-what { color: var(--ink); margin-bottom: 4px; }
.expedient-verdict { font-size: .92rem; color: #6e6e6e; }
.footnote-ref { color: var(--blue); text-decoration: none; font-weight: 700; }

/* Step 9 - Majority Mode */
.mm-intro { text-align: center; }
.mm-headline { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 900; margin-bottom: 10px; }
.mm-subline { font-size: 1.15rem; opacity: .94; margin-bottom: 34px; }
.mm-result { display: flex; flex-direction: column; align-items: center; gap: 28px; width: 100%; }
.mm-confirm { font-weight: 600; opacity: .95; }
.mm-final { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; text-align: center; }
.mm-final em { font-style: italic; }
.mm-research-link { color: rgba(255,255,255,.72); font-size: .92rem; text-decoration: none; }
.mm-research-link:hover { color: var(--white); text-decoration: underline; }

/* ============ Pricing ============ */
.page-head { padding: 80px 0 12px; text-align: center; }
.page-headline { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.page-subline { font-size: 1.15rem; opacity: .94; max-width: 640px; margin: 0 auto; }
.page-subline-wide { max-width: 760px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  row-gap: 0;
  padding: 32px 28px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--blue-line);
  border-radius: var(--card-radius);
  box-shadow: none;
}
.pricing-popular {
  border-color: var(--blue-line-strong);
  background: rgba(255,255,255,.05);
  position: relative;
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(3,32,61,.28);
}
.tier-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.tier-price { font-size: 2.6rem; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.tier-per { font-size: 1.1rem; font-weight: 600; opacity: .82; }
.tier-price-contact { font-size: 1.6rem; padding: 10px 0; }
.tier-subline { opacity: .88; margin-bottom: 18px; }
.tier-features { list-style: none; margin-bottom: 24px; }
.tier-features li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: .95rem;
}
.tier-features li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: .85;
}
.tier-fine { font-size: .82rem; opacity: .68; margin-top: 12px; text-align: center; }
.pricing-card .btn { width: 100%; align-self: end; }
.enterprise-fine { text-align: center; font-size: .9rem; opacity: .82; margin-top: 26px; }

.faq-card { padding: 0 4px; background: transparent; color: var(--white); box-shadow: none; border-radius: 0; }
.faq-item { padding: 26px 0; border-top: 1px solid var(--blue-line); }
.faq-item:first-child { border-top: none; }
.faq-q { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.faq-a { opacity: .88; }
.faq-a a { color: var(--white); font-weight: 600; }

/* ============ Checkout (Start Max) ============ */
.checkout-card { width: min(560px, 100%); margin: 0 auto; text-align: left; }
.checkout-card .step-headline { text-align: center; }
.checkout-card .btn { display: block; margin: 8px auto 0; }
.co-summary { margin-bottom: 28px; }
.co-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid #e4ebf1; font-size: .95rem; }
.co-included { color: #6e6e6e; font-size: .88rem; }
.co-total { font-weight: 700; font-size: 1.05rem; border-bottom: none; padding-top: 14px; }
.co-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 14px; }
.co-grid .ask-block { margin-bottom: 26px; }
.co-error { margin-top: 8px; font-size: .82rem; color: #B3261E; }
.co-receipt { margin-top: 8px; font-size: .85rem; color: #6e6e6e; }
.co-receipts { text-align: center; }
.checkout-card .closing-line { text-align: center; }
.checkout-card .fine-line { text-align: center; }
@media (max-width: 560px) { .co-grid { grid-template-columns: 1fr 1fr; } }

/* ============ Research (scroll narrative) ============ */
.narrative { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.beat { padding: 9vh 0; }
.beat-open { padding-top: 15vh; }
.beat-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 26px;
}
.beat-kicker {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .62;
  margin-bottom: 18px;
}
.beat-body {
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  line-height: 1.65;
  opacity: .95;
  margin-bottom: 22px;
  max-width: 640px;
}
.beat-turn { padding: 12vh 0; }
.turn-q {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
  max-width: 620px;
  margin-bottom: 18px;
}
.turn-a { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 900; }
.beat-dissolve .beat-body { margin-bottom: 30px; }
.beat-last { font-weight: 700; }
.research-exit {
  margin: 8vh 0 0;
  padding: 12vh 0;
  border-top: 1px solid var(--blue-line-strong);
  border-bottom: 1px solid var(--blue-line-strong);
}
.research-exit-line {
  margin: 12px 0 30px;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.025em;
}
.research-roadmap {
  padding: 12vh 0 16vh;
}
.research-product-card {
  margin-top: 9vh;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--blue-line-strong);
}
.research-product-status {
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .66;
}
.research-product-name {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.035em;
}
.research-product-subline {
  margin: 14px 0 46px;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
}
.research-product-sequence {
  max-width: 680px;
  margin: 34px 0 28px;
  font-size: clamp(1.25rem, 2.7vw, 1.65rem);
  font-weight: 800;
  line-height: 1.45;
}
.research-final-line {
  max-width: 720px;
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .01em;
  opacity: .78;
}
.research-product-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.78);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}
.research-product-link:hover { border-bottom-color: var(--white); opacity: .8; }
.citations { padding: 7vh 0 12vh; border-top: 1px solid var(--blue-line); }
.citations-close { margin-top: 48px; font-size: .9rem; opacity: .62; }
.citations-kicker-secondary { margin-top: 58px; }
.citations-kicker {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .62;
  margin-bottom: 40px;
}
.citation { padding: 26px 0; border-top: 1px solid var(--blue-line); }
.citation:first-of-type { border-top: none; padding-top: 0; }
.cite-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.cite-meta { font-size: .9rem; opacity: .72; margin-bottom: 10px; }
.cite-finding { font-size: .98rem; opacity: .92; margin-bottom: 10px; max-width: 620px; }
.cite-link { color: var(--white); font-weight: 600; font-size: .92rem; text-decoration: underline; text-underline-offset: 3px; opacity: .85; }
.cite-link:hover { opacity: 1; }

/* ============ The Familiar™ ============ */
.familiar-page { overflow: hidden; }
.familiar-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.familiar-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vw, 132px) 0;
}
.familiar-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
}
.familiar-kicker {
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .64;
}
.familiar-coming-soon {
  color: var(--white);
  font-size: 1rem;
  opacity: 1;
}
.familiar-title {
  max-width: 720px;
  font-size: clamp(4rem, 9.5vw, 8.2rem);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.055em;
}
.familiar-subtitle {
  margin: 22px 0 38px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 750;
  line-height: 1.2;
}
.familiar-lead {
  max-width: 660px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 650;
  line-height: 1.45;
}
.familiar-actions {
  display: flex;
  align-items: center;
  margin-top: 42px;
}
.familiar-fine {
  max-width: 580px;
  margin-top: 22px;
  font-size: .82rem;
  line-height: 1.55;
  opacity: .58;
}
.familiar-figure-wrap { margin: 0; }
.familiar-figure-wrap img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}
.familiar-figure-wrap figcaption {
  margin-top: 16px;
  font-size: .8rem;
  line-height: 1.5;
  text-align: center;
  opacity: .58;
}
.familiar-section {
  padding: clamp(80px, 9vw, 124px) 0;
  border-top: 1px solid var(--blue-line-strong);
}
.familiar-section-opening { border-top: 0; }
.familiar-heading {
  max-width: 880px;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.035em;
}
.familiar-prose-grid {
  max-width: 760px;
  margin-top: 44px;
}
.familiar-prose-grid p {
  padding: 22px 0;
  border-top: 1px solid var(--blue-line);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}
.familiar-prose-grid .familiar-prose-close {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 850;
}
.familiar-plan-label {
  display: block;
  margin-bottom: 18px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .62;
}
.familiar-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--blue-line-strong);
  border-bottom: 1px solid var(--blue-line-strong);
  border-left: 1px solid var(--blue-line-strong);
  border-right: 1px solid var(--blue-line-strong);
}
.familiar-step {
  padding: 32px 24px 40px;
  border-right: 1px solid var(--blue-line-strong);
}
.familiar-step:last-child { border-right: 0; }
.familiar-step-number {
  display: block;
  margin-bottom: 32px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  opacity: .56;
}
.familiar-step h3 {
  max-width: 460px;
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
}
.familiar-step p {
  max-width: 470px;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: .86;
}
.familiar-definition-note {
  max-width: 820px;
  margin-top: clamp(44px, 6vw, 64px);
}
.familiar-definition-note > p:last-child {
  max-width: 780px;
  font-size: clamp(1.12rem, 2.25vw, 1.45rem);
  line-height: 1.65;
  font-weight: 900;
}
.familiar-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}
.familiar-plan {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--blue-line-strong);
}
.familiar-plan h3 {
  margin-bottom: 18px;
  font-size: 1.7rem;
  line-height: 1.15;
}
.familiar-plan > p:not(.familiar-plan-label) {
  font-size: 1rem;
  line-height: 1.62;
  opacity: .84;
}
.familiar-plan > span {
  margin-top: auto;
  padding-top: 34px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.familiar-plan-featured {
  background: var(--blue);
  color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}
.familiar-pricing-line {
  margin-top: 30px;
  font-size: .95rem;
  font-weight: 700;
  opacity: .72;
}
.familiar-employer-inline {
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: clamp(56px, 7vw, 84px);
  border-top: 1px solid var(--blue-line-strong);
}
.familiar-employer-list {
  max-width: 820px;
  margin-top: 40px;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 850;
  line-height: 1.5;
}
.familiar-employer-punch {
  margin-top: 10px;
}
.familiar-employer-close {
  margin-top: 36px;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 850;
}
.familiar-faq-list {
  margin-top: 48px;
  border-bottom: 1px solid var(--blue-line-strong);
}
.familiar-faq .familiar-heading { font-size: clamp(2.2rem, 4.5vw, 4.2rem); }
.familiar-faq-list details { border-top: 1px solid var(--blue-line-strong); }
.familiar-faq-list summary {
  position: relative;
  padding: 28px 60px 28px 0;
  list-style: none;
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
  font-weight: 750;
  cursor: pointer;
}
.familiar-faq-list summary::-webkit-details-marker { display: none; }
.familiar-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 400;
}
.familiar-faq-list details[open] summary::after { content: "−"; }
.familiar-faq-list details p {
  max-width: 760px;
  padding: 0 60px 32px 0;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: .84;
}
.familiar-waitlist {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(54px, 9vw, 130px);
  margin: clamp(74px, 10vw, 132px) 0;
  padding: clamp(38px, 6vw, 70px);
  background: var(--white);
  color: var(--ink);
}
.familiar-waitlist-copy > p:last-child {
  max-width: 560px;
  margin-top: 28px;
  font-size: 1.12rem;
  line-height: 1.62;
  color: var(--ink-soft);
}
.familiar-form {
  display: flex;
  flex-direction: column;
}
.familiar-form label {
  margin: 0 0 8px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.familiar-form input,
.familiar-form select {
  width: 100%;
  min-height: 54px;
  margin-bottom: 22px;
  padding: 12px 14px;
  border: 1px solid #bdc8d1;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.familiar-form input:focus,
.familiar-form select:focus {
  outline: 3px solid rgba(10,102,194,.18);
  border-color: var(--blue);
}
.familiar-form .btn { align-self: flex-start; margin-top: 6px; }
.familiar-form-error {
  margin-top: 14px;
  font-size: .8rem;
  line-height: 1.5;
  color: #6d747a;
}
.familiar-form-error { color: #A8241B; font-weight: 650; }
.familiar-form-success { align-self: center; }
.familiar-form-success h3 {
  max-width: 470px;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  line-height: 1.1;
}
.familiar-form-success > p:last-child { color: var(--ink-soft); }
@media (max-width: 940px) {
  .familiar-hero-grid { grid-template-columns: 1fr; }
  .familiar-hero-copy { max-width: 780px; }
  .familiar-figure-wrap { width: min(620px, 100%); margin: 0 auto; }
  .familiar-steps { grid-template-columns: 1fr; }
  .familiar-step { min-height: 0; border-right: 0; border-bottom: 1px solid var(--blue-line-strong); }
  .familiar-step:last-child { border-bottom: 0; }
  .familiar-plans { grid-template-columns: 1fr; }
  .familiar-plan { min-height: 330px; }
  .familiar-waitlist { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .familiar-shell { width: min(100% - 32px, 1200px); }
  .familiar-hero { min-height: 0; padding-top: 78px; }
  .familiar-hero-grid { gap: 62px; }
  .familiar-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .familiar-steps { grid-template-columns: 1fr; border-left: 0; border-right: 0; }
  .familiar-step,
  .familiar-step:nth-child(even) { min-height: 0; padding: 30px 0 38px; border-right: 0; border-bottom: 1px solid var(--blue-line-strong); }
  .familiar-step:last-child { border-bottom: 0; }
  .familiar-step-number { margin-bottom: 32px; }
  .familiar-waitlist { margin-left: -16px; margin-right: -16px; padding: 34px 22px; }
  .familiar-plan { min-height: 0; }
}

/* ============ Lobby (#/product) ============ */
.container-lobby { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.lobby-section { padding: 76px 0; border-top: 1px solid var(--blue-line); }
.lobby-section:first-child { border-top: none; }
.lobby-hero { padding-top: 110px; }
.name-value-result { padding-top: 108px; }
.name-value-name {
  max-width: 760px;
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.name-value-score {
  display: flex;
  align-items: flex-start;
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.055em;
  margin: 8px 0 24px;
}
.name-value-percent { font-size: .45em; line-height: 1; margin: .05em 0 0 .08em; letter-spacing: -.02em; }
.name-value-benchmark { max-width: 620px; font-size: 1.15rem; line-height: 1.55; opacity: .9; }
.name-value-receipt {
  width: min(620px, 100%);
  margin: 34px 0 24px;
  border-top: 1px solid var(--blue-line);
  border-bottom: 1px solid var(--blue-line);
}
.name-value-receipt p { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; }
.name-value-receipt p + p { border-top: 1px solid var(--blue-line); }
.name-value-receipt span { opacity: .66; }
.name-value-receipt strong { text-align: right; }
.name-value-verdict { font-size: 1.28rem; font-weight: 750; margin-bottom: 0; }
.name-value-method { max-width: 620px; margin-top: 24px; font-size: .86rem; line-height: 1.55; opacity: .72; }
.name-value-method summary { cursor: pointer; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.name-value-method p { margin-top: 10px; }
.lobby-headline {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.lobby-subline {
  max-width: 760px;
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.6;
  opacity: .92;
  margin-bottom: 32px;
}
.lobby-kicker {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .62;
  margin-bottom: 8px;
}
.lobby-cta-line { font-size: clamp(1.3rem, 2.8vw, 1.8rem); font-weight: 700; margin-bottom: 28px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.on { opacity: 1; transform: none; }

/* Testimonial carousel */
.carousel { text-align: left; }
.carousel-viewport { min-height: 190px; }
.carousel-quote {
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
  max-width: 760px;
  margin-bottom: 16px;
}
.carousel-attr { font-size: .98rem; opacity: .72; }
.carousel-nav { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.carousel-arrow {
  background: rgba(255,255,255,.12);
  border: 1px solid var(--blue-line);
  color: var(--white);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  transition: background .15s ease;
}
.carousel-arrow:hover { background: rgba(255,255,255,.22); }

/* Proof strip */
.proof-strip-v62 { display: flex; flex-direction: column; gap: 22px; }
.proof-strip-v62 .proof-label { font-size: .92rem; opacity: .72; }
.proof-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 40px; }
.proof-logo { opacity: 1; height: 26px; width: auto; }
.proof-logo-mit { height: 30px; }
.proof-logo-harvard { height: 32px; }
.proof-logo-nber { height: 22px; }
.proof-logo-toronto { height: 34px; }

/* ============ Charts (D3) ============ */
.chart { margin: 46px 0; min-height: 300px; }
.chart svg { display: block; overflow: visible; }
.chart .bar { fill: #FFFFFF; filter: drop-shadow(0 3px 6px rgba(3,32,61,.35)); }
.chart .bar-label { fill: #FFFFFF; font-family: var(--font); font-weight: 700; font-size: 15px; }
.chart .axis-label, .chart .tick-label { fill: rgba(255,255,255,.75); font-family: var(--font); font-size: 12.5px; font-weight: 600; }
.chart .group-label { fill: #FFFFFF; font-family: var(--font); font-size: 13.5px; font-weight: 700; }
.chart .source-label { fill: rgba(255,255,255,.55); font-family: var(--font); font-size: 11.5px; font-style: italic; }
.chart .trend-line { fill: none; stroke: #FFFFFF; stroke-width: 3.5; filter: drop-shadow(0 2px 4px rgba(3,32,61,.35)); }
.chart .parity-line { stroke: rgba(255,255,255,.3); stroke-width: 1; stroke-dasharray: 5 5; }
.chart-tooltip {
  position: fixed;
  z-index: 300;
  background: #FFFFFF;
  color: var(--ink);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: .82rem;
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  pointer-events: none;
  max-width: 260px;
  display: none;
}

/* ============ Features ============ */
.feature-row { padding: 44px 0; border-top: 1px solid var(--blue-line); }
.feature-row:first-child { border-top: none; }
.feature-row-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.feature-row-blurb { font-size: 1.08rem; line-height: 1.6; opacity: .93; max-width: 640px; }
.feature-row-method { max-width: 640px; margin-top: 12px; font-size: .86rem; line-height: 1.55; opacity: .72; }
.feature-row-method summary { cursor: pointer; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.feature-row-method p { margin-top: 10px; }
.feature-row-fine { margin-top: 10px; font-size: .8rem; opacity: .6; }


/* ============ Print (Download Packet) ============ */
#print-root { display: none; }

@media print {
  body > *:not(#print-root) { display: none !important; }
  body { background: #fff; color: var(--ink); }
  #print-root { display: block; }
  .print-page {
    page-break-after: always;
    padding: 24px 8px;
    color: var(--ink);
  }
  .print-page:last-child { page-break-after: auto; }
  .print-page .packet-panel { display: block; min-height: 0; padding: 0; }
  .print-page .card { box-shadow: none; padding: 0; }
  .doc-avatar, .fit-ring { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav-inner { flex-wrap: wrap; padding: 10px 16px; }
  .powered { font-size: .6rem; }
  .nav-links { gap: 16px; }
  .section { padding: 52px 0; }
  .step-card, .ask-card, .facesync-card, .expedients-card { padding: 28px 20px; }
  .footer-row { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-left, .footer-center, .footer-right { justify-self: center; }
  .packet-panel { padding: 22px 18px; min-height: 0; }
  .doc-profile-head { flex-direction: column; text-align: center; }
  .door-brand .container { padding: 0 24px; }
  .door-entry { flex-direction: column; }
  .door-entry input { min-height: 52px; }
  .exit-options { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .entry-fields input::placeholder { font-size: .72rem; }
  .face-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .face-photo { width: 84px; height: 84px; }
  .nav-links a { font-size: .88rem; }
  .nav-cta { display: none; }
  .carousel-viewport { min-height: 260px; }
  .brand-name { font-size: 1rem; }
  .packet-tab { padding: 8px 12px; font-size: .85rem; }
  #view-optimize .step { padding: 72px 14px; }
}

/* Louder pass */
.premium-beat { text-align: left; }
.premium-lead { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: 34px; }
.premium-number { font-size: clamp(4rem, 10vw, 7rem); font-weight: 900; line-height: 1; letter-spacing: -.02em; margin: 10px 0 14px; }
.premium-line { font-size: 1.12rem; font-weight: 600; }
.premium-line-sub { font-weight: 400; opacity: .82; margin-top: 4px; }
.compliance-note { margin-top: 34px; font-size: .82rem; line-height: 1.6; opacity: .58; max-width: 620px; }

/* Packet format skins (typography, rules, one accent only) */
.packet-style-row { display: flex; align-items: center; gap: 10px; margin: 14px 0 0; flex-wrap: wrap; }
.style-label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.style-btn {
  background: rgba(255,255,255,.10);
  border: 1px solid var(--blue-line);
  color: var(--white);
  border-radius: 999px;
  font-size: .85rem;
  padding: 5px 14px;
  transition: background .15s ease;
}
.style-btn:hover { background: rgba(255,255,255,.2); }
.style-btn.active { background: var(--white); color: var(--ink); font-weight: 600; }
.style-fine { font-size: .78rem; opacity: .6; margin-left: 6px; }
.style-status { font-size: .78rem; opacity: .64; margin-left: 6px; }

.packet[data-style="modern"] .doc-name,
.packet[data-style="modern"] .resume-name { color: #0A66C2; }
.packet[data-style="modern"] .doc-section-title { color: #0A66C2; border-bottom: 2px solid #0A66C2; padding-bottom: 4px; }
.packet[data-style="modern"] .resume-rule { border-color: #0A66C2; }

.packet[data-style="executive"] .doc-name,
.packet[data-style="executive"] .resume-name,
.packet[data-style="executive"] .doc-section-title { font-family: Georgia, 'Times New Roman', serif; }
.packet[data-style="executive"] .doc-section-title { color: #1F3A5F; border-bottom: 1px solid #1F3A5F; padding-bottom: 4px; letter-spacing: .12em; }
.packet[data-style="executive"] .resume-rule { border-color: #1F3A5F; }
.packet[data-style="executive"] .doc-body { line-height: 1.65; }

.ask-optional { font-weight: 400; font-size: .78rem; opacity: .6; margin-left: 6px; text-transform: uppercase; letter-spacing: .06em; }
.packet-calibration { font-size: .82rem; opacity: .68; margin: 8px 0 0; }

/* Keep toggles */
.toggle-row { display: inline-flex; align-items: center; gap: 9px; }
.toggle {
  width: 44px; height: 24px; border-radius: 999px;
  background: #c9d4de; border: none; position: relative;
  transition: background .18s ease; padding: 0; flex: 0 0 auto;
}
.toggle .toggle-knob {
  position: absolute; top: 2px; left: 2px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--white);
  box-shadow: 0 1px 3px rgba(3,32,61,.3);
  transition: transform .18s ease;
}
.toggle.on { background: var(--blue); }
.toggle.on .toggle-knob { transform: translateX(20px); }
.toggle-label { font-size: .92rem; color: var(--ink-soft, #4a5560); }
.step-fullblue .toggle-label { color: var(--white); }

/* Full resume roles */
.role { margin-bottom: 16px; }
.role:last-child { margin-bottom: 0; }
.role-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.role-title { font-weight: 700; }
.role-dates { color: #6e6e6e; font-size: .88rem; white-space: nowrap; }
.role-company { font-style: italic; color: #6e6e6e; font-size: .92rem; margin: 2px 0 6px; }
.letter-attached { margin-top: 14px; font-size: .88rem; color: #6e6e6e; }
