@font-face {
  font-family: "Tiempos Text";
  src: url("../fonts/tiempos/TiemposText-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.coached-build-loader {
  width: 560px;
  max-width: 100%;
  margin: 24px auto 0;
  box-sizing: border-box;
  background: radial-gradient(120% 90% at 50% 35%, #fbf9f4 0%, #f5f1ea 70%);
  border-radius: 24px;
  padding: 48px 40px 40px;
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .25);
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

.coached-loader-eyebrow {
  margin-bottom: 6px;
  color: #8fae8b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.coached-loader-stage {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 14px auto 6px;
}

.coached-loader-stage canvas,
.coached-loader-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.coached-loader-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(45, 106, 79, .18), transparent 68%);
  border-radius: 50%;
  animation: coached-loader-breathe 3.6s ease-in-out infinite;
}

.coached-loader-headline {
  margin-top: 8px;
  color: #1a1a1a;
  font-family: "Tiempos Text", Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0;
}

.coached-loader-step {
  min-height: 22px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.coached-loader-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2d6a4f;
  animation: coached-loader-pulsedot 1.2s ease-in-out infinite;
  flex: none;
}

.coached-loader-step-text {
  color: #2d6a4f;
  font-size: 14.5px;
  font-weight: 700;
  transition: opacity .25s ease;
}

.coached-loader-step-count {
  color: #8fae8b;
  font-size: 12.5px;
  font-weight: 600;
}

.coached-loader-barwrap {
  width: 78%;
  margin: 20px auto 0;
}

.coached-loader-bar {
  height: 5px;
  overflow: hidden;
  background: #e2ddd2;
  border-radius: 3px;
}

.coached-loader-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #8fae8b, #2d6a4f);
  border-radius: 3px;
  transition: width .25s linear;
}

.coached-loader-meta {
  min-height: 18px;
  margin-top: 9px;
  color: #6b6b6b;
  font-size: 12.5px;
  font-weight: 600;
}

.coached-loader-foot {
  margin-top: 22px;
  color: #6b6b6b;
  font-size: 12.5px;
  line-height: 1.5;
}

.coached-loader-state {
  min-height: 20px;
  max-width: 390px;
  margin: 14px auto 0;
  color: #526458;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
}

.coached-loader-action {
  display: none;
  width: max-content;
  max-width: 100%;
  margin: 14px auto 0;
  padding: 11px 18px;
  border-radius: 999px;
  background: #184d19;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.coached-build-loader.is-error .coached-loader-eyebrow,
.coached-build-loader.is-error .coached-loader-step-text,
.coached-build-loader.is-error .coached-loader-meta {
  color: #8a1f11;
}

.coached-build-loader.is-error .coached-loader-step-dot,
.coached-build-loader.is-error .coached-loader-fill {
  background: #8a1f11;
}

@keyframes coached-loader-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(.92); opacity: .7; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

@keyframes coached-loader-pulsedot {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .coached-loader-glow,
  .coached-loader-step-dot {
    animation: none;
  }
}

@media (max-width: 640px) {
  .coached-build-loader {
    padding: 36px 22px 30px;
    border-radius: 20px;
  }

  .coached-loader-stage {
    width: 238px;
    height: 238px;
  }

  .coached-loader-headline {
    font-size: 24px;
  }

  .coached-loader-barwrap {
    width: 86%;
  }
}

/* Progressive results reveal on the Form v3 report-processing screen. */
body.coached-report-build-active::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(23, 63, 0, .32);
  pointer-events: none;
}

body.coached-report-build-active #quizBox {
  position: relative;
  z-index: 901;
}

.coached-reveal-card {
  width: 560px;
  max-width: 100%;
  margin: 24px auto 0;
  box-sizing: border-box;
  background: radial-gradient(120% 90% at 50% 20%, #fbf9f4 0%, #f5f1ea 70%);
  border-radius: 24px;
  padding: 48px 40px 40px;
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .45);
  overflow: hidden;
  transition: width 1s cubic-bezier(.3, .7, .2, 1), padding .9s ease;
}

.coached-reveal-card.is-ledger {
  width: 720px;
  padding: 34px 46px 40px;
}

