:root {
  --purple: #7d3cce;
  --pink: #c22f6b;
  --dark: #212845;
  --grad: linear-gradient(135deg, #7d3cce 0%, #c22f6b 100%);
  --grad-soft: linear-gradient(135deg, rgba(125, 60, 206, 0.08) 0%, rgba(194, 47, 107, 0.08) 100%);
  --white: #ffffff;
  --off: #f8f8fb;
  --muted: #64677e;
  --border: rgba(33, 40, 69, 0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-decoration: none;
}

.nav-wordmark .ai-highlight {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--grad);
  padding: 9px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 2px 12px rgba(194, 47, 107, 0.25);
}

.nav-cta:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 5vw 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 15% 25%, rgba(125, 60, 206, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(194, 47, 107, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-soft);
  border: 1px solid rgba(125, 60, 206, 0.18);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  animation: up .7s ease both;
}

.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.5)
  }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--dark);
  max-width: 850px;
  position: relative;
  z-index: 1;
  animation: up .7s .12s ease both;
}

.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 26px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  position: relative;
  z-index: 1;
  animation: up .7s .22s ease both;
}

.hero-buttons {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: up .7s .32s ease both;
}

.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 28px rgba(194, 47, 107, 0.28);
  transition: transform .2s, box-shadow .2s;
}

.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(194, 47, 107, 0.38);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.btn-ghost:hover {
  border-color: rgba(125, 60, 206, .3);
  background: var(--grad-soft);
}

.hero-trust {
  margin-top: 56px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  z-index: 1;
  animation: up .7s .42s ease both;
}

.hero-trust span {
  color: var(--dark);
  font-weight: 700;
}

/* ── SHIFT BANNER ── */
.shift-banner {
  background: var(--dark);
  padding: 28px 5vw;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

.shift-banner strong {
  color: #fff;
}

.shift-banner .arrow {
  color: #c22f6b;
  font-size: 1.1rem;
}

/* ── SECTIONS ── */
.section-wrap {
  padding: 96px 5vw;
}

.section-wrap.alt {
  background: var(--off);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--dark);
  max-width: 660px;
}

.section-body {
  margin-top: 16px;
  font-size: 1.03rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── PROBLEM GRID ── */
.problem-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.p-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color .2s, transform .25s, box-shadow .25s;
}

.p-card:hover {
  border-color: rgba(125, 60, 206, .22);
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(125, 60, 206, .08);
}

.p-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.p-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.p-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how-steps {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(125, 60, 206, 0.25), rgba(194, 47, 107, 0.25));
}

.how-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 32px 32px 0;
  position: relative;
  z-index: 1;
}

.how-step+.how-step {
  border-top: 1px solid var(--border);
}

.step-num-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--purple);
  position: relative;
  z-index: 2;
  transition: background .2s, border-color .2s;
}

.how-step:hover .step-num-wrap {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.step-content {
  padding-top: 8px;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.step-content p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

.step-tag {
  display: inline-block;
  margin-top: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(125, 60, 206, 0.15);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple);
}

.how-cta-wrap {
  margin-top: 52px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── SOLUTION ── */
.solution-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.s-card {
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.s-card.dark {
  background: var(--dark);
  color: #fff;
}

.s-card.light {
  background: #fff;
  border: 1.5px solid var(--border);
}

.s-card.accent {
  background: var(--grad);
  color: #fff;
}

.s-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.15;
}

.s-card.dark .s-num,
.s-card.accent .s-num {
  opacity: 0.2;
  color: #fff;
}

.s-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.s-card.dark h3,
.s-card.accent h3 {
  color: #fff;
}

.s-card.dark p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.s-card.light p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.s-card.accent p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── OUTCOME STRIP ── */
.outcome-strip {
  background: var(--grad);
  padding: 72px 5vw;
  text-align: center;
}

.outcome-strip h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.outcome-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ── STATS ── */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── WHO ── */
.who-row {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.who-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: border-color .2s, background .2s;
}

.who-pill:hover {
  border-color: rgba(125, 60, 206, .3);
  background: var(--grad-soft);
}

.who-icon {
  font-size: 1.1rem;
}

/* ── FORM SECTION ── */
.form-section {
  background: var(--dark);
  padding: 96px 5vw;
}

.form-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.form-inner .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.form-inner .section-title {
  color: #fff;
  max-width: 100%;
}

.form-inner .section-body {
  color: rgba(255, 255, 255, 0.50);
  max-width: 100%;
  margin: 14px auto 0;
}

.interest-form {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select option {
  background: #212845;
  color: #fff;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(125, 60, 206, .55);
  background: rgba(125, 60, 206, 0.09);
}

.form-submit {
  margin-top: 6px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 17px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(194, 47, 107, 0.35);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(194, 47, 107, 0.45);
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── THANK YOU STATE ── */
.thankyou-box {
  display: none;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(125, 60, 206, 0.35);
  border-radius: 24px;
  padding: 52px 40px;
  text-align: center;
  animation: up .5s ease both;
}

.ty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(194, 47, 107, 0.35);
}

.thankyou-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.thankyou-box .ty-lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto;
}

.thankyou-box .ty-lead strong {
  color: rgba(255, 255, 255, 0.9);
}

.ty-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  background: rgba(125, 60, 206, 0.18);
  border: 1px solid rgba(125, 60, 206, 0.3);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.ty-divider {
  width: 48px;
  height: 2px;
  background: var(--grad);
  margin: 32px auto;
  border-radius: 2px;
}

.ty-next {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  padding: 36px 5vw;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.foot-brand span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── ANIMATIONS ── */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .nav-cta {
    display: none;
  }

  .how-steps::before {
    display: none;
  }

  .how-step {
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
  }
}