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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #f4f4f5;
  background: #050506;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(60% 50% at 50% -5%, rgba(254, 175, 57, 0.14), transparent 60%), radial-gradient(42% 42% at 88% 12%, rgba(254, 175, 57, 0.07), transparent 55%), radial-gradient(50% 50% at 8% 92%, rgba(254, 175, 57, 0.05), transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(72% 60% at 50% 28%, #000, transparent 82%);
  mask-image: radial-gradient(72% 60% at 50% 28%, #000, transparent 82%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

::selection {
  background: rgba(254, 175, 57, 0.28);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 10px 18px;
  background: #FEAF39;
  color: #1a1206;
  border-radius: 0 0 12px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(5, 5, 6, 0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.logo img,
.footer__logo img {
  width: 80px;
  height: auto;
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #FFD27A;
  border: 1px solid rgba(254, 175, 57, 0.28);
  border-radius: 100px;
  background: rgba(254, 175, 57, 0.06);
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FEAF39;
  box-shadow: 0 0 10px 1px #FEAF39;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section__head {
  max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.section__title {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 18px;
}

.section__subtitle {
  margin-top: 18px;
  font-size: clamp(16px, 2vw, 19px);
  color: #a4a4ad;
}

.text-gold {
  background: linear-gradient(135deg, #FFE2A8 0%, #FEAF39 48%, #E1901F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.divider {
  width: 100%;
  max-width: 220px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: #6c6c75;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 38px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #1a1206;
  background: linear-gradient(135deg, #FFE2A8 0%, #FEAF39 48%, #E1901F 100%);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 18px 50px -14px rgba(254, 175, 57, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
  outline: none;
}
.btn:focus-visible {
  outline: 2px solid #FEAF39;
  outline-offset: 3px;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px -14px rgba(254, 175, 57, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn:hover::before {
  transform: translateX(130%);
}
.btn:active {
  transform: translateY(-1px) scale(0.99);
}

.btn__arrow {
  font-size: 18px;
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--lg {
  padding: 21px 50px;
  font-size: 17px;
}

.btn--sm {
  padding: 12px 24px;
  font-size: 13px;
}

.btn--ghost {
  color: #FEAF39;
  background: transparent;
  border: 1px solid rgba(254, 175, 57, 0.4);
  box-shadow: none;
}
.btn--ghost::before {
  display: none;
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(254, 175, 57, 0.08);
  border-color: #FEAF39;
  box-shadow: 0 10px 30px -12px rgba(254, 175, 57, 0.4);
}

.hero {
  position: relative;
  padding: clamp(56px, 9vw, 104px) 0 clamp(64px, 10vw, 120px);
  text-align: center;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 26px auto 0;
  max-width: 16ch;
}

.hero__desc {
  max-width: 600px;
  margin: 26px auto 0;
  font-size: clamp(16px, 2.2vw, 20px);
  color: #a4a4ad;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  max-width: 620px;
  margin: 38px auto 0;
  text-align: left;
}
.hero__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: #f4f4f5;
}

.check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 13px;
  font-weight: 800;
  color: #1a1206;
  background: linear-gradient(135deg, #FFE2A8 0%, #FEAF39 48%, #E1901F 100%);
  border-radius: 50%;
  box-shadow: 0 4px 14px -4px rgba(254, 175, 57, 0.7);
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 4vw, 40px);
  margin: 44px auto 0;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 100px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.stat__value {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  background: linear-gradient(135deg, #FFE2A8 0%, #FEAF39 48%, #E1901F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat__label {
  margin-top: 4px;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  color: #a4a4ad;
}

.stat__sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.14);
}

.hero__cta {
  margin-top: 46px;
}

.hero__note {
  margin-top: 18px;
  font-size: 14px;
  color: #6c6c75;
}

.hero__inner > * {
  animation: heroRise 0.9s cubic-bezier(0.16, 0.84, 0.44, 1) both;
}

.hero__inner > *:nth-child(1) {
  animation-delay: 0.08s;
}

.hero__inner > *:nth-child(2) {
  animation-delay: 0.16s;
}

.hero__inner > *:nth-child(3) {
  animation-delay: 0.24s;
}

.hero__inner > *:nth-child(4) {
  animation-delay: 0.32s;
}

.hero__inner > *:nth-child(5) {
  animation-delay: 0.4s;
}

.hero__inner > *:nth-child(6) {
  animation-delay: 0.48s;
}

.hero__inner > *:nth-child(7) {
  animation-delay: 0.56s;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  padding: 38px 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), border-color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(254, 175, 57, 0.7), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8), 0 0 90px -16px rgba(254, 175, 57, 0.4);
}
.card:hover::before {
  opacity: 1;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  font-size: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(254, 175, 57, 0.16), rgba(254, 175, 57, 0.04));
  border: 1px solid rgba(254, 175, 57, 0.25);
}

.card__title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card__text {
  margin-top: 12px;
  font-size: 15.5px;
  color: #a4a4ad;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 175, 57, 0.45), transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.step__num {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1206;
  background: linear-gradient(135deg, #FFE2A8 0%, #FEAF39 48%, #E1901F 100%);
  border-radius: 50%;
  box-shadow: 0 14px 36px -10px rgba(254, 175, 57, 0.6);
}
.step__num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(254, 175, 57, 0.3);
}

.step__title {
  font-size: 20px;
  font-weight: 700;
}

.step__text {
  max-width: 30ch;
  margin: 10px auto 0;
  font-size: 15.5px;
  color: #a4a4ad;
}

.about__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(32px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 32px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.about__panel::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 175, 57, 0.18), transparent 70%);
  pointer-events: none;
}

.about__text {
  position: relative;
  z-index: 1;
  text-align: left;
}

.about__title {
  margin: 18px 0 20px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about__text p {
  color: #a4a4ad;
  font-size: clamp(15px, 2vw, 17.5px);
}
.about__text p + p {
  margin-top: 16px;
}

.about__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.enneagram {
  width: min(100%, 270px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(254, 175, 57, 0.35));
  animation: spinSlow 60s linear infinite;
}

.enneagram__shape {
  fill: none;
  stroke: url(#goldStroke);
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.enneagram__node {
  fill: #FEAF39;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}
.cta {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(80px, 11vw, 140px);
}

.cta__panel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 64px);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(254, 175, 57, 0.1), rgba(254, 175, 57, 0.02));
  border: 1px solid rgba(254, 175, 57, 0.22);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8), 0 0 120px -30px rgba(254, 175, 57, 0.5);
  overflow: hidden;
}
.cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(254, 175, 57, 0.18), transparent 70%);
  pointer-events: none;
}

