/* GLOBAL STYLES */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

/* DESIGN TOKENS */
:root {
  --bg: #FAFAFF;
  --bg-tint: #F0F0FA;
  --card: #FFFFFF;

  --blue: #1B2FD4;
  --blue-dark: #1325B0;
  --blue-mid: #2D42E0;
  --blue-faint: #EEF1FD;
  --blue-xfaint: #F6F8FE;

  --line: #D8DDEE;
  --line-subtle: #E3E8F5;
  --line-blue: rgba(27, 47, 212, 0.09);

  --gold: #E8960A;
  --green: #1A8A5C;
  --green-l: #E7F5EE;

  --font: 'Sora', 'Outfit', system-ui, sans-serif;
  --text-ink: #0C1130;
  --text-body: #2A306A;
  --text-muted: #737DB0;
  --text-faint: #ACB2D0;

  --radius-card: 16px;
  --radius-btn: 10px;
  --radius-sm: 8px;

  --shadow-card: 0 1px 0 rgba(27, 47, 212, 0.04), 0 4px 20px rgba(12, 17, 48, 0.07), 0 1px 3px rgba(12, 17, 48, 0.04);
  --shadow-card-hover: 0 2px 0 rgba(27, 47, 212, 0.06), 0 14px 44px rgba(12, 17, 48, 0.11);
  --shadow-btn: 0 2px 16px rgba(27, 47, 212, 0.38);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 240ms;
}

/* BASE STYLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--blue); color: white; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border-radius: var(--radius-btn);
}

.btn--primary {
  background: var(--blue);
  color: white;
  padding: 15px 28px;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(27, 47, 212, 0.46);
}

.btn--primary:active { transform: translateY(0); }

.btn-arr {
  display: inline-block;
  transition: transform var(--dur) var(--ease);
  font-style: normal;
}

.btn--primary:hover .btn-arr { transform: translateX(4px); }

/* GLOBAL HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--card);
  position: relative;
  z-index: 20;
}

.site-header__back {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--dur);
}

/* FOOTER */
.site-footer {
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line);
  background: var(--card);
}

.site-footer p { font-size: 0.79rem; color: var(--text-muted); }
.site-footer a { color: var(--blue); transition: color var(--dur); }
.site-footer a:hover { color: var(--blue-dark); }

.footer-links { display: flex; gap: 20px; }

.footer-links a {
  font-size: 0.79rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--dur);
}

.footer-links a:hover { color: var(--blue); }

/* LEGAL CONTENT */
body.legal-page {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-page__main { flex: 1; }

.legal-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 40px 96px;
}

.legal-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-bottom: 48px;
  display: block;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child { border-bottom: none; margin-bottom: 0; }

.legal-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-ink);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-section ul li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.45;
}

.legal-contact-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-top: 48px;
}

.legal-contact-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

.legal-contact-box a {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 600px) {
  .legal-body { padding: 40px 20px 64px; }
}

/* FAQ SECTION */
body.faq-page {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.faq-page .faq-page__main { flex: 1; }

body.faq-page .faq-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 40px 96px;
}

body.faq-page .faq-section-head { margin-bottom: 8px; }

body.faq-page .faq-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 6px;
}

body.faq-page .faq-section-head p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

body.faq-page .faq-list { margin-bottom: 56px; }

body.faq-page .faq-item { border-bottom: 1px solid var(--line); }
body.faq-page .faq-item:first-child { border-top: 1px solid var(--line); }

body.faq-page .faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-ink);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--dur) var(--ease);
  line-height: 1.45;
}

body.faq-page .faq-q:hover { color: var(--blue); }

body.faq-page .faq-q__chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--dur), background var(--dur), transform var(--dur) var(--ease);
  color: var(--text-muted);
}

body.faq-page .faq-q__chevron svg { transition: transform var(--dur) var(--ease); }

body.faq-page .faq-item.open .faq-q { color: var(--blue); }

body.faq-page .faq-item.open .faq-q__chevron {
  border-color: var(--blue);
  background: var(--blue-faint);
  color: var(--blue);
}

body.faq-page .faq-item.open .faq-q__chevron svg { transform: rotate(180deg); }

body.faq-page .faq-a {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.78;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease), padding 0.22s var(--ease);
}

body.faq-page .faq-a-inner { padding-bottom: 22px; }

body.faq-page .faq-item.open .faq-a { max-height: 600px; }

body.faq-page .faq-a a {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: opacity var(--dur);
}

body.faq-page .faq-a a:hover { opacity: 0.7; }
body.faq-page .faq-a strong { color: var(--text-ink); font-weight: 700; }

body.faq-page .faq-guarantee {
  background: #FFFDF5;
  border: 1px solid rgba(232, 150, 10, 0.28);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 52px 0 52px;
}

body.faq-page .faq-guarantee__icon { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

body.faq-page .faq-guarantee__text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

body.faq-page .faq-guarantee__text strong { color: var(--text-ink); font-weight: 700; }

@media (max-width: 700px) {
  body.faq-page .faq-content { padding: 40px 20px 64px; }
  body.faq-page .faq-q { font-size: 0.94rem; padding: 16px 0; }
}

/* CHECKOUT PAGE */
.checkout-page { min-height: 100vh; background: var(--bg); }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 63px);
  max-width: 1200px;
  margin: 0 auto;
}

/* ORDER SUMMARY */
.checkout-summary {
  padding: 48px 52px 52px 40px;
  border-right: 1px solid var(--line);
  background: var(--bg);
}

.checkout-summary .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  transition: color var(--dur);
  font-weight: 500;
}

.checkout-summary .back-link:hover { color: var(--text-ink); }

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--green);
  padding: 5px 12px;
  background: var(--green-l);
  border-radius: 100px;
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}

.summary-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.summary-product {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-ink);
  margin-bottom: 5px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.summary-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.what-you-get {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  margin-top: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.what-you-get h4 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  opacity: 0.7;
}

.checkout-includes { display: flex; flex-direction: column; }

.checkout-includes li {
  font-size: 0.86rem;
  color: var(--text-body);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(27, 47, 212, 0.05);
  font-weight: 400;
}

.checkout-includes li:last-child { border-bottom: none; }

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-faint);
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ADDON TOGGLE */
.addon-box {
  margin-top: 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--card);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur);
  user-select: none;
}

.addon-box.is-checked {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 47, 212, 0.08);
}

.addon-label {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  cursor: pointer;
}

.addon-checkbox-ui {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--line);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur), background var(--dur);
  pointer-events: none;
}

.addon-box.is-checked .addon-checkbox-ui {
  border-color: var(--blue);
  background: var(--blue);
}

.addon-checkmark {
  opacity: 0;
  transform: scale(0.4) rotate(-10deg);
  transition: opacity 0.18s var(--ease), transform 0.22s var(--ease-spring);
}

.addon-box.is-checked .addon-checkmark {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.addon-content { flex: 1; min-width: 0; }

.addon-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-ink);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.addon-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 100px;
  background: #FFF3CD;
  color: #B45309;
}

.addon-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.addon-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
  text-align: right;
}

.addon-price s {
  font-size: 0.71rem;
  font-weight: 400;
  color: var(--text-faint);
  text-decoration: line-through;
  display: block;
}

.divider { height: 1px; background: var(--line); margin: 20px 0; }

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.total-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

.total-amount {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.03em;
  transition: all 0.25s var(--ease);
}

.guarantee {
  margin-top: 16px;
  padding: 14px 16px;
  background: #FFFDF5;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 150, 10, 0.22);
  font-size: 0.83rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  line-height: 1.55;
}

.guarantee__icon { flex-shrink: 0; margin-top: 1px; }
.guarantee strong { color: var(--text-ink); font-weight: 700; }

/* PAYMENT FORM */
.checkout-form-panel {
  padding: 48px 40px 52px 52px;
  background: var(--card);
}

/* CHECKOUT PROGRESS */
.checkout-progress {
  display: flex;
  align-items: center;
}

.site-header .checkout-progress {
  margin-left: 20px;
  width: min(100%, 440px);
}

.co-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.co-step__num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-faint);
  transition: border-color var(--dur), background var(--dur), color var(--dur);
  flex-shrink: 0;
}

.co-step--active { color: var(--blue); }
.co-step--active .co-step__num { border-color: var(--blue); background: var(--blue); color: white; }
.co-step--done { color: var(--text-muted); }
.co-step--done .co-step__num { border-color: var(--text-muted); color: var(--text-muted); }

.co-step__line {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 10px;
  min-width: 24px;
}

/* FORM FIELDS */
.form-section-title {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-section-title:first-child { margin-top: 0; }

.co-section {
  padding-top: 28px;
  margin-bottom: 0;
}

.co-section:first-child {
  padding-top: 0;
}

.co-section .form-section-title { margin-top: 0; }

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #FAFAFF;
  color: var(--text-ink);
  font-size: 0.92rem;
  outline: none;
  font-family: var(--font);
  font-weight: 400;
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
}

.form-control:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(27, 47, 212, 0.09); }
.form-control::placeholder { color: var(--text-faint); }
.form-control:user-invalid { border-color: rgba(168, 72, 72, 0.55); background: #fffafa; }
.form-control:focus:user-invalid { border-color: rgba(168, 72, 72, 0.85); box-shadow: 0 0 0 3px rgba(168, 72, 72, 0.12); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* COUPON SECTION */
.coupon-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--dur);
  letter-spacing: 0.01em;
}
.coupon-trigger:hover { color: var(--blue); }
.coupon-trigger svg { transition: transform var(--dur) var(--ease); }
.coupon-trigger.is-open svg { transform: rotate(180deg); }

.coupon-field {
  display: none;
  margin-top: 10px;
}
.coupon-field.is-visible { display: block; animation: coupon-drop 0.22s var(--ease) both; }
@keyframes coupon-drop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.coupon-pill {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #FAFAFF;
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.coupon-pill:focus-within {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(27, 47, 212, 0.09);
}
.coupon-pill:focus-within #apply-coupon { border-left-color: var(--blue); }

#coupon-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  outline: none;
}
#coupon-input::placeholder { text-transform: none; font-weight: 400; letter-spacing: 0; color: var(--text-faint); }

