:root {
  --ink: #111827;
  --muted: #6B7280;
  --accent: #6B4EFF;
  --accent-hover: #5639e0;
  --accent-soft: rgba(107, 78, 255, 0.12);
  --success: #10B981;
  --error: #EF4444;

  --bg-page: #F9FAFB;
  --bg-card: #FFFFFF;
  --line: #E5E7EB;

  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 8px 20px rgba(17,24,39,0.08);
  --shadow-lg: 0 18px 40px rgba(17,24,39,0.10);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 9999px;

  --font: "Inter", system-ui, -apple-system, sans-serif;

  --max-wide: 1150px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: linear-gradient(165deg, #eaf3ff 0%, #f5f8ff 45%, #ffffff 100%);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.5;
}

button, input { font-family: inherit; }

button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ------------------------------------------------- */
/* Shell / Header                                    */
/* ------------------------------------------------- */

.adv-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  background: transparent;
}

.adv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto 28px;
}

.header-left {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.adv-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 16px;
  color: var(--ink);
}

.adv-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(107, 78, 255, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 0;
}

/* Language dropdown */
.lang-dropdown { position: relative; }

.lang-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 160px;
  padding: 6px 0;
  display: none;
  z-index: 10;
}

.lang-menu li {
  font-size: 13px;
  padding: 8px 12px;
  color: var(--ink);
}

.lang-menu li:hover { background: #f3f4f6; }

.lang-dropdown.is-open .lang-menu { display: block; }

/* ------------------------------------------------- */
/* Main / Screens                                    */
/* ------------------------------------------------- */

.adv-main {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.screen {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: none;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.screen.is-active { display: block; }

#screen-gender,
#screen-result {
  max-width: var(--max-wide);
}

h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}

h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}

.subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 32px;
}

.footnote {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
}

/* ------------------------------------------------- */
/* Buttons                                           */
/* ------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(107, 78, 255, 0.24);
}

.btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(107, 78, 255, 0.28);
}

.btn.primary:active { transform: translateY(0); }

.btn.btn-soft {
  background: rgba(107, 78, 255, 0.10);
  color: var(--accent);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(107, 78, 255, 0.18);
  box-shadow: none;
}

.btn.btn-soft:hover {
  background: rgba(107, 78, 255, 0.14);
  transform: translateY(-1px);
}

/* ------------------------------------------------- */
/* Quiz UI                                           */
/* ------------------------------------------------- */

.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 4px;
}

.back-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}

.back-btn:hover { color: var(--ink); }

.back-icon {
  width: 8px;
  height: 8px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.counter {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.progress {
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 40px;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: var(--radius-pill);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-title { margin-bottom: 12px; }

.question-hint {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  opacity: 0;
  transition: opacity 0.2s;
  height: 20px;
}

.question-hint.is-visible { opacity: 1; }

.options {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.option-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-btn:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.option-btn.is-selected {
  border-color: var(--accent);
  background: rgba(107, 78, 255, 0.07);
  box-shadow: 0 0 0 2px rgba(107, 78, 255, 0.16);
}

.option-btn:disabled {
  cursor: wait;
  opacity: 0.76;
}

#screen-quiz.is-transitioning .quiz-title,
#screen-quiz.is-transitioning .question-hint,
#screen-quiz.is-transitioning .options {
  opacity: 0.32;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

/* scale questions (1–5) */
#question-options.is-scale {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  align-items: stretch;
}

#question-options.is-scale .option-btn {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 14px 18px;
}

/* ------------------------------------------------- */
/* LANDING                                           */
/* ------------------------------------------------- */

#screen-gender .split-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  width: 100%;
  margin: 0 auto;
  padding: 8px 8px 24px;
}

#screen-gender .col-left {
  text-align: left;
  max-width: 530px;
}

#screen-gender .hero-tag {
  margin-bottom: 16px;
}

#screen-gender #gender-title {
  font-size: clamp(33px, 3.2vw, 46px);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

#screen-gender .subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 500px;
}

#screen-gender .gender-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(17, 24, 39, 0.82);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#screen-gender .gender-options {
  display: flex;
  gap: 14px;
  width: min(100%, 380px);
}

#screen-gender .btn-gender {
  flex: 1;
  min-height: 48px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  color: #fff;
  text-align: center;
}

#screen-gender .btn-gender.female {
  background: #c026d3;
  box-shadow: 0 12px 28px rgba(192, 38, 211, 0.22);
}