.cta__title {
  position: relative;
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.cta__sub {
  position: relative;
  max-width: 460px;
  margin: 18px auto 0;
  color: #a4a4ad;
  font-size: clamp(15px, 2vw, 18px);
}

.cta__actions {
  position: relative;
  margin-top: 38px;
}

.cta__note {
  position: relative;
  margin-top: 20px;
  font-size: 14px;
  color: #6c6c75;
}
.cta__note strong {
  color: #FFD27A;
  font-weight: 700;
}

[x-cloak] {
  display: none !important;
}

.quiz {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vw, 72px) 0;
}

.quiz__container {
  width: 100%;
  max-width: 760px;
}

.quiz__top {
  margin-bottom: clamp(26px, 5vw, 44px);
}

.quiz__count {
  text-align: center;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #a4a4ad;
}
.quiz__count span {
  color: #FFD27A;
}

.progress {
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #FFE2A8 0%, #FEAF39 48%, #E1901F 100%);
  box-shadow: 0 0 18px -2px rgba(254, 175, 57, 0.7);
  transition: width 0.45s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.quiz__qwrap {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 32px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
  padding: clamp(28px, 5vw, 52px);
}

.quiz__qtext {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4em;
  text-align: center;
  font-size: clamp(21px, 3.4vw, 31px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.scale {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(10px, 3vw, 28px);
  margin-top: clamp(28px, 5vw, 44px);
}

.scale__label {
  max-width: 110px;
  font-size: 13px;
  color: #a4a4ad;
}

.scale__label--left {
  text-align: right;
}

.scale__label--right {
  text-align: left;
}

.scale__options {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2.4vw, 18px);
}

.dot {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(40px, 9vw, 56px);
  height: clamp(40px, 9vw, 56px);
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.55);
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), border-color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
  outline: none;
}
.dot:focus-visible {
  outline: 2px solid #FEAF39;
  outline-offset: 3px;
}
.dot:hover {
  transform: scale(1.08);
}
.dot span {
  opacity: 0.85;
}

.dot--1 {
  background: #ef4444;
}

.dot--2 {
  background: #f6a5a5;
}