#apply-coupon {
  flex-shrink: 0;
  padding: 0 16px;
  border: none;
  border-left: 1.5px solid var(--line);
  background: transparent;
  color: var(--blue);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--dur), color var(--dur);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
#apply-coupon:hover { background: var(--blue-faint); }
#apply-coupon:active { background: var(--blue); color: white; }

#coupon-input:disabled {
  background: transparent;
  color: var(--text-faint);
  -webkit-text-fill-color: var(--text-faint);
  cursor: default;
  opacity: 1;
  user-select: none;
  -webkit-user-select: none;
}

.coupon-pill.is-applied {
  border-color: var(--line);
  background: var(--bg);
  box-shadow: none;
}
.coupon-pill.is-applied #apply-coupon { display: none; }

.coupon-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
  min-height: 1.1em;
}

#coupon-status {
  font-size: 0.78rem;
  font-weight: 500;
  margin: 0;
}
#coupon-status.is-success { color: var(--green); }
#coupon-status.is-error   { color: #C0392B; }

#remove-coupon {
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--dur);
}
#remove-coupon:hover { color: var(--text-ink); }



.stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-note {
  font-size: 0.77rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 10px;
}

/* INTAKE FORM */
.intake-wrap { min-height: 100vh; background: var(--bg); }

.intake-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--card);
  gap: 16px;
}



.intake-body {
  max-width: 560px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

.intake-step { display: none; }

.intake-step.active {
  display: block;
  animation: slideIn 0.35s var(--ease) both;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.intake-step--welcome.active {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72vh;
}

.intake-welcome { text-align: center; max-width: 480px; margin: 0 auto; }

.intake-welcome__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(27, 47, 212, 0.08);
  margin-bottom: 24px;
}

.intake-welcome__headline {
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text-ink);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 14px;
}

.intake-welcome__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.intake-welcome__cta { font-size: 1rem; padding: 14px 32px; }

.intake-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.8;
}

.intake-step h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--text-ink);
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.intake-step .lead {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
  font-weight: 400;
}

.options-list { display: flex; flex-direction: column; gap: 9px; }

.option-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: white;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur);
  user-select: none;
  position: relative;
}

.option-item:hover { border-color: var(--blue); background: var(--blue-xfaint); }

.option-item.selected {
  border-color: var(--blue);
  background: var(--blue-faint);
  box-shadow: 0 0 0 3px rgba(27, 47, 212, 0.07);
}

.option-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.option-radio {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur), background var(--dur);
  pointer-events: none;
}

.option-item.selected .option-radio { border-color: var(--blue); background: var(--blue); }

.option-item.selected .option-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

.option-text { font-size: 0.91rem; color: var(--text-ink); font-weight: 500; pointer-events: none; }

.chips-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.chip {
  padding: 8px 15px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: white;
  font-size: 0.82rem;
  color: var(--text-body);
  cursor: pointer;
  user-select: none;
  transition: all var(--dur) var(--ease);
  font-weight: 500;
}

.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active, .chip.selected { border-color: var(--blue); background: var(--blue); color: white; }

.intake-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 7px;
  margin-top: 18px;
}

.intake-label:first-of-type { margin-top: 0; }

.intake-input,
.intake-select,
.intake-textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--text-ink);
  font-size: 0.92rem;
  outline: none;
  font-family: var(--font);
  font-weight: 400;
  transition: border-color var(--dur), box-shadow var(--dur);
}

.intake-input:focus,
.intake-select:focus,
.intake-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 47, 212, 0.09);
}

.intake-input::placeholder, .intake-textarea::placeholder { color: var(--text-faint); }

.intake-input:user-invalid,
.intake-select:user-invalid,
.intake-textarea:user-invalid { border-color: rgba(168, 72, 72, 0.55); background: #fffafa; }

.intake-input:focus:user-invalid,
.intake-select:focus:user-invalid,
.intake-textarea:focus:user-invalid { border-color: rgba(168, 72, 72, 0.85); box-shadow: 0 0 0 3px rgba(168, 72, 72, 0.12); }

.intake-form-status { font-size: 0.86rem; color: rgba(168, 72, 72, 0.95); margin: 0 0 14px; min-height: 0; }
.intake-form-status:empty { display: none; }

.intake-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737DB0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.intake-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

.resume-upload {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm);
  background: white;
  padding: 16px;
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
}

.resume-upload:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27, 47, 212, 0.09); }
.resume-upload.has-file { border-color: var(--blue); background: var(--blue-xfaint); }

.resume-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.resume-upload__drop {
  display: block;
  text-align: center;
  padding: 18px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-subtle);
  background: var(--bg);
  cursor: pointer;
}

.resume-upload__title { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-ink); margin-bottom: 4px; }
.resume-upload__sub { display: block; font-size: 0.78rem; color: var(--text-muted); }
.resume-upload__status { margin-top: 10px; font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

.char-count { text-align: right; font-size: 0.73rem; color: var(--text-faint); margin-top: 5px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; line-height: 1.55; }

.intake-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.intake-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: color var(--dur);
  font-family: var(--font);
  font-weight: 500;
}

.back-btn:hover { color: var(--text-ink); }

/* THANK YOU SECTION */
.ty-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.ty-main { flex: 1; }

.ty-body {
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.ty-body--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72vh;
}

.ty-return {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur);
}

.ty-return:hover { color: var(--blue); }

.confetti-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }


/* POSTER PAGE */
body.poster-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  overflow-x: hidden;
}

@media (max-height: 700px), (max-width: 820px) {
  body.poster-page { overflow-y: auto; }
}

.poster-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--card);
  position: relative;
  z-index: 20;
}

/* BRAND LOGO */
.poster-hr-logo {
  --s: 0.5;
  --s-doc: 0.4;
  display: inline-flex;
  align-items: center;
  gap: calc(26px * var(--s-doc));
  text-decoration: none;
  color: inherit;
  line-height: 0;
  flex-shrink: 0;
}

.poster-hr-logo:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 6px; }

.poster-hr-logo__stack {
  position: relative;
  width: calc(76px * var(--s-doc));
  height: calc(94px * var(--s-doc));
  flex-shrink: 0;
}

.poster-hr-logo__doc {
  position: absolute;
  width: calc(66px * var(--s-doc));
  height: calc(84px * var(--s-doc));
  border-radius: calc(12px * var(--s-doc));
  border: 1px solid var(--line);
  box-sizing: border-box;
}

.poster-hr-logo__doc--back {
  background: var(--blue-faint);
  bottom: 0;
  left: calc(8px * var(--s-doc));
  transform: rotate(7deg);
  transform-origin: bottom center;
}

.poster-hr-logo__doc--front {
  background: var(--card);
  bottom: calc(4px * var(--s-doc));
  left: 0;
  transform: rotate(-4deg);
  transform-origin: bottom left;
  display: flex;
  flex-direction: column;
  padding: calc(12px * var(--s-doc)) calc(11px * var(--s-doc)) calc(10px * var(--s-doc));
  gap: calc(5px * var(--s-doc));
  overflow: hidden;
}

.poster-hr-logo__fold {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(17px * var(--s-doc));
  height: calc(17px * var(--s-doc));
  background: var(--bg-tint);
  border-bottom-left-radius: calc(8px * var(--s-doc));
  border-top-right-radius: calc(11px * var(--s-doc));
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.poster-hr-logo__name-line {
  height: calc(7px * var(--s-doc));
  border-radius: calc(20px * var(--s-doc));
  background: var(--blue);
  width: 68%;
  margin-bottom: calc(2px * var(--s-doc));
}

.poster-hr-logo__sub-line {
  height: calc(5px * var(--s-doc));
  border-radius: calc(20px * var(--s-doc));
  background: var(--text-faint);
  width: 50%;
  margin-bottom: calc(4px * var(--s-doc));
}

.poster-hr-logo__line {
  height: calc(4px * var(--s-doc));
  border-radius: calc(20px * var(--s-doc));
  background: var(--line-subtle);
}

.poster-hr-logo__line--s { width: 55%; }
.poster-hr-logo__line--m { width: 78%; }
.poster-hr-logo__line--f { width: 92%; }

.poster-hr-logo__wordmark {
  font-family: var(--font);
  font-size: calc(36px * var(--s));
  font-weight: 700;
  color: var(--text-ink);
  letter-spacing: calc(-0.5px * var(--s));
  line-height: 1;
  white-space: nowrap;
}

.poster-hr-logo__dot { color: var(--blue); font-weight: inherit; }

.poster-header__signin {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.poster-header__signin:hover { color: var(--blue); }

/* HERO SECTION */
.poster-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* HERO BACKGROUND */
.bg-cards { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.rcard {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--line-subtle);
  padding: 20px;
  box-shadow: 0 2px 20px rgba(12, 17, 48, 0.06);
}

.rcard--sm { width: 260px; padding: 22px; }
.rcard--xs { width: 200px; padding: 18px; }

.rcard__header { margin-bottom: 12px; }
.rcard__name-block { display: flex; flex-direction: column; gap: 7px; }
.rcard__divider { height: 1px; background: var(--line-subtle); margin: 10px 0 14px; }
.rcard__section { margin-bottom: 14px; }
.rcard__section:last-child { margin-bottom: 0; }
.rcard__section-label { height: 5px; width: 44px; border-radius: 2px; background: rgba(12, 17, 48, 0.14); margin-bottom: 9px; }

.rcard__line {
  height: 5px;
  border-radius: 2px;
  background: var(--line-subtle);
  margin-bottom: 6px;
}

.rcard__line:last-child { margin-bottom: 0; }
.rcard__line--name { width: 58%; height: 8px; border-radius: 3px; background: rgba(12, 17, 48, 0.16); }
.rcard__line--title { width: 40%; height: 4px; background: rgba(27, 47, 212, 0.2); }
.rcard__line--full { width: 100%; }
.rcard__line--long { width: 78%; }
.rcard__line--med { width: 58%; }
.rcard__line--short { width: 36%; }

.bg-card { position: absolute; }
.bg-card--a { left: -40px; top: 50%; transform: translateY(-46%) rotate(-9deg); opacity: 0.38; animation: drift-a 14s ease-in-out infinite; }
.bg-card--b { left: 80px; top: 50%; transform: translateY(-30%) rotate(-4deg); opacity: 0.52; animation: drift-b 11s ease-in-out infinite 1.5s; }
.bg-card--c { right: -20px; top: 50%; transform: translateY(-52%) rotate(7deg); opacity: 0.42; animation: drift-a 13s ease-in-out infinite 2.5s; }
.bg-card--d { right: 18%; top: -30px; transform: rotate(5deg); opacity: 0.3; animation: drift-b 16s ease-in-out infinite 0.5s; }

@keyframes drift-a {
  0%, 100% { transform: translateY(-46%) rotate(-9deg); }
  50% { transform: translateY(-50%) rotate(-8deg); }
}

@keyframes drift-b {
  0%, 100% { transform: translateY(-30%) rotate(-4deg); }
  50% { transform: translateY(-26%) rotate(-3.5deg); }
}

@media (max-width: 900px) {
  .bg-card--a, .bg-card--b, .bg-card--d { display: none; }
  .bg-card--c { right: -60px; opacity: 0.22; }
}

@media (max-width: 640px) {
  .bg-card--c { display: none; }
}

/* COMPOSITION GRID */
.composition {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 290px minmax(0, 540px);
  gap: 52px;
  align-items: center;
  max-width: 920px;
  width: 100%;
}

@media (max-width: 1000px) {
  .composition { grid-template-columns: 240px minmax(0, 460px); gap: 36px; }
}

@media (max-width: 820px) {
  .composition {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 32px;
    padding: 40px 20px 52px;
    max-width: 500px;
  }
}

.headline-block { display: flex; flex-direction: column; align-items: flex-start; }

@media (max-width: 820px) {
  .headline-block { align-items: center; }
}

.eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.75;
  margin-bottom: 14px;
  animation: poster-slide-in 0.6s var(--ease) 0.05s both;
}

.headline {
  font-family: var(--font);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--text-ink);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  animation: poster-slide-in 0.6s var(--ease) 0.12s both;
}

