:root {
  --ink: #30425e;
  --muted: #64738a;
  --line: #d8e3ee;
  --paper: #f7f6f4;
  --white: #ffffff;
  --navy: #30425e;
  --mid-blue: #4a6a9c;
  --steel-blue: #4f85b0;
  --light-blue: #c5e5ff;
  --gold: #c8a96e;
  --pale-blue: #ecf7ff;
  --shadow: 0 20px 45px rgba(48, 66, 94, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 246, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  color: var(--white);
  background: var(--mid-blue);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(48, 66, 94, 0.16);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 73px);
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 64px);
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: -18%;
  z-index: -2;
  content: "";
  background-image:
    repeating-linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.92) 7%,
      transparent 10%,
      transparent 12%,
      rgba(255, 255, 255, 0.78) 16%
    ),
    repeating-linear-gradient(
      100deg,
      var(--navy) 10%,
      var(--mid-blue) 15%,
      var(--steel-blue) 20%,
      var(--light-blue) 25%,
      var(--gold) 30%
    );
  background-position: 50% 50%, 50% 50%;
  background-size: 300% 300%, 220% 220%;
  filter: blur(12px);
  opacity: 0.58;
  mask-image: radial-gradient(ellipse at 100% 0%, black 9%, transparent 72%);
  animation: aurora-shift 16s linear infinite;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(48, 66, 94, 0.94) 0%, rgba(48, 66, 94, 0.86) 46%, rgba(48, 66, 94, 0.46) 100%),
    linear-gradient(180deg, rgba(48, 66, 94, 0.12), rgba(48, 66, 94, 0.86));
}

@keyframes aurora-shift {
  0% {
    background-position: 0% 50%, 50% 50%;
  }

  50% {
    background-position: 100% 50%, 70% 35%;
  }

  100% {
    background-position: 0% 50%, 50% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: 82px;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.lede {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.55;
}

.hero-actions,
.cta-actions,
.resource-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--mid-blue);
  box-shadow: 0 10px 22px rgba(48, 66, 94, 0.24);
}

.button.gold {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 10px 22px rgba(200, 169, 110, 0.3);
}

.button.secondary {
  color: var(--navy);
  background: transparent;
  border-color: rgba(48, 66, 94, 0.28);
}

.hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero .button.gold {
  color: var(--navy);
}

