/* ============================================
   Landing Screen
   ============================================ */

#screen-landing {
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  text-align: center;
}

/* ── Hero Section ── */
.landing__hero {
  text-align: center;
  padding: 56px 24px 40px;
  position: relative;
  z-index: 1;
}

.landing__cone {
  font-size: 110px;
  animation: float 3s ease-in-out infinite;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 20px 50px rgba(124, 58, 237, 0.4));
}

.landing__title {
  font-size: clamp(44px, 10vw, 82px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--dark-p) 0%, var(--primary) 40%, var(--mid-p) 70%, var(--light-p) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 14px;
  animation: fadeUp 0.8s ease both;
}

.landing__subtitle {
  font-size: 19px;
  justify-self: center;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 44px;
  max-width: 400px;
  animation: fadeUp 0.8s 0.15s ease both;
}

/* ── Sparkle Decorations ── */
.sparkle {
  position: absolute;
  color: rgba(124, 58, 237, 0.25);
  font-size: 18px;
  animation: sparkleFloat 4s ease-in-out infinite;
  pointer-events: none;
}

.sparkle--1 {
  top: 40%;
  left: 15%;
  animation-delay: 0s;
}

.sparkle--2 {
  top: 30%;
  right: 20%;
  font-size: 14px;
  animation-delay: 1.5s;
}

.sparkle--3 {
  top: 55%;
  right: 12%;
  font-size: 16px;
  animation-delay: 3s;
}

@keyframes sparkleFloat {

  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0) rotate(0deg);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-8px) rotate(15deg);
  }
}

/* ── Paths Divider ── */
.paths-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: anchor-center;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 400px;
}

.paths-divider__line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
  position: relative;
}

.paths-divider__line::before {
  content: '●';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(124, 58, 237, 0.3);
  font-size: 8px;
}

.paths-divider__line:first-child::before {
  left: 0;
}

.paths-divider__line:last-child::before {
  right: 0;
}

.paths-divider__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ── Path Cards ── */
.paths-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.25s ease both;
  max-width: 560px;
  margin-top: 0;
}

.path-card {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border-radius: 28px;
  padding: 32px 24px;
  cursor: pointer;
  border: 2px solid rgba(124, 58, 237, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.06);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.35);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF5FF 100%);
}

.path-card--ai {
  /* border-color: var(--primary); */

  background: linear-gradient(180deg, #FFFFFF 0%, #F5F0FF 100%);
}

.path-card--ai:hover {
  border-color: var(--primary);
  background: linear-gradient(160deg, #F8F0FF 0%, #F3E8FF 100%);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
}

.path-card--diy {
  border-color: rgba(124, 58, 237, 0.12);
}

.path-card--diy:hover {
  border-color: var(--primary);
  background: linear-gradient(160deg, #F8F0FF 0%, #F3E8FF 100%);

}

.path-card__emoji {
  font-size: 52px;
  display: block;
  margin-bottom: 14px;
}

.path-card__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.path-card--ai .path-card__title {
  color: var(--primary);
}

.path-card--diy .path-card__title {
  color: var(--dark-p);
}

.path-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.path-card__badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

.path-card--ai .path-card__badge {
  background: var(--blush);
  color: var(--primary);
}

.path-card--diy .path-card__badge {
  background: #F3E8FF;
  color: var(--dark-p);
}

/* ── Why Section ── */
.why-wrapper {
  background: var(--cream);
  border-top: 1.5px solid rgba(124, 58, 237, 0.1);
  position: relative;
  z-index: 1;
}

.why-section {
  padding: 72px 28px 56px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.why-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.why-hero__text {
  flex: 1;
  min-width: 260px;
}

.why-hero__badge {
  display: inline-block;
  background: var(--blush);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.why-hero__desc {
  font-size: 16px;
  color: #4B2D8A;
  line-height: 1.9;
  max-width: 420px;
}

.why-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.why-breadcrumb span {
  font-size: 13px;
  color: #9B72CC;
  font-weight: 600;
}

.why-breadcrumb__dot {
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.why-hero__title {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.why-hero__title h2 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark-p);
}

.why-hero__title h2 span {
  color: var(--primary);
}

/* ── Why Cards Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--white);
  border: 1.5px solid rgba(124, 58, 237, 0.14);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: right;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.3);
}

.why-card:hover::before {
  opacity: 1;
}

/* Active state: when card is clicked/selected */
.why-card--active,
.why-card--featured {
  background: linear-gradient(145deg, #4C1D95, #7C3AED);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.3);
}

.why-card--active .why-card__title,
.why-card--featured .why-card__title {
  color: var(--white);
}

.why-card--active .why-card__desc,
.why-card--featured .why-card__desc {
  color: rgba(255, 255, 255, 0.8);
}

.why-card--active .why-card__icon,
.why-card--featured .why-card__icon {
  background: rgba(255, 255, 255, 0.15);
}

.why-card--active::before,
.why-card--featured::before {
  opacity: 0;
}

.why-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  margin-right: auto;
}

.why-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-p);
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

.why-card__dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}

.why-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.why-card__dot--active {
  background: var(--white);
}

/* ── Personality Patterns ── */
.why-patterns {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pattern-card {
  border-radius: 20px;
  padding: 28px 24px;
  text-align: right;
  border: 1.5px solid transparent;
}

.pattern-card--sensation {
  background: #FFF5F5;
  border-color: rgba(220, 38, 38, 0.15);
}

.pattern-card--variety {
  background: #F0FFF8;
  border-color: rgba(5, 150, 105, 0.15);
}

.pattern-card--comfort {
  background: #F5F0FF;
  border-color: rgba(124, 58, 237, 0.15);
}

.pattern-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}

.pattern-card--sensation .pattern-card__label {
  color: #DC2626;
}

.pattern-card--variety .pattern-card__label {
  color: #059669;
}

.pattern-card--comfort .pattern-card__label {
  color: var(--primary);
}

.pattern-card__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark-p);
  margin-bottom: 8px;
}

.pattern-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}