.headline__accent { color: var(--blue); display: inline-block; }

.subheadline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
  font-weight: 400;
  margin-bottom: 28px;
  animation: poster-slide-in 0.6s var(--ease) 0.2s both;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  animation: poster-slide-in 0.6s var(--ease) 0.28s both;
}

@media (max-width: 820px) {
  .cta-group { align-items: center; }
}

.btn-poster {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  background: var(--blue);
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-poster:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(27, 47, 212, 0.46); }
.btn-poster:active { transform: translateY(0); }
.btn-poster svg { flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.btn-poster:hover svg { transform: translateX(3px); }

@keyframes poster-slide-in {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 820px) {
  @keyframes poster-slide-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* TRUST STRIP */
.trust-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin-top: 10px;
  animation: poster-slide-in 0.6s var(--ease) 0.36s both;
}

.trust-strip__row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-strip__stars { display: flex; gap: 2px; line-height: 1; }
.trust-strip__stars .star { color: var(--gold); font-size: 0.72rem; }

.trust-strip__score { font-size: 0.74rem; font-weight: 700; color: var(--text-ink); }

.trust-strip__sep { font-size: 0.68rem; color: var(--text-faint); }

.trust-strip__stat { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }

@media (max-width: 820px) {
  .trust-strip { align-items: center; }
}

.poster-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFDF5;
  border: 1px solid rgba(232, 150, 10, 0.28);
  border-radius: 100px;
  padding: 6px 12px 6px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #9A6000;
  white-space: nowrap;
  animation: poster-slide-in 0.6s var(--ease) 0.44s both;
  margin-top: 10px;
}

.poster-guarantee__shield { color: var(--gold); flex-shrink: 0; line-height: 1; }

@media (max-width: 820px) {
  .poster-guarantee { align-self: center; margin-top: 8px; }
}

/* RESUME CARD */
.resume-wrap {
  position: relative;
  animation: resume-rise 0.75s var(--ease) 0.1s both;
  width: 100%;
  max-width: 540px;
}

@keyframes resume-rise {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}



.resume {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid rgba(27, 47, 212, 0.08);
  box-shadow: 0 2px 0 rgba(27, 47, 212, 0.05), 0 24px 64px rgba(12, 17, 48, 0.14), 0 4px 16px rgba(12, 17, 48, 0.06);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
  width: 100%;
}

.resume:hover {
  box-shadow: 0 2px 0 rgba(27, 47, 212, 0.07), 0 32px 72px rgba(12, 17, 48, 0.16), 0 4px 16px rgba(12, 17, 48, 0.06);
  transform: translateY(-3px);
}

.resume__accent-bar { height: 3px; background: linear-gradient(90deg, var(--blue) 0%, #4D61E8 100%); }

.resume__header { padding: 22px 32px 18px; border-bottom: 1.5px solid var(--line-subtle); }
.resume__name { font-size: 1.28rem; font-weight: 800; color: var(--text-ink); letter-spacing: -0.025em; margin-bottom: 2px; }
.resume__title { font-size: 0.86rem; font-weight: 600; color: var(--blue); margin-bottom: 5px; }
.resume__contact { font-size: 0.71rem; color: var(--text-faint); font-weight: 400; letter-spacing: 0.01em; }

.resume__body { padding: 18px 32px 22px; }
.resume__section { margin-bottom: 14px; }
.resume__section:last-child { margin-bottom: 0; }

.resume__section-title {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-ink);
  margin-bottom: 4px;
}

.resume__section-rule { height: 1px; background: var(--text-ink); opacity: 0.12; margin-bottom: 10px; }
.resume__summary { font-size: 0.78rem; color: var(--text-body); line-height: 1.65; }

.resume__role { margin-bottom: 12px; }
.resume__role:last-child { margin-bottom: 0; }

.resume__role-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 5px; gap: 8px; }
.resume__company { font-size: 0.81rem; font-weight: 700; color: var(--text-ink); margin-bottom: 1px; }
.resume__position { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.resume__dates { font-size: 0.69rem; color: var(--text-faint); font-weight: 500; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }

.resume__bullets { padding-left: 0; display: flex; flex-direction: column; gap: 4px; }

.resume__bullets li {
  font-size: 0.74rem;
  color: var(--text-body);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}

.resume__bullets li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.resume__two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line-subtle); }
.resume__edu-school { font-size: 0.78rem; font-weight: 700; color: var(--text-ink); margin-bottom: 2px; }
.resume__edu-degree { font-size: 0.7rem; color: var(--text-muted); }

.resume__skills { display: flex; flex-wrap: wrap; gap: 4px; }

.resume__skill {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-faint);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.resume__watermark {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-ink);
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { padding: 36px 28px 28px; border-right: none; border-bottom: 1px solid var(--line); }
  .checkout-form-panel { padding: 36px 28px 52px; }
}

@media (max-width: 820px) {
  .resume-wrap { display: none; }
  .resume__two-col { grid-template-columns: 1fr; gap: 12px; }
  .resume__header { padding: 18px 22px 14px; }
  .resume__body { padding: 14px 22px 16px; }
  .resume__company,
  .resume__position,
  .resume__bullets,
  .resume__bullets li { text-align: left; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .intake-top { padding: 16px 20px; }
  .intake-row-2 { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; text-align: center; padding: 20px 24px; }
  .site-header { padding: 14px 20px; flex-wrap: wrap; row-gap: 10px; }
  .site-header .checkout-progress { width: 100%; margin-left: 0; }
  .ty-body { padding: 40px 20px 60px; }
  .resume__name { font-size: 1rem; }
  .resume__contact { font-size: 0.62rem; }
}

/* BEFORE AFTER MODAL */
button.poster-header__signin {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
}

.ba-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 280ms var(--ease);
  pointer-events: none;
}

.ba-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ba-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 17, 48, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ba-modal__card {
  position: relative;
  z-index: 1;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(12, 17, 48, 0.22), 0 2px 8px rgba(12, 17, 48, 0.06);
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(16px) scale(0.97);
  transition: transform 300ms var(--ease-spring);
}

.ba-modal.is-open .ba-modal__card {
  transform: translateY(0) scale(1);
}

.ba-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  z-index: 2;
}

.ba-modal__close:hover {
  background: var(--blue-faint);
  color: var(--blue);
}

.ba-modal__header {
  padding: 28px 28px 0;
  flex-shrink: 0;
}

.ba-modal__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.ba-modal__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ba-modal__viewer {
  position: relative;
  margin: 20px 28px 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
  height: 310px;
  background: var(--bg-tint);
}

.ba-panel {
  position: absolute;
  inset: 0;
  padding: 20px;
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
  display: flex;
  flex-direction: column;
}

.ba-panel.is-hidden {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
}

.ba-panel--before { background: var(--bg-tint); }
.ba-panel--after  { background: var(--card); }

.ba-panel__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(12, 17, 48, 0.08);
  color: var(--text-muted);
}

.ba-panel__badge--after {
  background: var(--blue);
  color: white;
}

.ba-panel__placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bap__line {
  height: 7px;
  border-radius: 4px;
  background: var(--line);
}

