:root {
  --cream: #fbf7ef;
  --paper: #fffdf9;
  --beige: #f4ecdf;
  --navy: #092754;
  --blue: #1f4b8e;
  --gold: #d7a83f;
  --gold-light: #f4dfaa;
  --ink: #102a4c;
  --muted: #61738c;
  --line: #dfe3e7;
  --shadow: 0 18px 42px rgba(16, 42, 76, 0.12);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #b47b0b;
  outline-offset: 4px;
}

.site-footer :focus-visible,
.mission-survey :focus-visible,
.app-sidebar :focus-visible {
  outline-color: var(--gold-light);
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

#main-content:focus {
  outline: none;
}

#how-it-works,
#feedback,
#survey,
#faq {
  scroll-margin-top: 86px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid rgba(9, 39, 84, 0.1);
  backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(9, 39, 84, 0.18);
  box-shadow: 0 5px 16px rgba(16, 42, 76, 0.08);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 34px;
  margin-left: auto;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 7px 0;
}

.nav-links a[aria-current="true"] {
  color: var(--blue);
  font-weight: 700;
}

.nav-links a[aria-current="true"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--gold);
}

.menu-toggle {
  display: none;
}

.nav-links a,
.site-footer a {
  transition:
    color 170ms ease,
    text-decoration-color 170ms ease;
}

.site-footer a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 18px rgba(31, 75, 142, 0.18);
}

.button-secondary {
  border-color: rgba(31, 75, 142, 0.55);
  background: transparent;
  color: var(--navy);
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    background: #1a4380;
    box-shadow: 0 11px 22px rgba(31, 75, 142, 0.23);
  }

  .button-secondary:hover {
    border-color: var(--blue);
    background: rgba(31, 75, 142, 0.05);
    box-shadow: 0 7px 15px rgba(31, 75, 142, 0.09);
  }

  .button-gold:hover {
    border-color: var(--gold-light);
    background: #f8e8bd;
    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.12);
  }

  .button-on-dark:hover {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.07);
  }

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

  .site-footer a:hover {
    color: white;
    text-decoration-color: var(--gold-light);
  }

  summary:hover {
    color: var(--blue);
  }
}

.header-cta {
  min-height: 40px;
  padding-inline: 20px;
}

.hero {
  padding: 70px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 15px;
  color: #815900;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 580px;
  font-size: clamp(42px, 4.65vw, 62px);
  line-height: 1.08;
}

.hero-text {
  max-width: 555px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions,
.survey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row li + li {
  position: relative;
}

.trust-row li + li::before {
  content: "";
  width: 1px;
  height: 15px;
  margin-right: 6px;
  background: rgba(9, 39, 84, 0.16);
}

.trust-row svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--gold);
}

.app-preview {
  min-height: 430px;
  display: grid;
  grid-template-columns: 104px 1fr;
  overflow: hidden;
  border: 1px solid #d8d9d5;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  padding: 18px 12px;
  background: var(--navy);
  color: white;
}

.app-sidebar > strong {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--gold);
  color: var(--navy);
  font-size: 17px;
}

.app-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.app-sidebar nav span {
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 7px;
  color: #b6c5d8;
  font-size: 11px;
  font-weight: 700;
}

.app-sidebar nav span.active {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.app-main {
  padding: 21px;
}

.app-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.app-toolbar span,
.question-panel p,
.answer-panel p,
.coaching-panel p {
  color: var(--muted);
}

.app-toolbar span {
  display: block;
  font-size: 12px;
}

.app-toolbar strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 14px;
}

.question-count {
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--beige);
  color: var(--navy) !important;
  font-weight: 700;
}

.question-panel {
  padding: 24px 0 21px;
}

.question-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.question-meta > span {
  color: #815900;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.question-meta strong {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-size: 13px;
}

.question-meta svg {
  width: 15px;
  height: 15px;
}

.question-panel h2 {
  max-width: 460px;
  margin-top: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 23px;
  line-height: 1.3;
}

.question-panel p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.answer-feedback-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
}

.answer-panel,
.coaching-panel {
  min-height: 138px;
  padding: 15px;
  border-radius: 9px;
  background: var(--beige);
}

.answer-panel > span,
.coaching-panel > span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.answer-panel p,
.coaching-panel p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.4;
}

.answer-panel {
  position: relative;
  padding-right: 78px;
}

.preview-mic {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: white;
}

.preview-mic svg {
  width: 18px;
  height: 18px;
}

.voice-wave {
  position: absolute;
  right: 58px;
  bottom: 26px;
  height: 14px;
  display: flex;
  align-items: center;
  gap: 2px;
  opacity: 0;
}

.voice-wave i {
  width: 2px;
  height: 5px;
  display: block;
  border-radius: 99px;
  background: var(--blue);
  transform-origin: center;
}

