@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 100%;
  scroll-behavior: smooth; }

@media (max-width: 56.25rem) {
  html {
    font-size: 95%; } }

@media (max-width: 36.25rem) {
  html {
    font-size: 90%; } }

body {
  font-family: "Inter", sans-serif;
  background-color: #2c2245;
  -webkit-font-smoothing: antialiased; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 2rem rgba(127, 119, 221, 0.15); }
  50% {
    text-shadow: 0 0 4rem rgba(127, 119, 221, 0.35); } }

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(0.75rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(1rem); }
  to {
    opacity: 1;
    transform: translateX(0); } }

[data-animate] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.65s ease, transform 0.65s ease; }

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0); }

h1 {
  font-family: "Lora", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.08;
  color: #ffffff; }
  h1 em {
    display: block;
    font-style: italic; }

p, .copy-text, .survey-q-label {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #ffffff; }
  p.strong, .copy-text.strong, .survey-q-label.strong {
    color: #5dcaa5; }

p:not([class]) + p:not([class]) {
  margin-top: 3rem; }

p:not([class]) + ol,
ol + p:not([class]) {
  margin-top: 3rem; }

.arrow-reveal {
  display: inline-flex;
  align-items: center; }
  .arrow-reveal::after {
    content: '→';
    display: inline-block;
    font-size: 1.125em;
    width: 0;
    line-height: 1;
    opacity: 0;
    overflow: hidden;
    margin-left: 0;
    transition: width 0.2s ease, opacity 0.2s ease, margin-left 0.2s ease; }
  .arrow-reveal:hover::after {
    width: 1.25em;
    opacity: 1;
    margin-left: 0.25rem; }

a {
  text-decoration: none;
  transition: color 0.2s ease; }

p a,
.copy-text a {
  color: #5dcaa5; }
  p a:hover,
  .copy-text a:hover {
    color: #5dcaa5;
    text-decoration: underline; }

:focus-visible {
  outline: 2px solid #5dcaa5;
  outline-offset: 3px;
  border-radius: 4px; }

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

.eyebrow {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5dcaa5;
  text-align: center; }

.callout {
  background: rgba(243, 232, 191, 0.12);
  border: 1px solid rgba(243, 232, 191, 0.35);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 1rem 0 1.25rem; }
  .callout.callout-danger {
    background: rgba(240, 154, 154, 0.11);
    border-color: rgba(240, 154, 154, 0.34); }

.bg-hero {
  background-color: #2c2245; }

.bg-stats,
.bg-footer {
  background-color: #1c152b; }

.logo {
  display: inline-flex;
  align-items: center; }
  .logo .logo-image {
    display: block;
    width: 12.25rem;
    height: 3.25rem;
    aspect-ratio: 39 / 10; }
  .logo .logo-image-footer {
    width: 6.25rem;
    height: 1.5rem;
    aspect-ratio: 98 / 25; }

header {
  position: sticky;
  top: 0;
  z-index: 10; }

nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #2c2245;
  transition: background 0.35s ease; }
  nav.is-scrolled {
    background: rgba(44, 34, 69, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px); }
  nav .nav-link {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease, border-color 0.2s ease; }
    nav .nav-link:hover {
      color: #5dcaa5;
      border-color: rgba(93, 202, 165, 0.5); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 5rem 7.5rem;
  background: linear-gradient(to bottom, #2c2245, #1c152b);
  text-align: center; }
  .hero h1 {
    max-width: 50rem;
    margin: 0 auto 1.75rem;
    animation: fadeUp 0.75s ease both; }
  .hero p {
    font-family: "Lora", serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #7f77dd;
    text-align: center;
    max-width: 47rem;
    margin: 0 auto;
    animation: fadeUp 0.75s 0.2s ease both; }

.stats {
  position: relative;
  overflow: hidden;
  padding: 3.75rem 5rem 5rem; }
  .stats::before {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 45%;
    height: 55%;
    background: radial-gradient(ellipse, rgba(93, 202, 165, 0.05) 0%, transparent 70%);
    pointer-events: none; }
  .stats .eyebrow {
    margin-bottom: 3.5rem; }

.stats-rows {
  max-width: 42.5rem;
  margin: 0 auto; }

.stat-row {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .stat-row.stat-delay-0 {
    transition-delay: 0s; }
  .stat-row.stat-delay-1 {
    transition-delay: 0.1s; }
  .stat-row.stat-delay-2 {
    transition-delay: 0.2s; }
  .stat-row.stat-delay-3 {
    transition-delay: 0.3s; }
  .stat-row:first-child {
    padding-top: 0; }
  .stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0; }

.stat-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.stat-pre {
  display: block;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375;
  color: #7f77dd;
  text-align: center; }

.stat-num {
  display: block;
  width: 100%;
  font-family: "Lora", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  color: #7f77dd;
  text-align: center;
  text-shadow: 0 0 2.5rem rgba(127, 119, 221, 0.15); }
  .stat-num.is-visible {
    animation: glowPulse 3s 0.4s ease-in-out infinite; }

.stat-body {
  margin-bottom: 1rem; }
  .stat-body strong {
    color: #5dcaa5;
    font-weight: 400; }

.small-paragraph {
  color: #d3d1c6;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5; }
  .small-paragraph.stat-cite {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: rgba(211, 209, 198, 0.6);
    margin-top: 0.5rem; }

.survey {
  position: relative;
  overflow: hidden;
  padding: 6.25rem 5rem 8.25rem;
  scroll-margin-top: 4rem;
  text-align: center; }
  .survey::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 65%;
    background: radial-gradient(ellipse, rgba(93, 202, 165, 0.08) 0%, transparent 65%);
    pointer-events: none; }
  .survey .eyebrow {
    margin-bottom: 2.25rem; }

.glass-card {
  position: relative;
  width: 100%;
  max-width: 47rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.75rem;
  text-align: left;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 1rem 3.75rem rgba(28, 21, 43, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); }

.selectable-btn {
  appearance: none;
  width: 100%;
  cursor: pointer;
  user-select: none;
  text-align: left;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
  .selectable-btn:hover {
    border-color: rgba(93, 202, 165, 0.35);
    background: rgba(93, 202, 165, 0.04); }
  .selectable-btn.on, .selectable-btn.is-selected {
    border-color: #5dcaa5;
    background: rgba(93, 202, 165, 0.1); }

.role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem; }
  .role-row:last-of-type {
    margin-bottom: 0; }
  .role-row.on .dot {
    background: transparent;
    border: 3px solid rgba(93, 202, 165, 0.25); }
    .role-row.on .dot::after {
      transform: scale(1); }

.role-label {
  flex: 1; }

.role-name {
  margin: 0;
  font-weight: 500;
  color: #ffffff; }

.dot {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.25rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid rgba(127, 119, 221, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, border-width 0.2s ease, background 0.2s ease; }
  .dot::after {
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #5dcaa5;
    transform: scale(0);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }

.card-rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin: 1.5rem 0 0; }

.card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: #1c152b;
  background: #5dcaa5;
  border: 1px solid #5dcaa5;
  border-radius: 6.25rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
  .btn:active {
    box-shadow: none; }
  .btn.is-disabled, .btn:disabled {
    background: transparent;
    color: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: not-allowed;
    pointer-events: auto;
    box-shadow: none; }
    .btn.is-disabled:hover, .btn:disabled:hover {
      background: transparent; }
  .btn.wide {
    width: auto;
    justify-content: center;
    margin-top: 1.5rem; }

@media (min-width: 56.3125rem) and (hover: hover) and (pointer: fine) {
  .btn:not(.is-disabled):not(:disabled):hover {
    background: #4db894;
    box-shadow: 0 6px 24px rgba(93, 202, 165, 0.35); } }

#modalOverlay {
  display: none;
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(10, 8, 28, 0.82);
  backdrop-filter: blur(6px); }
  #modalOverlay.is-open {
    display: flex; }
  #modalOverlay .card-footer {
    flex-direction: column;
    align-items: center; }
  #modalOverlay .btn.wide {
    display: flex;
    margin-left: auto;
    margin-right: auto; }
  #modalOverlay.is-overflowing {
    align-items: flex-start;
    justify-content: flex-start; }
    #modalOverlay.is-overflowing #modalBox {
      position: fixed;
      top: 5vw;
      left: 50%;
      transform: translateX(-50%);
      width: 90vw;
      max-width: 90vw; }

#modalBox {
  width: 100%;
  max-width: 47rem; }

