/* Matched landing — new design */
html.landing-active,
html.landing-active body {
  background: #1a1235 !important;
}

.lp {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow-x: hidden;
  background: transparent;
}

.lp-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 78% 16%, rgba(192, 132, 252, .42) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 10% 10%, rgba(244, 114, 182, .28) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(139, 92, 246, .3) 0%, transparent 55%),
    linear-gradient(165deg, #2a1a52 0%, #221845 40%, #17102f 100%);
}

.lp-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  min-height: 46px;
  padding: .75rem 1.2rem;
  transition: transform .16s ease, filter .16s ease;
  cursor: pointer;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #ff56a5, #c026d3 48%, #8e54e9);
  box-shadow: 0 10px 28px rgba(255, 86, 165, .32);
}
.lp-btn-primary:hover { filter: brightness(1.06); }
.lp-btn-ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
}
.lp-btn-lg { min-height: 52px; padding: .9rem 1.35rem; font-size: .95rem; }

.lp-nav { position: relative; z-index: 20; }
.lp-nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.lp-logo { display: inline-flex; }
.lp-logo .brand-logo { height: 34px; }
.lp-menu {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.lp-menu a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-weight: 650;
  font-size: .92rem;
}
.lp-menu a:hover { color: #fff; }
.lp-nav-cta { font-size: .88rem; min-height: 42px; }

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.lp-kicker {
  margin: 0 0 1rem;
  color: #ff6bb5;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lp-hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.6vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 800;
  max-width: 640px;
}
.lp-hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ff56a5, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-lead strong {
  color: #fff;
  font-weight: 800;
}
.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.4rem;
}
.lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .86rem;
  font-weight: 700;
}
.lp-pills li { display: inline-flex; align-items: center; gap: .4rem; }
.lp-pills i { color: #ff6bb5; }

.lp-hero-visual { display: grid; place-items: center; min-height: 420px; }
.lp-orbit {
  position: relative;
  width: min(420px, 92%);
  aspect-ratio: 1;
}
.lp-orbit::before {
  content: '';
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, .45) 0%, rgba(236, 72, 153, .12) 45%, transparent 70%);
  filter: blur(4px);
}
.lp-orbit-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.lp-orbit-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(18, 10, 40, .88);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: .78rem;
  font-weight: 750;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}
.lp-orbit-tag i { color: #c084fc; }
.lp-orbit-tag.ot1 { top: 8%; left: -6%; }
.lp-orbit-tag.ot2 { top: 2%; right: -2%; }
.lp-orbit-tag.ot3 { top: 38%; right: -14%; }
.lp-orbit-tag.ot4 { bottom: 28%; right: -8%; }
.lp-orbit-tag.ot5 { bottom: 6%; left: 8%; }
.lp-orbit-tag.ot6 { top: 42%; left: -16%; }

.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.lp-card {
  padding: 1.35rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}
.lp-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: .9rem;
}
.lp-card-icon--pink { background: rgba(255, 86, 165, .18); color: #ff6bb5; }
.lp-card-icon--purple { background: rgba(142, 84, 233, .2); color: #c4b5fd; }
.lp-card h3 { margin: 0 0 .45rem; font-size: 1.15rem; }
.lp-card p { margin: 0; color: rgba(255, 255, 255, .62); line-height: 1.55; font-size: .92rem; }

.lp-how { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.lp-section-head { text-align: center; margin-bottom: 1.75rem; }
.lp-section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -.03em;
}
.lp-section-head p {
  margin: .55rem 0 0;
  color: rgba(255, 255, 255, .55);
}
.lp-star { color: #ff6bb5; display: inline-block; margin-bottom: .4rem; }
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
}
.lp-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  border-top: 2px dashed rgba(255, 86, 165, .35);
  pointer-events: none;
}
.lp-step { text-align: center; position: relative; z-index: 1; }
.lp-step-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff56a5, #8e54e9);
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: .85rem;
}
.lp-step-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto .85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #d8b4fe;
  font-size: 1.2rem;
}
.lp-step h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.lp-step p { margin: 0 auto; max-width: 240px; color: rgba(255, 255, 255, .55); font-size: .9rem; line-height: 1.5; }

