﻿/* ai-stem-splitter */

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden
}

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit
}

:root {
  --purple: #6720ff;
  --bright: #874dff;
  --accent: #9810fa;
  --dark: #0a0712;
  --card-dark: #120d20;
  --w: 1200px
}

.wrap {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 32px
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .55s cubic-bezier(.25, .46, .45, .94), transform .55s cubic-bezier(.25, .46, .45, .94)
}

.reveal.from-left {
  transform: translateX(-28px)
}

.reveal.from-right {
  transform: translateX(28px)
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important
}

.reveal-d1 {
  transition-delay: .09s
}

.reveal-d2 {
  transition-delay: .18s
}

.reveal-d3 {
  transition-delay: .27s
}

/* HERO ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

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

@keyframes scrollBob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(6px)
  }
}

.hero-a1 {
  animation: fadeUp .55s ease forwards;
  animation-delay: .10s;
  opacity: 0
}

.hero-a2 {
  animation: fadeUp .65s ease forwards;
  animation-delay: .22s;
  opacity: 0
}

.hero-a3 {
  animation: fadeUp .65s ease forwards;
  animation-delay: .34s;
  opacity: 0
}

.hero-a4 {
  animation: fadeUp .55s ease forwards;
  animation-delay: .46s;
  opacity: 0
}

.hero-a5 {
  animation: fadeUp .8s ease forwards;
  animation-delay: 1.2s;
  opacity: 0
}

/* HERO */
.hero {
  position: relative;
  min-height: 680px;
  padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 96px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden
}

.hbg {
  position: absolute;
  inset: 0
}

.hbg-base {
  background: #8f83ff;
  z-index: 0
}

.hbg-radial {
  z-index: 1;
  background: radial-gradient(ellipse 126% 113% at 50% -33%, rgba(68, 18, 209, .8) 0%, transparent 70%)
}

.hbg-g1 {
  z-index: 2;
  mix-blend-mode: plus-lighter;
  background: radial-gradient(ellipse 98% 44% at 50% 97%, rgba(255, 255, 255, .3) 0%, transparent 100%)
}

.hbg-g2 {
  z-index: 3;
  mix-blend-mode: plus-lighter;
  background: radial-gradient(ellipse 54% 35% at 50% 100%, rgba(255, 255, 255, .3) 0%, transparent 100%)
}

.hbg-pattern {
  z-index: 4;
  mix-blend-mode: plus-lighter;
  opacity: .3;
  background: url('../img/ai-stem-splitter/hero-pattern.png') 0 0/153.6px 153.6px repeat
}

.hbg-overlay {
  z-index: 4;
  mix-blend-mode: overlay;
  opacity: .3;
  overflow: hidden;
  pointer-events: none
}

.hbg-overlay img {
  position: absolute;
  width: 187%;
  max-width: none;
  top: -94.69%;
  left: -33.77%
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--w);
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #faf5ff;
  border: .8px solid #e9d4ff;
  border-radius: 99px;
  padding: 7px 16px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: #4530cc;
  margin-bottom: 28px
}

.hero-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block
}

.hero h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: clamp(42px, 5.5vw, 70px);
  letter-spacing: -1.4px;
  color: #fff;
  max-width: 849px;
  margin-bottom: 20px
}

.hero-sub {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: clamp(26px, 3vw, 33px);
  color: rgba(255, 255, 255, .92);
  max-width: 827px;
  margin-bottom: 36px
}

.btn-hero {
  background: radial-gradient(ellipse at 50% 120%, rgba(215, 115, 255, .7) 0%, rgba(194, 115, 255, 0) 65%), linear-gradient(90deg, #6720ff, #6720ff);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 20px);
  padding: clamp(14px, 2vw, 22px) clamp(28px, 4vw, 48px);
  box-shadow: 0 4px 20px rgba(103, 32, 255, .35);
  transition: transform .2s, box-shadow .2s
}

.btn-hero:hover {
  transform: scale(1.04);
  box-shadow: 0 0 48px rgba(103, 32, 255, .5)
}

.btn-hero:active {
  transform: scale(.97)
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 40px
}

.hero-scroll span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 1px;
  text-transform: uppercase
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
  border-radius: 1px;
  animation: scrollBob 1.6s ease-in-out infinite
}

/* WHAT IS 4-STEM */
.what {
  background: #fff;
  padding: 112px 0
}

.what h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 48px);
  color: #111;
  letter-spacing: -.8px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px
}

.what-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.1vw, 18px);
  color: #666;
  line-height: 1.85;
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.feat-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default
}

.feat-card:hover {
  transform: translateY(-4px)
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0
}

.feat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #0f0a1e;
  line-height: 28px;
  margin-bottom: 8px
}

.feat-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: rgba(69, 69, 69, .8);
  line-height: 22.75px
}

/* WHO IS IT FOR */
.who {
  background: var(--dark);
  padding: 80px 0 96px
}

.who h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  color: #fff;
  letter-spacing: -.3px;
  text-align: center;
  margin-bottom: 14px
}

.who-sub {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255, 255, 255, .6);
  line-height: 28px;
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center
}