.diagnostic-panel {
  width: min(100%, 640px);
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.diagnostic-panel h2 {
  color: var(--navy);
  font-size: 30px;
}

.diagnostic-panel p,
.diagnostic-panel li {
  color: var(--muted);
  line-height: 1.55;
}

.hook-section,
.quiz-shell,
.results-section,
.resource-section,
.podcast-section,
.references-section {
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.hook-section {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  gap: 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--ink);
  color: var(--white);
}

.hook-section p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.mid-call {
  justify-self: center;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.path-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.path-card {
  min-height: 158px;
  padding: 22px;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.path-card.active {
  border-color: var(--mid-blue);
  box-shadow: 0 0 0 3px rgba(74, 106, 156, 0.16);
}

.path-card span,
.path-card strong,
.path-card small {
  display: block;
}

.path-card span {
  margin-bottom: 10px;
  color: var(--mid-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.path-card strong {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.15;
}

.path-card small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.quiz-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.progress-wrap {
  position: sticky;
  top: 73px;
  z-index: 10;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.progress-wrap > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.progress-wrap span {
  color: var(--muted);
}

.progress-track {
  height: 8px;
  overflow: hidden;
  background: var(--pale-blue);
  border-radius: 999px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--mid-blue), var(--steel-blue), var(--gold));
  transition: width 180ms ease;
}

.questions {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.question {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.question legend {
  padding: 0;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.question-category {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--mid-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.answers label {
  display: flex;
  min-height: 70px;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.answers label:has(input:checked) {
  border-color: var(--mid-blue);
  background: var(--pale-blue);
}

.answers input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--mid-blue);
}

.lead-capture {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.lead-capture label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.lead-capture > div {
  display: flex;
  gap: 10px;
}

input[type="email"],
input[type="text"] {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.lead-capture p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.results-section {
  background: var(--pale-blue);
}

.result-hero {
  max-width: 860px;
  margin-bottom: 24px;
}

.result-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.result-grid article,
.score-panel,
.coaching-copy,
.arc article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-grid ul,
.references-list {
  padding-left: 20px;
}

.result-grid li {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.score-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.score-panel div {
  padding: 18px;
  background: var(--pale-blue);
  border-radius: 8px;
}

.score-panel span,
.score-panel strong {
  display: block;
}

.score-panel span {
  color: var(--muted);
  font-size: 13px;
}

.score-panel strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 22px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--mid-blue));
  border-radius: 8px;
}

.cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.result-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(48, 66, 94, 0.08);
}

.result-actions h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.result-actions p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.result-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.arc {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.arc span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--mid-blue);
  border-radius: 999px;
  font-weight: 800;
}

.arc p,
.coaching-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.podcast-section {
  background:
    linear-gradient(180deg, var(--white), var(--pale-blue));
}

.podcast-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.podcast-button {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.podcast-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(48, 66, 94, 0.18);
}

.podcast-button strong,
.podcast-button small {
  display: block;
}

.podcast-button strong {
  margin-bottom: 4px;
  font-size: 19px;
  line-height: 1.18;
}

.podcast-button small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.platform-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.podcast-button.youtube {
  background: linear-gradient(135deg, #b72121, #e24d4d);
}

.podcast-button.apple {
  background: linear-gradient(135deg, #4a2f7a, #7a55c7);
}

.podcast-button.spotify {
  background: linear-gradient(135deg, #1f7a47, #35b36f);
}

.references-section {
  background: var(--white);
}

.references-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.references-list a {
  color: var(--mid-blue);
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 34px;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px) 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-top h2 {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 42px;
}

.footer-signature {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 300;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, 0.7fr) minmax(240px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--navy);
  background: linear-gradient(180deg, var(--white), var(--pale-blue));
  border: 1px solid rgba(197, 229, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.footer-logo {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.footer-brand p {
  max-width: 520px;
  color: var(--navy);
  line-height: 1.65;
}

.footer-brand a {
  color: var(--mid-blue);
  font-weight: 800;
  text-decoration: none;
}

.footer-brand address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.footer-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-podcast {
  display: grid;
  gap: 16px;
}

.footer-podcast h3 {
  max-width: 330px;
  margin: 0;
  color: var(--white);
}

.footer-platforms {
  display: flex;
  gap: 10px;
}

.footer-platforms a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease;
}

.footer-platforms a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.footer-platforms img {
  width: 34px;
  height: 34px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  text-decoration: none;
}

.result-page {
  background:
    radial-gradient(circle at top right, rgba(197, 229, 255, 0.7), transparent 34%),
    linear-gradient(180deg, var(--paper), var(--pale-blue));
}

.result-detail-hero {
  padding: clamp(64px, 10vw, 110px) clamp(18px, 5vw, 72px) 36px;
}

.result-detail-shell {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.result-detail-shell h1 {
  max-width: 840px;
  margin: 12px auto 18px;
  color: var(--navy);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
}

.result-summary {
  max-width: 720px;
  margin: 0 auto;
  color: var(--mid-blue);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
}

.result-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.result-detail-grid {
  display: grid;
  max-width: 1120px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
  padding: 24px clamp(18px, 5vw, 72px) 62px;
}

.result-panel {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(197, 229, 255, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.result-panel.wide {
  grid-column: 1 / -1;
}

.result-panel h2 {
  margin-top: 0;
  color: var(--navy);
}

.result-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.result-followup {
  max-width: 1120px;
  margin: 0 auto 72px;
}

.result-empty {
  max-width: 760px;
  margin: 0 auto 72px;
  padding: 34px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.result-page .site-footer {
  display: block;
  padding: clamp(28px, 5vw, 48px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--steel-blue), var(--mid-blue));
}

.footer-brand-card {
  display: grid;
  max-width: 980px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 26px);
  color: var(--navy);
  background: linear-gradient(180deg, var(--white), var(--pale-blue));
  border: 1px solid rgba(197, 229, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(48, 66, 94, 0.18);
}

.footer-brand-logo-box {
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(79, 133, 176, 0.18);
  border-radius: 8px;
}

.footer-brand-logo-box img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.footer-brand-card p {
  color: var(--navy);
  line-height: 1.55;
}

.footer-brand-card p + p {
  margin-top: 8px;
}

@media (max-width: 920px) {
  .hero,
  .hook-section,
  .path-selector,
  .result-grid,
  .result-detail-grid,
  .score-panel,
  .result-actions,
  .podcast-actions,
  .arc {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .answers {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-main,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-actions,
  .footer-bottom,
  .cta-band {
    flex-direction: column;
  }

  .footer-actions,
  .result-action-buttons,
  .footer-bottom div {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 44px;
  }

  .lead-capture > div {
    flex-direction: column;
  }

  .progress-wrap {
    top: 117px;
  }

  .footer-brand-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
