:root {
  color-scheme: light;
  --ink: #17120d;
  --ink-soft: #35291f;
  --muted: #776b5f;
  --paper: #f4ead7;
  --vellum: #fff8e9;
  --line: rgba(45, 34, 24, 0.16);
  --line-strong: rgba(45, 34, 24, 0.28);
  --oxblood: #7b241c;
  --green: #143d34;
  --blueprint: #1f4964;
  --brass: #b88b43;
  --sage: #b9c7a7;
  --shadow: 0 34px 100px rgba(38, 27, 17, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(45, 34, 24, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(45, 34, 24, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(184, 139, 67, 0.2), transparent 28rem),
    linear-gradient(135deg, #f4ead7 0%, #fff8e9 46%, #e9eee6 100%);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  display: flex;
  min-height: 100vh;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.brand img {
  width: 34px;
  height: 34px;
}

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

.desktop-nav a,
.mobile-nav-panel a {
  min-height: 42px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.desktop-nav a:hover,
.mobile-nav-panel a:hover {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 248, 233, 0.72);
}

.desktop-nav .nav-cta,
.mobile-nav-panel .nav-cta,
.primary-cta {
  color: var(--vellum);
  background: var(--green);
  box-shadow: 0 16px 38px rgba(20, 61, 52, 0.22);
}

.desktop-nav .nav-cta:hover,
.mobile-nav-panel .nav-cta:hover,
.primary-cta:hover {
  color: var(--ink);
  border-color: var(--brass);
  background: #d7b56f;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 233, 0.82);
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span,
.mobile-nav summary span::before,
.mobile-nav summary span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.mobile-nav summary span::before {
  transform: translateY(-6px);
}

.mobile-nav summary span::after {
  transform: translateY(4px);
}

.mobile-nav-panel {
  position: absolute;
  top: 56px;
  right: 0;
  z-index: 8;
  display: grid;
  width: min(292px, calc(100vw - 32px));
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 233, 0.98);
  box-shadow: var(--shadow);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: 48px;
  min-height: 720px;
  padding: 30px 0 76px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--oxblood);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.method-copy h2,
.dynamo-copy h2,
.growth-copy h2,
.cta-section h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 800px;
  font-size: clamp(3.5rem, 6.4vw, 6.9rem);
  line-height: 0.9;
  overflow-wrap: break-word;
}

.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.secondary-cta {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 248, 233, 0.7);
}

.secondary-cta:hover {
  background: var(--vellum);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 660px;
  margin-top: 30px;
}

.trust-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 248, 233, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.report-shell {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(31, 73, 100, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(31, 73, 100, 0.09) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 248, 233, 0.96), rgba(246, 233, 205, 0.92));
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow);
}

.report-shell::before {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(123, 36, 28, 0.22);
  border-radius: 50%;
  content: "";
}

.report-topline,
.board-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.report-topline span,
.board-header span,
.report-note span {
  color: var(--oxblood);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-topline strong,
.board-header strong {
  color: var(--muted);
  font-size: 0.8rem;
}

.dynamo-seal {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  margin: 28px 0 24px;
}

.dynamo-seal img {
  width: 74px;
  height: 74px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--vellum);
}

.dynamo-seal span {
  color: var(--blueprint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dynamo-seal strong {
  display: block;
  margin-top: 4px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 0.95;
}

.score-system {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
}

.score-orb {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--vellum);
  background: conic-gradient(var(--brass) 0 295deg, rgba(20, 61, 52, 0.16) 295deg 360deg), var(--green);
}

.score-orb span {
  grid-area: 1 / 1;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
}

.score-orb small {
  grid-area: 1 / 1;
  align-self: end;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trait-stack {
  display: grid;
  gap: 12px;
}

.trait-stack div {
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.trait-stack i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 var(--value), rgba(20, 61, 52, 0.14) var(--value) 100%);
}

.report-note {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(31, 73, 100, 0.2);
  border-radius: 8px;
  background: rgba(255, 248, 233, 0.72);
}

.report-note p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.belief-section {
  padding: 50px 0 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.belief-section p {
  max-width: 960px;
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.35rem, 5.5vw, 5.25rem);
  font-weight: 700;
  line-height: 0.98;
}

.experience-section,
.method-section,
.dynamo-section,
.growth-section,
.cta-section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}

.section-heading h2,
.method-copy h2,
.dynamo-copy h2,
.growth-copy h2,
.cta-section h2 {
  max-width: 790px;
  font-size: clamp(2.35rem, 5.3vw, 5rem);
  line-height: 0.95;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.experience-grid article {
  min-height: 292px;
  padding: 24px 24px 30px 0;
  border-right: 1px solid var(--line);
}

.experience-grid article + article {
  padding-left: 24px;
}

.experience-grid article:last-child {
  border-right: 0;
}

.experience-grid span,
.trait-card span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--blueprint);
  font-weight: 900;
}

.experience-grid h3,
.trait-card strong {
  display: block;
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.experience-grid p,
.method-copy p,
.dynamo-copy p,
.growth-copy p,
.trait-card p,
.pricing-panel li {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.method-section,
.dynamo-section,
.growth-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1fr);
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.method-copy p:not(.eyebrow),
.dynamo-copy p:not(.eyebrow),
.growth-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
}