.who-cards {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.who-card {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  background: var(--card-dark);
  min-height: 320px
}

.who-card.rev {
  flex-direction: row-reverse
}

.who-img {
  width: 45%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden
}

.who-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.who-card:hover .who-img img {
  transform: scale(1.04)
}

.who-ovl {
  position: absolute;
  inset: 0
}

.who-card:not(.rev) .who-ovl {
  background: linear-gradient(to right, transparent 55%, rgba(18, 13, 32, .75) 100%)
}

.who-card.rev .who-ovl {
  background: linear-gradient(to left, transparent 55%, rgba(18, 13, 32, .75) 100%)
}

.who-txt {
  flex: 1;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.who-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px
}

.who-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #9810fa;
  letter-spacing: 2px
}

.who-sep {
  width: 1px;
  height: 11px;
  background: rgba(255, 255, 255, .15)
}

.who-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .38);
  letter-spacing: 1px
}

.who-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 28px);
  color: #fff;
  letter-spacing: -.3px;
  margin-bottom: 14px;
  line-height: 1.25
}

.who-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  line-height: 26px;
  max-width: 400px
}

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

.wtag {
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid rgba(152, 16, 250, .3);
  background: rgba(152, 16, 250, .08);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(196, 180, 255, .75)
}

/* Mobile Who card */
.who-mob {
  display: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: var(--card-dark)
}

.wmob-img {
  position: relative;
  height: 180px;
  overflow: hidden
}

.wmob-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.wmob-ovl {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 7, 18, .35), rgba(10, 7, 18, .7))
}

.wmob-ptitle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #a855f7;
  text-align: center;
  padding: 0 20px;
  line-height: 1.3
}

.wmob-body {
  padding: 20px 20px 24px
}

.wmob-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px
}

.wmob-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #9810fa;
  letter-spacing: 1.5px
}

.wmob-sep {
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, .15)
}

.wmob-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .8px
}

.wmob-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3
}

.wmob-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 22px;
  margin-bottom: 16px
}

.wmob-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

/* COMPARISON TABLE */
.compare {
  background: #faf5ff;
  padding: 112px 0
}

.compare h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 40px);
  color: #0f0a1e;
  line-height: 1.2;
  letter-spacing: -.5px;
  text-align: center;
  margin-bottom: 18px
}

.compare-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #666;
  line-height: 28px;
  text-align: center;
  margin-bottom: 48px
}

.ctable {
  border-radius: 18px;
  overflow: hidden;
  border: 1.4px solid #ede5ff;
  box-shadow: 0 2px 16px rgba(100, 50, 200, .07)
}

.chead {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr
}

.ch1 {
  background: #8838c0;
  padding: 18px 28px;
  display: flex;
  align-items: center
}

.ch2 {
  background: #8838c0;
  border-left: 1.4px solid #ad46ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px
}

.ch3 {
  background: #6e11b0;
  border-left: 1.4px solid #ad46ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px
}

.ch1 span,
.ch2 span,
.ch3 span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.3
}

.crow {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-top: 1.4px solid #ede5ff
}

.cc1 {
  background: #fff;
  padding: 0 28px;
  display: flex;
  align-items: center;
  min-height: 72px
}

.cc1 span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0f0a1e;
  line-height: 20px
}

.cc2 {
  background: #fff;
  border-left: 1.4px solid #ede5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 20px
}

.cc3 {
  background: #FDFBFF;
  border-left: 1.4px solid #ede5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 20px
}

.ct-muted {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #6d5fa8;
  line-height: 20px;
  text-align: center
}

.ct-purple {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #7c3aed;
  line-height: 20px;
  text-align: center
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f0134 0%, #220079 100%);
  min-height: 360px;
  display: flex;
  align-items: center
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(48px, 6vw, 64px) 32px
}

.cta-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2vw, 30px);
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.25;
  margin-bottom: 10px;
  white-space: nowrap
}

.cta-left p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  color: #ddd6ff;
  line-height: 1.5;
  margin-bottom: 28px;
  white-space: nowrap
}

.btn-cta {
  background: #874dff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(135, 77, 255, .4);
  transition: transform .2s, box-shadow .2s
}

.btn-cta:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 16px 40px rgba(135, 77, 255, .55)
}

.btn-cta:active {
  transform: scale(.97)
}

.cta-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: flex-end
}

.cta-img {
  width: 100%;
  max-width: 640px;
  height: 290px;
  background: url('../img/ai-stem-splitter/cta-stems.png') center/contain no-repeat;
  mix-blend-mode: screen
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(109, 95, 168, .55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all
}

.modal-card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 0, 0, .06);
  overflow: hidden
}

.m-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  z-index: 10;
  font-size: 18px;
  line-height: 1;
  transition: color .2s
}

.m-close:hover {
  color: #555
}

.mstep {
  padding: 36px 36px 32px;
  display: none
}

.mstep.active {
  display: block
}

.mstep-email {
  padding: 36px 36px 32px;
  display: none
}

.mstep-email.active {
  display: block
}

.mstep-success {
  padding: 56px 40px 48px;
  text-align: center;
  display: none
}