@media (max-width: 36.25rem), (max-height: 48rem) {
  #modalOverlay {
    padding: 1.5rem 1rem;
    padding-top: env(safe-area-inset-top, 0.75rem); } }

#modalClose {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease; }
  #modalClose:hover {
    color: rgba(255, 255, 255, 0.7); }

[data-step] {
  display: none; }

[data-step].is-active {
  display: block; }

section.is-active .eyebrow {
  text-align: left; }

.time-choice-group {
  margin: 0;
  padding: 0;
  border: 0; }

.time-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 3rem; }

.time-card {
  padding: 1.25rem 1rem; }

.time-card-duration {
  margin-bottom: 0.25rem;
  font-family: "Lora", serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #ffffff; }

h2 {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  color: rgba(127, 119, 221, 0.5); }

.time-card-format {
  margin-top: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #5dcaa5; }

button.small-paragraph {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: none;
  cursor: pointer;
  text-align: center;
  background: transparent;
  appearance: none;
  opacity: 0.5;
  transition: opacity 0.2s ease; }
  button.small-paragraph:hover {
    opacity: 1; }

.survey-progress {
  overflow: hidden;
  height: 2px;
  margin: 2rem 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07); }

.survey-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: #5dcaa5;
  transition: width 0.3s ease; }

