/* ═══════════════════════════════════════════════════════════════════════════
   GENDERME — home.css
   Styles specific to index.html (landing page):
   hero, axes section, profiles marquee, how-it-works, pricing.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(160,210,255,0.5) 0%, transparent 70%);
  top: -80px; left: -150px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(200,180,255,0.4) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbFloat2 22s ease-in-out infinite;
}

.hero-orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(160,230,200,0.35) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 16s ease-in-out infinite;
}

.hero-orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,190,210,0.35) 0%, transparent 70%);
  top: 20%; right: 10%;
  animation: orbFloat1 20s ease-in-out infinite reverse;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint2);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
  background: rgba(109,207,176,0.12);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
  color: var(--text);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── AXES SECTION ─── */
.axes-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.axes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.axis-card {
  background: white;
  border: 2px solid rgba(100,160,220,0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  cursor: default;
  box-shadow: var(--shadow);
}

.axis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--axis-color, var(--accent));
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
}

.axis-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow2);
  border-color: var(--axis-color, var(--accent));
}

.axis-number {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.axis-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--axis-color, var(--accent));
}

.axis-poles {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.axis-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
}

/* ─── PROFILES MARQUEE ─── */
.profiles-section {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #e8f8f4 50%, var(--bg) 100%);
  position: relative;
  z-index: 1;
}

.profiles-marquee-wrap {
  overflow: hidden;
  margin-top: 48px;
}

.profiles-marquee {
  display: flex;
  gap: 12px;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.profiles-marquee:hover { animation-play-state: paused; }

.profile-chip {
  padding: 12px 22px;
  border: 2px solid rgba(100,160,220,0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text2);
  transition: all 0.3s;
  cursor: pointer;
  background: white;
  box-shadow: 0 2px 8px rgba(100,160,220,0.08);
}

.profile-chip:hover {
  border-color: var(--accent);
  color: var(--accent2);
  background: var(--accent3);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(91,168,212,0.2);
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  padding: 44px 32px;
  border: 2px solid rgba(100,160,220,0.15);
  border-radius: var(--radius);
  background: white;
  position: relative;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow2);
}

.step-card:nth-child(1) { border-top: 4px solid var(--sky); }
.step-card:nth-child(2) { border-top: 4px solid var(--mint); }
.step-card:nth-child(3) { border-top: 4px solid var(--lavender); }

.step-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: rgba(100,160,220,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.step-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
}

/* ─── PRICING ─── */
.pricing-section {
  padding: 100px 48px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: white;
  border: 2px solid rgba(100,160,220,0.15);
  border-radius: var(--radius);
  padding: 60px 56px;
  text-align: center;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--mint), var(--lavender));
  border-radius: 4px 4px 0 0;
}

.pricing-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint2);
  background: rgba(109,207,176,0.12);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  display: inline-block;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}

.pricing-price sup {
  font-size: 28px;
  vertical-align: super;
  color: var(--text2);
}

.pricing-desc {
  color: var(--text2);
  margin-bottom: 36px;
  font-size: 15px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(100,160,220,0.1);
  font-size: 13px;
  color: var(--text2);
  font-family: var(--font-body);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✦';
  color: var(--mint2);
  font-size: 10px;
  flex-shrink: 0;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .axes-section { padding: 72px 24px; }
  .how-section, .pricing-section { padding: 72px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
}
