:root{
  --aw-purple:#AB47BC;
  --aw-turquoise:#40B2C9;
  --aw-yellow:#FFC107;
  --aw-text:#151515;
  --aw-muted:#5f6470;
  --aw-border:#e8dfef;
  --aw-surface:#ffffff;
  --aw-surface-soft:#fbf9fd;
  --aw-danger:#dc2626;
  --aw-shadow:0 18px 46px rgba(63, 40, 77, .08);
}

.aw-root,
.aw-root *,
.aw-thanks,
.aw-thanks *{
  box-sizing:border-box;
}

.aw-root{
  max-width:1240px;
  margin:0 auto;
  padding:24px;
  font-family:"Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--aw-text);
}

.aw-shell{
  position:relative;
  overflow:hidden;
}

.aw-screen{
  opacity:0;
  transform:translateY(8px);
  will-change:transform, opacity;
  backface-visibility:hidden;
  -webkit-font-smoothing:antialiased;
}

.aw-screen.is-visible{
  opacity:1;
  transform:translateY(0);
  transition:
    opacity .34s ease,
    transform .34s cubic-bezier(.22,1,.36,1);
}

.aw-screen.is-leaving-forward{
  opacity:0;
  transform:translateX(-14px);
  transition:
    opacity .22s ease,
    transform .22s ease;
}

.aw-screen.is-entering-forward{
  opacity:0;
  transform:translateX(14px);
}

.aw-screen.is-leaving-backward{
  opacity:0;
  transform:translateX(14px);
  transition:
    opacity .22s ease,
    transform .22s ease;
}

.aw-screen.is-entering-backward{
  opacity:0;
  transform:translateX(-14px);
}

.aw-card{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(64,178,201,.09), transparent 35%),
    radial-gradient(circle at top left, rgba(171,71,188,.09), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(251,249,253,.98));
  border:1px solid rgba(171,71,188,.14);
  border-radius:28px;
  padding:32px;
  box-shadow:var(--aw-shadow);
}

.aw-entry{
  text-align:center;
  max-width:920px;
  margin:0 auto;
  padding-top:40px;
  padding-bottom:48px;
}

.aw-entry__eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 20px;
  padding:10px 16px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  border-radius:999px;
  color:var(--aw-purple);
  background:linear-gradient(135deg, rgba(171,71,188,.08), rgba(64,178,201,.08));
  border:1px solid rgba(171,71,188,.14);
}

.aw-entry__image-shell{
  margin:0 0 22px;
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(171,71,188,.06), rgba(64,178,201,.08));
}

.aw-entry__image{
  display:block;
  width:100%;
  max-height:280px;
  object-fit:cover;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .35s ease, transform .45s ease;
}

.aw-entry__image.is-loaded{
  opacity:1;
  transform:scale(1);
}

.aw-entry__title{
  font-size:clamp(36px,4.2vw,58px);
  line-height:1.15;
  letter-spacing:-.03em;
  margin:0 0 16px;
  font-weight:700;
}

.aw-entry__subtitle{
  font-size:clamp(18px,1.7vw,24px);
  line-height:1.65;
  color:var(--aw-muted);
  margin:0 auto 28px;
  max-width:720px;
}

.aw-progress{
  margin-bottom:22px;
}

.aw-progress__bar{
  height:10px;
  background:#efe8f4;
  border-radius:999px;
  overflow:hidden;
}

.aw-progress__fill{
  height:100%;
  background:var(--aw-purple);
  border-radius:999px;
  transition:width .48s cubic-bezier(.22,1,.36,1);
  box-shadow:0 0 12px rgba(171,71,188,.14);
}

.aw-progress__meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:12px;
}

.aw-progress__label{
  font-size:12px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#8b79a2;
}

.aw-progress__dots{
  display:flex;
  gap:8px;
  align-items:center;
}

.aw-progress__dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ddd3e5;
  transition:transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.aw-progress__dot.is-done{
  background:#c7b1d9;
}

.aw-progress__dot.is-current{
  background:var(--aw-purple);
  transform:scale(1.25);
}

.aw-progress__narrative{
  font-size:15px;
  line-height:1.5;
  color:var(--aw-muted);
}

.aw-question__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:stretch;
}

.aw-question__media{
  min-width:0;
  display:flex;
}

.aw-question__content{
  min-width:0;
}

.aw-question__image-shell{
  border-radius:22px;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(171,71,188,.07), rgba(64,178,201,.08));
  min-height:260px;
  width:100%;
  height:100%;
}

.aw-question__image-shell--empty{
  display:flex;
  align-items:center;
  justify-content:center;
}

.aw-question__image-placeholder{
  width:100%;
  height:100%;
  min-height:260px;
  background:linear-gradient(135deg, rgba(171,71,188,.05), rgba(64,178,201,.06));
}

.aw-question__image{
  display:block;
  width:100%;
  height:100%;
  min-height:260px;
  object-fit:cover;
  opacity:0;
  transform:scale(1.015);
  transition:opacity .35s ease, transform .45s ease;
}