.survey-role-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(93, 202, 165, 0.1);
  font-size: 0.75rem; }

#q5content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }
  #q5content > * {
    margin-top: 0;
    margin-bottom: 0; }

.survey-q-number {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(200, 195, 240, 0.32); }

.radio-scale {
  display: flex;
  gap: 0.5rem; }

.radio-option {
  flex: 1;
  cursor: pointer;
  user-select: none;
  text-align: center;
  padding: 0.5rem 0.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  appearance: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(200, 195, 240, 0.65);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease; }
  .radio-option:hover {
    border-color: rgba(93, 202, 165, 0.3);
    color: rgba(200, 195, 240, 0.9); }
  .radio-option.is-selected {
    border-color: #5dcaa5;
    background: rgba(93, 202, 165, 0.08);
    color: #5dcaa5; }

.modal-label {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(211, 209, 198, 0.6); }

.scale-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 0.25rem; }

.survey-textarea,
.email-input {
  width: 100%;
  outline: none;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  margin-top: 1rem; }
  .survey-textarea::placeholder,
  .email-input::placeholder {
    color: rgba(200, 195, 240, 0.22); }
  .survey-textarea:focus,
  .email-input:focus {
    border-color: rgba(93, 202, 165, 0.38); }

.survey-textarea {
  resize: none;
  padding: 0.75rem 1rem;
  line-height: 1.6; }

.email-input {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem; }
  .email-input.is-invalid, .email-input.is-invalid:focus {
    border-color: rgba(240, 154, 154, 0.95); }

.survey-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  justify-content: space-between; }

.survey-btn-back {
  flex: 0 0 auto;
  cursor: pointer;
  padding: 0.75rem 1.75rem;
  border-radius: 6.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(200, 195, 240, 0.65);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease, color 0.2s ease; }
  .survey-btn-back:hover {
    border-color: #4db894;
    color: #4db894; }

.slide-in {
  animation: slideIn 0.2s ease forwards; }

.done-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(93, 202, 165, 0.12); }
  .done-check svg {
    width: 1.5rem;
    height: 1.5rem; }

.optin-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  cursor: pointer; }

.optin-checkbox {
  appearance: none;
  position: relative;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  border-radius: 0.35rem;
  border: 1.5px solid rgba(93, 202, 165, 0.7);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease; }
  .optin-checkbox::after {
    content: '';
    width: 0.6rem;
    height: 0.32rem;
    border: 2px solid #1c152b;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg) scale(0);
    transform-origin: center;
    margin-top: -0.03rem;
    margin-left: 0.01rem;
    transition: transform 0.15s ease; }
  .optin-checkbox:checked {
    border-color: #5dcaa5;
    background: #5dcaa5; }
    .optin-checkbox:checked::after {
      transform: rotate(-45deg) scale(1); }

#stepOptin .callout {
  margin-bottom: 1rem; }
  #stepOptin .callout .optin-row {
    margin-bottom: 0; }

#stepOptin > div:nth-of-type(2) {
  margin-bottom: 1rem;
  padding-top: 1.5rem; }
  #stepOptin > div:nth-of-type(2) .optin-row:first-of-type {
    margin-bottom: 0.75rem; }
  #stepOptin > div:nth-of-type(2) .optin-row:last-child {
    margin-bottom: 0; }

.submit-error {
  margin-top: 0.75rem;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(240, 154, 154, 0.95); }

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.75rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center; }
  footer .logo {
    justify-self: start; }

.foot-copy,
.foot-link {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: normal; }

.foot-copy {
  justify-self: center;
  text-align: center; }

.foot-right {
  justify-self: end; }

.foot-link {
  text-underline-offset: 3px; }
  .foot-link:hover {
    color: #5dcaa5;
    text-decoration: underline; }