.dot--3 {
  background: #f4f4f5;
}

.dot--4 {
  background: #a7e3a1;
}

.dot--5 {
  background: #22c55e;
}

.dot.is-active {
  transform: scale(1.14);
  border-color: #FEAF39;
  box-shadow: 0 0 0 4px rgba(254, 175, 57, 0.18), 0 10px 24px -8px rgba(254, 175, 57, 0.5);
}

.quiz__nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 40px);
}
.quiz__nav .btn {
  min-width: 150px;
}

.quiz .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}
.quiz .btn:disabled::before {
  display: none;
}

.lead {
  display: flex;
  justify-content: center;
  width: 100%;
}

.lead__card {
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 32px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}

.lead__emoji {
  font-size: 44px;
}

.lead__title {
  margin-top: 10px;
  font-size: clamp(26px, 4.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lead__lead {
  margin-top: 14px;
  color: #a4a4ad;
}

.lead__list {
  display: inline-grid;
  gap: 12px;
  margin: 18px auto 0;
  text-align: left;
}
.lead__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.lead__hint {
  margin-top: 24px;
  font-size: 14.5px;
  color: #a4a4ad;
}

.field {
  margin-top: 18px;
  text-align: left;
}

.field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #a4a4ad;
}

.field__input {
  width: 100%;
  padding: 15px 18px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  color: #f4f4f5;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  transition: border-color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.field__input::placeholder {
  color: #6c6c75;
}
.field__input:focus {
  outline: none;
  border-color: rgba(254, 175, 57, 0.6);
  box-shadow: 0 0 0 4px rgba(254, 175, 57, 0.12);
}

.choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), background 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.choice__item input {
  accent-color: #FEAF39;
}
.choice__item.is-active {
  border-color: rgba(254, 175, 57, 0.6);
  background: rgba(254, 175, 57, 0.08);
  color: #FFD27A;
}

.tg-note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px dashed rgba(254, 175, 57, 0.4);
  background: rgba(254, 175, 57, 0.05);
  color: #a4a4ad;
  font-size: 14px;
  text-align: left;
}

.form-error {
  margin-top: 16px;
  color: #ff8a8a;
  font-size: 14px;
  font-weight: 600;
}

.lead__submit {
  width: 100%;
  margin-top: 24px;
}

.lead__back {
  display: inline-block;
  margin-top: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #6c6c75;
  transition: color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
  outline: none;
}
.lead__back:focus-visible {
  outline: 2px solid #FEAF39;
  outline-offset: 3px;
}
.lead__back:hover {
  color: #FFD27A;
}

.privacy-note {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #6c6c75;
  text-align: center;
}
.privacy-note a {
  color: #a4a4ad;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.privacy-note a:hover {
  color: #FFD27A;
}