.bap__line--name   { width: 55%; height: 11px; background: #C8CCDC; }
.bap__line--sub    { width: 38%; height: 7px; background: var(--line); }
.bap__line--label  { width: 25%; height: 6px; background: #C8CCDC; margin-top: 4px; }
.bap__line--full   { width: 100%; }
.bap__line--long   { width: 82%; }
.bap__line--med    { width: 65%; }
.bap__line--short  { width: 45%; }

.bap__divider {
  height: 1px;
  background: var(--line);
  margin: 6px 0 2px;
}

.bap__gap { height: 6px; }

.ba-panel__placeholder--after { gap: 5px; }

.bap__line--blue       { background: var(--blue); }
.bap__line--blue-label { width: 22%; height: 5px; background: var(--blue); }

.bap__accent {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--blue);
  margin-bottom: 8px;
}

.bap__divider--blue { background: rgba(27, 47, 212, 0.2); }

.bap__contact-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.bap__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-faint);
  flex-shrink: 0;
}

.bap__line--contact { width: 80px; height: 5px; }

.bap__role-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-top: 2px;
}

.bap__line--company  { width: 90px; height: 7px; background: var(--text-ink); border-radius: 4px; }
.bap__line--position { width: 120px; height: 5px; margin-top: 4px; background: var(--line); border-radius: 4px; }
.bap__line--date     { width: 50px; height: 5px; background: var(--line); border-radius: 4px; flex-shrink: 0; margin-top: 2px; }

.bap__bullet {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
}

.bap__bullet-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.bap__bullet-dot--muted { background: var(--text-faint); }

.bap__text-bullet {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 2px;
}

.bap__text-bullet .bap__bullet-dot--muted { margin-top: 5px; }

.bap__text {
  font-size: 0.62rem;
  line-height: 1.45;
  color: var(--text-muted);
  font-family: var(--font);
  flex: 1;
  letter-spacing: -0.005em;
}

.bap__text--after {
  color: var(--text-body);
  font-size: 0.61rem;
}

.bap__text--after strong {
  color: var(--text-ink);
  font-weight: 700;
}

.bap__annotation {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-faint);
  border: 1px solid rgba(27, 47, 212, 0.18);
  border-radius: 20px;
  padding: 1px 6px;
  margin-left: 4px;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.bap__section-title {
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  margin-bottom: 1px;
}

.bap__section-title--before { color: var(--text-muted); }
.bap__section-title--after  { color: var(--blue); }

.bap__line--gray { background: #C8CCDC; }

.bap__flag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 20px;
  padding: 1px 6px 1px 4px;
  text-transform: uppercase;
}

.bap__flag--bad {
  color: #C0392B;
  background: #FDECEA;
  border: 1px solid rgba(192, 57, 43, 0.22);
}

.bap__flag--good {
  color: #1A8A5C;
  background: #E7F5EE;
  border: 1px solid rgba(26, 138, 92, 0.22);
}

.bap__annotation--good {
  color: #1A8A5C;
  background: #E7F5EE;
  border-color: rgba(26, 138, 92, 0.22);
}

.bap__annotation--bad {
  color: #C0392B;
  background: #FDECEA;
  border-color: rgba(192, 57, 43, 0.22);
}

.bap__bullet .bap__bullet-dot { margin-top: 4px; align-self: flex-start; }

.ba-toggle {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 3px;
  gap: 0;
  box-shadow: 0 2px 12px rgba(12,17,48,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.ba-toggle__pill {
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: calc(50% - 3px);
  background: var(--blue);
  border-radius: 24px;
  transition: transform 260ms var(--ease-spring);
  pointer-events: none;
}

.ba-toggle__pill.is-after {
  transform: translateX(100%);
}

.ba-toggle__btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 24px;
  transition: color 200ms var(--ease);
  white-space: nowrap;
}

.ba-toggle__btn--active { color: white; }

.ba-testimonial {
  margin: 18px 28px 0;
  padding: 14px 16px;
  background: var(--blue-xfaint);
  border-radius: 12px;
  border: 1px solid var(--line-blue);
  flex-shrink: 0;
}

.ba-testimonial__quote {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 10px;
}

.ba-testimonial__attr {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ba-testimonial__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ba-testimonial__name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-ink);
  line-height: 1.2;
}

.ba-testimonial__role {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.ba-modal__cta {
  margin: 16px 28px 24px;
  width: calc(100% - 56px);
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .ba-modal { padding: 12px; }
  .ba-modal__card {
    border-radius: 16px;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .ba-modal__header { padding: 22px 20px 0; }
  .ba-modal__title { font-size: 1.1rem; }
  .ba-modal__viewer { margin: 16px 20px 0; height: 340px; }
  .ba-testimonial { display: none; }
  .ba-modal__cta { margin: 14px 20px 20px; width: calc(100% - 40px); }
}

/* REVIEWS SECTION */
body.reviews-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.reviews-page main {
  flex: 1;
}

/* HERO SECTION */
.reviews-hero {
  padding: 64px 40px 52px;
  text-align: center;
}

.reviews-hero__eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.reviews-hero__headline {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-ink);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-hero__sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-hero__score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reviews-hero__num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.02em;
}

.reviews-hero__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.reviews-hero__count {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.reviews-body {
  padding: 8px 32px 72px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.reviews-grid {
  columns: 1;
  column-gap: 16px;
}

@media (min-width: 560px) {
  .reviews-grid { columns: 2; }
}

@media (min-width: 860px) {
  .reviews-grid { columns: 3; }
}

.rv-card {
  break-inside: avoid;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 18px 20px 16px;
  margin-bottom: 16px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.rv-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-1px);
}

.rv-card__top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.rv-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.rv-avatar--blue  { background: var(--blue-faint); color: var(--blue); }
.rv-avatar--green { background: var(--green-l);    color: var(--green); }
.rv-avatar--gold  { background: #FFF8E6;            color: #9A6000; }
.rv-avatar--ink   { background: var(--bg-tint);     color: var(--text-body); }

.rv-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-ink);
  line-height: 1.2;
}

.rv-card__role {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}

.rv-card__stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  line-height: 1;
}

.rv-card__stars .rv-star--half {
  position: relative;
  display: inline-block;
  color: var(--line);
}

.rv-card__stars .rv-star--half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--gold);
}

.rv-card__body {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px;
}

.rv-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.rv-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-l);
  border-radius: 100px;
  padding: 3px 9px;
  letter-spacing: 0.01em;
}

.rv-badge svg { flex-shrink: 0; }

.rv-date {
  font-size: 0.7rem;
  color: var(--text-faint);
}

.rv-card.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), box-shadow var(--dur) var(--ease);
}

.rv-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rv-card.reveal.visible:hover {
  transform: translateY(-1px);
}

.rv-skeleton {
  break-inside: avoid;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  margin-bottom: 16px;
  animation: rv-pulse 1.6s ease-in-out infinite;
}

.rv-skel-line {
  height: 9px;
  border-radius: 6px;
  background: var(--line-subtle);
  margin-bottom: 8px;
}

.rv-skel-line--w42 { width: 42%; }
.rv-skel-line--w26 { width: 26%; }
.rv-skel-line--w88 { width: 88%; margin-top: 14px; }
.rv-skel-line--w74 { width: 74%; }
.rv-skel-line--w60 { width: 60%; }

@keyframes rv-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

.reviews-load {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.reviews-load__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reviews-load__btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.reviews-load__btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.reviews-load__end {
  font-size: 0.82rem;
  color: var(--text-faint);
  padding: 12px 0;
}

.btn--header {
  font-size: 0.82rem;
  padding: 10px 20px;
}

@media (max-width: 560px) {
  .reviews-hero { padding: 44px 20px 36px; }
  .reviews-body { padding: 8px 16px 52px; }
}

/* LANDING V2 */
body.lpv2 {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-body);
  overflow-x: hidden;
}

body.lpv2 main { flex: 1; }

body.lpv2 .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

body.lpv2 .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.v2-header { padding: 22px 0 6px; }

.v2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.v2-nav {
  display: flex;
  gap: 26px;
}

.v2-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
  letter-spacing: -0.005em;
}

.v2-nav a:hover { color: var(--text-ink); }

.v2-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-ink);
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.v2-cta-link:hover { border-color: var(--blue); color: var(--blue); }

.v2-doodle {
  position: absolute;
  color: var(--blue);
  opacity: 0.45;
  pointer-events: none;
}

.v2-hero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(5rem, 10vw, 8rem);
  text-align: center;
  overflow: hidden;
}

.v2-hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 2;
}

.v2-hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--text-ink);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}

.v2-hero h1 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 800;
}

.v2-hero p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 30px;
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
  background: var(--blue);
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 8px 22px rgba(27, 47, 212, 0.26);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  letter-spacing: -0.005em;
}

.v2-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.24) inset, 0 12px 30px rgba(27, 47, 212, 0.36);
}

.v2-btn svg { transition: transform var(--dur) var(--ease); }
.v2-btn:hover svg { transform: translateX(3px); }

.v2-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 22px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 400;
}

.v2-hero__meta strong { color: var(--text-body); font-weight: 600; }

.v2-hero__stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
  line-height: 1;
  opacity: 0.9;
}

.v2-hero__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-faint);
}

.v2-paper-float {
  position: absolute;
  filter: drop-shadow(0 22px 44px rgba(12, 17, 48, 0.07));
  z-index: 1;
  opacity: 0.95;
}

.v2-paper-float--l {
  left: 5%;
  top: 210px;
  width: 170px;
  transform: rotate(-7deg);
  animation: v2-drift-a 14s ease-in-out infinite;
}

.v2-paper-float--r {
  right: 5%;
  top: 170px;
  width: 170px;
  transform: rotate(6deg);
  animation: v2-drift-b 16s ease-in-out infinite;
}

@keyframes v2-drift-a {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-8px); }
}

@keyframes v2-drift-b {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-10px); }
}

.v2-chip-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--line-subtle);
  padding: 7px 13px 7px 11px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-ink);
  box-shadow: 0 8px 22px rgba(12, 17, 48, 0.08);
  z-index: 4;
  animation: v2-lift-chip 0.7s var(--ease) 0.55s both;
}

@keyframes v2-lift-chip {
  from { opacity: 0; transform: var(--chip-base, translateY(8px)) scale(0.9); }
  to { opacity: 1; transform: var(--chip-base, translateY(0)) scale(1); }
}