@media (max-width: 56.25rem) {
  nav {
    padding: 1.25rem 2.5rem; }
    nav .logo-image {
      width: 10.3125rem;
      height: 2.6875rem; }
  .hero {
    padding: 6.5rem 2.5rem 5.5rem; }
    .hero p {
      font-size: 1.25rem; }
    .hero h1 {
      font-size: 3rem; }
  .stats, .survey, footer {
    padding-left: 2.5rem;
    padding-right: 2.5rem; }
  .glass-card {
    max-width: 100%; }
  .btn.arrow-reveal:hover::after {
    width: 0;
    opacity: 0;
    margin-left: 0; } }

@media (max-width: 36.25rem) {
  #modalOverlay {
    padding: 0.5rem 0.5rem 0.75rem;
    padding-top: env(safe-area-inset-top, 0.5rem); }
    #modalOverlay .glass-card {
      padding: 1rem 0.875rem 1rem;
      border-radius: 1rem; }
  #modalClose {
    padding: 0; }
  #modalOverlay h2,
  #modalOverlay .h2 {
    font-size: 1.5rem;
    line-height: 1.35; }
  #modalOverlay .eyebrow {
    margin-bottom: 1rem; }
  .time-cards {
    grid-template-columns: 1fr;
    margin-top: 1.5rem; }
  nav {
    padding: 1rem 1.5rem; }
    nav .logo-image {
      width: 9rem;
      height: 2.25rem; }
    nav .nav-link {
      font-size: 0.75rem;
      padding: 0;
      color: rgba(255, 255, 255, 0.65);
      border: none;
      border-radius: 0; }
      nav .nav-link:hover {
        color: rgba(255, 255, 255, 0.65);
        border: none; }
  .hero {
    padding: 3.25rem 1.5rem 3.75rem;
    text-align: left; }
    .hero h1 {
      font-size: 2.25rem;
      line-height: 1.1;
      max-width: 100%;
      margin-bottom: 1.25rem; }
    .hero p {
      text-align: left;
      font-size: 1rem;
      line-height: 1.65;
      max-width: 100%;
      margin: 0;
      color: #d3d1c6; }
  .stats {
    padding: 2.5rem 1.5rem 3.25rem; }
    .stats .eyebrow {
      margin-bottom: 1.75rem;
      text-align: left;
      letter-spacing: 0.12em; }
  .stats-rows {
    max-width: 100%; }
  .stat-row {
    display: block;
    padding: 1.75rem 0; }
    .stat-row:first-child {
      padding-top: 0; }
    .stat-row:last-child {
      border-bottom: none;
      padding-bottom: 0; }
  .stat-left {
    margin-bottom: 0.5rem;
    text-align: left; }
  .stat-num {
    font-size: 2.75rem;
    text-align: left;
    width: auto;
    display: inline-block; }
  .stat-body {
    margin-bottom: 0.5rem; }
  .small-paragraph.stat-cite {
    font-size: 0.75rem;
    color: rgba(211, 209, 198, 0.6);
    letter-spacing: 0.04em; }
  .survey {
    padding: 2.75rem 1.5rem 4rem;
    text-align: left; }
    .survey .eyebrow {
      letter-spacing: 0.12em;
      margin-bottom: 1.25rem; }
  .glass-card {
    padding: 1rem 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03); }
  .role-row {
    padding: 1rem 1rem;
    margin-bottom: 0.75rem; }
  .selectable-btn:not(.on):not(.is-selected):hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02); }
  .card-footer {
    justify-content: stretch;
    margin-top: 1.25rem; }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.75rem; }
    .btn:not(.is-disabled) {
      font-size: 1rem;
      font-weight: 500; }
  #modalOverlay .survey-nav {
    flex-direction: column-reverse;
    gap: 0.5rem; }
  #modalOverlay .survey-nav .survey-btn-back,
  #modalOverlay .survey-nav .btn {
    width: 100%;
    justify-content: center; }
  .radio-option {
    font-size: 0.875rem;
    padding: 0.625rem 0.25rem; }
  footer {
    padding: 1.5rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center; }
    footer .logo, footer .foot-copy, footer .foot-right {
      justify-self: center; }
    footer .foot-right {
      margin-top: 0.5rem; }
    footer .logo-image-footer {
      width: 5.25rem;
      height: 1.25rem; }
  .foot-link:hover {
    color: rgba(255, 255, 255, 0.5); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; }
  [data-animate] {
    opacity: 1;
    transform: none; } }