.lp-local {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.lp-local-map {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 86, 165, .22), transparent 42%),
    linear-gradient(160deg, rgba(72, 42, 130, .95), rgba(36, 24, 72, .98));
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
}
.lp-local-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .5;
}
.lp-map-pin {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff56a5, #8e54e9);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 0 0 10px rgba(255, 86, 165, .18), 0 16px 30px rgba(0, 0, 0, .35);
  z-index: 2;
}
.lp-map-face {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .7);
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
}
.lp-map-face.f1 { top: 18%; left: 22%; }
.lp-map-face.f2 { top: 22%; right: 18%; }
.lp-map-face.f3 { bottom: 24%; left: 16%; }
.lp-map-face.f4 { bottom: 20%; right: 22%; }
.lp-map-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .85rem;
  border-radius: 14px;
  background: rgba(10, 6, 24, .88);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
  font-weight: 750;
}
.lp-map-badge i { color: #ff6bb5; }
.lp-local-copy h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -.03em;
}
.lp-local-copy ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.lp-local-copy li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: rgba(255, 255, 255, .82);
  font-weight: 650;
  line-height: 1.4;
}
.lp-local-copy li i { color: #ff6bb5; margin-top: .15rem; }

.lp-interests {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.lp-interests-copy h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -.03em;
}
.lp-interests-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.65;
}
.lp-interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}
.lp-interest {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem .95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 750;
  font-size: .9rem;
}
.lp-interest i { color: #c084fc; }

.lp-provinces { padding-bottom: clamp(2.5rem, 5vw, 4rem); scroll-margin-top: 1rem; }
.lp-province-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
}
.lp-province {
  display: grid;
  gap: .2rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease;
}
.lp-province:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .2); }
.lp-province strong { font-size: .95rem; }
.lp-province span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.lp-province.is-live span { color: #86efac; }
.lp-province.is-soon span { color: #fbbf24; }

.lp-cta { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.lp-cta-card {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 80% at 70% 30%, rgba(192, 132, 252, .55), transparent 55%),
    radial-gradient(ellipse 70% 70% at 20% 80%, rgba(244, 114, 182, .35), transparent 50%),
    linear-gradient(145deg, #3b2170, #24124a);
  border: 1px solid rgba(255, 255, 255, .14);
}
.lp-cta-card h2 {
  margin: 0 0 .75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.04em;
}
.lp-cta-card > p {
  margin: 0 auto 1.4rem;
  max-width: 560px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}
.lp-cta-note {
  margin: 1rem 0 0 !important;
  color: rgba(255, 255, 255, .55) !important;
  font-size: .9rem;
}
.lp-cta-note i { color: #ff6bb5; }

.lp-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 2rem 0 2.5rem;
}
.lp-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 1.5rem;
  align-items: start;
}
.lp-footer-brand { margin-bottom: .55rem; }
.lp-footer-brand .brand-logo { height: 28px; }
.lp-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: .88rem;
  max-width: 320px;
  line-height: 1.5;
}
.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
}
.lp-footer-links a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-weight: 650;
  font-size: .9rem;
}
.lp-footer-links a:hover { color: #fff; }
.lp-footer-social { display: flex; gap: .75rem; }
.lp-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .lp-menu { display: none; }
  .lp-nav-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .lp-hero, .lp-local, .lp-interests { grid-template-columns: 1fr; }
  .lp-cards, .lp-steps { grid-template-columns: 1fr; }
  .lp-steps::before { display: none; }
  .lp-interest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-province-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lp-footer-inner { grid-template-columns: 1fr; }
  .lp-orbit-tag.ot3, .lp-orbit-tag.ot6 { display: none; }
}

@media (max-width: 640px) {
  .lp-hero-ctas { flex-direction: column; }
  .lp-hero-ctas .lp-btn { width: 100%; }
  .lp-nav-cta { display: none; }
  .lp-province-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-hero-visual { min-height: 320px; }
}