.trait-lab {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trait-card {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 248, 233, 0.78);
}

.trait-card.tall {
  grid-row: span 2;
  background: var(--green);
}

.trait-card.tall span,
.trait-card.tall strong,
.trait-card.tall p {
  color: var(--vellum);
}

.trait-card.wide {
  grid-column: span 2;
  min-height: 150px;
  background: rgba(31, 73, 100, 0.1);
}

.dynamo-section {
  grid-template-columns: minmax(430px, 1fr) minmax(0, 0.84fr);
}

.dynamo-board,
.pricing-panel {
  padding: 20px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--vellum);
  box-shadow: var(--shadow);
}

.dynamo-list {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.dynamo-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 234, 215, 0.72);
}

.dynamo-list small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.dynamo-list strong {
  display: block;
  margin-top: 6px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.growth-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
}

.price-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-line span {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 0.9;
}

.price-line strong,
.price-line small {
  display: block;
}

.price-line strong {
  font-size: 1.2rem;
}

.price-line small {
  margin-top: 4px;
  color: var(--oxblood);
  font-weight: 900;
}

.pricing-panel ul {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
}

.pricing-panel li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

.pricing-panel li::before {
  position: absolute;
  left: 0;
  color: var(--brass);
  content: "+";
  font-weight: 900;
}

.pricing-panel .primary-cta {
  width: 100%;
}

.cta-section {
  display: grid;
  justify-items: start;
  border-top: 1px solid var(--line);
}

.cta-section .primary-cta {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.site-footer button {
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 18, 13, 0.58);
}

.modal-dialog {
  position: relative;
  display: grid;
  width: min(720px, 100%);
  max-height: min(780px, calc(100vh - 40px));
  overflow: hidden;
  border-radius: 8px;
  background: var(--vellum);
  box-shadow: var(--shadow);
}

.modal-header,
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.modal-footer {
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.modal-header h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
}

.modal-header button,
.modal-footer button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--vellum);
  background: var(--green);
  cursor: pointer;
}

.modal-header button {
  width: 44px;
  font-size: 1.6rem;
  line-height: 1;
}

.modal-footer button {
  padding: 0 20px;
  font-weight: 800;
}

.modal-body {
  overflow: auto;
  padding: 4px 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.modal-body h2,
.modal-body h3 {
  color: var(--ink);
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-section,
  .method-section,
  .dynamo-section,
  .growth-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 58px;
  }

  .hero-visual {
    order: -1;
  }

  .method-section,
  .dynamo-section,
  .growth-section {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 640px);
  }

  .hero-section {
    gap: 34px;
    padding-top: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 11vw, 4.55rem);
    line-height: 0.98;
  }

  .hero-actions,
  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .report-shell {
    padding: 18px;
  }

  .report-topline,
  .board-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-system,
  .dynamo-seal,
  .experience-grid,
  .trait-lab {
    grid-template-columns: 1fr;
  }

  .score-orb {
    margin: 0 auto;
  }

  .trait-stack div {
    grid-template-columns: 118px 1fr;
  }

  .belief-section {
    padding: 38px 0 52px;
  }

  .experience-section,
  .method-section,
  .dynamo-section,
  .growth-section,
  .cta-section {
    padding: 62px 0;
  }

  .experience-grid article,
  .experience-grid article + article,
  .experience-grid article:last-child {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .experience-grid span,
  .trait-card span {
    margin-bottom: 24px;
  }

  .trait-card.tall,
  .trait-card.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

.instruction-v2-page {
  min-height: 100vh;
  overflow-x: hidden;
  color: #15110f;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 173, 182, 0.42), transparent 20rem),
    radial-gradient(circle at 100% 16%, rgba(100, 157, 181, 0.28), transparent 24rem),
    radial-gradient(circle at 58% 82%, rgba(206, 173, 108, 0.22), transparent 22rem),
    linear-gradient(90deg, rgba(63, 51, 44, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(63, 51, 44, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, #fff1e6 0%, #fff8ef 46%, #edf4f2 100%);
  background-size: auto, auto, auto, 42px 42px, 42px 42px, auto;
}

.instruction-v2-shell {
  width: min(1120px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
}

.instruction-v2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 12px;
}

.instruction-v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #15110f;
  font-weight: 900;
}

.instruction-v2-brand img {
  width: 34px;
  height: 34px;
}

.instruction-v2-badge {
  padding: 9px 11px;
  border: 1px solid rgba(20, 61, 52, 0.18);
  border-radius: 999px;
  color: #143d34;
  background: rgba(255, 250, 246, 0.66);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.instruction-v2-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: 36px;
  align-items: center;
  padding: 28px 0 48px;
}

.instruction-v2-copy h1 {
  max-width: 690px;
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3.4rem, 6.7vw, 7rem);
  line-height: 0.88;
}

.instruction-v2-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: #46362f;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.5;
}

.instruction-v2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.instruction-v2-trust span {
  padding: 8px 10px;
  border: 1px solid rgba(128, 82, 78, 0.16);
  border-radius: 999px;
  color: #655148;
  background: rgba(255, 250, 246, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.instruction-v2-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(112, 86, 62, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 173, 182, 0.28), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 45%),
    linear-gradient(90deg, rgba(54, 88, 108, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(54, 88, 108, 0.08) 1px, transparent 1px),
    rgba(255, 250, 246, 0.86);
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
  box-shadow: 0 28px 90px rgba(65, 48, 38, 0.18);
  backdrop-filter: blur(22px);
}

.instruction-v2-card::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(54, 88, 108, 0.22);
  border-radius: 50%;
  content: "";
}

.instruction-v2-card-top,
.instruction-v2-progress,
.instruction-v2-card .instruction-step,
.instruction-v2-actions {
  position: relative;
  z-index: 1;
}

.instruction-v2-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 2px 14px;
  border-bottom: 1px solid rgba(112, 86, 62, 0.16);
}