.coached-reveal-card .coached-build-loader {
  width: auto;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.coached-reveal-card.is-ledger .coached-build-loader {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 20px;
  align-items: center;
  text-align: left;
}

.coached-reveal-card.is-ledger .coached-loader-stage {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 92px;
  height: 92px;
  margin: 0;
}

.coached-reveal-card.is-ledger .coached-loader-particles {
  display: none;
}

.coached-reveal-card.is-ledger .coached-loader-glow {
  width: 66px;
  height: 66px;
}

.coached-reveal-card.is-ledger .coached-loader-eyebrow {
  grid-column: 2;
  margin: 0 0 2px;
  text-align: left;
}

.coached-reveal-card.is-ledger .coached-loader-headline {
  grid-column: 2;
  margin: 0;
  font-size: 21px;
}

.coached-reveal-card.is-ledger .coached-loader-step {
  grid-column: 2;
  justify-content: flex-start;
  margin-top: 6px;
}

.coached-reveal-card.is-ledger .coached-loader-barwrap {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 18px;
}

.coached-reveal-card.is-ledger .coached-loader-foot {
  display: none;
}

.coached-reveal-card.is-ledger .coached-loader-state {
  grid-column: 1 / -1;
  margin: 8px auto 0;
}

.coached-reveal-card .coached-build-loader,
.coached-reveal-card .coached-loader-stage {
  transition: all .8s cubic-bezier(.3, .7, .2, 1);
}

@keyframes coached-reveal-etch {
  to { stroke-dashoffset: 0; }
}

@keyframes coached-reveal-soft {
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes coached-reveal-grow {
  to { transform: scaleX(1); }
}

@keyframes coached-reveal-pulse {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}

@keyframes coached-reveal-shimmer {
  0% { transform: translateX(-30%); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateX(130%); opacity: 0; }
}

@keyframes coached-reveal-dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
}

.coached-reveal-etch {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: coached-reveal-etch var(--t, 1.1s) cubic-bezier(.45, 0, .25, 1) forwards;
  animation-delay: var(--d);
}

.coached-reveal-fade {
  opacity: 0;
  animation: coached-reveal-soft .6s ease forwards;
  animation-delay: var(--d);
}

.coached-reveal-rise {
  opacity: 0;
  transform: translateY(7px);
  animation: coached-reveal-soft .7s cubic-bezier(.2, .7, .25, 1) forwards;
  animation-delay: var(--d);
}

.coached-reveal-rule-grow {
  transform: scaleX(0);
  transform-origin: center;
  animation: coached-reveal-grow .9s cubic-bezier(.3, .7, .2, 1) forwards;
  animation-delay: var(--d);
}

.coached-reveal-ledger {
  display: none;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

.coached-reveal-card.is-ledger .coached-reveal-ledger {
  display: block;
}

.coached-reveal-rule {
  height: 1px;
  margin: 24px 0 0;
  background: rgba(73, 57, 39, .35);
}

.coached-reveal-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 20px 0 0;
}

.coached-reveal-status-dot,
.coached-reveal-pending-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
  background: #2d6a4f;
  animation: coached-reveal-pulse 1.2s ease-in-out infinite;
}

.coached-reveal-status-text {
  color: #2d6a4f;
  font-size: 13px;
  font-weight: 700;
}

.coached-reveal-intro {
  max-width: 440px;
  margin: 8px auto 0;
  color: #6d6357;
  font: italic 400 14px/1.6 "Tiempos Text", Georgia, serif;
  text-align: center;
}

.coached-reveal-toggle {
  display: block;
  margin: 10px auto 0;
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  color: #a49a8a;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.coached-reveal-toggle:hover {
  color: #6d6357;
}

.coached-reveal-collapse {
  overflow: hidden;
  transition: max-height .55s cubic-bezier(.3, .7, .2, 1), opacity .45s ease;
}

.coached-reveal-ledger.is-collapsed .coached-reveal-collapse {
  opacity: 0;
}

.coached-reveal-ledger.is-collapsed .coached-reveal-intro {
  display: none;
}

.coached-reveal-slots {
  max-width: 500px;
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
}

.coached-reveal-slot {
  position: relative;
  min-height: 40px;
  padding: 7px 0 8px 34px;
}

.coached-reveal-numeral {
  position: absolute;
  top: 9px;
  left: 2px;
  color: rgba(109, 99, 87, .55);
  font: 400 11px/1 "Tiempos Text", Georgia, serif;
  letter-spacing: .08em;
}

.coached-reveal-ghost {
  position: relative;
  padding-top: 10px;
}

.coached-reveal-ghost > span {
  display: block;
  height: 0;
  border-bottom: 1px dotted rgba(109, 99, 87, .38);
}

.coached-reveal-ghost > i {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(45, 106, 79, .5);
  transition-property: width;
  transition-timing-function: linear;
}

.coached-reveal-slot.is-filled .coached-reveal-ghost {
  display: none;
}

.coached-reveal-entry {
  display: none;
}