.aw-question__image.is-loaded{
  opacity:1;
  transform:scale(1);
}

.aw-question__text{
  font-size:clamp(34px,3.4vw,54px);
  line-height:1.14;
  letter-spacing:-.03em;
  font-weight:700;
  margin:0 0 24px;
}

.aw-options{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.aw-option{
  display:flex;
  gap:14px;
  align-items:center;
  width:100%;
  padding:18px 20px;
  border:2px solid rgba(171,71,188,.14);
  border-radius:18px;
  background:#fff;
  cursor:pointer;
  text-align:left;
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.aw-option:hover{
  transform:translateY(-1px);
  border-color:rgba(64,178,201,.46);
  background:linear-gradient(180deg,#ffffff 0%, #fbfcfe 100%);
  box-shadow:0 12px 24px rgba(64,178,201,.08);
}

.aw-option:active{
  transform:scale(.99);
}

.aw-option.is-selected{
  transform:scale(1.01);
  border-color:rgba(171,71,188,.42);
  background:linear-gradient(135deg, rgba(171,71,188,.08), rgba(64,178,201,.08));
  box-shadow:0 14px 30px rgba(171,71,188,.10);
}

.aw-option__emoji{
  font-size:24px;
  line-height:1;
  flex-shrink:0;
}

.aw-option__text{
  font-size:clamp(16px,1.15vw,20px);
  line-height:1.45;
  color:#222;
  font-weight:600;
  flex:1;
}

.aw-option__check{
  opacity:0;
  transform:scale(.72);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--aw-purple);
  color:#fff;
  font-size:13px;
  font-weight:700;
  transition:opacity .2s ease, transform .2s ease;
  flex-shrink:0;
}

.aw-option.is-selected .aw-option__check{
  opacity:1;
  transform:scale(1);
}

.aw-bridge{
  text-align:center;
  max-width:980px;
  margin:0 auto;
  padding-top:42px;
  padding-bottom:42px;
}

.aw-bridge__visual{
  position:relative;
  width:118px;
  height:118px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.aw-bridge__halo{
  position:absolute;
  inset:0;
  border-radius:50%;
  background:radial-gradient(circle, rgba(171,71,188,.14) 0%, rgba(64,178,201,.10) 45%, transparent 74%);
}

.aw-bridge__avatar{
  position:relative;
  z-index:1;
  width:96px;
  height:96px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid rgba(171,71,188,.24);
  box-shadow:0 12px 28px rgba(171,71,188,.10);
}

.aw-bridge__symbol{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:90px;
  height:90px;
  border-radius:50%;
  font-size:42px;
  background:linear-gradient(135deg, rgba(171,71,188,.12), rgba(64,178,201,.12));
  color:var(--aw-purple);
  border:1px solid rgba(171,71,188,.18);
}

.aw-bridge__lead{
  font-size:12px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--aw-turquoise);
  margin:0 0 8px;
}

.aw-bridge__saint{
  font-size:clamp(26px,2.8vw,38px);
  line-height:1.2;
  color:var(--aw-purple);
  margin:0 0 14px;
  font-weight:700;
}

.aw-bridge__title{
  font-size:clamp(42px,4.4vw,64px);
  line-height:1.05;
  letter-spacing:-.04em;
  margin:0 0 14px;
  font-weight:700;
}

.aw-bridge__subtitle{
  font-size:clamp(20px,1.9vw,28px);
  color:var(--aw-muted);
  margin:0 0 16px;
  line-height:1.5;
}

.aw-bridge__promise{
  font-size:clamp(18px,1.55vw,24px);
  line-height:1.65;
  color:var(--aw-text);
  font-weight:600;
  margin:0 auto 18px;
  max-width:760px;
}

.aw-bridge__insight{
  max-width:780px;
  margin:0 auto 24px;
}

.aw-bridge__insight-line{
  display:block;
  width:72px;
  height:4px;
  border-radius:999px;
  margin:0 auto 18px;
  background:var(--aw-purple);
}

.aw-bridge__text{
  font-size:clamp(18px,1.5vw,24px);
  line-height:1.75;
  color:var(--aw-muted);
  margin:0;
}

.aw-form{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:560px;
  margin:0 auto;
}

.aw-input{
  width:100%;
  padding:18px 20px;
  border:2px solid rgba(171,71,188,.16);
  border-radius:16px;
  font-size:18px;
  font-family:"Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.aw-input:focus{
  outline:none;
  border-color:rgba(64,178,201,.58);
  box-shadow:0 0 0 4px rgba(64,178,201,.10);
  transform:translateY(-1px);
}

.aw-input.is-error{
  border-color:var(--aw-danger);
  box-shadow:0 0 0 4px rgba(220,38,38,.12);
}

.aw-error{
  font-size:14px;
  color:var(--aw-danger);
  min-height:22px;
  text-align:left;
}

.aw-privacy{
  font-size:13px;
  color:#8a8493;
  line-height:1.6;
  margin:2px 0 0;
}

.aw-button{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:18px 24px;
  border:0;
  border-radius:18px;
  color:#fff;
  font-size:18px;
  font-weight:700;
  font-family:"Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.aw-button--primary{
  background:linear-gradient(135deg, var(--aw-purple), var(--aw-turquoise));
  box-shadow:0 14px 30px rgba(171,71,188,.18);
}

.aw-button--primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 38px rgba(171,71,188,.22);
}

.aw-button:disabled{
  opacity:.65;
  cursor:not-allowed;
  transform:none;
}

.aw-button--pulse{
  animation:aw-pulse 2.1s ease-in-out infinite;
}

.aw-loading{
  text-align:center;
  max-width:920px;
  margin:0 auto;
  padding-top:52px;
  padding-bottom:52px;
}

.aw-loading__glow{
  position:absolute;
  left:50%;
  top:40px;
  width:260px;
  height:260px;
  transform:translateX(-50%);
  background:radial-gradient(circle, rgba(171,71,188,.11) 0%, rgba(64,178,201,.08) 42%, transparent 72%);
  pointer-events:none;
}

.aw-spinner{
  position:relative;
  width:62px;
  height:62px;
  border:5px solid rgba(171,71,188,.16);
  border-top-color:var(--aw-purple);
  border-right-color:var(--aw-turquoise);
  border-radius:50%;
  margin:0 auto 18px;
  animation:aw-spin 1s linear infinite;
}

.aw-loading__title{
  font-size:clamp(34px,3.4vw,52px);
  line-height:1.14;
  margin:0 0 14px;
  color:var(--aw-purple);
  letter-spacing:-.03em;
  font-weight:700;
}

.aw-loading__text{
  color:var(--aw-muted);
  line-height:1.7;
  margin:0 auto 22px;
  max-width:760px;
  font-size:clamp(18px,1.45vw,24px);
}

.aw-loading__bar{
  width:100%;
  max-width:520px;
  height:10px;
  border-radius:999px;
  background:#efe8f4;
  overflow:hidden;
  margin:0 auto 14px;
}

.aw-loading__bar-fill{
  width:0;
  height:100%;
  border-radius:999px;
  background:var(--aw-purple);
  animation:aw-loading-fill 2.4s cubic-bezier(.22,1,.36,1) forwards;
}

.aw-loading__hint{
  margin:0;
  font-size:14px;
  color:#8b8395;
}

.aw-thanks{
  max-width:760px;
  margin:0 auto;
  padding:54px 24px;
  text-align:center;
  font-family:"Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.aw-thanks__icon{
  font-size:48px;
  margin-bottom:14px;
}

.aw-thanks__title{
  font-size:32px;
  line-height:1.2;
  margin:0 0 14px;
}

.aw-thanks__text{
  font-size:18px;
  line-height:1.7;
  color:#555;
  margin:0 0 10px;
}

.aw-thanks__hint{
  font-size:14px;
  color:#8b8b8b;
  margin:0;
}

.aw-mobile{
  display:none;
}

.aw-desktop{
  display:inline;
}

@keyframes aw-spin{
  to{transform:rotate(360deg)}
}

@keyframes aw-pulse{
  0%,100%{box-shadow:0 14px 30px rgba(171,71,188,.18)}
  50%{box-shadow:0 18px 38px rgba(64,178,201,.20)}
}

@keyframes aw-loading-fill{
  0%{width:0}
  100%{width:88%}
}

@media (min-width: 980px){
  .aw-question__grid{
    grid-template-columns:minmax(420px, 44%) 1fr;
    gap:36px;
  }

  .aw-question__media{
    position:sticky;
    top:24px;
  }

  .aw-question__image-shell{
    min-height:100%;
    height:100%;
  }

  .aw-question__image{
    min-height:560px;
    max-height:none;
  }
}

@media (max-width: 979px){
  .aw-root{
    max-width:760px;
  }
}

@media (max-width: 767px){
  .aw-root{
    padding:16px;
  }

  .aw-card{
    padding:22px;
    border-radius:24px;
  }

  .aw-entry{
    padding-top:28px;
    padding-bottom:32px;
  }

  .aw-entry__title,
  .aw-question__text,
  .aw-bridge__title,
  .aw-loading__title{
    font-size:clamp(30px, 10vw, 42px);
  }

  .aw-entry__subtitle,
  .aw-progress__narrative,
  .aw-loading__text,
  .aw-bridge__subtitle,
  .aw-bridge__text,
  .aw-bridge__promise{
    font-size:16px;
  }

  .aw-option{
    padding:16px 16px;
  }

  .aw-option__text{
    font-size:17px;
  }

  .aw-input,
  .aw-button{
    font-size:17px;
  }

  .aw-question__image-shell{
    min-height:220px;
  }

  .aw-question__image{
    min-height:220px;
  }

  .aw-desktop{
    display:none;
  }

  .aw-mobile{
    display:inline;
  }

  .aw-privacy .aw-mobile,
  .aw-bridge__text .aw-mobile,
  .aw-bridge__promise .aw-mobile{
    display:block;
  }
}