.app-preview.is-revealed .voice-wave {
  animation: voice-cue-fade 420ms ease 500ms forwards;
}

.app-preview.is-revealed .voice-wave i {
  animation: voice-wave 3.6s ease-in-out 900ms infinite;
}

.app-preview.is-revealed .voice-wave i:nth-child(2) {
  animation-delay: 1.02s;
}

.app-preview.is-revealed .voice-wave i:nth-child(3) {
  animation-delay: 1.14s;
}

.coaching-panel {
  border-left: 3px solid var(--gold);
  background: #fff8e9;
}

.coaching-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 13px;
}

.section-heading {
  max-width: 670px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.feedback-copy h2,
.audience h2 {
  font-size: clamp(29px, 3vw, 38px);
  line-height: 1.15;
}

.section-heading p,
.feedback-copy > p,
.audience-inner > div > p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.how-it-works {
  padding: 76px 0 80px;
  background: var(--paper);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #d9c79f;
}

.process-list li {
  position: relative;
  text-align: center;
}

.process-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid #dfc478;
  border-radius: 50%;
  background: var(--paper);
  color: #aa771a;
}

.process-icon svg {
  width: 20px;
  height: 20px;
}

.process-list h3,
.outcome-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
}

.process-list p {
  max-width: 210px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.feedback {
  padding: 86px 0;
}

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 90px;
  align-items: center;
}

.feedback-copy > p {
  max-width: 560px;
  font-size: 17px;
}

.outcome-list {
  margin-top: 32px;
}

.outcome-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 17px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(9, 39, 84, 0.12);
}

.outcome-list article:first-child {
  border-top: 1px solid rgba(9, 39, 84, 0.12);
}

.outcome-list article > span {
  color: #815900;
  font-size: 12px;
  font-weight: 700;
}

.outcome-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.score-card {
  padding: 26px;
  border-radius: 12px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.score-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.score-header span {
  color: #cbd7e5;
  font-size: 12px;
}

.score-header strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.score-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.score-summary strong {
  color: var(--gold-light);
  font-size: 48px;
  line-height: 1;
}

.score-summary span {
  color: #cbd7e5;
}

.score-summary p,
.score-detail p {
  margin: 0;
  color: #d7e0eb;
  font-size: 14px;
  line-height: 1.45;
}

.score-divider {
  height: 1px;
  margin: 22px 0 5px;
  background: rgba(255, 255, 255, 0.14);
}

.score-dimensions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 17px 0 6px;
  padding: 0;
  list-style: none;
}

