:root {
  --bg:#f5f2ea;
  --surface:#fffdf8;
  --surface2:#ece8dd;
  --text:#24231f;
  --muted:#706d64;
  --accent:#6657d8;
  --accent2:#9287ed;
  --green:#4d8966;
  --line:rgba(36,35,31,.11);
  --shadow:0 24px 80px rgba(51,45,30,.12);
  --radius:28px
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.55;
  overflow-x:hidden
}
a {
  color:inherit;
  text-decoration:none
}
button {
  font:inherit
}
.orb {
  position:fixed;
  border-radius:50%;
  pointer-events:none;
  z-index:-1
}
.orb.one {
  width:460px;
  height:460px;
  right:-170px;
  top:-190px;
  background:radial-gradient(circle at 35% 35%,#d7d0ff,transparent 67%)
}
.orb.two {
  width:380px;
  height:380px;
  left:-180px;
  bottom:-150px;
  background:radial-gradient(circle at 55% 45%,#d4ead9,transparent 68%)
}
.container {
  width:min(1120px,calc(100% - 40px));
  margin:auto
}
.topbar {
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}
.brand {
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:850;
  letter-spacing:-.045em;
  font-size:22px
}
.brand-mark {
  width:36px;
  height:36px;
  border-radius:12px;
  background:var(--text);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:13px
}
.nav {
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  color:var(--muted);
  font-weight:650
}
.langs {
  display:flex;
  gap:6px;
  padding:4px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.55);
  border-radius:12px
}
.langs a {
  padding:6px 8px;
  border-radius:8px;
  font-size:12px;
  font-weight:800
}
.langs a.active {
  background:var(--text);
  color:#fff
}
.hero {
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:56px;
  align-items:center;
  padding:70px 0 64px
}
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  border:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
  font-weight:700
}
.eyebrow span {
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent)
}
h1 {
  font-size:clamp(50px,7vw,88px);
  line-height:.97;
  letter-spacing:-.075em;
  margin:22px 0 24px
}
.hero p {
  font-size:19px;
  line-height:1.62;
  color:var(--muted);
  max-width:650px
}
.cta-row {
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:30px
}
.btn {
  border:0;
  border-radius:16px;
  padding:16px 22px;
  cursor:pointer;
  transition:.2s;
  font-weight:780;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px
}
.btn:hover {
  transform:translateY(-2px)
}
.btn-primary {
  background:var(--text);
  color:#fff;
  box-shadow:0 12px 28px rgba(36,35,31,.18)
}
.btn-secondary {
  background:rgba(255,255,255,.62);
  border:1px solid var(--line)
}
.micro {
  font-size:13px;
  color:var(--muted);
  margin-top:16px
}
.preview-card {
  background:rgba(255,253,248,.88);
  border:1px solid rgba(255,255,255,.86);
  box-shadow:var(--shadow);
  border-radius:36px;
  padding:28px;
  position:relative;
  overflow:hidden;
  min-height:470px
}
.preview-card:before {
  content:"";
  position:absolute;
  right:-80px;
  bottom:-110px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:#ddd8ff
}
.mini-head {
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:13px
}
.mini-progress {
  height:7px;
  background:var(--surface2);
  border-radius:99px;
  margin:18px 0 48px;
  overflow:hidden
}
.mini-progress span {
  display:block;
  width:65%;
  height:100%;
  background:var(--accent)
}
.quote {
  font-size:31px;
  line-height:1.22;
  letter-spacing:-.045em;
  font-weight:760;
  position:relative;
  z-index:1
}
.scale {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
  margin-top:44px;
  position:relative;
  z-index:1
}
.scale i {
  font-style:normal;
  aspect-ratio:1;
  border:1px solid var(--line);
  background:white;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-weight:800
}
.scale i:nth-child(4) {
  background:var(--accent);
  color:white;
  transform:translateY(-7px)
}
.meta-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:28px
}
.meta {
  background:rgba(255,255,255,.5);
  border:1px solid var(--line);
  border-radius:18px;
  padding:15px
}
.meta b {
  display:block;
  font-size:18px
}
.meta span {
  font-size:12px;
  color:var(--muted)
}
section {
  padding:68px 0
}
.section-head {
  max-width:700px;
  margin-bottom:30px
}
.section-head h2 {
  font-size:clamp(36px,5vw,58px);
  line-height:1;
  letter-spacing:-.06em;
  margin:0 0 15px
}
.section-head p {
  color:var(--muted);
  font-size:17px
}
.test-card {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  background:rgba(255,253,248,.9);
  border:1px solid rgba(255,255,255,.85);
  box-shadow:var(--shadow);
  border-radius:34px;
  overflow:hidden
}
.test-copy {
  padding:clamp(28px,5vw,56px)
}
.test-copy h3 {
  font-size:clamp(34px,5vw,54px);
  letter-spacing:-.06em;
  line-height:1;
  margin:14px 0 18px
}
.test-copy p {
  font-size:17px;
  color:var(--muted);
  max-width:600px
}
.chips {
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin:24px 0
}
.chip {
  padding:8px 11px;
  border-radius:999px;
  background:#efecff;
  color:#5548bd;
  font-size:12px;
  font-weight:800
}
.test-art {
  background:#2b2a26;
  color:#fff;
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:390px
}
.test-art .big {
  font-size:96px;
  letter-spacing:-.09em;
  font-weight:850;
  line-height:.8
}
.test-art p {
  color:rgba(255,255,255,.65);
  max-width:330px
}
.features {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px
}
.feature {
  background:rgba(255,253,248,.75);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px
}
.feature i {
  font-style:normal;
  width:40px;
  height:40px;
  border-radius:13px;
  background:#ece9ff;
  color:var(--accent);
  display:grid;
  place-items:center;
  font-weight:900
}
.feature h3 {
  margin:18px 0 8px;
  font-size:18px
}
.feature p {
  margin:0;
  color:var(--muted);
  font-size:14px
}
.soon-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px
}
.soon {
  padding:20px;
  border-radius:20px;
  border:1px dashed rgba(36,35,31,.18);
  color:var(--muted);
  background:rgba(255,255,255,.35);
  font-weight:750
}
.footer {
  padding:34px 0 24px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  color:var(--muted);
  font-size:13px
}
.footer-links {
  display:flex;
  gap:18px;
  flex-wrap:wrap
}
.legal {
  max-width:820px;
  padding:70px 0
}
.legal h1 {
  font-size:clamp(42px,6vw,70px)
}
.legal h2 {
  margin-top:38px;
  letter-spacing:-.03em
}
.legal p,.legal li {
  color:var(--muted)
}
.mobile-menu {
  display:none
}
.quiz-app {
  min-height:100vh;
  display:flex;
  flex-direction:column;
  padding:0 20px
}
.quiz-main {
  flex:1;
  display:grid;
  place-items:center
}
.screen {
  display:none;
  width:min(1120px,100%);
  animation:in .35s ease
}
.screen.active {
  display:block
}
@keyframes in {
  from {
    opacity:0;
    transform:translateY(12px)
  }
  to {
    opacity:1;
    transform:none
  }
}
.quiz-wrap {
  width:min(840px,100%);
  margin:34px auto
}
.quiz-head {
  display:flex;
  justify-content:space-between;
  margin-bottom:18px
}
.back {
  border:0;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  font-weight:700
}
.counter {
  font-size:13px;
  color:var(--muted);
  font-weight:700
}
.progress {
  height:8px;
  background:#e6e1d5;
  border-radius:99px;
  overflow:hidden;
  margin-bottom:22px
}
.progress span {
  display:block;
  height:100%;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  transition:.3s
}
.question-card,.score-panel,.result-panel {
  background:rgba(255,253,248,.92);
  border:1px solid rgba(255,255,255,.85);
  box-shadow:var(--shadow);
  border-radius:34px
}
.question-card {
  padding:clamp(28px,5vw,58px);
  min-height:500px;
  display:flex;
  flex-direction:column;
  justify-content:space-between
}
.question-kicker {
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--accent);
  font-weight:850;
  margin-bottom:18px
}
.question {
  font-size:clamp(30px,4vw,48px);
  line-height:1.15;
  letter-spacing:-.05em;
  margin:0
}
.answers {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin-top:48px
}
.answer {
  border:1px solid var(--line);
  background:#fff;
  border-radius:20px;
  min-height:112px;
  padding:16px 10px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px
}
.answer:hover {
  transform:translateY(-3px)
}
.answer.selected {
  background:var(--accent);
  color:#fff
}
.answer strong {
  font-size:23px
}
.answer span {
  font-size:11px;
  text-align:center;
  color:var(--muted)
}
.answer.selected span {
  color:rgba(255,255,255,.84)
}
.hint {
  text-align:center;
  font-size:12px;
  color:var(--muted);
  margin-top:16px
}
.result-layout {
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:24px;
  padding:28px 0
}
.score-panel {
  padding:34px;
  text-align:center
}
.score-ring {
  width:210px;
  height:210px;
  border-radius:50%;
  margin:26px auto;
  display:grid;
  place-items:center;
  position:relative;
  background:conic-gradient(var(--accent) 0deg,var(--accent) var(--score-angle),#e8e3d8 var(--score-angle),#e8e3d8 360deg)
}
.score-ring:after {
  content:"";
  width:168px;
  height:168px;
  background:var(--surface);
  border-radius:50%;
  position:absolute
}
.score-value {
  position:relative;
  z-index:1
}
.score-value b {
  display:block;
  font-size:58px;
  line-height:.9
}
.level-pill {
  display:inline-flex;
  padding:9px 13px;
  border-radius:999px;
  background:#ebe8ff;
  color:#5144bd;
  font-size:13px;
  font-weight:800
}
.range {
  height:9px;
  border-radius:99px;
  background:linear-gradient(90deg,#c96b6b,#d79e59,#c5b44b,#6da37f,#4c8666);
  margin:26px 0 8px;
  position:relative
}
.marker {
  position:absolute;
  top:-5px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  border:4px solid var(--text);
  transform:translateX(-50%)
}
.range-labels {
  display:flex;
  justify-content:space-between;
  font-size:10px;
  color:var(--muted)
}
.result-actions {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px
}
.result-actions .btn {
  flex:1
}
.disclaimer {
  font-size:11px;
  color:var(--muted);
  margin-top:18px
}
.result-panel {
  padding:clamp(26px,4vw,46px)
}
.result-panel h2 {
  font-size:clamp(34px,5vw,56px);
  line-height:1;
  letter-spacing:-.06em;
  margin:0 0 18px
}
.lead {
  font-size:18px;
  color:var(--muted)
}
.insights {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px
}
.insight {
  border:1px solid var(--line);
  background:#fff;
  border-radius:22px;
  padding:22px
}
.insight ul {
  padding-left:18px;
  color:var(--muted)
}
.recommend {
  margin-top:14px;
  border-radius:22px;
  padding:24px;
  background:#2b2a26;
  color:#fff
}
.recommend p {
  color:rgba(255,255,255,.72)
}
@media(max-width:850px) {
  .nav>a {
    display:none
  }
  .hero,.test-card,.result-layout {
    grid-template-columns:1fr
  }
  .features,.soon-grid {
    grid-template-columns:1fr 1fr
  }
  .hero {
    padding-top:35px
  }
  .test-art {
    min-height:300px
  }
  .answers {
    grid-template-columns:1fr;
    gap:9px
  }
  .answer {
    min-height:64px;
    flex-direction:row;
    justify-content:flex-start;
    padding:14px 18px
  }
  .answer strong {
    width:30px
  }
  .answer span {
    text-align:left;
    font-size:12px
  }
  .insights {
    grid-template-columns:1fr
  }
}
@media(max-width:560px) {
  .container {
    width:min(100% - 24px,1120px)
  }
  .topbar {
    min-height:68px
  }
  .brand {
    font-size:19px
  }
  .brand-mark {
    width:32px;
    height:32px
  }
  .langs a {
    padding:5px 6px
  }
  .hero {
    gap:26px
  }
  .preview-card {
    min-height:390px;
    padding:22px
  }
  .quote {
    font-size:27px
  }
  .features,.soon-grid {
    grid-template-columns:1fr
  }
  .footer {
    align-items:flex-start;
    flex-direction:column
  }
  .question-card {
    min-height:520px;
    padding:25px 20px
  }
  .result-actions {
    flex-direction:column
  }
}
@media print {
  .topbar,.result-actions,.orb,.footer {
    display:none
  }
  .result-layout {
    grid-template-columns:1fr 1fr
  }
  .score-panel,.result-panel {
    box-shadow:none
  }
}