.v2-chip-float--a {
  top: 80px;
  right: 19%;
  background: #F2F9F4;
  border-color: rgba(26, 138, 92, 0.2);
  color: var(--green);
  --chip-base: rotate(4deg);
  transform: rotate(4deg);
}

.v2-chip-float--b {
  top: 360px;
  left: 19%;
  --chip-base: rotate(-5deg);
  transform: rotate(-5deg);
}

.v2-chip-float--a svg { color: var(--green); }

.v2-hero__doodle-1 { top: 60px; left: 13%; }
.v2-hero__doodle-2 { top: 40px; right: 13%; }
.v2-hero__doodle-3 { top: 420px; right: 32%; color: var(--gold); opacity: 0.6; }
.v2-hero__doodle-4 { top: 440px; left: 30%; opacity: 0.4; }

.v2-paper {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--line-subtle);
  padding: 26px 28px 22px;
  box-shadow: 0 2px 0 rgba(27, 47, 212, 0.04), 0 24px 60px rgba(12, 17, 48, 0.09), 0 4px 14px rgba(12, 17, 48, 0.04);
  position: relative;
}

.v2-paper--accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #4D61E8 100%);
  border-radius: 14px 14px 0 0;
}

.v2-paper__name {
  height: 10px;
  width: 54%;
  background: var(--line);
  border-radius: 3px;
  margin-bottom: 6px;
}

.v2-paper__title {
  height: 5px;
  width: 36%;
  background: rgba(27, 47, 212, 0.18);
  border-radius: 3px;
  margin-bottom: 8px;
}

.v2-paper__meta {
  height: 4px;
  width: 62%;
  background: var(--line-subtle);
  border-radius: 3px;
}

.v2-paper__rule {
  height: 1px;
  background: var(--line-subtle);
  margin: 12px 0 10px;
}

.v2-paper__sectitle {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 6px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-subtle);
}

.v2-paper__sectitle ~ .v2-paper__sectitle { margin-top: 10px; }

.v2-paper__txt {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.v2-paper__role {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.v2-paper__bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.v2-paper__bullets li {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 12px;
  position: relative;
}

.v2-paper__bullets li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.v2-paper__bullets li strong { color: var(--text-body); font-weight: 600; }

.v2-paper__watermark {
  position: absolute;
  bottom: 10px;
  right: 16px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-ink);
  opacity: 0.08;
}

.v2-mark {
  background: linear-gradient(180deg, transparent 60%, rgba(27, 47, 212, 0.1) 60%);
  color: var(--text-body);
  font-weight: 500;
  padding: 0 2px;
  border-radius: 2px;
}

.v2-mini {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--line-subtle);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.v2-mini__name { height: 7px; width: 60%; background: var(--line); border-radius: 3px; }

.v2-mini__sub {
  height: 4px;
  width: 42%;
  background: rgba(27, 47, 212, 0.14);
  border-radius: 3px;
  margin-bottom: 4px;
}

.v2-mini__line { height: 4px; border-radius: 2px; background: var(--line-subtle); }
.v2-mini__line--full { width: 100%; }
.v2-mini__line--long { width: 78%; }
.v2-mini__line--med { width: 60%; }
.v2-mini__line--short { width: 40%; }
.v2-mini__rule { height: 1px; background: var(--line-subtle); margin: 4px 0 2px; }

.v2-how {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.v2-how__head {
  text-align: center;
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.v2-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.85;
  margin-bottom: 14px;
}

.v2-how__head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 12px;
}

.v2-how__head p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.62;
}

.v2-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(5.5rem, 10vw, 8.5rem);
  position: relative;
}

.v2-step:last-child { margin-bottom: clamp(2rem, 4vw, 3rem); }

.v2-step--reverse .v2-step__visual { order: 1; }
.v2-step--reverse .v2-step__copy { order: 2; }

.v2-step__copy { max-width: 420px; }

.v2-step__num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.v2-step__num-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-faint);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
}

.v2-step__copy h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 12px;
}

.v2-step__copy p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.v2-step__visual {
  position: relative;
  min-height: 280px;
}

.v2-step__primary {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.v2-step__secondary {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 18px 36px rgba(12, 17, 48, 0.08));
}

.v2-step1 .v2-step__primary { transform: rotate(-1.2deg); margin-left: auto; }

.v2-step1 .v2-step__secondary {
  right: -10px;
  bottom: -20px;
  width: 180px;
  transform: rotate(6deg);
}

.v2-step1__chip {
  position: absolute;
  top: -14px;
  left: -18px;
  background: var(--card);
  border: 1px solid var(--line-subtle);
  padding: 7px 12px 7px 10px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-ink);
  box-shadow: 0 8px 22px rgba(12, 17, 48, 0.07);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: rotate(-6deg);
  z-index: 4;
}

.v2-step1__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 47, 212, 0.16);
}

.v2-pillgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 6px 0 10px;
}

.v2-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-body);
  background: var(--card);
}

.v2-pill--active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  font-weight: 600;
}

.v2-pill--ats {
  background: var(--blue-xfaint);
  border-color: var(--line-blue);
  color: var(--blue);
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}

.v2-pill--ats::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

.v2-pill--ats::after {
  content: '';
  position: absolute;
  left: 9.3px;
  top: 50%;
  width: 2px;
  height: 4px;
  border-right: 1.4px solid white;
  border-bottom: 1.4px solid white;
  transform: translateY(-65%) rotate(45deg);
}

.v2-step2 .v2-step__primary { transform: rotate(1deg); }

.v2-step2 .v2-step__secondary {
  left: -20px;
  top: -20px;
  width: 170px;
  transform: rotate(-8deg);
}

.v2-step2__pen {
  position: absolute;
  right: -14px;
  bottom: -10px;
  background: var(--card);
  border: 1px solid var(--line-subtle);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(12, 17, 48, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  z-index: 4;
  transform: rotate(8deg);
}

.v2-step3 .v2-step__primary { transform: rotate(-0.8deg); margin-left: auto; }

.v2-step3 .v2-step__secondary {
  right: -16px;
  bottom: -24px;
  width: 170px;
  transform: rotate(7deg);
}

.v2-step3__files {
  position: absolute;
  top: -16px;
  left: -20px;
  display: flex;
  gap: 6px;
  z-index: 4;
  transform: rotate(-4deg);
}

.v2-file-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--card);
  border: 1px solid var(--line-subtle);
  padding: 6px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-ink);
  box-shadow: 0 6px 16px rgba(12, 17, 48, 0.08);
}

.v2-file-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--blue);
}

.v2-file-chip__dot--pdf { background: var(--gold); }

.v2-reviews {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.v2-reviews__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
}

.v2-reviews__head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 0;
}

.v2-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.6vw, 1.5rem);
}

.v2-review {
  background: var(--card);
  border: 1px solid var(--line-subtle);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 1px 0 rgba(27, 47, 212, 0.02), 0 4px 16px rgba(12, 17, 48, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.v2-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 0 rgba(27, 47, 212, 0.04), 0 14px 32px rgba(12, 17, 48, 0.06);
}

.v2-review--offset { transform: translateY(20px); }
.v2-review--offset:hover { transform: translateY(18px); }

.v2-review__stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.v2-review__quote {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.62;
  margin-bottom: 20px;
  flex: 1;
}

.v2-review__attr {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v2-review__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.v2-review__avatar--blue { background: var(--blue-faint); color: var(--blue); }
.v2-review__avatar--green { background: var(--green-l); color: var(--green); }
.v2-review__avatar--gold { background: #FFF8E6; color: #9A6000; }

.v2-review__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-ink);
  line-height: 1.2;
}

.v2-review__role {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.v2-faq-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  max-width: 720px;
  margin: 0 auto;
}

.v2-faq-section__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.v2-faq-section__head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.v2-faq-section__head p {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.v2-faq-list { padding: 0 8px; }

.v2-faq-item { border-bottom: 1px solid var(--line-subtle); }
.v2-faq-item:last-child { border-bottom: none; }

.v2-faq-item .faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-ink);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  transition: color var(--dur) var(--ease);
}

.v2-faq-item .faq-q:hover { color: var(--blue); }

.v2-faq-item .faq-q__chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: border-color var(--dur), background var(--dur), color var(--dur);
}

.v2-faq-item .faq-q__chevron svg { transition: transform var(--dur) var(--ease); }

.v2-faq-item.open .faq-q { color: var(--blue); }

.v2-faq-item.open .faq-q__chevron {
  border-color: var(--blue);
  background: var(--blue-faint);
  color: var(--blue);
}

.v2-faq-item.open .faq-q__chevron svg { transform: rotate(180deg); }

.v2-faq-item .faq-a {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.72;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.v2-faq-item .faq-a-inner { padding-bottom: 20px; padding-right: 30px; }

.v2-faq-item.open .faq-a { max-height: 400px; }

.v2-faq-item .faq-a strong { color: var(--text-ink); font-weight: 700; }

.v2-final {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(6rem, 12vw, 9rem);
  text-align: center;
  overflow: hidden;
}

.v2-final__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}

.v2-final h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 14px;
}

.v2-final h2 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 800;
}

.v2-final p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

.v2-final__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.v2-final__paper {
  position: absolute;
  filter: drop-shadow(0 18px 40px rgba(12, 17, 48, 0.06));
  opacity: 0.65;
  z-index: 1;
}

.v2-final__paper--l {
  left: 8%;
  top: 70px;
  width: 170px;
  transform: rotate(-9deg);
  animation: v2-drift-a 14s ease-in-out infinite;
}

.v2-final__paper--r {
  right: 8%;
  bottom: 70px;
  width: 170px;
  transform: rotate(8deg);
  animation: v2-drift-b 16s ease-in-out infinite;
}

.v2-final__doodle-1 { top: 50px; right: 22%; }
.v2-final__doodle-2 { bottom: 90px; left: 24%; color: var(--gold); opacity: 0.55; }

