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

:root {
  --purple: #7B2FBE;
  --purple-bright: #a855f7;
  --gold: #F5A623;
  --dark: #0D0D12;
  --white: #FFFFFF;
  --grey: #B0A8C0;
}

.wl-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--dark);
}

/* ── HERO ── */
.wl-hero {
  background: radial-gradient(ellipse 60% 90% at 72% 50%, #9b1fd1 0%, #5c0a8a 25%, #2a0050 55%, #0d0020 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 60px 60px 60px 80px;
  position: relative;
  overflow: hidden;
}

.wl-hero-content {
  flex: 0 0 55%;
  max-width: 55%;
  z-index: 3;
  padding-right: 20px;
}

.wl-hero-content h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.wl-hero-content h1 em {
  color: var(--gold);
  font-style: italic;
}

.wl-hero-sub {
  color: #C9B8E8;
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.65;
  max-width: 460px;
}

.wl-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.wl-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  outline: none;
}

.wl-form input::placeholder { color: rgba(255,255,255,0.38); }

.wl-form button {
  padding: 14px 26px;
  background: var(--purple-bright);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.wl-form button:hover { background: var(--purple); }

.wl-no-spam {
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* ── BADGES ROW ── */
.wl-badges-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 16px;
}

.wl-badges-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.wl-badge-img {
  display: inline-block;
  transition: transform 0.2s;
}

.wl-badge-img:hover { transform: translateY(-3px); }

.wl-appstore-img {
  height: 44px;
  width: auto;
  display: block;
}

.wl-badge-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
}

.wl-badge-note a {
  color: var(--gold);
  text-decoration: none;
}

.wl-badge-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 340px;
  margin-top: 8px;
}

/* ── PHONE ── */
.wl-phone-wrap {
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 55%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  overflow: visible;
}

.wl-iphone-img {
  width: 100%;
  max-width: 780px;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.85));
}

/* ── PARTNERS ── */
.wl-partners {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  width: 100%;
}

.wl-partners-track {
  display: flex;
  width: max-content;
  animation: scroll-partners 30s linear infinite;
}

.wl-partners-slide {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 40px;
  flex-shrink: 0;
}

.wl-partners-slide span {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes scroll-partners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.wl-partners:hover .wl-partners-track {
  animation-play-state: paused;
}

/* ── WHY ── */
.wl-why {
  padding: 80px 60px;
  text-align: center;
  background: #fff;
}

.wl-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.wl-why h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 48px;
  line-height: 1.2;
  color: #111;
}

.wl-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.wl-feat-card-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

/* ── HOW ── */
.wl-how {
  background: #1a0030;
  padding: 80px 60px 100px 60px;
  text-align: center;
  margin-bottom: 0;
}

.wl-section-label-light {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.wl-how-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}

.wl-accent { color: #cc00cc; }

.wl-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  align-items: end;
}