.instruction-v2-card-top span,
.instruction-v2-card-top strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instruction-v2-card-top span {
  color: #8b2c35;
}

.instruction-v2-card-top strong {
  margin-top: 4px;
  color: #1f4964;
}

.instruction-v2-orb {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(20, 61, 52, 0.34);
  border-radius: 50%;
  color: #fff8ef;
  background: conic-gradient(from 210deg, #143d34, #4f8aa2, #f0a3ad, #b88b43, #143d34);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 16px 38px rgba(20, 61, 52, 0.18);
}

.instruction-v2-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin: 18px 0 24px;
}

.instruction-v2-progress span {
  height: 5px;
  border-radius: 999px;
  background: rgba(20, 61, 52, 0.13);
}

.instruction-v2-progress span.active {
  background: linear-gradient(90deg, #8b2c35, #f0a3ad);
  box-shadow: 0 0 22px rgba(240, 163, 173, 0.38);
}

.instruction-v2-progress span.complete {
  background: #143d34;
}

.instruction-v2-card .instruction-step {
  display: none;
}

.instruction-v2-card .instruction-step.active {
  display: block;
}

.instruction-v2-card .instruction-step h2 {
  max-width: 460px;
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.55rem, 4.8vw, 4.25rem);
  line-height: 0.94;
}

.instruction-v2-card .instruction-step p {
  max-width: 460px;
  margin: 18px 0 0;
  color: #44352f;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.52;
}

.instruction-v2-card .instruction-step ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.instruction-v2-card .instruction-step li {
  position: relative;
  padding-left: 22px;
  color: #44352f;
  font-weight: 850;
  list-style: none;
}

.instruction-v2-card .instruction-step li::before {
  position: absolute;
  left: 0;
  color: #8b2c35;
  content: "+";
}