.v2-footer {
  background: var(--card);
  padding: 26px 0 36px;
  border-top: 1px solid var(--line-subtle);
  margin-top: 20px;
}

.v2-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.v2-footer p { font-size: 0.78rem; color: var(--text-muted); }

.v2-footer nav { display: flex; gap: 22px; }

.v2-footer nav a {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}

.v2-footer nav a:hover { color: var(--blue); }

.v2-footer__mail a {
  color: var(--blue);
  transition: opacity var(--dur);
}

.v2-footer__mail a:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .v2-paper-float--l { left: -2%; top: 200px; opacity: 0.55; width: 150px; }
  .v2-paper-float--r { right: -2%; top: 170px; opacity: 0.55; width: 150px; }
  .v2-chip-float--a { right: 4%; top: 380px; }
  .v2-chip-float--b { left: 4%; top: 410px; }
}

@media (max-width: 880px) {
  .v2-reviews__grid { grid-template-columns: 1fr 1fr; }
  .v2-review--offset { transform: none; }
  .v2-review--offset:hover { transform: translateY(-2px); }
}

@media (max-width: 820px) {
  .v2-step {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: clamp(4rem, 9vw, 5.5rem);
  }

  .v2-step .v2-step__copy { order: 1; }
  .v2-step .v2-step__visual { order: 2; }
  .v2-step__visual { min-height: 240px; max-width: 420px; margin: 0 auto; }
  .v2-step__copy { max-width: none; }
}

@media (max-width: 720px) {
  .v2-nav { display: none; }
  .v2-header { padding: 18px 0 4px; }
  .v2-hero { padding: 44px 0 64px; }
  .v2-hero__doodle-3,
  .v2-hero__doodle-4 { display: none; }
  .v2-paper-float--l,
  .v2-paper-float--r { display: none; }
  .v2-chip-float--a,
  .v2-chip-float--b { display: none; }
  .v2-final__paper { display: none; }
}

@media (max-width: 560px) {
  .v2-reviews__grid { grid-template-columns: 1fr; }
  .v2-footer__inner { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .v2-hero__doodle-1,
  .v2-hero__doodle-2 { display: none; }
}

/* ============================================================
   CHECKOUT — TIER SELECTOR + PAGE UTILITIES (moved from inline)
   ============================================================ */
.gtm-noscript-frame { display: none; visibility: hidden; }
.is-hidden { display: none !important; }
.addon-native-input { display: none; }
.form-group--flush { margin-bottom: 0; }
.co-section--flush { margin-bottom: 0; }
.form-note__link { color: var(--blue); }

.tier-strip { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }

.tier {
  position: relative;
  display: block;
  cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--card);
  padding: 15px 18px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur), background var(--dur);
}

.tier:hover { border-color: var(--blue-mid); }
.tier__input { position: absolute; opacity: 0; pointer-events: none; }

.tier__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  column-gap: 12px;
}

.tier__id { min-width: 0; }

.tier__name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.tier__price { margin-top: 3px; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.tier__price b {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.02em;
  margin-right: 6px;
}

.tier__tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-faint);
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.tier__mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  transition: border-color var(--dur), background var(--dur);
}

.tier__mark svg {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.16s var(--ease), transform 0.2s var(--ease-spring);
}

.tier__reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows var(--dur) var(--ease), opacity 0.2s var(--ease);
}

.tier__reveal > span { overflow: hidden; display: block; }

.tier__line {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--line-blue);
  font-size: 0.85rem;
  line-height: 1.62;
  color: var(--text-body);
}

.tier__line b { color: var(--text-ink); font-weight: 700; }

.tier.is-active {
  border-color: var(--blue);
  background: var(--blue-xfaint);
  box-shadow: 0 0 0 3px rgba(27, 47, 212, 0.07);
}