.score-dimensions li {
  padding: 5px 8px;
  border: 1px solid rgba(244, 223, 170, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce8f7;
  font-size: 11px;
  font-weight: 700;
}

.score-detail {
  padding: 15px 0;
}

.score-detail + .score-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.score-detail > span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.score-detail.accent {
  margin-top: 5px;
  padding: 14px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.audience {
  padding: 58px 0;
  background: var(--paper);
  border-top: 1px solid rgba(9, 39, 84, 0.08);
  border-bottom: 1px solid rgba(9, 39, 84, 0.08);
}

.audience-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.audience h2 {
  max-width: 360px;
}

.audience ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience li {
  padding: 10px 14px;
  border: 1px solid #ddd5c7;
  border-radius: 7px;
  background: var(--cream);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.mission-survey {
  padding: 78px 0;
  background: var(--navy);
  color: white;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 86px;
  align-items: center;
}

.mission-copy h2 {
  color: white;
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.3;
}

.mission-copy h2 span {
  color: var(--gold-light);
}

.mission-copy p,
.survey-copy p {
  margin: 20px 0 0;
  color: #cad7e7;
  line-height: 1.6;
}

.survey-copy {
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.survey-copy h3 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 27px;
}

.survey-actions {
  margin-top: 24px;
}

.button-gold {
  border-color: rgba(244, 223, 170, 0.72);
  background: var(--gold-light);
  color: var(--navy);
}

.button-on-dark {
  border-color: rgba(255, 255, 255, 0.48);
  color: white;
}

.faq {
  padding: 78px 0 82px;
}

.faq-inner {
  max-width: 840px;
}

.faq .section-heading {
  margin-bottom: 24px;
}

.faq-list {
  border-top: 1px solid rgba(9, 39, 84, 0.18);
}

details {
  border-bottom: 1px solid rgba(9, 39, 84, 0.18);
}

summary {
  position: relative;
  padding: 19px 42px 19px 0;
  color: var(--navy);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  transition: color 170ms ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before,
summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: #815900;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

summary::after {
  transform: translateY(-50%) rotate(90deg);
}

details[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer p {
  max-width: 680px;
  margin: -7px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

details[open] .faq-answer {
  animation: faq-answer-reveal 180ms ease-out both;
}

@keyframes faq-answer-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal].is-revealed {
  animation: section-enter 400ms ease-out both;
}

@keyframes section-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes voice-cue-fade {
  to {
    opacity: 0.72;
  }
}

@keyframes voice-wave {
  0%,
  16%,
  38%,
  100% {
    transform: scaleY(1);
  }

  24% {
    transform: scaleY(2);
  }

  31% {
    transform: scaleY(1.35);
  }
}

.site-footer {
  padding: 26px 0;
  background: #061f43;
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 46px;
  align-items: center;
}

.footer-logo {
  color: white;
}

.footer-brand p,
.copyright {
  margin: 4px 0 0;
  color: #cbd7e5;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 28px;
  color: #e4ebf3;
  font-size: 13px;
  font-weight: 600;
}

.copyright {
  margin: 0;
  white-space: nowrap;
}

.support-page {
  min-height: calc(100vh - 150px);
}

.support-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 82px 0;
}

.support-card {
  max-width: 760px;
  padding: 44px;
  border: 1px solid rgba(9, 39, 84, 0.12);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.support-card--center {
  max-width: 640px;
  text-align: center;
}

.support-card h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
}

.support-card p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.support-card .button {
  margin-top: 28px;
}

.inline-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-grid,
  .feedback-grid,
  .audience-inner,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-copy {
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy h1,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .app-preview {
    width: min(100%, 650px);
    margin: 0 auto;
  }

  .feedback-grid {
    gap: 44px;
  }

  .score-card {
    width: min(100%, 540px);
  }

  .audience-inner,
  .mission-grid {
    gap: 36px;
  }

  .survey-copy {
    padding: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 17px;
    text-align: center;
  }

  .support-hero {
    padding: 58px 0;
  }

  .support-card {
    padding: 30px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: auto;
    padding: 13px 0;
    gap: 10px;
    justify-content: flex-start;
  }

  .logo {
    margin-right: auto;
  }

  .menu-toggle {
    position: relative;
    order: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(9, 39, 84, 0.22);
    border-radius: 7px;
    background: transparent;
    color: var(--navy);
    transform: scale(1);
    transition:
      transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1),
      background-color 160ms ease,
      border-color 160ms ease;
  }

  .menu-toggle:active {
    transform: scale(0.9);
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(9, 39, 84, 0.34);
    background: rgba(31, 75, 142, 0.06);
  }

  .menu-toggle svg {
    position: absolute;
    width: 22px;
    height: 22px;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .menu-toggle .close-icon {
    opacity: 0;
    transform: rotate(-45deg) scale(0.8);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon {
    opacity: 0;
    transform: rotate(45deg) scale(0.8);
  }

  .menu-toggle[aria-expanded="true"] .close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 10px 14px 16px;
    border-top: 1px solid rgba(9, 39, 84, 0.1);
    border-bottom: 1px solid rgba(9, 39, 84, 0.15);
    background: var(--cream);
    box-shadow: 0 12px 22px rgba(16, 42, 76, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
  }

  .nav-links a[aria-current="true"] {
    background: rgba(31, 75, 142, 0.08);
  }

  .nav-links a[aria-current="true"]::after {
    top: 9px;
    right: auto;
    bottom: 9px;
    left: 2px;
    width: 3px;
    height: auto;
  }

  .header-cta {
    order: 3;
    padding-inline: 13px;
    font-size: 13px;
  }

  .hero {
    padding: 48px 0 56px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    justify-content: flex-start;
    text-align: left;
  }

  .trust-row li {
    width: 100%;
  }

  .trust-row li + li::before {
    display: none;
  }

  .app-preview {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
  }

  .app-sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }

  .app-sidebar nav span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 10px;
  }

  .app-main {
    padding: 16px;
  }

  .answer-feedback-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works,
  .feedback,
  .mission-survey,
  .faq {
    padding: 58px 0;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 34px 18px;
  }

  .process-list::before {
    display: none;
  }

  .process-list p {
    max-width: 240px;
  }

  .audience {
    padding: 48px 0;
  }

  .audience ul {
    gap: 8px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal].is-revealed {
    animation: none;
  }

  details[open] .faq-answer {
    animation: none;
  }

  .voice-wave {
    opacity: 0.62;
  }

  .app-preview.is-revealed .voice-wave,
  .app-preview.is-revealed .voice-wave i {
    animation: none;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 35px;
  }

  .logo {
    font-size: 21px;
  }

  .question-panel h2 {
    font-size: 19px;
  }

  .question-meta {
    align-items: flex-start;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    text-align: left;
  }

  .process-icon {
    margin: 0;
  }

  .process-list p {
    margin-left: 0;
  }

  .score-summary {
    grid-template-columns: 1fr;
  }

  .mission-copy h2 {
    font-size: 27px;
  }

  .survey-actions .button {
    width: 100%;
  }
}