.instruction-v2-actions {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.instruction-v2-back,
.instruction-v2-next,
.instruction-v2-start {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.instruction-v2-back {
  border: 1px solid rgba(112, 86, 62, 0.18);
  color: #6a5c54;
  background: rgba(255, 250, 246, 0.54);
}

.instruction-v2-back:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.instruction-v2-next,
.instruction-v2-start {
  border: 1px solid #143d34;
  color: #fff8ef;
  background: linear-gradient(135deg, #143d34, #1f4964);
  box-shadow: 0 18px 42px rgba(20, 61, 52, 0.22);
}

.instruction-v2-start {
  grid-column: 2;
}

.instruction-v2-actions [hidden] {
  display: none;
}

@media (max-width: 820px) {
  .instruction-v2-shell {
    width: min(100% - 24px, 430px);
  }

  .instruction-v2-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 10px 0 28px;
  }

  .instruction-v2-copy h1 {
    font-size: clamp(2.55rem, 11.2vw, 3.45rem);
    line-height: 0.96;
    overflow-wrap: break-word;
  }

  .instruction-v2-copy p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .instruction-v2-card {
    min-height: auto;
    padding: 15px;
    border-radius: 20px;
  }

  .instruction-v2-card .instruction-step h2 {
    font-size: clamp(2rem, 9.2vw, 2.65rem);
    line-height: 1;
  }

  .instruction-v2-card .instruction-step p {
    font-size: 0.98rem;
  }

  .instruction-v2-actions {
    position: sticky;
    bottom: 10px;
    grid-template-columns: 1fr;
    margin-top: 22px;
    padding-top: 8px;
  }

  .instruction-v2-back {
    min-height: 48px;
    order: 2;
  }

  .instruction-v2-next,
  .instruction-v2-start {
    min-height: 58px;
    order: 1;
  }

  .instruction-v2-start {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .instruction-v2-shell {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }

  .instruction-v2-badge {
    display: none;
  }

  .instruction-v2-copy h1 {
    max-width: 340px;
    font-size: clamp(2.35rem, 10.2vw, 3rem);
  }

  .instruction-v2-copy p:not(.eyebrow) {
    max-width: 335px;
    font-size: 0.96rem;
  }

  .instruction-v2-card .instruction-step h2 {
    max-width: 310px;
    font-size: clamp(1.9rem, 8.5vw, 2.32rem);
  }

  .instruction-v2-card .instruction-step p {
    max-width: 310px;
    font-size: 0.94rem;
  }
}

.instruction-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 6%, rgba(241, 165, 160, 0.34), transparent 20rem),
    radial-gradient(circle at 100% 18%, rgba(31, 73, 100, 0.22), transparent 24rem),
    radial-gradient(circle at 72% 78%, rgba(184, 139, 67, 0.2), transparent 20rem),
    linear-gradient(90deg, rgba(45, 34, 24, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(45, 34, 24, 0.04) 1px, transparent 1px),
    linear-gradient(140deg, #f7ead8 0%, #fff8e9 48%, #eaf0ec 100%);
  background-size: auto, auto, 56px 56px, 56px 56px, auto;
}

.instruction-shell {
  display: grid;
  width: min(840px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  grid-template-rows: auto auto 1fr;
}

.instruction-hero {
  max-width: 720px;
  padding: 34px 0 22px;
}

.instruction-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6.25rem);
  line-height: 0.9;
}

.instruction-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #4b3b31;
  font-size: clamp(1.04rem, 2vw, 1.26rem);
  font-weight: 650;
  line-height: 1.55;
}

.instruction-card {
  position: relative;
  align-self: start;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(184, 139, 67, 0.36);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(241, 165, 160, 0.2), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 42%),
    linear-gradient(90deg, rgba(31, 73, 100, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(31, 73, 100, 0.08) 1px, transparent 1px),
    rgba(255, 250, 241, 0.9);
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.instruction-card::before {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(31, 73, 100, 0.24);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.instruction-card::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(184, 139, 67, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 139, 67, 0.18), transparent 62%);
  content: "";
  pointer-events: none;
}

.instruction-orb {
  position: absolute;
  top: 72px;
  right: 32px;
  z-index: 0;
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
  border: 1px solid rgba(20, 61, 52, 0.36);
  border-radius: 50%;
  color: rgba(255, 248, 233, 0.92);
  background:
    conic-gradient(from 210deg, rgba(20, 61, 52, 0.96), rgba(31, 73, 100, 0.86), rgba(241, 165, 160, 0.84), rgba(184, 139, 67, 0.92), rgba(20, 61, 52, 0.96));
  box-shadow: 0 30px 70px rgba(20, 61, 52, 0.18);
}

.instruction-orb span {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
}

.instruction-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.instruction-kicker span,
.instruction-kicker strong {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instruction-kicker span {
  color: var(--oxblood);
}

.instruction-kicker strong {
  color: var(--blueprint);
}

.instruction-progress {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 34px;
  padding: 12px;
  border: 1px solid rgba(20, 61, 52, 0.12);
  border-radius: 14px;
  background: rgba(255, 248, 233, 0.62);
}

.instruction-progress span {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.instruction-progress span::after {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(20, 61, 52, 0.22);
  border-radius: 50%;
  background: var(--vellum);
  box-shadow: 0 0 0 6px rgba(255, 248, 233, 0.76);
  content: "";
}

.instruction-progress span.active,
.instruction-progress span.complete {
  color: var(--green);
}

.instruction-progress span.active::after {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--brass), var(--rose));
  box-shadow: 0 0 0 6px rgba(241, 165, 160, 0.18), 0 0 24px rgba(184, 139, 67, 0.35);
}

.instruction-progress span.complete::after {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green), var(--blueprint));
}

.instruction-step {
  display: none;
}

.instruction-step.active {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
}

.instruction-step h2 {
  max-width: 620px;
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.55rem, 5.6vw, 4.7rem);
  line-height: 0.94;
  overflow-wrap: break-word;
}

.instruction-step p {
  max-width: 600px;
  margin: 22px 0 0;
  color: #46362b;
  font-size: 1.08rem;
  line-height: 1.6;
}