.mstep-success.active {
  display: block
}

@keyframes sIn {
  from {
    opacity: 0;
    transform: translateX(32px)
  }

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

@keyframes sInL {
  from {
    opacity: 0;
    transform: translateX(-32px)
  }

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

.sanim-r {
  animation: sIn .28s cubic-bezier(.25, .46, .45, .94) forwards
}

.sanim-l {
  animation: sInL .28s cubic-bezier(.25, .46, .45, .94) forwards
}

.m-head {
  text-align: center;
  margin-bottom: 20px
}

.m-title {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px
}

.m-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 20px
}

.m-prog-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.m-prog-bar {
  flex: 1;
  height: 5px;
  border-radius: 99px;
  background: #ede5ff;
  overflow: hidden
}

.m-prog-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #874dff, #6720ff);
  transition: width .4s ease
}

.m-prog-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #aaa;
  white-space: nowrap;
  min-width: 28px;
  text-align: right
}

.m-q {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #111;
  margin-bottom: 6px;
  line-height: 1.4
}

.m-q-hint {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  margin-bottom: 14px
}

.m-opts {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.m-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  transition: border-color .18s, background .18s
}

.m-opt:hover {
  border-color: #c4b5fd
}

.m-opt.sel {
  border-color: #874dff;
  background: #faf5ff;
  color: #6720ff;
  font-weight: 500
}

.radio-c {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .18s
}

.m-opt.sel .radio-c {
  border-color: #874dff
}

.radio-d {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #874dff;
  display: none
}

.m-opt.sel .radio-d {
  display: block
}

.check-c {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .18s, background .18s
}

.m-opt.sel .check-c {
  border-color: #874dff;
  background: #874dff
}

.check-d {
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: none
}

.m-opt.sel .check-d {
  display: block
}

.other-box {
  display: none;
  margin-top: 10px
}

.other-box.open {
  display: block
}

.other-input {
  width: 100%;
  min-height: 74px;
  resize: vertical;
  border: 1.5px solid #e2e2e2;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #111;
  outline: none;
  transition: border-color .2s, box-shadow .2s
}

.other-input:focus {
  border-color: #874dff;
  box-shadow: 0 0 0 3px rgba(135, 77, 255, .12)
}

.m-next {
  width: 100%;
  margin-top: 16px;
  padding: 13px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #874dff, #6720ff);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(103, 32, 255, .24);
  transition: opacity .2s, transform .2s
}

.m-next:hover {
  opacity: .92;
  transform: translateY(-1px)
}

.m-back {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 0;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 4px
}

.m-back:hover {
  color: #555
}

.email-lbl {
  font-family: 'Rubik', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px
}

.email-in {
  width: 100%;
  border: 1.5px solid #e2e2e2;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #111;
  outline: none;
  margin-bottom: 14px;
  transition: border-color .2s, box-shadow .2s
}

.email-in:focus {
  border-color: #874dff;
  box-shadow: 0 0 0 3px rgba(135, 77, 255, .12)
}

.email-err {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #e53935;
  margin: -6px 0 10px;
  display: none
}

.email-err.show {
  display: block
}

.btn-join {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #874dff, #6720ff);
  box-shadow: 0 4px 16px rgba(103, 32, 255, .3);
  transition: opacity .2s
}

.btn-join:hover {
  opacity: .9
}

.btn-join:disabled {
  opacity: .6;
  cursor: not-allowed
}

.email-fine {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #bbb;
  margin-top: 10px;
  text-align: center
}

.suc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #34c759;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px
}

.suc-title {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px
}

.suc-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #888;
  line-height: 24px
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .wrap {
    padding: 0 20px
  }

  .what,
  .compare {
    padding: 72px 0
  }

  .who {
    padding: 56px 0 72px
  }

  .cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 20px
  }

  .cta-left h2,
  .cta-left p {
    white-space: normal
  }

  .cta-left {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .cta-right {
    display: none
  }

  .who-card {
    display: none
  }

  .who-mob {
    display: block
  }

  .wmob-ptitle {
    display: none
  }

  .ch1 span,
  .ch2 span,
  .ch3 span {
    font-size: 13px
  }

  .ch1 {
    padding: 14px 12px
  }

  .ch2,
  .ch3 {
    padding: 14px 8px
  }

  .cc1 {
    padding: 0 12px;
    min-height: 60px
  }

  .cc1 span {
    font-size: 13px
  }

  .cc2,
  .cc3 {
    min-height: 60px;
    padding: 10px 8px
  }

  .ct-muted,
  .ct-purple {
    font-size: 11px
  }
}

@media(max-width:560px) {
  .hero {
    min-height: 640px;
    padding: 64px 0 56px
  }

  .hero-badge {
    margin-bottom: 24px
  }

  .hero h1 {
    font-size: 32px;
    line-height: 42px
  }

  .hero-sub {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px
  }

  .hero-scroll {
    margin-top: 32px
  }

  .feat-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -20px;
    padding: 0 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .feat-grid::-webkit-scrollbar {
    display: none
  }

  .feat-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 208px;
    scroll-snap-align: center
  }
}
