:root {
  --bg: #f9f7ff;
  --bg-alt: #fff3eb;
  --ink: #1a1028;
  --muted: #5f536f;
  --primary: #ff4d6d;
  --secondary: #5c3bfe;
  --accent: #ffc857;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(26, 16, 40, 0.12);
  --radius: 24px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #ffffff 0%, var(--bg) 45%, #f0f4ff 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(249, 247, 255, 0.8);
  border-bottom: 1px solid rgba(26, 16, 40, 0.08);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.logo.small {
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 24px 60px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92, 59, 254, 0.12);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 18px 0 16px;
  font-family: "Fraunces", serif;
}

.hero h1 span {
  color: var(--primary);
}

.hero-subtext {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 77, 109, 0.3);
}

.btn.ghost {
  border-color: rgba(26, 16, 40, 0.15);
  color: var(--ink);
  background: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.hero-metrics div {
  background: #fff;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-metrics strong {
  font-size: 1.4rem;
  display: block;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(92, 59, 254, 0.1), rgba(255, 200, 87, 0.18));
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-stack {
  position: relative;
  width: min(340px, 90%);
  height: 360px;
}

.card {
  position: absolute;
  inset: 0;
  background: var(--card);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.card-1 {
  transform: rotate(-6deg) translateY(18px);
}

.card-2 {
  transform: rotate(3deg) translate(12px, -6px);
  border: 2px solid rgba(92, 59, 254, 0.2);
}

.card-3 {
  transform: rotate(9deg) translate(26px, -18px);
  border: 2px solid rgba(255, 77, 109, 0.2);
}

.role {
  font-weight: 700;
  font-size: 1.2rem;
}

.company {
  color: var(--muted);
  font-weight: 500;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.tags span {
  background: rgba(26, 16, 40, 0.06);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.swipe-controls {
  position: absolute;
  bottom: 20px;
  right: 26px;
  display: flex;
  gap: 10px;
  font-size: 1.4rem;
}

.swipe-controls span {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Fraunces", serif;
  margin-bottom: 8px;
}

.section-heading p {
  color: var(--muted);
}

.how {
  padding: 60px 24px 40px;
}

.steps {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.step-number {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
}

.step h3 {
  margin: 14px 0 10px;
  font-size: 1.3rem;
}

.step p {
  color: var(--muted);
}

.benefits {
  padding: 80px 24px;
  background: linear-gradient(120deg, rgba(255, 200, 87, 0.18), rgba(255, 77, 109, 0.1));
}

.benefits-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.benefits-copy h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Fraunces", serif;
  margin-bottom: 12px;
}

.benefits-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.benefits-copy ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.benefits-copy li {
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.benefits-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  gap: 18px;
  align-content: center;
  justify-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.9;
}

.orb-1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #ff4d6d);
  top: 0;
  left: 10%;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 60% 40%, #ffffff, #5c3bfe);
  bottom: 10px;
  right: 5%;
}

.stats-card {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 20px 24px;
  border-radius: 18px;
  width: min(320px, 85%);
  box-shadow: var(--shadow);
}

.stats-card.alt {
  transform: translateY(30px);
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.stat {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 4px 0;
}

.stat-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.waitlist {
  padding: 80px 24px 100px;
}

.waitlist-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 50px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.waitlist-inner h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Fraunces", serif;
  margin-bottom: 12px;
}

.waitlist-inner p {
  color: var(--muted);
  margin-bottom: 24px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form input {
  flex: 1 1 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(26, 16, 40, 0.15);
  font-size: 1rem;
}

.fine-print {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 24px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 70px;
  }
  .card-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-visual {
    order: -1;
  }

  .hero-metrics {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .nav {
    padding: 16px 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    min-height: 360px;
  }

  .card-stack {
    height: 320px;
  }
}