.instruction-trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.instruction-trust span {
  padding: 8px 10px;
  border: 1px solid rgba(184, 139, 67, 0.26);
  border-radius: 999px;
  color: #5f4b3f;
  background: rgba(255, 248, 233, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.instruction-step ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.instruction-step li {
  list-style: none;
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
  font-weight: 800;
}

.instruction-step li::before {
  position: absolute;
  left: 0;
  color: var(--brass);
  content: "+";
}

.instruction-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.instruction-actions .primary-cta,
.instruction-actions .secondary-cta {
  min-width: 170px;
  cursor: pointer;
}

.instruction-actions [hidden] {
  display: none;
}

.instruction-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

@media (max-width: 560px) {
  .instruction-shell {
    width: min(calc(100% - 24px), 366px);
    min-height: 100svh;
    margin: 0 0 0 12px;
    grid-template-rows: auto auto auto;
  }

  .instruction-shell .cpc-simple-brand {
    padding: 16px 0 8px;
  }

  .instruction-hero {
    padding: 18px 0 18px;
  }

  .instruction-hero h1 {
    max-width: 350px;
    font-size: clamp(2.58rem, 12vw, 3.55rem);
    line-height: 0.94;
  }

  .instruction-hero p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .instruction-card {
    align-self: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px;
    border-radius: 16px;
  }

  .instruction-card::before {
    top: -120px;
    right: -130px;
    width: 260px;
    height: 260px;
  }

  .instruction-card::after {
    right: 12px;
    bottom: 12px;
    width: 58px;
    height: 58px;
  }

  .instruction-orb {
    top: 86px;
    right: -32px;
    width: 118px;
    height: 118px;
    opacity: 0.58;
  }

  .instruction-orb span {
    font-size: 2.5rem;
  }

  .instruction-kicker {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .instruction-kicker span,
  .instruction-kicker strong {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .instruction-progress {
    display: flex;
    gap: 5px;
    overflow: hidden;
    margin-bottom: 24px;
    padding: 8px;
  }

  .instruction-progress span {
    flex: 1 1 0;
    gap: 6px;
    font-size: 0.48rem;
    letter-spacing: 0.02em;
  }

  .instruction-progress span::after {
    width: 18px;
    height: 18px;
  }

  .instruction-step h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1;
    max-width: 8.4em;
  }

  .instruction-step p {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .instruction-trust {
    margin-top: 22px;
  }

  .instruction-actions,
  .instruction-actions .primary-cta,
  .instruction-actions .secondary-cta {
    width: 100%;
  }

  .instruction-actions {
    flex-direction: column-reverse;
    gap: 8px;
    margin-top: 28px;
  }

  .instruction-actions .primary-cta,
  .instruction-actions .secondary-cta {
    min-height: 56px;
  }
}

@media (max-width: 430px) {
  .page-shell {
    width: min(100% - 20px, 390px);
  }

  .site-header {
    padding: 14px 0;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 10vw, 2.75rem);
  }

  .dynamo-seal strong {
    font-size: 1.7rem;
  }

  .trait-stack div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-line {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 10px;
  }

  .modal-dialog {
    max-height: calc(100vh - 20px);
  }
}

.cpc-page {
  background:
    linear-gradient(90deg, rgba(45, 34, 24, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(45, 34, 24, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 84% 12%, rgba(20, 61, 52, 0.18), transparent 28rem),
    linear-gradient(135deg, #f4ead7 0%, #fff8e9 52%, #e9eee6 100%);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.cpc-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.cpc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.cpc-header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--vellum);
  background: var(--green);
  font-weight: 900;
}

.cpc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 44px;
  align-items: center;
  min-height: 690px;
  padding: 34px 0 70px;
}

.cpc-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3.4rem, 6.2vw, 6.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.cpc-lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.58;
}

.cpc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.cpc-actions span {
  max-width: 270px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.cpc-card {
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(31, 73, 100, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(31, 73, 100, 0.09) 1px, transparent 1px),
    rgba(255, 248, 233, 0.95);
  background-size: 30px 30px, 30px 30px, auto;
  box-shadow: var(--shadow);
}

.cpc-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cpc-card-top span,
.cpc-profile span {
  color: var(--oxblood);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cpc-card-top strong {
  color: var(--muted);
  font-size: 0.82rem;
}

.cpc-score {
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  margin: 28px auto 24px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--vellum);
  background: conic-gradient(var(--brass) 0 295deg, rgba(20, 61, 52, 0.16) 295deg 360deg), var(--green);
}

.cpc-score span {
  grid-area: 1 / 1;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.cpc-score small {
  grid-area: 1 / 1;
  align-self: end;
  margin-bottom: 26px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cpc-bars {
  display: grid;
  gap: 11px;
}

.cpc-bars div {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.cpc-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 var(--value), rgba(20, 61, 52, 0.14) var(--value) 100%);
}

.cpc-profile {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 234, 215, 0.7);
}

.cpc-profile strong {
  display: block;
  margin-top: 6px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.cpc-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cpc-proof article {
  min-height: 230px;
  padding: 24px 24px 28px 0;
  border-right: 1px solid var(--line);
}

.cpc-proof article + article {
  padding-left: 24px;
}

.cpc-proof article:last-child {
  border-right: 0;
}

.cpc-proof span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blueprint);
  font-weight: 900;
}

.cpc-proof h2 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  line-height: 1.1;
}

.cpc-proof p,
.cpc-focus p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.cpc-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.cpc-focus h2,
.cpc-final h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 0.98;
}

.cpc-final {
  display: grid;
  justify-items: center;
  padding: 70px 0;
  text-align: center;
}

.cpc-final h2 {
  max-width: 760px;
}

.cpc-final .primary-cta {
  margin-top: 26px;
}

.cpc-footer {
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .cpc-hero,
  .cpc-focus {
    grid-template-columns: 1fr;
  }

  .cpc-hero {
    min-height: auto;
    padding-top: 24px;
  }

  .cpc-card {
    order: -1;
  }

  .cpc-proof {
    grid-template-columns: 1fr;
  }

  .cpc-proof article,
  .cpc-proof article + article,
  .cpc-proof article:last-child {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .cpc-shell {
    width: min(100% - 24px, 420px);
  }

  .cpc-copy h1 {
    font-size: clamp(2.5rem, 10.8vw, 3.4rem);
    line-height: 0.98;
  }

  .cpc-actions,
  .cpc-actions .primary-cta,
  .cpc-header-cta {
    width: 100%;
  }

  .cpc-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cpc-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .cpc-bars div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.instruction-v2-page .instruction-v2-shell {
  width: min(calc(100% - 24px), 430px);
  margin: 0 auto;
}

.instruction-v2-page .instruction-v2-badge {
  display: none;
}

.instruction-v2-page .instruction-v2-stage {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 10px 0 28px;
}

.instruction-v2-page .instruction-v2-copy h1 {
  max-width: 360px;
  font-size: clamp(2.35rem, 10vw, 3.15rem);
  line-height: 0.98;
}

.instruction-v2-page .instruction-v2-copy p:not(.eyebrow) {
  max-width: 350px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.instruction-v2-page .instruction-v2-card {
  min-height: auto;
  padding: 15px;
  border-radius: 20px;
}

.instruction-v2-page .instruction-v2-card .instruction-step h2 {
  max-width: 330px;
  font-size: clamp(1.95rem, 8.4vw, 2.45rem);
  line-height: 1;
}

.instruction-v2-page .instruction-v2-card .instruction-step p {
  max-width: 330px;
  font-size: 0.96rem;
  line-height: 1.48;
}

.instruction-v2-page .instruction-v2-actions {
  position: sticky;
  bottom: 10px;
  grid-template-columns: 1fr;
  margin-top: 22px;
  padding-top: 8px;
}

.instruction-v2-page .instruction-v2-back {
  min-height: 48px;
  order: 2;
}

.instruction-v2-page .instruction-v2-next,
.instruction-v2-page .instruction-v2-start {
  min-height: 58px;
  order: 1;
}

.instruction-v2-page .instruction-v2-start {
  grid-column: auto;
}

@media (min-width: 821px) {
  .instruction-v2-page .instruction-v2-shell {
    width: min(1120px, calc(100% - 36px));
  }

  .instruction-v2-page .instruction-v2-badge {
    display: inline-flex;
  }

  .instruction-v2-page .instruction-v2-stage {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
    gap: 36px;
    padding: 28px 0 48px;
  }

  .instruction-v2-page .instruction-v2-copy h1 {
    max-width: 690px;
    font-size: clamp(3.4rem, 6.7vw, 7rem);
    line-height: 0.88;
  }

  .instruction-v2-page .instruction-v2-copy p:not(.eyebrow) {
    max-width: 590px;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    line-height: 1.5;
  }

  .instruction-v2-page .instruction-v2-card {
    min-height: 560px;
    padding: 18px;
    border-radius: 24px;
  }

  .instruction-v2-page .instruction-v2-card .instruction-step h2 {
    max-width: 460px;
    font-size: clamp(2.55rem, 4.8vw, 4.25rem);
    line-height: 0.94;
  }

  .instruction-v2-page .instruction-v2-card .instruction-step p {
    max-width: 460px;
    font-size: 1.02rem;
    line-height: 1.52;
  }

  .instruction-v2-page .instruction-v2-actions {
    position: relative;
    bottom: auto;
    grid-template-columns: 0.58fr 1fr;
    margin-top: 26px;
    padding-top: 0;
  }

  .instruction-v2-page .instruction-v2-back,
  .instruction-v2-page .instruction-v2-next,
  .instruction-v2-page .instruction-v2-start {
    min-height: 58px;
    order: initial;
  }

  .instruction-v2-page .instruction-v2-start {
    grid-column: 2;
  }
}

.cpc-simple-page {
  min-height: 100vh;
}

.cpc-simple {
  display: grid;
  width: min(1040px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  grid-template-rows: auto 1fr;
}

.cpc-simple-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  padding: 24px 0;
  color: var(--ink);
  font-weight: 900;
}

.cpc-simple-brand img {
  width: 34px;
  height: 34px;
}

.cpc-simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 46px;
  align-items: center;
  padding: 30px 0 90px;
}

.cpc-simple-copy h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(4.2rem, 9vw, 8.2rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.cpc-simple-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 2.1vw, 1.45rem);
  line-height: 1.5;
}

.cpc-simple-copy .primary-cta {
  min-width: 230px;
  margin-top: 32px;
}

.cpc-simple-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cpc-simple-proof span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 248, 233, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
}

.cpc-simple-card {
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  align-content: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--vellum);
  background: conic-gradient(var(--brass) 0 295deg, rgba(20, 61, 52, 0.16) 295deg 360deg), var(--green);
  box-shadow: var(--shadow);
}

.cpc-simple-card span,
.cpc-simple-card small {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.cpc-simple-card strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 6rem;
  line-height: 0.85;
}

@media (max-width: 760px) {
  .cpc-simple {
    width: min(100% - 24px, 520px);
  }

  .cpc-simple-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: start;
    padding: 14px 0 54px;
  }

  .cpc-simple-card {
    width: 150px;
    height: 150px;
    order: -1;
    justify-self: start;
  }

  .cpc-simple-card strong {
    font-size: 3.8rem;
  }

  .cpc-simple-card span,
  .cpc-simple-card small {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .cpc-simple-copy h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
    line-height: 0.88;
  }

  .cpc-simple-copy .primary-cta {
    width: 100%;
  }
}