.tier.is-active .tier__name { color: var(--blue); }
.tier.is-active .tier__tag { color: #fff; background: var(--blue); }
.tier.is-active .tier__mark { border-color: var(--blue); background: var(--blue); }
.tier.is-active .tier__mark svg { opacity: 1; transform: scale(1); }
.tier.is-active .tier__reveal { grid-template-rows: 1fr; opacity: 1; }

@media (max-width: 720px) {
  .tier__row { column-gap: 10px; }
}

/* ============================================================
   SITE FOOTER v2 (.hr-ft)
   ============================================================ */
.hr-ft { background: var(--card); border-top: 1px solid var(--line-subtle); margin-top: auto; }
.hr-ft__grid { max-width: 1120px; margin: 0 auto; padding: clamp(2.75rem,5vw,4rem) 40px clamp(1.75rem,3vw,2.25rem); display: grid; grid-template-columns: 1.6fr 1fr 1fr 0.9fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.hr-ft__brand { max-width: 260px; }
.hr-ft__brand .poster-hr-logo { margin-bottom: 14px; }
.hr-ft__tag { font-size: 0.83rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 18px; }
.hr-ft__mail { font-size: 0.8rem; color: var(--text-muted); display: block; }
.hr-ft__mail a { color: var(--blue); font-weight: 600; transition: opacity var(--dur) var(--ease); }
.hr-ft__mail a:hover { opacity: 0.7; }
.hr-ft__col-title { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.hr-ft__links { display: flex; flex-direction: column; gap: 11px; }
.hr-ft__links a { font-size: 0.86rem; font-weight: 500; color: var(--text-body); width: fit-content; transition: color var(--dur) var(--ease); }
.hr-ft__links a:hover, .hr-ft__links a:focus-visible { color: var(--blue); }
.hr-ft__links a.hr-ft__lead { font-weight: 700; color: var(--text-ink); }
.hr-ft__links a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
.hr-ft__bar { border-top: 1px solid var(--line-subtle); }
.hr-ft__bar-inner { max-width: 1120px; margin: 0 auto; padding: 18px 40px 26px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.hr-ft__copy { font-size: 0.76rem; color: var(--text-faint); }
.hr-ft__mini { display: flex; gap: 20px; }
.hr-ft__mini a { font-size: 0.76rem; color: var(--text-faint); font-weight: 500; transition: color var(--dur) var(--ease); }
.hr-ft__mini a:hover { color: var(--blue); }
@media (max-width: 860px) {
  .hr-ft__grid { grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,2.75rem) clamp(1.5rem,6vw,3rem); padding-left: 32px; padding-right: 32px; }
  .hr-ft__brand { grid-column: 1 / -1; max-width: 340px; }
}
@media (max-width: 520px) {
  .hr-ft__grid { grid-template-columns: 1fr; padding: 40px 22px 24px; gap: 30px; }
  .hr-ft__brand { grid-column: auto; }
  .hr-ft__bar-inner { flex-direction: column; align-items: flex-start; padding: 16px 22px 28px; }
}


/* ============================================================
   BLOG — career-guide experience (.blog-page / .bl-*)
   Reading column stays one column. TOC rail is navigation,
   never promotion. Tool moments are teaching moments.
   ============================================================ */
body.blog-page { background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; }
.bl-main { flex: 1; width: 100%; }

/* --- Reading progress --- */
.bl-progress { position: sticky; top: 0; z-index: 30; height: 2px; background: transparent; }
.bl-progress__bar { height: 100%; width: 0%; background: var(--blue); transition: width 90ms linear; }

/* --- Pill button system (mirrors .v2-btn / .hx-ghost-btn) --- */
.bl-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font); font-weight: 600; font-size: 0.92rem; letter-spacing: -0.005em; border-radius: 100px; padding: 13px 24px; cursor: pointer; text-decoration: none; border: 1px solid transparent; transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.bl-btn i, .bl-btn svg { transition: transform var(--dur) var(--ease); }
.bl-btn:hover i, .bl-btn:hover svg { transform: translateX(3px); }
.bl-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.bl-btn--primary { color: #fff; background: var(--blue); box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 8px 22px rgba(27,47,212,0.26); }
.bl-btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.24) inset, 0 12px 30px rgba(27,47,212,0.36); }
.bl-btn--ghost { color: var(--text-ink); background: var(--card); border-color: var(--line); }
.bl-btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.bl-btn--light { color: var(--blue); background: #fff; box-shadow: 0 8px 22px rgba(12,17,48,0.20); }
.bl-btn--light:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(12,17,48,0.28); }

/* --- HUB --- */
.bl-hero { max-width: 720px; margin: 0 auto; padding: clamp(3.5rem,7vw,5.25rem) 40px clamp(1.25rem,2.5vw,1.75rem); text-align: center; }
.bl-hero__kicker { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); opacity: 0.85; margin-bottom: 14px; }
.bl-hero__title { font-size: clamp(2rem,4.4vw,2.9rem); font-weight: 800; letter-spacing: -0.038em; line-height: 1.06; color: var(--text-ink); margin-bottom: 14px; }
.bl-hero__sub { font-size: 1rem; line-height: 1.65; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.bl-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 1120px; margin: 0 auto; padding: 6px 40px clamp(2rem,4vw,3rem); }
.bl-tag { font-size: 0.8rem; font-weight: 600; color: var(--text-body); padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px; background: var(--card); cursor: pointer; transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.bl-tag:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.bl-tag[aria-current="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.bl-featured { padding: 0 40px; max-width: 1120px; margin: 0 auto clamp(2rem,4vw,3rem); }
.bl-lead { display: grid; grid-template-columns: 1.35fr 1fr; background: var(--card); border: 1px solid var(--line-subtle); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.bl-lead:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.bl-lead__body { padding: clamp(1.75rem,3.5vw,2.75rem); display: flex; flex-direction: column; align-items: flex-start; }
.bl-lead__body h2 { font-size: clamp(1.4rem,2.8vw,1.9rem); font-weight: 800; letter-spacing: -0.028em; line-height: 1.14; color: var(--text-ink); margin: 12px 0; }
.bl-lead__excerpt { font-size: 0.94rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 20px; }
.bl-lead__go { display: inline-flex; align-items: center; gap: 7px; font-size: 0.88rem; font-weight: 700; color: var(--blue); }
.bl-lead__go i { transition: transform var(--dur) var(--ease); }
.bl-lead:hover .bl-lead__go i { transform: translateX(4px); }
.bl-lead__art { position: relative; background: linear-gradient(135deg, var(--blue-xfaint), var(--blue-faint)); border-left: 1px solid var(--line-subtle); display: flex; align-items: center; justify-content: center; min-height: 220px; }
.bl-lead__doc { width: 128px; background: var(--card); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 14px 34px rgba(12,17,48,0.12); padding: 18px 16px; display: flex; flex-direction: column; gap: 9px; transform: rotate(-4deg); }
.bl-lead__doc span { height: 6px; border-radius: 3px; background: var(--line); }
.bl-lead__doc span:nth-child(1) { width: 60%; background: var(--blue); height: 8px; }
.bl-lead__doc span:nth-child(2) { width: 90%; }
.bl-lead__doc span:nth-child(3) { width: 78%; }
.bl-lead__doc span:nth-child(4) { width: 85%; }
.bl-lead__doc span:nth-child(5) { width: 45%; background: var(--gold); }
.bl-grid-wrap { padding: 0 40px clamp(2.5rem,5vw,4rem); max-width: 1120px; margin: 0 auto; }
.bl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.5rem); }
.bl-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line-subtle); border-radius: var(--radius-card); padding: 24px 24px 22px; box-shadow: var(--shadow-card); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.bl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.bl-card__title { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; color: var(--text-ink); margin: 12px 0 10px; }
.bl-card__excerpt { font-size: 0.88rem; line-height: 1.6; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.bl-card__meta { display: flex; align-items: center; gap: 9px; font-size: 0.76rem; color: var(--text-faint); }
.bl-card__tag { align-self: flex-start; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); background: var(--blue-faint); padding: 5px 10px; border-radius: 100px; }
.bl-card__meta .dot, .bl-art-head__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-faint); display: inline-block; }
.bl-cta { padding: 0 40px clamp(3rem,6vw,5rem); max-width: 1120px; margin: 0 auto; }
.bl-cta__inner { background: var(--text-ink); border-radius: var(--radius-card); padding: clamp(2rem,4vw,3rem); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.bl-cta__copy h2 { font-size: clamp(1.4rem,2.6vw,1.9rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; margin-bottom: 8px; }
.bl-cta__copy p { font-size: 0.92rem; line-height: 1.6; color: rgba(255,255,255,0.72); max-width: 460px; }

/* --- ARTICLE SHELL: centered reading column + TOC rail --- */
.bl-shell { max-width: 1180px; margin: 0 auto; padding: clamp(2rem,4vw,3rem) 40px clamp(3.5rem,7vw,5.5rem); display: grid; grid-template-columns: 220px minmax(0,720px) 1fr; gap: 0 40px; align-items: start; }
.bl-article { grid-column: 2; min-width: 0; }
.bl-rail { grid-column: 1; position: sticky; top: 34px; align-self: start; }

/* --- TOC (navigation only, never promotional) --- */
.bl-toc__title { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.bl-toc__list { display: flex; flex-direction: column; gap: 2px; border-left: 1px solid var(--line-subtle); }
.bl-toc__link { display: block; font-size: 0.82rem; font-weight: 500; line-height: 1.4; color: var(--text-muted); padding: 7px 0 7px 14px; margin-left: -1px; border-left: 2px solid transparent; transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.bl-toc__link:hover { color: var(--text-ink); }
.bl-toc__link.is-active { color: var(--blue); font-weight: 600; border-left-color: var(--blue); }
.bl-toc-m { display: none; margin-bottom: 26px; border: 1px solid var(--line-subtle); border-radius: 12px; background: var(--card); overflow: hidden; }
.bl-toc-m > summary { list-style: none; cursor: pointer; padding: 14px 18px; font-size: 0.88rem; font-weight: 700; color: var(--text-ink); display: flex; align-items: center; justify-content: space-between; }
.bl-toc-m > summary::-webkit-details-marker { display: none; }
.bl-toc-m > summary i { color: var(--text-muted); transition: transform var(--dur) var(--ease); }
.bl-toc-m[open] > summary i { transform: rotate(180deg); }
.bl-toc-m__list { padding: 0 18px 16px; display: flex; flex-direction: column; gap: 10px; }
.bl-toc-m__list a { font-size: 0.86rem; color: var(--text-body); }
.bl-toc-m__list a:hover { color: var(--blue); }

/* --- Article head --- */
.bl-crumbs { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 26px; flex-wrap: wrap; }
.bl-crumbs a { color: var(--text-muted); transition: color var(--dur) var(--ease); }
.bl-crumbs a:hover { color: var(--blue); }
.bl-crumbs .sep { color: var(--text-faint); }
.bl-crumbs [aria-current="page"] { color: var(--text-ink); font-weight: 600; }
.bl-art-head { margin-bottom: 34px; padding-bottom: 28px; border-bottom: 1px solid var(--line-subtle); }
.bl-art-head__tag { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.bl-art-head h1 { font-size: clamp(1.9rem,4vw,2.7rem); font-weight: 800; letter-spacing: -0.038em; line-height: 1.08; color: var(--text-ink); margin-bottom: 16px; }
.bl-art-head__meta { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--text-muted); flex-wrap: wrap; }
.bl-art-head__meta i { font-size: 0.9rem; opacity: 0.75; margin-right: 5px; vertical-align: -1px; }

/* --- Prose --- */
.bl-body { font-size: 1.02rem; line-height: 1.78; color: var(--text-body); }
.bl-lede { font-size: 1.16rem; line-height: 1.65; color: var(--text-ink); margin-bottom: 30px; }
.bl-body h2 { font-size: clamp(1.35rem,2.4vw,1.65rem); font-weight: 800; letter-spacing: -0.028em; line-height: 1.2; color: var(--text-ink); margin: 48px 0 16px; scroll-margin-top: 24px; }
.bl-body h3 { font-size: 1.12rem; font-weight: 700; color: var(--text-ink); margin: 30px 0 10px; }
.bl-body p { margin-bottom: 20px; }
.bl-body a { color: var(--blue); font-weight: 600; border-bottom: 1.5px solid rgba(27,47,212,0.25); transition: border-color var(--dur) var(--ease); }
.bl-body a:hover { border-color: var(--blue); }

/* Buttons are not prose links. The .bl-body a rule above (specificity 0-1-1)
   outranks .bl-btn--primary (0-1-0), which turned the CTA label blue-on-blue
   and gave it a link underline. Re-assert button styling at equal specificity. */
.bl-body a.bl-btn { border-bottom: 1px solid transparent; font-weight: 600; }
.bl-body a.bl-btn--primary,
.bl-body a.bl-btn--primary:link,
.bl-body a.bl-btn--primary:visited,
.bl-body a.bl-btn--primary:hover,
.bl-body a.bl-btn--primary:focus,
.bl-body a.bl-btn--primary:focus-visible,
.bl-body a.bl-btn--primary:active,
.bl-btn--primary:link,
.bl-btn--primary:visited,
.bl-btn--primary:hover,
.bl-btn--primary:focus,
.bl-btn--primary:focus-visible,
.bl-btn--primary:active { color: #fff; border-bottom-color: transparent; }
.bl-body a.bl-btn--primary,
.bl-body a.bl-btn--primary:link,
.bl-body a.bl-btn--primary:visited { background: var(--blue); }
.bl-body a.bl-btn--primary:hover,
.bl-body a.bl-btn--primary:focus-visible { background: var(--blue-dark); }
.bl-btn--primary:active,
.bl-body a.bl-btn--primary:active { background: var(--blue-dark); transform: translateY(0); }
.bl-body a.bl-btn--ghost { color: var(--text-ink); border: 1px solid var(--line); }
.bl-body a.bl-btn--ghost:hover { color: var(--blue); border-color: var(--blue); }
.bl-body strong { color: var(--text-ink); font-weight: 700; }
.bl-body ul, .bl-body ol { margin: 0 0 22px; display: flex; flex-direction: column; gap: 11px; }
.bl-body ul li, .bl-body ol li { position: relative; padding-left: 26px; line-height: 1.68; }
.bl-body ul li::before { content: ''; position: absolute; left: 6px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); opacity: 0.5; }
.bl-body ol { counter-reset: bl; }
.bl-body ol li { counter-increment: bl; }
.bl-body ol li::before { content: counter(bl); position: absolute; left: 0; top: 3px; font-size: 0.72rem; font-weight: 700; color: var(--blue); background: var(--blue-faint); width: 19px; height: 19px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.bl-pull { margin: 34px 0; padding: 22px 26px; border-left: 3px solid var(--blue); background: var(--blue-xfaint); border-radius: 0 12px 12px 0; font-size: 1.08rem; font-weight: 600; line-height: 1.55; color: var(--text-ink); letter-spacing: -0.01em; }

/* --- Key takeaway --- */
.bl-take { display: flex; gap: 16px; margin: 32px 0; padding: 20px 22px; background: var(--card); border: 1px solid var(--line-subtle); border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; }
.bl-take i { color: var(--gold); font-size: 1.1rem; line-height: 1.5; flex-shrink: 0; }
.bl-take__body { min-width: 0; }
.bl-take__label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.bl-take p { margin: 0; font-size: 0.95rem; line-height: 1.65; color: var(--text-ink); font-weight: 500; }

/* --- Example transformation --- */
.bl-xform { margin: 26px 0; border: 1px solid var(--line-subtle); border-radius: var(--radius-card); background: var(--card); overflow: hidden; box-shadow: var(--shadow-card); }
.bl-xform__row { display: grid; grid-template-columns: 1fr 1fr; }
.bl-xform__cell { padding: 18px 20px; }
.bl-xform__cell + .bl-xform__cell { border-left: 1px solid var(--line-subtle); }
.bl-xform__cell p { margin: 0; font-size: 0.92rem; line-height: 1.6; }
.bl-xform__label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 9px; }
.bl-xform__cell--bad { background: #FDF4F3; }
.bl-xform__cell--bad .bl-xform__label { color: #B4432F; }
.bl-xform__cell--good { background: var(--green-l); }
.bl-xform__cell--good .bl-xform__label { color: var(--green); }
.bl-xform__why { display: flex; gap: 10px; padding: 14px 20px; border-top: 1px solid var(--line-subtle); font-size: 0.87rem; line-height: 1.6; color: var(--text-muted); }
.bl-xform__why i { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.bl-xform__why strong { color: var(--text-ink); }

/* --- Tool moment (interactive preview) --- */
.bl-tool { margin: 38px 0; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--card); box-shadow: var(--shadow-card); overflow: hidden; transition: box-shadow var(--dur) var(--ease); }
.bl-tool:hover { box-shadow: var(--shadow-card-hover); }
.bl-tool__head { display: flex; align-items: center; gap: 14px; padding: 20px 22px 16px; }
.bl-tool__icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: var(--blue-faint); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.bl-tool__head h3 { margin: 0; font-size: 1rem; font-weight: 700; color: var(--text-ink); letter-spacing: -0.015em; }
.bl-tool__head p { margin: 2px 0 0; font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; }
.bl-tool__demo { padding: 0 22px 4px; }
.bl-tool__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 22px; margin-top: 16px; border-top: 1px solid var(--line-subtle); background: var(--blue-xfaint); flex-wrap: wrap; }
.bl-tool__note { font-size: 0.8rem; color: var(--text-muted); }
/* tabs */
.bl-tool__tabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--bg-tint); border-radius: 100px; margin-bottom: 14px; }
.bl-tool__tab { border: none; background: none; font-family: var(--font); font-size: 0.8rem; font-weight: 600; color: var(--text-muted); padding: 7px 14px; border-radius: 100px; cursor: pointer; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.bl-tool__tab[aria-selected="true"] { background: var(--card); color: var(--text-ink); box-shadow: 0 1px 3px rgba(12,17,48,0.08); }
.bl-tool__panel[hidden] { display: none; }
/* parse view */
.bl-parse { display: flex; flex-direction: column; gap: 7px; padding: 16px 18px; border: 1px solid var(--line-subtle); border-radius: 10px; background: var(--bg); font-size: 0.86rem; }
.bl-parse--raw { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.78rem; line-height: 1.7; color: var(--text-body); white-space: pre-wrap; }
.bl-parse__row { display: flex; align-items: baseline; gap: 10px; }
.bl-parse__k { flex: 0 0 108px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
.bl-parse__v { color: var(--text-ink); font-weight: 600; }
.bl-parse__v--miss { color: #B4432F; font-weight: 600; }
/* micro input */
.bl-try { display: flex; flex-direction: column; gap: 10px; }
.bl-try__label { font-size: 0.82rem; font-weight: 600; color: var(--text-ink); }
.bl-try__input { width: 100%; font-family: var(--font); font-size: 0.92rem; color: var(--text-ink); background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px; resize: vertical; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.bl-try__input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-faint); }
.bl-try__hint { font-size: 0.76rem; color: var(--text-faint); }
.bl-try__out { display: flex; flex-wrap: wrap; gap: 8px; min-height: 30px; }
.bl-sig { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 600; padding: 6px 11px; border-radius: 100px; border: 1px solid var(--line-subtle); background: var(--bg); color: var(--text-muted); transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.bl-sig i { font-size: 0.85rem; }
.bl-sig.is-pass { background: var(--green-l); border-color: #CBE9DA; color: var(--green); }
.bl-sig.is-fail { background: #FDF4F3; border-color: #F3D9D9; color: #B4432F; }
/* salary band */
.bl-band { padding: 4px 0 6px; }
.bl-band__scale { position: relative; height: 10px; border-radius: 100px; background: linear-gradient(90deg, var(--blue-faint), var(--blue-mid)); margin: 30px 0 10px; }
.bl-band__mark { position: absolute; top: -26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 3px; transition: left var(--dur) var(--ease); }
.bl-band__mark span { font-size: 0.72rem; font-weight: 700; color: var(--text-ink); white-space: nowrap; background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 3px 9px; }
.bl-band__mark::after { content: ''; width: 2px; height: 12px; background: var(--text-ink); border-radius: 2px; }
.bl-band__ends { display: flex; justify-content: space-between; font-size: 0.74rem; color: var(--text-muted); font-weight: 600; }
.bl-band__read { margin-top: 12px; font-size: 0.87rem; line-height: 1.6; color: var(--text-body); }
.bl-band__read strong { color: var(--text-ink); }

/* --- Action checklist --- */
.bl-check { margin: 44px 0 8px; padding: 24px 26px; border: 1px solid var(--line-subtle); border-radius: var(--radius-card); background: var(--card); box-shadow: var(--shadow-card); }
.bl-check__title { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text-ink); margin-bottom: 4px; }
.bl-check__sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.bl-check__list { display: flex; flex-direction: column; gap: 2px; }
.bl-check__item { display: flex; align-items: flex-start; gap: 12px; width: 100%; text-align: left; background: none; border: none; font-family: var(--font); font-size: 0.92rem; line-height: 1.55; color: var(--text-body); padding: 11px 8px; border-radius: 10px; cursor: pointer; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.bl-check__item:hover { background: var(--blue-xfaint); }
.bl-check__box { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border: 1.5px solid var(--line); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: transparent; font-size: 0.7rem; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.bl-check__item[aria-pressed="true"] .bl-check__box { background: var(--green); border-color: var(--green); color: #fff; }
.bl-check__item[aria-pressed="true"] { color: var(--text-faint); text-decoration: line-through; text-decoration-color: var(--line); }

/* --- FAQ --- */
.bl-faq { margin: 52px 0 8px; }
.bl-faq__title { font-size: clamp(1.35rem,2.4vw,1.7rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text-ink); margin-bottom: 6px; }
.bl-faq .faq-item { border-bottom: 1px solid var(--line-subtle); }
.bl-faq .faq-item:first-of-type { border-top: 1px solid var(--line-subtle); }
.bl-faq .faq-q { width: 100%; background: none; border: none; text-align: left; cursor: pointer; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text-ink); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; line-height: 1.45; transition: color var(--dur) var(--ease); }
.bl-faq .faq-q:hover { color: var(--blue); }
.bl-faq__chev { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text-muted); font-size: 0.72rem; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease); }
.bl-faq__chev i { transition: transform var(--dur) var(--ease); display: block; }
.bl-faq .faq-item.open .faq-q { color: var(--blue); }
.bl-faq .faq-item.open .bl-faq__chev { border-color: var(--blue); background: var(--blue-faint); color: var(--blue); }
.bl-faq .faq-item.open .bl-faq__chev i { transform: rotate(180deg); }
.bl-faq .faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.bl-faq .faq-item.open .faq-a { grid-template-rows: 1fr; }
.bl-faq .faq-a-inner { overflow: hidden; }
.bl-faq .faq-a-inner p { padding: 0 24px 20px 0; font-size: 0.92rem; line-height: 1.72; color: var(--text-body); margin: 0; }
.bl-faq .faq-a-inner a { color: var(--blue); font-weight: 600; border-bottom: 1px solid rgba(27,47,212,0.28); }

/* --- Next steps (tool → guide → FAQ) --- */
.bl-next { margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--line-subtle); }
.bl-next__title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.bl-next__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 16px; }
.bl-step { display: flex; flex-direction: column; gap: 8px; padding: 24px 26px; border-radius: var(--radius-card); border: 1px solid var(--line-subtle); background: var(--card); box-shadow: var(--shadow-card); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.bl-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: var(--line); }
.bl-step__kicker { display: inline-flex; align-items: center; gap: 6px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.bl-step__title { font-size: 1.08rem; font-weight: 700; line-height: 1.32; color: var(--text-ink); letter-spacing: -0.015em; }
.bl-step__text { font-size: 0.86rem; line-height: 1.55; color: var(--text-muted); }
.bl-step__go { margin-top: 6px; display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--blue); }
.bl-step__go i { transition: transform var(--dur) var(--ease); }
.bl-step:hover .bl-step__go i { transform: translateX(3px); }
.bl-step--tool { grid-row: span 2; background: linear-gradient(168deg, var(--blue-xfaint), var(--card) 70%); border-color: var(--line-blue); justify-content: center; }
.bl-step--tool .bl-step__title { font-size: 1.25rem; }
.bl-step--tool .bl-btn { align-self: flex-start; margin-top: 10px; }

/* --- Responsive --- */
@media (max-width: 1180px) {
  .bl-shell { grid-template-columns: minmax(0,720px); justify-content: center; padding-left: 32px; padding-right: 32px; }
  .bl-article { grid-column: 1; }
  .bl-rail { display: none; }
  .bl-toc-m { display: block; }
}
@media (max-width: 820px) {
  .bl-grid { grid-template-columns: 1fr 1fr; }
  .bl-lead { grid-template-columns: 1fr; }
  .bl-lead__art { min-height: 160px; order: -1; }
  .bl-next__grid { grid-template-columns: 1fr; }
  .bl-step--tool { grid-row: auto; }
}
@media (max-width: 600px) {
  .bl-grid { grid-template-columns: 1fr; }
  .bl-xform__row { grid-template-columns: 1fr; }
  .bl-xform__cell + .bl-xform__cell { border-left: none; border-top: 1px solid var(--line-subtle); }
  .bl-shell { padding-left: 22px; padding-right: 22px; }
  .bl-hero, .bl-featured, .bl-grid-wrap, .bl-cta { padding-left: 22px; padding-right: 22px; }
  .bl-tool__foot { flex-direction: column; align-items: stretch; }
  .bl-tool__foot .bl-btn { width: 100%; }
  .bl-parse__row { flex-direction: column; gap: 2px; }
  .bl-parse__k { flex: none; }
}
@media (prefers-reduced-motion: reduce) {
  .bl-progress__bar, .bl-band__mark { transition: none; }
}