.coached-reveal-slot.is-filled .coached-reveal-entry {
  display: block;
}

.coached-reveal-entry-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.coached-reveal-entry-name {
  color: #6d6357;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.coached-reveal-placement {
  color: #1e1a15;
  font: italic 400 13px/1.2 "Tiempos Text", Georgia, serif;
  opacity: 0;
  filter: blur(2.5px);
  transform: translateY(3px);
  animation: coached-reveal-soft .9s cubic-bezier(.2, .7, .25, 1) forwards;
  animation-delay: var(--d);
}

.coached-reveal-scale {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.coached-reveal-rail {
  position: relative;
  height: 9px;
  flex: 1;
}

.coached-reveal-rail-line {
  position: absolute;
  top: 3px;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background: #e2ddd2;
  transform: scaleX(0);
  transform-origin: center;
  animation: coached-reveal-grow .8s cubic-bezier(.3, .7, .2, 1) forwards;
  animation-delay: var(--d);
}

.coached-reveal-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 9px;
  background: #cfc8b8;
  opacity: 0;
  animation: coached-reveal-soft .5s ease forwards;
  animation-delay: var(--d);
}

.coached-reveal-rail-fill {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--c, #2d6a4f);
  opacity: .32;
}

.coached-reveal-rail-dot {
  position: absolute;
  top: 4.5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c, #2d6a4f);
  box-shadow: 0 0 0 3px rgba(255, 253, 247, .85);
  transform: translate(-50%, -50%) scale(0);
}

.coached-reveal-pole {
  flex: none;
  color: #a49a8a;
  font-size: 9.5px;
  letter-spacing: .02em;
  opacity: 0;
  animation: coached-reveal-soft .6s ease forwards;
  animation-delay: var(--d);
}

.coached-reveal-pole.is-dominant {
  color: var(--c, #2d6a4f);
  font-weight: 700;
}

.coached-reveal-arch {
  display: none;
  max-width: 500px;
  margin: 18px auto 0;
}

.coached-reveal-arch.is-on {
  display: block;
}

.coached-reveal-arch-rule {
  height: 1px;
  margin: 0 0 18px;
  background: rgba(73, 57, 39, .3);
}

.coached-reveal-arch-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: left;
}

.coached-reveal-arch-seal {
  display: block;
  width: 62px;
  height: 62px;
  flex: none;
}

.coached-reveal-arch-eyebrow {
  margin: 0 0 3px;
  color: #8fae8b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.coached-reveal-arch-name {
  margin: 0;
  color: #1e1a15;
  font: 400 19px/1.2 "Tiempos Text", Georgia, serif;
}

.coached-reveal-arch-sub {
  margin: 4px 0 0;
  color: #6d6357;
  font-size: 11.5px;
  line-height: 1.45;
}

.coached-reveal-family {
  display: none;
}

.coached-reveal-family.is-on {
  display: inline;
}

.coached-reveal-pending {
  display: none;
  max-width: 500px;
  margin: 24px auto 0;
}

.coached-reveal-card.is-ledger .coached-reveal-pending {
  display: block;
}

.coached-reveal-pending-rule {
  height: 1px;
  margin: 0 0 16px;
  background: rgba(73, 57, 39, .22);
}

.coached-reveal-pending-lines {
  position: relative;
  overflow: hidden;
  padding: 2px 0;
}

.coached-reveal-pending-lines > div {
  height: 0;
  margin: 11px 0;
  border-bottom: 1px dotted rgba(109, 99, 87, .3);
}

.coached-reveal-pending-lines > div:nth-child(2) {
  width: 92%;
}

.coached-reveal-pending-lines > div:nth-child(3) {
  width: 76%;
}

.coached-reveal-pending-lines::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  background: linear-gradient(100deg, transparent 0%, rgba(45, 106, 79, .1) 45%, rgba(45, 106, 79, .16) 50%, rgba(45, 106, 79, .1) 55%, transparent 100%);
  animation: coached-reveal-shimmer 3.4s ease-in-out infinite;
}

.coached-reveal-finish-percent {
  display: none;
  margin: 14px 0 0;
  color: #173f00;
  font: 500 42px/1 "Tiempos Text", Georgia, serif;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.coached-reveal-card.is-closing .coached-reveal-finish-percent {
  display: block;
}

.coached-reveal-pending-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 14px 0 0;
  color: #2d6a4f;
  font-size: 15.5px;
  font-weight: 700;
  text-align: center;
}

.coached-reveal-pending-ellipsis {
  display: inline-block;
  min-width: 14px;
  text-align: left;
}