.eq-test-page,
.eq-results-page,
.eq-checkout-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(45, 34, 24, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(45, 34, 24, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 84% 16%, rgba(41, 94, 118, 0.2), transparent 20rem),
    radial-gradient(circle at 8% 86%, rgba(184, 139, 67, 0.22), transparent 18rem),
    linear-gradient(135deg, #f7ecda 0%, #fff9ee 48%, #e8f0eb 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.eq-test-shell,
.eq-results-shell,
.eq-checkout-shell {
  display: grid;
  width: min(900px, calc(100% - 28px));
  min-height: 100vh;
  margin: 0 auto;
  grid-template-rows: auto 1fr;
}

.eq-test-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.eq-test-count {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(31, 73, 100, 0.18);
  border-radius: 999px;
  color: var(--blueprint);
  background: rgba(255, 248, 233, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eq-test-card {
  align-self: center;
  min-height: min(720px, calc(100vh - 98px));
  padding: clamp(18px, 4vw, 38px);
  border: 1px solid rgba(45, 34, 24, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 248, 233, 0.96), rgba(247, 236, 218, 0.9)),
    radial-gradient(circle at 88% 0%, rgba(31, 73, 100, 0.16), transparent 18rem);
  box-shadow: 0 28px 90px rgba(38, 27, 17, 0.18);
}

.eq-test-topline,
.eq-results-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eq-test-topline strong,
.eq-results-panel-heading strong {
  color: var(--blueprint);
}

.eq-test-progress {
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 61, 52, 0.12);
}

.eq-test-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blueprint), var(--brass));
  transition: width 240ms ease;
}