@media (max-width: 560px) {
  .scale {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .scale__label,
  .scale__label--left,
  .scale__label--right {
    max-width: none;
    text-align: center;
  }
  .scale__options {
    justify-content: space-between;
  }
  .quiz__nav {
    flex-direction: column-reverse;
  }
  .quiz__nav .btn {
    width: 100%;
  }
}
.result {
  padding-top: clamp(40px, 7vw, 80px);
  padding-bottom: clamp(40px, 7vw, 80px);
}

.result__head {
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: left;
}

.result__greeting {
  margin-top: 18px;
  font-size: clamp(15px, 2vw, 18px);
  color: #a4a4ad;
}

.result__type {
  margin-top: 6px;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.result__subtitle {
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #FFD27A;
}

.result-section {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(24px, 4vw, 40px);
  transition: border-color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.result-section:hover {
  border-color: rgba(254, 175, 57, 0.15);
}

.result-section__title {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
  color: #f4f4f5;
}
.result-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(135deg, #FFE2A8 0%, #FEAF39 48%, #E1901F 100%);
  border-radius: 4px;
  box-shadow: 0 0 12px -2px rgba(254, 175, 57, 0.6);
}

.result-section__text {
  font-size: 16px;
  line-height: 1.7;
  color: #a4a4ad;
  margin-bottom: 24px;
}
.result-section__text:last-child {
  margin-bottom: 0;
}

.result-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.result-fact {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 24px;
  transition: border-color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.result-fact:hover {
  border-color: rgba(254, 175, 57, 0.3);
  transform: translateY(-4px);
}

.result-fact__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #FFD27A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-fact__text {
  font-size: 15px;
  line-height: 1.6;
  color: #a4a4ad;
}

.overview-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.overview-text__lead {
  position: relative;
  font-size: 17px;
  line-height: 1.65;
  color: #f4f4f5;
  padding: 20px 24px;
  background: rgba(254, 175, 57, 0.04);
  border-left: 3px solid #FEAF39;
  border-radius: 0 16px 16px 0;
  font-weight: 500;
}

.overview-text__para {
  font-size: 16px;
  line-height: 1.75;
  color: #a4a4ad;
  text-align: justify;
  hyphens: auto;
}

.result-highlight,
.result-examples {
  background: rgba(254, 175, 57, 0.03);
  border: 1px solid rgba(254, 175, 57, 0.15);
  border-radius: 22px;
  padding: 28px;
  margin-bottom: 32px;
}

.result-highlight__title,
.result-examples__title {
  font-size: 18px;
  font-weight: 700;
  color: #FEAF39;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-highlight__text,
.result-examples__text {
  font-size: 16px;
  line-height: 1.7;
  color: #a4a4ad;
  margin: 0;
}

.development-group {
  margin-bottom: 32px;
}
.development-group:last-child {
  margin-bottom: 0;
}

.development-group__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f4f4f5;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  gap: 10px;
}
.development-group__title::before {
  content: "◆";
  color: #FEAF39;
  font-size: 12px;
}

.development-card {
  position: relative;
  padding: 24px 24px 24px 36px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  margin-bottom: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), border-color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.development-card:hover {
  transform: translateX(8px);
  border-color: rgba(254, 175, 57, 0.3);
}
.development-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 32px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FEAF39;
  box-shadow: 0 0 10px rgba(254, 175, 57, 0.5);
}

.development-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #FFD27A;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.development-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: #a4a4ad;
  margin: 0;
}

.growth-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.growth-list__item {
  position: relative;
  padding: 20px 24px 20px 60px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #a4a4ad;
  transition: border-color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.growth-list__item:hover {
  border-color: rgba(254, 175, 57, 0.3);
}
.growth-list__item::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #FFE2A8 0%, #FEAF39 48%, #E1901F 100%);
  color: #1a1206;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 14px -4px rgba(254, 175, 57, 0.7);
}

.privacy-note {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #6c6c75;
  text-align: center;
}
.privacy-note a {
  color: #a4a4ad;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.privacy-note a:hover {
  color: #FFD27A;
}

.result__cta {
  max-width: 860px;
  margin: clamp(40px, 6vw, 80px) auto 0;
}

@media (max-width: 760px) {
  .result-facts {
    grid-template-columns: 1fr;
  }
  .result-section {
    padding: 24px;
  }
  .development-card {
    padding: 20px 20px 20px 32px;
  }
  .development-card::before {
    left: 12px;
    top: 28px;
  }
  .growth-list__item {
    padding: 18px 20px 18px 54px;
  }
  .growth-list__item::before {
    left: 16px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}
.booked-note {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 600;
  color: #FFD27A;
  white-space: pre-line;
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 32px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8), 0 0 90px -16px rgba(254, 175, 57, 0.4);
  padding: clamp(26px, 4vw, 40px);
  text-align: left;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #a4a4ad;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), background 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
  outline: none;
}
.modal__close:focus-visible {
  outline: 2px solid #FEAF39;
  outline-offset: 3px;
}
.modal__close:hover {
  color: #f4f4f5;
  background: rgba(255, 255, 255, 0.12);
}

.modal__title {
  margin-bottom: 18px;
  padding-right: 30px;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.modal__submit {
  width: 100%;
  margin-top: 22px;
}

.field__input[readonly] {
  opacity: 0.75;
  cursor: not-allowed;
}

@media (max-width: 860px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .steps-grid::before {
    display: none;
  }
  .about__panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__text {
    text-align: center;
  }
  .step__text {
    max-width: 34ch;
  }
  .result__subtitle {
    font-size: 15px;
  }
}
@media (max-width: 560px) {
  .header {
    padding: 14px 0;
  }
  .header .btn {
    display: none;
  }
  .hero__features {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .hero__stats {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 16px;
  }
  .stat__sep {
    display: none;
  }
  .stat__label {
    font-size: 11px;
  }
  .btn--lg {
    width: 100%;
  }
  .result__subtitle {
    font-size: 14px;
  }
  .booked-note {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