.wl-step {
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wl-step-dim {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.wl-step-hl {
  background: linear-gradient(160deg, #a000cc 0%, #cc00cc 100%);
  border: none;
  transform: translateY(-24px);
  box-shadow: 0 24px 60px rgba(180,0,220,0.5);
}

.wl-step-num {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.wl-step h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.wl-step p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ── ROTATING WORD ── */
.wl-rotating-word {
  display: inline;
  position: relative;
  vertical-align: baseline;
}

.wl-word {
  display: none;
  color: #f5a623;
  font-style: italic;
  font-weight: 800;
  font-size: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

.wl-word.wl-word-active {
  display: inline;
  color: #f5a623;
}

/* ── TABLET ── */
@media (max-width: 1024px) {
  .wl-hero {
    padding: 50px 40px 60px 40px;
    min-height: 460px;
  }
  .wl-hero-content {
    flex: 0 0 52%;
    max-width: 52%;
  }
  .wl-phone-wrap {
    width: 48%;
    right: 0;
  }
  .wl-steps {
    gap: 12px;
  }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* HERO */
  .wl-hero {
    min-height: 520px;
    padding: 36px 20px 20px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .wl-hero-content {
    position: relative;
    z-index: 3;
    flex: 0 0 58%;
    width: 58%;
    max-width: 58%;
    padding-right: 0;
    padding-top: 10px;
  }
  .wl-hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .wl-hero-sub {
    font-size: 0.88rem;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .wl-form {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .wl-form input,
  .wl-form button {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 0.88rem;
    padding: 11px 14px;
  }
  .wl-no-spam {
    font-size: 0.72rem;
    margin-bottom: 14px;
  }
  /* BADGES */
  .wl-badges-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 10px;
  }
  .wl-badges-left {
    flex-direction: column;
    gap: 5px;
  }
  .wl-appstore-img {
    height: 38px;
    width: auto;
    max-width: 160px;
    display: block;
  }
  .wl-badge-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
  }
  .wl-badge-desc {
    font-size: 0.72rem;
    max-width: 100%;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin-top: 4px;
  }
  /* PHONE */
  .wl-phone-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 46%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    z-index: 2;
  }
  .wl-iphone-img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: top center;
  }
  /* PARTNERS */
  .wl-partners-slide {
    gap: 30px;
    padding: 0 20px;
  }
  /* WHY */
  .wl-why {
    padding: 50px 20px;
  }
  .wl-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  /* HOW */
  .wl-how {
    padding: 60px 20px 80px;
  }
  .wl-how-title {
    font-size: 2rem;
  }
  .wl-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wl-step-hl {
    transform: none;
  }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .wl-hero {
    min-height: 460px;
    padding: 28px 14px 14px 16px;
  }
  .wl-hero-content {
    flex: 0 0 60%;
    width: 60%;
    max-width: 60%;
  }
  .wl-hero-content h1 {
    font-size: 1.5rem;
  }
  .wl-phone-wrap {
    width: 42%;
  }
  .wl-appstore-img {
    height: 34px;
    max-width: 140px;
  }
  .wl-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .wl-how-title {
    font-size: 1.7rem;
  }
}

/* ══ MOBILE: Phone image full hero height ══ */
@media (max-width: 768px) {
  .wl-hero {
    align-items: flex-start !important;
    min-height: 580px !important;
  }
  .wl-phone-wrap {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 46% !important;
    height: 100% !important;
    align-items: flex-end !important;
    justify-content: center !important;
  }
  .wl-iphone-img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: bottom center !important;
  }
}

@media (max-width: 480px) {
  .wl-hero {
    min-height: 520px !important;
  }
}

/* ══ MOBILE: Phone as large background behind content ══ */
@media (max-width: 768px) {
  .wl-hero {
    min-height: unset !important;
    height: auto !important;
    padding: 36px 20px 40px 20px !important;
    align-items: flex-start !important;
    position: relative !important;
  }
  .wl-hero-content {
    position: relative !important;
    z-index: 3 !important;
    flex: unset !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .wl-phone-wrap {
    position: absolute !important;
    right: -30px !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 65% !important;
    height: 100% !important;
    z-index: 1 !important;
    align-items: center !important;
    justify-content: flex-end !important;
    opacity: 0.25 !important;
  }
  .wl-iphone-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center right !important;
  }
}

@media (max-width: 480px) {
  .wl-phone-wrap {
    width: 70% !important;
    opacity: 0.2 !important;
  }
}

/* ══ MOBILE: Hero polished final ══ */
@media (max-width: 768px) {
  .wl-hero {
    min-height: 620px !important;
    padding: 40px 24px 0 24px !important;
    overflow: hidden !important;
  }
  .wl-hero-content {
    width: 62% !important;
    max-width: 62% !important;
    padding-bottom: 40px !important;
  }
  .wl-hero-content h1 {
    font-size: 1.85rem !important;
    margin-bottom: 14px !important;
  }
  .wl-hero-sub {
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
    line-height: 1.55 !important;
  }
  /* Email + button take 62% width, nicely sized */
  .wl-form {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .wl-form input {
    width: 100% !important;
    padding: 13px 16px !important;
    font-size: 0.9rem !important;
    border-radius: 12px !important;
  }
  .wl-form button {
    width: 100% !important;
    padding: 13px 16px !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
  }
  .wl-no-spam {
    font-size: 0.75rem !important;
    margin-bottom: 16px !important;
  }
  /* Bigger store badges */
  .wl-badges-row {
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }
  .wl-badges-left {
    gap: 6px !important;
  }
  .wl-appstore-img {
    height: 52px !important;
    width: auto !important;
    max-width: 220px !important;
  }
  .wl-badge-note {
    font-size: 0.78rem !important;
  }
  .wl-badge-desc {
    font-size: 0.78rem !important;
    max-width: 100% !important;
    line-height: 1.5 !important;
  }
  /* Phone: large, base touches hero bottom */
  .wl-phone-wrap {
    position: absolute !important;
    right: -20px !important;
    top: 30px !important;
    bottom: 0 !important;
    width: 55% !important;
    height: auto !important;
    z-index: 1 !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    opacity: 0.35 !important;
  }
  .wl-iphone-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: bottom right !important;
  }
}

@media (max-width: 480px) {
  .wl-hero {
    min-height: 560px !important;
    padding: 32px 18px 0 18px !important;
  }
  .wl-hero-content {
    width: 68% !important;
    max-width: 68% !important;
  }
  .wl-hero-content h1 {
    font-size: 1.6rem !important;
  }
  .wl-appstore-img {
    height: 46px !important;
    max-width: 190px !important;
  }
  .wl-phone-wrap {
    width: 58% !important;
    opacity: 0.3 !important;
  }
}

/* ══ MOBILE: Phone full hero size ══ */
@media (max-width: 768px) {
  .wl-phone-wrap {
    position: absolute !important;
    right: -30px !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 75% !important;
    height: 100% !important;
    z-index: 1 !important;
    align-items: center !important;
    justify-content: flex-end !important;
    opacity: 0.28 !important;
  }
  .wl-iphone-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center right !important;
  }
}

@media (max-width: 480px) {
  .wl-phone-wrap {
    width: 80% !important;
    opacity: 0.25 !important;
  }
}

/* ══ MOBILE: Shift phone further right ══ */
@media (max-width: 768px) {
  .wl-phone-wrap {
    right: -80px !important;
  }
}

@media (max-width: 480px) {
  .wl-phone-wrap {
    right: -60px !important;
  }
}

/* ══ MOBILE: Final hero polish ══ */
@media (max-width: 768px) {
  .wl-phone-wrap {
    right: -140px !important;
  }
  .wl-form input,
  .wl-form button {
    width: 75% !important;
  }
  .wl-appstore-img {
    height: 58px !important;
    max-width: 260px !important;
  }
}

@media (max-width: 480px) {
  .wl-phone-wrap {
    right: -110px !important;
  }
  .wl-form input,
  .wl-form button {
    width: 80% !important;
  }
  .wl-appstore-img {
    height: 50px !important;
    max-width: 220px !important;
  }
}