.eq-test-question {
  min-height: 236px;
  padding: clamp(28px, 6vw, 58px) 0 22px;
}

.eq-test-question h1 {
  max-width: 740px;
  margin: 8px 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.05rem, 6.8vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.eq-test-answers {
  display: grid;
  gap: 10px;
}

.eq-test-answer {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(45, 34, 24, 0.14);
  border-radius: 16px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.eq-test-answer span {
  font-size: clamp(0.98rem, 3.8vw, 1.08rem);
  font-weight: 800;
  line-height: 1.32;
}

@media (hover: hover) {
  .eq-test-answer:hover {
    border-color: rgba(20, 61, 52, 0.42);
    background: rgba(232, 240, 235, 0.72);
    transform: translateY(-1px);
  }
}

.eq-test-answer.selected {
  border-color: rgba(20, 61, 52, 0.42);
  background: rgba(232, 240, 235, 0.72);
  transform: translateY(-1px);
}

.eq-test-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 18px;
}

.eq-test-actions button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(45, 34, 24, 0.16);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 248, 233, 0.72);
  cursor: pointer;
  font-weight: 900;
}

.eq-test-actions button:disabled {
  cursor: default;
  opacity: 0.42;
}

.eq-test-loading-panel {
  display: grid;
  min-height: 560px;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.eq-test-loading-gif {
  width: min(232px, 68vw);
  height: auto;
  margin-bottom: 4px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 42px rgba(20, 61, 52, 0.18));
}

.eq-test-loading-orb {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid rgba(184, 139, 67, 0.55);
  border-radius: 50%;
  color: var(--vellum);
  background: radial-gradient(circle at 35% 25%, #d7bd85, var(--brass) 34%, var(--green) 72%);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(20, 61, 52, 0.24);
}

.eq-test-loading-panel h1 {
  max-width: 620px;
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.05rem, 7vw, 4.15rem);
  line-height: 0.95;
}

.eq-test-loading-panel p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.eq-results-shell {
  gap: 22px;
  padding-bottom: 46px;
}

.eq-results-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 28px;
  align-items: end;
  padding: 18px 0 8px;
}

.eq-results-hero h1 {
  max-width: 760px;
  margin: 8px 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.eq-results-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 2.7vw, 1.28rem);
  line-height: 1.5;
}

.eq-results-score {
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(20, 61, 52, 0.26);
  border-radius: 50%;
  color: var(--vellum);
  background: conic-gradient(var(--brass) 0 310deg, rgba(255, 248, 233, 0.24) 310deg 360deg), var(--green);
  box-shadow: 0 24px 70px rgba(20, 61, 52, 0.24);
}

.eq-results-score span {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 0.85;
}

.eq-results-score small {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eq-results-panel {
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(45, 34, 24, 0.16);
  border-radius: 28px;
  background: rgba(255, 248, 233, 0.78);
  box-shadow: 0 22px 70px rgba(38, 27, 17, 0.14);
}

.eq-results-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.eq-results-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(110px, 1fr) 54px;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 14px;
  border: 1px solid rgba(45, 34, 24, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.36);
}

.eq-results-row strong,
.eq-results-row em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.eq-results-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eq-results-row i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 61, 52, 0.12);
}

.eq-results-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blueprint), var(--brass));
}

.eq-results-cta {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border-radius: 999px;
  color: var(--vellum);
  background: var(--green);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(20, 61, 52, 0.22);
}

.eq-results-empty {
  color: var(--muted);
  font-weight: 800;
}

.eq-checkout-shell {
  width: min(1120px, calc(100% - 28px));
  gap: 18px;
  padding-bottom: 44px;
}

.eq-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: 10px 0 44px;
}

.eq-checkout-copy h1 {
  max-width: 760px;
  margin: 8px 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3.15rem, 8.2vw, 7.1rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.eq-checkout-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.52;
}

.eq-checkout-tease {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 28px;
}

.eq-checkout-tease article {
  min-height: 142px;
  padding: 16px;
  border: 1px solid rgba(45, 34, 24, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 248, 233, 0.86), rgba(232, 240, 235, 0.58)),
    rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 46px rgba(38, 27, 17, 0.1);
}