#screen-gender .btn-gender.male {
  background: #60a5fa;
  box-shadow: 0 12px 28px rgba(96, 165, 250, 0.2);
}

#screen-gender .btn-gender:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

#screen-gender .col-right {
  display: grid;
  gap: 14px;
  align-content: center;
}

#screen-gender .hero-image {
  width: 100%;
  max-width: clamp(440px, 45vw, 610px);
  height: auto;
  border-radius: 24px;
  display: block;
  justify-self: end;
}

#screen-gender .hero-checks {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  max-width: 540px;
  justify-self: end;
}

#screen-gender .hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(17, 24, 39, 0.9);
}

#screen-gender .hero-checks .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent);
  font-size: 11px;
  margin-top: 1px;
  flex: 0 0 18px;
}

/* ------------------------------------------------- */
/* AGE / EMAIL                                       */
/* ------------------------------------------------- */

#screen-age .info-pill {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}

#screen-age .age-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#screen-age .age-options .btn-age:last-child {
  grid-column: span 2;
}

#screen-age .btn-age {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #f3f4f6;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

#screen-age .btn-age:hover {
  background: #e5e7eb;
  transform: translateX(2px);
}

#screen-age .arrow {
  font-size: 18px;
  opacity: 0.4;
  transition: transform 0.2s;
}

#screen-age .btn-age:hover .arrow {
  transform: translateX(4px);
  opacity: 1;
}

#screen-email .form-grid {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 32px;
  text-align: left;
}

#screen-email .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#screen-email .input-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

#screen-email .text-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 16px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#screen-email .text-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}

#screen-email .text-input.is-invalid {
  border-color: var(--error);
}

.form-error {
  color: var(--error);
  font-size: 14px;
  margin-bottom: 24px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}

.form-error.is-visible {
  opacity: 1;
}

.link-btn {
  background: none;
  border: none;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(107, 78, 255, 0.22);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.link-btn:hover {
  text-decoration-color: rgba(107, 78, 255, 0.55);
  color: var(--ink);
}

/* ------------------------------------------------- */
/* RESULT                                            */
/* ------------------------------------------------- */

#screen-result {
  padding-bottom: 48px;
}

#screen-result .result-shell {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 10px 40px;
  text-align: left;
}

#screen-result .result-hero {
  text-align: center;
  margin: 8px auto 24px;
  padding: 10px 8px;
}

#screen-result .result-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(107, 78, 255, 0.1);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

#screen-result .result-hero-title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

#screen-result .result-hero-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 740px;
  margin: 0 auto;
}

#screen-result .result-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

#screen-result .result-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 20px 46px rgba(17, 24, 39, 0.1);
  padding: 28px;
  margin: 14px auto;
}

#screen-result .result-card--main {
  padding: 30px;
}

#screen-result .result-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

#screen-result .result-label {
  font-size: 11px;
  color: rgba(17, 24, 39, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 4px;
}

#screen-result .result-product {
  font-size: 12px;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.62);
}

#screen-result .result-profile {
  font-size: clamp(24px, 2.5vw, 33px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

#screen-result .result-mirror {
  font-size: 15px;
  color: rgba(17, 24, 39, 0.74);
  line-height: 1.7;
  margin-bottom: 18px;
}

#screen-result .result-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 860px) {
  #screen-result .result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#screen-result .result-box {
  padding: 16px;
  background: #fbfbff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 78, 255, 0.1);
}

#screen-result .result-box h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

#screen-result .result-box p {
  font-size: 14px;
  color: rgba(17, 24, 39, 0.74);
  line-height: 1.55;
}

#screen-result .result-two-col {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

@media (min-width: 980px) {
  #screen-result .result-two-col {
    grid-template-columns: 1.02fr 0.98fr;
    align-items: start;
  }
}

#screen-result .result-card-title h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

#screen-result .muted {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

#screen-result .muted.small {
  font-size: 12px;
}

#screen-result .snapshot-bars {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

#screen-result .snapshot-visuals {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

@media (min-width: 930px) {
  #screen-result .snapshot-visuals {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

#screen-result .radar-card,
#screen-result .tension-card {
  border: 1px solid rgba(17, 24, 39, 0.07);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px;
}

#screen-result .snapshot-radar {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

#screen-result .tension-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(17, 24, 39, 0.58);
  margin-bottom: 8px;
}

#screen-result .tension-scale {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: 38px;
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(16, 185, 129, 0.14) 0%,
      rgba(16, 185, 129, 0.14) 33%,
      rgba(99, 102, 241, 0.16) 33%,
      rgba(99, 102, 241, 0.16) 66%,
      rgba(245, 158, 11, 0.16) 66%,
      rgba(245, 158, 11, 0.16) 100%);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

