:root {
  --bg-main: #040513;
  --bg-elevated: #0a0b1f;
  --bg-soft: #101229;
  --accent: #ff3b8d;
  --accent-soft: rgba(255, 59, 141, 0.15);
  --text-main: #f9f5ff;
  --text-soft: #bab6d4;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 22px;
  --radius-xl: 26px;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.75);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top, #361645 0, #040513 55%, #040513 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

.page-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px 28px;
}

/* HEADER */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #ff7ab5, #ff3b8d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255, 59, 141, 0.6);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-title {
  font-size: 15px;
  font-weight: 600;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-link {
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.15s ease-out;
}

.nav-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(9, 10, 28, 0.9);
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* HERO */

.hero {
  margin-top: 10px;
  background: linear-gradient(135deg, rgba(12, 12, 34, 0.97), rgba(5, 6, 20, 0.98));
  border-radius: 32px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 59, 141, 0.19), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(129, 140, 248, 0.2), transparent 50%);
  opacity: 0.95;
  pointer-events: none;
}

.hero-content,
.hero-profile {
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 20px 18px 20px;
  }
}

/* Eyebrow */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11, 12, 30, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 9px rgba(34, 197, 94, 0.95);
}

h1 {
  margin: 12px 0 8px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 500px;
}

.hero-sub strong {
  color: #fff;
  font-weight: 600;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 7, 20, 0.95);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(9px);
}

.pill-emoji {
  font-size: 13px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 11px 18px 11px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #ff7ab5, #ff3b8d);
  color: #fff;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 30px rgba(255, 59, 141, 0.55);
  cursor: pointer;
  transition: transform 0.09s ease-out, box-shadow 0.09s ease-out, filter 0.09s ease-out;
  font-size: 0.93rem;
  min-width: 220px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 59, 141, 0.65);
  filter: brightness(1.06);
}

.btn-label-main {
  font-weight: 600;
}

.btn-label-sub {
  font-size: 0.75rem;
  opacity: 0.9;
}

.btn-secondary {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 26, 0.94);
  color: var(--text-soft);
  font-size: 0.86rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.12s ease-out;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(9, 9, 32, 0.96);
}

.hero-note {
  margin-top: 14px;
  font-size: 0.78rem;
  max-width: 440px;
  color: var(--text-soft);
}

.hero-note span {
  color: #a5b4fc;
  font-weight: 500;
}

/* PROFILE SIDE */

.hero-profile {
  display: flex;
  align-items: stretch;
}

.profile-card {
  background: radial-gradient(circle at 0 0, rgba(255, 59, 141, 0.16), rgba(7, 8, 26, 0.97));
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.profile-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.profile-photo {
  position: relative;
  overflow: hidden;
  height: 260px;
}


.profile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 5, 16, 0.98) 0, rgba(4, 5, 16, 0.4) 50%, transparent 100%);
}

.online-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(5, 6, 17, 0.96);
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e5e7eb;
  z-index: 2;
}

.online-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.profile-blur {
  position: absolute;
  inset: auto 0 -40px 0;
  height: 40px;
  background: radial-gradient(circle at 50% 0, rgba(9, 9, 24, 0.9), transparent 65%);
}

.profile-main {
  padding: 6px 2px 2px;
}

.profile-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.profile-name {
  font-size: 1.02rem;
  font-weight: 600;
}

.profile-handle {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.badge-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.7rem;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(14, 13, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-soft);
}

.badge.hot {
  background: var(--accent-soft);
  border-color: rgba(255, 59, 141, 0.75);
  color: #ffe4f0;
}

.profile-quote {
  margin-top: 8px;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.profile-quote strong {
  color: #fff;
}

.stats-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stat {
  flex: 1;
  min-width: 90px;
  padding: 7px 9px;
  border-radius: 14px;
  background: rgba(8, 7, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.stat-value {
  margin-top: 2px;
  font-size: 0.96rem;
  font-weight: 600;
}

.btn-ghost {
  display: inline-flex;
  margin-top: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 8, 22, 0.98);
  color: var(--text-main);
  font-size: 0.85rem;
  text-decoration: none;
  justify-content: center;
  width: 100%;
  transition: all 0.12s ease-out;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(10, 12, 32, 0.98);
}

/* SECTIONS */

.section {
  margin-top: 28px;
  background: rgba(8, 8, 26, 0.96);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 16px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}

.section-header {
  margin-bottom: 14px;
}

.section-header h2 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.section-header p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* INSIDE */

.grid-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 900px) {
  .grid-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .grid-features {
    grid-template-columns: minmax(0, 1fr);
  }
}

.feature-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 12px 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  margin-bottom: 6px;
}

.feature-card h3 {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.inside-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.btn-primary-wide {
  align-items: center;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

/* HOW IT WORKS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 11px 11px 12px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.step-number {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 59, 141, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.step p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.disclaimer {
  margin-top: 14px;
  padding: 10px 11px;
  border-radius: 16px;
  background: rgba(12, 10, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* FOOTER */

.site-footer {
  margin-top: 22px;
  padding: 6px 2px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.footer-small {
  margin-top: 4px;
  opacity: 0.92;
}

/* RESPONSIVE TWEAKS */

@media (max-width: 480px) {
  .hero {
    padding: 18px 14px 18px;
  }

  .section {
    padding: 16px 13px 16px;
  }

  .profile-photo img {
    height: 260px;
  }
}

.profile-photo {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.profile-photo .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: 50% 20%;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.profile-photo .slide.active {
  opacity: 1;
}

/* mobile adjustment */
@media (max-width: 480px) {
  .profile-photo {
    height: 260px;
  }
  .profile-photo .slide {
    height: 260px;
  }
}