.eq-checkout-tease span,
.eq-checkout-card-top span,
.eq-checkout-card-top strong {
  display: block;
  color: var(--blueprint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eq-checkout-tease strong {
  display: block;
  margin-top: 18px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 0.96;
}

.eq-checkout-tease small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.eq-score-locked-card strong {
  filter: blur(3px);
  letter-spacing: 0.08em;
  user-select: none;
}

.eq-dynamo-preview {
  max-width: 680px;
  margin-top: 16px;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid rgba(45, 34, 24, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 0%, rgba(184, 139, 67, 0.18), transparent 15rem),
    rgba(255, 248, 233, 0.66);
  box-shadow: 0 18px 46px rgba(38, 27, 17, 0.1);
}

.eq-dynamo-heading span,
.eq-dynamo-pair span {
  display: block;
  color: var(--blueprint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eq-dynamo-heading strong {
  display: block;
  margin-top: 8px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  line-height: 0.96;
}

.eq-dynamo-heading p,
.eq-dynamo-summary,
.eq-dynamo-paradox {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.42;
}

.eq-dynamo-summary {
  margin-top: 14px;
  color: var(--muted);
}

.eq-dynamo-paradox {
  padding-left: 12px;
  border-left: 3px solid rgba(184, 139, 67, 0.72);
  color: var(--ink);
}

.eq-dynamo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.eq-dynamo-pair article {
  padding: 14px;
  border: 1px solid rgba(45, 34, 24, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.36);
}

.eq-dynamo-pair strong {
  display: inline-flex;
  margin: 10px 8px 0 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.eq-checkout-card {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(20, 61, 52, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 0%, rgba(184, 139, 67, 0.22), transparent 16rem),
    linear-gradient(90deg, rgba(31, 73, 100, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(31, 73, 100, 0.07) 1px, transparent 1px),
    rgba(255, 248, 233, 0.9);
  background-size: auto, 30px 30px, 30px 30px, auto;
  box-shadow:
    0 30px 90px rgba(38, 27, 17, 0.2),
    0 0 0 8px rgba(255, 248, 233, 0.42),
    0 0 0 9px rgba(184, 139, 67, 0.12);
}

.eq-checkout-card::before {
  position: absolute;
  top: -98px;
  right: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(20, 61, 52, 0.22);
  border-radius: 50%;
  content: "";
}

.eq-checkout-card > * {
  position: relative;
  z-index: 1;
}

.eq-checkout-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -6px -6px 0;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(45, 34, 24, 0.12);
  border-radius: 18px;
  background: rgba(20, 61, 52, 0.08);
}

.eq-checkout-card-top strong {
  color: var(--green);
}

.eq-checkout-card h2 {
  margin: 22px 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.35rem, 5.6vw, 4rem);
  line-height: 0.94;
}

.eq-checkout-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.48;
}

.eq-checkout-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.eq-checkout-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.35;
}

.eq-checkout-list li::before {
  position: absolute;
  top: 0.14em;
  left: 0;
  color: var(--green);
  content: "✓";
}

.eq-payment-form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(20, 61, 52, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 233, 0.58);
}

.eq-payment-form label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eq-payment-form input,
.eq-payment-form #card-element {
  width: 100%;
  min-height: 50px;
  padding: 14px;
  border: 1px solid rgba(45, 34, 24, 0.18);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-weight: 800;
}

.eq-payment-form input:focus {
  border-color: rgba(20, 61, 52, 0.46);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 61, 52, 0.1);
}

.eq-payment-form button {
  min-height: 58px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  color: var(--vellum);
  background: linear-gradient(135deg, var(--green), #1f4964);
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 900;
  box-shadow:
    0 18px 42px rgba(20, 61, 52, 0.28),
    0 0 0 4px rgba(184, 139, 67, 0.14);
}

.eq-payment-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.eq-payment-form .eq-checkout-fineprint {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

#card-errors {
  min-height: 22px;
  color: var(--oxblood);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 900px) {
  .eq-checkout-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .eq-checkout-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.5vw, 3.45rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .eq-checkout-tease {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .eq-test-shell,
  .eq-results-shell,
  .eq-checkout-shell {
    width: min(100% - 22px, 520px);
  }

  .eq-test-card {
    align-self: start;
    min-height: auto;
    margin: 4px 0 32px;
    border-radius: 22px;
  }

  .eq-test-topline,
  .eq-results-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .eq-test-question {
    min-height: 210px;
    padding: 30px 0 18px;
  }

  .eq-test-answer {
    min-height: 60px;
    border-radius: 14px;
  }

  .eq-results-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .eq-results-score {
    width: 148px;
    height: 148px;
    order: -1;
  }

  .eq-results-score span {
    font-size: 4rem;
  }

  .eq-results-row {
    grid-template-columns: 1fr 48px;
  }

  .eq-results-row i {
    grid-column: 1 / -1;
    order: 3;
  }

  .eq-checkout-grid {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 0;
  }

  .eq-checkout-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.5vw, 3.45rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .eq-checkout-copy p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
  }

  .eq-checkout-tease {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .eq-checkout-tease article {
    min-height: 104px;
  }

  .eq-checkout-tease strong {
    margin-top: 12px;
  }

  .eq-dynamo-pair {
    grid-template-columns: 1fr;
  }

  .eq-checkout-card {
    border-radius: 22px;
  }

  .eq-checkout-page .eq-test-count {
    max-width: 116px;
    min-height: 34px;
    padding: 0 10px;
    overflow: hidden;
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