.coached-reveal-pending-ellipsis::after {
  content: "";
  animation: coached-reveal-dots 1.6s steps(1) infinite;
}

.coached-reveal-pending-sub {
  margin: 6px 0 0;
  color: #6b6b6b;
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}

.coached-reveal-check {
  display: block;
  margin: 14px auto 0;
  padding: 8px 18px;
  appearance: none;
  border: 1px solid rgba(45, 106, 79, .4);
  border-radius: 999px;
  background: none;
  color: #2d6a4f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.coached-reveal-check:hover {
  background: rgba(45, 106, 79, .08);
}

.coached-reveal-card.is-done .coached-reveal-ledger {
  opacity: .55;
  transition: opacity .8s ease;
}

.coached-reveal-card.is-done .coached-reveal-status-dot {
  animation: none;
  opacity: 1;
}

.coached-reveal-card.is-done .coached-reveal-pending-lines,
.coached-reveal-card.is-done .coached-reveal-check,
.coached-reveal-card.is-done .coached-reveal-pending-pulse,
.coached-reveal-card.is-done .coached-reveal-pending-ellipsis,
.coached-reveal-card.is-done .coached-reveal-intro {
  display: none;
}

.coached-reveal-restoring .coached-reveal-etch {
  animation-duration: .4s;
  animation-delay: calc(var(--d) * .12);
}

.coached-reveal-restoring .coached-reveal-rise,
.coached-reveal-restoring .coached-reveal-fade,
.coached-reveal-restoring .coached-reveal-placement,
.coached-reveal-restoring .coached-reveal-notch,
.coached-reveal-restoring .coached-reveal-pole {
  animation-duration: .35s;
  animation-delay: calc(var(--d) * .12);
}

.coached-reveal-restoring .coached-reveal-rule-grow,
.coached-reveal-restoring .coached-reveal-rail-line {
  animation-duration: .4s;
  animation-delay: calc(var(--d) * .12);
}

.coached-reveal-restoring .coached-reveal-card,
.coached-reveal-restoring .coached-build-loader,
.coached-reveal-restoring .coached-loader-stage {
  transition-duration: .2s;
}

@media (prefers-reduced-motion: reduce) {
  .coached-reveal-etch {
    animation: none;
    stroke-dashoffset: 0;
  }

  .coached-reveal-rise,
  .coached-reveal-fade,
  .coached-reveal-placement,
  .coached-reveal-notch,
  .coached-reveal-pole {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .coached-reveal-rule-grow,
  .coached-reveal-rail-line {
    animation: none;
    transform: scaleX(1);
  }

  .coached-reveal-pending-lines::after {
    animation: none;
    opacity: 0;
  }

  .coached-reveal-status-dot,
  .coached-reveal-pending-pulse {
    animation: none;
  }

  .coached-reveal-pending-ellipsis::after {
    animation: none;
    content: "...";
  }
}

@media (max-width: 640px) {
  .coached-reveal-card {
    padding: 34px 22px 30px;
    border-radius: 20px;
  }

  .coached-reveal-card.is-ledger {
    width: 100%;
    padding: 24px 18px 30px;
  }

  .coached-reveal-card.is-ledger .coached-build-loader {
    grid-template-columns: 64px 1fr;
    column-gap: 14px;
  }

  .coached-reveal-card.is-ledger .coached-loader-stage {
    width: 64px;
    height: 64px;
  }

  .coached-reveal-card.is-ledger .coached-loader-glow {
    width: 46px;
    height: 46px;
  }

  .coached-reveal-card.is-ledger .coached-loader-headline {
    font-size: 17.5px;
  }

  .coached-reveal-card.is-ledger .coached-loader-step {
    margin-top: 3px;
  }

  .coached-reveal-intro {
    font-size: 13px;
  }

  .coached-reveal-slot {
    padding-left: 22px;
  }

  .coached-reveal-numeral {
    font-size: 10px;
  }

  .coached-reveal-entry-name {
    font-size: 9.5px;
    letter-spacing: 1.6px;
  }

  .coached-reveal-placement {
    font-size: 12.5px;
  }

  .coached-reveal-scale {
    gap: 7px;
  }

  .coached-reveal-pole {
    font-size: 9px;
  }

  .coached-reveal-pending-title {
    font-size: 14px;
  }

  .coached-reveal-arch-strip {
    gap: 14px;
  }

  .coached-reveal-arch-seal {
    width: 52px;
    height: 52px;
  }

  .coached-reveal-arch-name {
    font-size: 17px;
  }

  .coached-reveal-finish-percent {
    font-size: 38px;
  }
}