#screen-result .tension-zone {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.68);
}

#screen-result .tension-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(107, 78, 255, 0.35);
  transform: translate(-50%, -50%);
  transition: left 0.3s ease;
}

#screen-result .tension-copy {
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(17, 24, 39, 0.74);
}

#screen-result .mode-pill {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(107, 78, 255, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

#screen-result .snapshot-meter {
  padding: 14px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--radius-md);
  background: #fff;
}

#screen-result .snapshot-meter-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 13px;
}

#screen-result .snapshot-meter-value {
  font-size: 12px;
  font-weight: 800;
  color: rgba(17, 24, 39, 0.56);
}

#screen-result .snapshot-meter-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

#screen-result .snapshot-meter-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(107, 78, 255, 0.46), rgba(107, 78, 255, 0.96));
}

#screen-result .snapshot-meter-note {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(17, 24, 39, 0.72);
}

#screen-result .result-support {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(17, 24, 39, 0.72);
}

#screen-result .plan-days {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

#screen-result .day-card {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 78, 255, 0.14);
  background: rgba(107, 78, 255, 0.04);
}

#screen-result .day-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

#screen-result .day-line {
  font-size: 13px;
  line-height: 1.52;
  color: rgba(17, 24, 39, 0.75);
}

#screen-result .day-line + .day-line {
  margin-top: 4px;
}

#screen-result .retake-box {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

#screen-result .bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

#screen-result .bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(17, 24, 39, 0.75);
}

#screen-result .bullets .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(107, 78, 255, 0.88);
  margin-top: 5px;
  flex: 0 0 10px;
}

#screen-result .how-steps {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding-left: 0;
}

#screen-result .how-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: flex-start;
}

#screen-result .how-step-index {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(107, 78, 255, 0.14);
  color: var(--accent);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

#screen-result .how-step-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(17, 24, 39, 0.75);
}

#screen-result .companion-card {
  background: linear-gradient(140deg, #ffffff 0%, #f6f7ff 100%);
}

#screen-result .coming-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#screen-result .other-tests {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 24, 39, 0.07);
}

#screen-result .other-tests-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(17, 24, 39, 0.56);
  margin-bottom: 8px;
}

#screen-result .other-tests-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

#screen-result .other-tests .coming-link {
  margin-top: 0;
}

#screen-result .faq {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

#screen-result .faq-item {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: #fff;
}

#screen-result .faq-trigger {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  font-weight: 900;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  padding-right: 20px;
  position: relative;
}

#screen-result .faq-a {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.58;
}

#screen-result .faq-trigger::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  color: rgba(17, 24, 39, 0.55);
}

#screen-result .faq-trigger[aria-expanded="true"]::after {
  content: "−";
}

/* ------------------------------------------------- */
/* Success                                           */
/* ------------------------------------------------- */

body.success-page .adv-main {
  max-width: 680px;
}

body.success-page .screen {
  max-width: 680px;
}

body.success-page .success-status-card {
  text-align: center;
  max-width: 460px;
  margin: 56px auto 0;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

/* ------------------------------------------------- */
/* Mobile                                            */
/* ------------------------------------------------- */

@media (max-width: 900px) {
  .adv-header {
    margin-bottom: 22px;
  }

  #screen-gender .split-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-inline: 0;
  }

  #screen-gender .col-left {
    max-width: 100%;
    text-align: center;
    justify-self: center;
  }

  #screen-gender .subtitle {
    margin-inline: auto;
  }

  #screen-gender .gender-options {
    margin-inline: auto;
  }

  #screen-gender .hero-image {
    max-width: min(92vw, 560px);
    justify-self: center;
  }

  #screen-gender .hero-checks {
    justify-self: center;
    max-width: 480px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .adv-shell {
    padding: 24px 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .quiz-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .options.is-scale {
    flex-direction: column !important;
  }

  .options.is-scale .option-btn {
    padding: 16px;
  }

  #screen-age .age-options {
    grid-template-columns: 1fr;
  }

  #screen-age .age-options .btn-age:last-child {
    grid-column: span 1;
  }

  #screen-result .result-card {
    padding: 20px;
  }

  #screen-result .result-card--main {
    padding: 22px;
  }

  #screen-result .day-card {
    padding: 12px;
  }

  #screen-result .result-hero-actions {
    gap: 10px;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
