:root {
  --ink: #050506;
  --panel: #0e0e11;
  --panel-soft: #151419;
  --white: #f8f7fb;
  --muted: #aaa6b2;
  --yellow: #ffc900;
  --yellow-soft: #ffe679;
  --violet: #a943ff;
  --violet-deep: #5b12af;
  --pink: #ff6f9e;
  --line: rgba(255, 255, 255, 0.13);
  --page: min(1240px, calc(100vw - 48px));
  --display: "Barlow Condensed", "Franklin Gothic Medium", sans-serif;
  --body: "Manrope", "Trebuchet MS", sans-serif;
  --script: "Caveat", cursive;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 3%, rgba(132, 34, 213, 0.16), transparent 30rem),
    radial-gradient(circle at 9% 52%, rgba(255, 201, 0, 0.055), transparent 24rem),
    #050506;
  font-family: var(--body);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.ambient-noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.lp-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}

.lp-header.scrolled {
  position: fixed;
  background: rgba(5, 5, 6, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.lp-nav {
  width: var(--page);
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  gap: 28px;
}

.lp-logo img {
  width: 156px;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.2vw, 48px);
}

.lp-nav-links a {
  position: relative;
  padding: 34px 0 29px;
  color: #e6e3e9;
  font-size: 0.84rem;
  font-weight: 700;
}

.lp-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(255, 201, 0, 0.7);
  transition: transform 180ms ease;
}

.lp-nav-links a:hover::after,
.lp-nav-links a.active::after {
  transform: scaleX(1);
}

.lp-login {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 201, 0, 0.72);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  transition: 180ms ease;
}

.lp-login:hover {
  color: #080808;
  background: var(--yellow);
  box-shadow: 0 0 28px rgba(255, 201, 0, 0.24);
}

.lp-login svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.lp-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.lp-menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: 180ms ease;
}

.lp-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050506 0%, rgba(5, 5, 6, 0.96) 37%, rgba(5, 5, 6, 0.05) 72%),
    linear-gradient(180deg, transparent 65%, #050506 100%);
  pointer-events: none;
}

.lp-hero-copy {
  position: relative;
  z-index: 5;
  width: var(--page);
  margin: 0 auto;
  padding-top: 178px;
}

.lp-kicker {
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.lp-hero h1 {
  max-width: 590px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.82;
}

.lp-hero h1 span {
  display: block;
}

.lp-hero h1 strong {
  position: relative;
  display: inline-block;
  margin-top: 13px;
  color: var(--yellow);
  font-family: var(--script);
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0;
  transform: rotate(-2deg);
}

.lp-hero h1 strong::after {
  content: "♡";
  margin-left: 16px;
  color: var(--violet);
  font-family: var(--body);
  font-size: 0.64em;
}

.lp-hero-lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: #d0ccd5;
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.lp-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  color: #080709;
  background: linear-gradient(105deg, var(--yellow) 0%, #ffb11b 24%, #c84ff9 100%);
  box-shadow: 0 16px 50px rgba(147, 44, 232, 0.22);
  font-size: 0.83rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lp-primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(147, 44, 232, 0.34);
}

.lp-primary-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-text-button {
  color: #ddd9e2;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-text-button span {
  color: var(--yellow);
  font-size: 1.15rem;
}

.lp-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lp-store-row a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 144px;
  min-height: 43px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.64);
  font-size: 0.8rem;
  font-weight: 800;
}

.lp-store-row small {
  display: block;
  color: #aaa6b0;
  font-size: 0.52rem;
  font-weight: 500;
}

.store-icon {
  color: #fff;
  font-size: 1.25rem;
}

.play-mark {
  color: var(--yellow);
  font-size: 1.1rem;
}

.lp-hero-visual {
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - 1450px) / 2));
  bottom: 0;
  width: min(62vw, 890px);
}

.lp-hero-visual::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -12%;
  width: 92%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 30, 195, 0.34), transparent 66%);
  filter: blur(20px);
}

.lp-hero-visual > img {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 0;
  width: min(100%, 770px);
  height: 94%;
  object-fit: contain;
  object-position: right bottom;
  filter: contrast(1.08) saturate(0.9) drop-shadow(-32px 15px 70px rgba(0, 0, 0, 0.72));
  animation: hero-rise 900ms cubic-bezier(0.18, 0.78, 0.22, 1) both;
}

.hero-halo {
  position: absolute;
  z-index: 1;
  top: 14%;
  right: 8%;
  width: min(36vw, 560px);
  aspect-ratio: 1;
  border: 6px solid;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px currentColor);
  opacity: 0.85;
}

.hero-halo-yellow {
  color: var(--yellow);
  clip-path: inset(0 50% 0 0);
}

.hero-halo-violet {
  color: var(--violet);
  clip-path: inset(0 0 0 50%);
  filter: drop-shadow(0 0 25px currentColor) blur(0.3px);
}

.hero-stars {
  position: absolute;
  z-index: 2;
  inset: 8% -4% 4% 15%;
  opacity: 0.65;
  background-image:
    radial-gradient(circle, var(--yellow) 0 1px, transparent 1.5px),
    radial-gradient(circle, var(--violet) 0 1px, transparent 1.5px);
  background-position: 0 0, 21px 28px;
  background-size: 48px 48px, 67px 67px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.hero-balance-card {
  position: absolute;
  z-index: 6;
  right: 3%;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 17px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(12, 10, 17, 0.74);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.balance-orbit {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(var(--yellow) 0 34%, var(--violet) 34% 67%, var(--pink) 67% 88%, #28262d 88%);
}

.balance-orbit::before {
  content: "";
  position: absolute;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #0b0a0e;
}

.balance-orbit span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
}

.hero-balance-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
}

.hero-balance-card strong {
  display: block;
  color: #fff;
  font-size: 0.76rem;
}

.hero-chip {
  position: absolute;
  z-index: 5;
  padding: 7px 12px;
  border: 1px solid;
  border-radius: 999px;
  background: rgba(6, 6, 8, 0.72);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-chip-body {
  top: 28%;
  left: 18%;
  color: var(--yellow);
}

.hero-chip-mind {
  top: 20%;
  right: 8%;
  color: var(--violet);
}

.hero-chip-soul {
  right: 15%;
  bottom: 27%;
  color: var(--pink);
}

.lp-scroll-cue {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 18px;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.lp-scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--yellow);
  transform: translateX(-50%);
  animation: scroll-dot 1.7s ease-in-out infinite;
}

.lp-section {
  width: var(--page);
  margin: 0 auto;
  padding: 92px 0;
}

.lp-section-heading {
  margin-bottom: 38px;
  text-align: center;
}

.lp-section-heading > p {
  margin: 0 0 9px;
  color: #c8c4ce;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.lp-section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
}

.lp-section-heading h2 strong {
  color: var(--yellow);
  font-family: var(--script);
  font-size: 1.22em;
  font-weight: 600;
}

.lp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-pillar-card {
  --accent: var(--yellow);
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #0d0c10;
  transition: transform 260ms ease, border-color 260ms ease;
}

.lp-pillar-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 72%, transparent);
}

.lp-pillar-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: grayscale(0.25) saturate(0.82);
  transition: transform 600ms ease;
}

.lp-pillar-card:hover > img {
  transform: scale(1.05);
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 6, 0.08), rgba(4, 4, 6, 0.92) 74%),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 65%);
}

.pillar-mind {
  --accent: var(--violet);
}

.pillar-soul {
  --accent: var(--pink);
}

.pillar-content {
  position: absolute;
  z-index: 2;
  inset: auto 30px 28px;
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 24%, transparent);
}

.pillar-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-content > p:first-of-type {
  position: absolute;
  right: 0;
  top: 38px;
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--display);
  font-size: 1rem;
}

.pillar-content h3 {
  margin: 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pillar-content > span {
  display: block;
  width: 44px;
  height: 2px;
  margin: 10px 0 16px;
  background: var(--accent);
}

.pillar-content > p:last-of-type {
  min-height: 66px;
  margin: 0;
  color: #d0ccd4;
  font-size: 0.82rem;
  line-height: 1.7;
}

.pillar-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-stories {
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 50% 20%, rgba(139, 49, 217, 0.09), transparent 30rem),
    #08080a;
}

.lp-story-shell {
  position: relative;
}

.lp-story-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(290px, 1fr));
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.lp-story-track::-webkit-scrollbar {
  display: none;
}

.lp-story-card {
  min-width: 0;
  min-height: 190px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 24px;
  scroll-snap-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
}

.lp-story-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.lp-story-card span {
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.lp-story-card blockquote {
  min-height: 64px;
  margin: 11px 0 16px;
  color: #e9e6ec;
  font-size: 0.82rem;
  line-height: 1.65;
}

.lp-story-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
}

.lp-story-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.story-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--yellow);
  background: #101013;
  transform: translateY(-50%);
  cursor: pointer;
}

.story-prev {
  left: -58px;
}

.story-next {
  right: -58px;
}

.story-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.story-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #49464f;
}

.story-dots span:first-child {
  width: 24px;
  border-radius: 10px;
  background: var(--yellow);
}

.lp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.lp-plan-card {
  --accent: var(--yellow);
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 34px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, rgba(255, 255, 255, 0.1));
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 2%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 13rem),
    linear-gradient(160deg, #121216, #09090c);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.lp-plan-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 70px color-mix(in srgb, var(--accent) 12%, transparent);
}

.lp-plan-card.tone-violet {
  --accent: var(--violet);
}

.lp-plan-card.tone-pink {
  --accent: var(--pink);
}

.lp-plan-card.featured {
  transform: translateY(-14px);
  border-color: var(--accent);
  box-shadow: 0 24px 80px rgba(135, 42, 212, 0.17);
}

.lp-plan-card.featured:hover {
  transform: translateY(-20px);
}

.plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 24px;
  border-radius: 999px;
  color: #080709;
  background: var(--yellow);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-overline {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-plan-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.4rem;
  text-transform: uppercase;
}

.plan-description {
  min-height: 50px;
  margin: 8px 0 24px;
  color: #bbb7c1;
  font-size: 0.79rem;
  line-height: 1.55;
}

.plan-price {
  margin: 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
}

.plan-price sup {
  font-size: 1.5rem;
}

.plan-price small {
  color: #bdb8c3;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
}

.lp-plan-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.lp-plan-card li {
  position: relative;
  padding-left: 24px;
  color: #d8d4dc;
  font-size: 0.76rem;
  line-height: 1.45;
}

.lp-plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #080709;
  background: var(--accent);
  font-size: 0.64rem;
  font-weight: 900;
}

.lp-plan-card > a {
  display: grid;
  place-items: center;
  min-height: 44px;
  margin-top: auto;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  transition: 180ms ease;
}

.lp-plan-card > a:hover,
.lp-plan-card.featured > a {
  color: #080709;
  background: var(--accent);
}

.lp-plan-note {
  margin: 34px 0 0;
  color: #85818b;
  font-size: 0.7rem;
  text-align: center;
}

.lp-download {
  visibility: hidden;
  position: relative;
  width: var(--page);
  min-height: 250px;
  margin: 28px auto 70px;
  display: grid;
  grid-template-columns: 1fr 1.45fr 0.7fr;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 34px 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 100%, rgba(255, 193, 0, 0.4), transparent 18rem),
    radial-gradient(circle at 75% 35%, rgba(137, 40, 217, 0.28), transparent 22rem),
    linear-gradient(105deg, #171014, #171022 52%, #0d0913);
}

.lp-home-banner{width:var(--page);margin:22px auto 34px;overflow:hidden;border:1px solid rgba(255,255,255,.11);border-radius:24px;background:#09090b;box-shadow:0 25px 70px rgba(0,0,0,.4)}.lp-home-banner a{display:block}.lp-home-banner img{display:block;width:100%;height:auto;max-height:520px;object-fit:cover;transition:transform 550ms ease}.lp-home-banner:hover img{transform:scale(1.012)}

.download-phone {
  align-self: end;
}

.download-phone img {
  width: 320px;
  max-height: 240px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.45));
}

.download-copy > p:first-child {
  margin: 0 0 7px;
  color: var(--yellow);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.download-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.download-copy h2 strong {
  display: block;
  color: var(--yellow);
  font-family: var(--script);
  font-size: 1.08em;
  font-weight: 600;
}

.download-copy > p:last-of-type {
  max-width: 520px;
  color: #c4c0ca;
  font-size: 0.78rem;
  line-height: 1.65;
}

.download-qr {
  text-align: center;
}

.download-qr img {
  width: 160px;
  max-height: 170px;
  margin: 0 auto;
  object-fit: contain;
  object-position: top;
  border-radius: 12px;
}

.download-qr p {
  margin: 10px 0 0;
  color: #c7c3cc;
  font-size: 0.65rem;
  line-height: 1.45;
}

.lp-footer {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.lp-footer .lp-logo img {
  width: 130px;
}

.lp-footer > p {
  margin: 0;
  color: #77727e;
  font-size: 0.64rem;
}

.lp-footer > p:last-child {
  text-align: right;
}

.lp-footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.lp-footer-links a {
  color: #aaa5af;
  font-size: 0.68rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.35; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 12px); }
}

@media (max-width: 1080px) {
  .lp-nav {
    grid-template-columns: 160px 1fr 170px;
  }

  .lp-nav-links {
    gap: 22px;
  }

  .lp-hero-visual {
    right: -16%;
    width: 72vw;
    opacity: 0.82;
  }

  .lp-hero::before {
    z-index: 4;
    background: linear-gradient(90deg, #050506 0%, rgba(5, 5, 6, 0.91) 52%, rgba(5, 5, 6, 0.22) 100%);
  }

  .lp-story-track {
    grid-template-columns: repeat(3, minmax(330px, 1fr));
  }

  .story-arrow {
    display: none;
  }

  .lp-download {
    grid-template-columns: 0.8fr 1.4fr;
  }

  .download-qr {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 30px, 680px);
  }

  .lp-header,
  .lp-header.scrolled {
    position: fixed;
    background: rgba(5, 5, 6, 0.9);
    backdrop-filter: blur(18px);
  }

  .lp-nav {
    min-height: 72px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .lp-logo img {
    width: 126px;
  }

  .lp-menu-toggle {
    display: block;
    order: 3;
  }

  .lp-login {
    min-height: 39px;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  .lp-nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(7, 7, 9, 0.98);
    transition: max-height 230ms ease;
  }

  .lp-nav-links.open {
    max-height: calc(100vh - 72px);
    border-bottom: 1px solid var(--line);
  }

  .lp-nav-links a {
    padding: 18px 24px;
    border-top: 1px solid var(--line);
  }

  .lp-nav-links a::after {
    display: none;
  }

  .lp-hero {
    min-height: 790px;
    padding-bottom: 40px;
  }

  .lp-hero-copy {
    padding-top: 126px;
  }

  .lp-hero h1 {
    max-width: 500px;
    font-size: clamp(3.7rem, 14vw, 5.6rem);
  }

  .lp-hero-lead {
    max-width: 420px;
  }

  .lp-hero-visual {
    right: -24%;
    bottom: -8%;
    width: 100vw;
    height: 65%;
    opacity: 0.52;
  }

  .hero-halo {
    right: 11%;
    width: 70vw;
  }

  .hero-balance-card,
  .hero-chip {
    display: none;
  }

  .lp-scroll-cue {
    display: none;
  }

  .lp-section {
    padding: 68px 0;
  }

  .lp-pillar-grid,
  .lp-plan-grid {
    grid-template-columns: 1fr;
  }

  .lp-pillar-card {
    min-height: 390px;
  }

  .lp-plan-card,
  .lp-plan-card.featured,
  .lp-plan-card.featured:hover {
    transform: none;
  }

  .lp-story-track {
    grid-template-columns: repeat(3, minmax(86vw, 1fr));
  }

  .lp-download {
    grid-template-columns: 1fr;
    padding: 42px 26px 0;
    text-align: center;
  }

  .download-copy {
    grid-row: 1;
  }

  .download-copy .lp-store-row {
    justify-content: center;
  }

  .download-phone img {
    margin: 0 auto;
  }

  .lp-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .lp-footer > p:last-child {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .lp-login svg {
    display: none;
  }

  .lp-hero h1 {
    font-size: clamp(3.35rem, 18vw, 4.5rem);
  }

  .lp-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .lp-primary-button {
    width: 100%;
  }

  .lp-store-row a {
    flex: 1;
    min-width: 130px;
  }

  .lp-section-heading h2 {
    font-size: 2.65rem;
  }

  .lp-story-card {
    grid-template-columns: 1fr;
  }

  .lp-story-card img {
    width: 62px;
    height: 62px;
  }

  .lp-plan-card {
    min-height: 450px;
    padding: 30px 24px;
  }

  .lp-footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Reference-aligned premium presentation */
:root {
  --page: min(100% - 56px, 1180px);
  --yellow: #ffc400;
  --violet: #a53cff;
  --pink: #ff6797;
}

body {
  background: #030304;
}

.lp-header {
  position: absolute;
  background: linear-gradient(180deg, rgba(3, 3, 4, 0.96), rgba(3, 3, 4, 0));
}

.lp-nav {
  min-height: 104px;
  grid-template-columns: 210px 1fr 210px;
}

.lp-logo img {
  width: 150px;
}

.lp-nav-links {
  gap: 54px;
}

.lp-nav-links a {
  font-size: 0.86rem;
}

.lp-login {
  justify-self: end;
  min-height: 42px;
  padding: 0 22px;
  border-color: rgba(255, 196, 0, 0.68);
  color: var(--yellow);
}

.lp-hero {
  width: var(--page);
  min-height: 650px;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-hero::before {
  z-index: 3;
  background: linear-gradient(90deg, #030304 0%, rgba(3, 3, 4, 0.98) 39%, rgba(3, 3, 4, 0.25) 68%, transparent 100%);
}

.lp-hero-copy {
  z-index: 6;
  width: 48%;
  max-width: 570px;
  margin: 0;
  padding-top: 150px;
}

.lp-kicker,
.lp-text-button,
.hero-balance-card,
.hero-chip,
.lp-scroll-cue {
  display: none;
}

.lp-hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(4.5rem, 6vw, 6.1rem);
  line-height: 0.93;
  letter-spacing: -0.035em;
}

.lp-hero h1 span {
  display: block;
}

.lp-hero h1 strong {
  display: inline-block;
  margin-top: 9px;
  color: var(--yellow);
  font-family: var(--script);
  font-size: 1.02em;
  font-weight: 600;
  letter-spacing: 0;
}

.lp-hero h1 strong::after {
  content: "\2661";
  margin-left: 14px;
  color: var(--violet);
  font-family: var(--body);
  font-size: 0.62em;
  vertical-align: 0.18em;
}

.lp-hero-lead {
  max-width: 510px;
  margin: 22px 0 24px;
  color: #f0edf3;
  font-size: 1.02rem;
  line-height: 1.58;
}

.lp-hero-actions {
  margin: 0 0 22px;
}

.lp-primary-button {
  min-width: 310px;
  min-height: 58px;
  padding-inline: 28px;
  border: 0;
  color: #fff;
  background: linear-gradient(100deg, #ffbd00 0%, #ff9a53 43%, #a936ff 100%);
  box-shadow: 0 14px 40px rgba(149, 44, 255, 0.2);
  font-size: 0.94rem;
}

.lp-primary-button svg {
  width: 21px;
}

.lp-store-row {
  gap: 14px;
}

.lp-store-row a {
  min-width: 150px;
  min-height: 46px;
  padding: 7px 13px;
  border-color: rgba(255, 255, 255, 0.52);
  border-radius: 5px;
  color: #fff;
  background: #050506;
}

.store-symbol {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.play-symbol {
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.lp-hero-visual {
  right: -2%;
  bottom: 0;
  width: 63%;
  height: 100%;
  z-index: 2;
}

.lp-hero-visual > img {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -7%;
  width: 96%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.72));
}

.hero-halo {
  display: none;
  top: 16%;
  right: 1%;
  width: 78%;
  aspect-ratio: 1;
  border-width: 4px;
  opacity: 0.95;
}

.hero-halo-yellow {
  border-color: var(--yellow);
  clip-path: inset(0 47% 0 0);
  box-shadow: 0 0 34px rgba(255, 196, 0, 0.66), inset 0 0 28px rgba(255, 196, 0, 0.22);
}

.hero-halo-violet {
  border-color: var(--violet);
  clip-path: inset(0 0 0 51%);
  box-shadow: 0 0 38px rgba(165, 60, 255, 0.68), inset 0 0 30px rgba(165, 60, 255, 0.24);
}

.hero-stars {
  inset: 10% 0 0 10%;
  opacity: 0.8;
  background: radial-gradient(circle at 64% 42%, rgba(161, 48, 255, 0.32), transparent 38%), radial-gradient(circle at 39% 44%, rgba(255, 194, 0, 0.22), transparent 36%);
}

.lp-section {
  padding: 46px 0;
}

.lp-section-heading {
  margin-bottom: 27px;
}

.lp-section-heading > p {
  margin-bottom: 9px;
  font-size: 0.7rem;
  letter-spacing: 0.38em;
}

.lp-section-heading h2 {
  font-size: clamp(2.4rem, 4.2vw, 3.65rem);
  letter-spacing: -0.02em;
}

.lp-section-heading h2 strong {
  font-family: var(--script);
  font-size: 1.18em;
  font-weight: 600;
}

.lp-pillar-grid {
  gap: 20px;
}

.lp-pillar-card {
  min-height: 405px;
  border-radius: 18px;
}

.lp-pillar-card > img {
  filter: brightness(0.76) saturate(0.98);
}

.pillar-overlay {
  background: linear-gradient(180deg, rgba(3, 3, 4, 0.08), rgba(3, 3, 4, 0.48) 38%, rgba(3, 3, 4, 0.96) 100%);
}

.pillar-content {
  inset: 44px 28px 31px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pillar-icon {
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  margin: 0 0 18px;
  background: rgba(2, 2, 3, 0.7);
  box-shadow: 0 0 32px color-mix(in srgb, var(--accent) 34%, transparent);
}

.pillar-icon svg {
  width: 42px;
}

.pillar-content > p:first-of-type,
.pillar-content a {
  display: none;
}

.pillar-content h3 {
  font-size: 2.2rem;
}

.pillar-content > span {
  width: 64px;
  margin: 9px 0 17px;
}

.pillar-content > p:last-of-type {
  min-height: 0;
  max-width: 260px;
  color: #efedf1;
  font-size: 0.82rem;
  line-height: 1.65;
}

.lp-pillar-card::after {
  content: "\2661";
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 13px;
  color: var(--accent);
  font-size: 1.9rem;
  transform: translateX(-50%);
}

.lp-stories {
  width: var(--page);
  padding-inline: 0;
  border: 0;
  background: #030304;
}

.lp-stories .lp-section-heading > p {
  display: none;
}

.lp-story-track {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lp-story-card {
  min-height: 172px;
  grid-template-columns: 64px 1fr;
  gap: 13px;
  padding: 17px;
  border-radius: 12px;
}

.lp-story-card img {
  width: 58px;
  height: 58px;
}

.lp-story-card span {
  font-size: 0.68rem;
}

.lp-story-card blockquote {
  min-height: 58px;
  margin: 7px 0 10px;
  font-size: 0.66rem;
  line-height: 1.55;
}

.lp-story-card h3 {
  font-size: 0.94rem;
}

.story-arrow {
  width: 38px;
  height: 38px;
}

.story-prev { left: -48px; }
.story-next { right: -48px; }

.lp-plans {
  width: var(--page);
  margin-inline: auto;
}

.lp-plan-grid {
  gap: 18px;
}

.lp-plan-card {
  min-height: 415px;
  padding: 29px 30px;
  border-radius: 14px;
}

.lp-plan-card h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  line-height: 1;
}

.plan-description {
  min-height: 42px;
  margin-bottom: 19px;
}

.plan-price {
  font-size: 3.7rem;
}

.lp-plan-card ul {
  gap: 9px;
  margin: 22px 0;
}

.lp-plan-card.featured,
.lp-plan-card.featured:hover {
  transform: translateY(-8px);
}

.lp-download {
  min-height: 190px;
  margin-top: 18px;
  margin-bottom: 28px;
  grid-template-columns: 0.9fr 1.55fr 0.72fr;
  padding: 25px 38px;
  border-radius: 22px;
}

.download-phone img {
  width: 250px;
  max-height: 190px;
}

.download-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.download-qr img {
  width: 135px;
  max-height: 140px;
}

.lp-footer {
  padding: 24px 0 34px;
}

/* Sucursales premium */
.lp-locations{padding:82px 0 56px}.lp-section-heading{max-width:780px;margin:0 auto 38px;text-align:center}.section-kicker{margin:0 0 9px;color:#ffc400;font-size:.72rem;font-weight:800;letter-spacing:.36em;text-transform:uppercase}.lp-section-heading h2{margin:0;font-family:"Barlow Condensed",sans-serif;font-size:clamp(2.6rem,5vw,4.6rem);line-height:.95;text-transform:uppercase}.lp-section-heading h2 span{color:#ffc400}.section-lead{max-width:650px;margin:18px auto 0;color:#a8a8b1;line-height:1.75}.lp-location-grid{display:grid;gap:24px}.lp-location-card{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(310px,.65fr);min-height:440px;overflow:hidden;border:1px solid rgba(255,255,255,.11);border-radius:28px;background:radial-gradient(circle at 88% 15%,rgba(255,196,0,.1),transparent 27%),linear-gradient(145deg,#101013,#070708 72%);box-shadow:0 30px 80px rgba(0,0,0,.35)}.lp-location-card.location-reverse{grid-template-columns:minmax(310px,.65fr) minmax(0,1.35fr)}.lp-location-card.location-reverse .lp-location-gallery{order:2}.lp-location-gallery{position:relative;display:grid;grid-template-rows:minmax(0,1fr) auto;min-width:0;padding:12px;background:#050506}.location-main-photo,.location-photo-placeholder{min-height:330px;overflow:hidden;border-radius:19px}.location-main-photo img{width:100%;height:100%;min-height:330px;object-fit:cover;transition:opacity 160ms ease,transform 500ms ease}.lp-location-card:hover .location-main-photo img{transform:scale(1.025)}.location-main-photo img.is-changing{opacity:.3}.location-photo-placeholder{display:grid;place-items:center;align-content:center;gap:16px;background:radial-gradient(circle,rgba(255,196,0,.13),transparent 42%),linear-gradient(145deg,#17150b,#080809)}.location-photo-placeholder img{width:150px;opacity:.82}.location-photo-placeholder span{color:#84858e;font-size:.73rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase}.location-thumbnails{display:flex;gap:8px;overflow-x:auto;padding-top:9px;scrollbar-width:thin}.location-thumbnails button{flex:0 0 78px;height:57px;overflow:hidden;padding:0;border:1px solid transparent;border-radius:10px;background:#151519;cursor:pointer;opacity:.56;transition:opacity 160ms ease,border-color 160ms ease,transform 160ms ease}.location-thumbnails button:hover,.location-thumbnails button.active{border-color:#ffc400;opacity:1;transform:translateY(-1px)}.location-thumbnails img{width:100%;height:100%;object-fit:cover}.lp-location-copy{position:relative;display:flex;flex-direction:column;justify-content:center;padding:clamp(30px,5vw,64px)}.location-number{position:absolute;top:25px;right:29px;color:rgba(255,255,255,.06);font-family:"Barlow Condensed",sans-serif;font-size:6rem;font-weight:900;line-height:1}.location-overline{margin:0 0 10px;color:#ffc400;font-size:.72rem;font-weight:800;letter-spacing:.25em;text-transform:uppercase}.lp-location-copy h3{position:relative;margin:0 0 30px;font-family:"Barlow Condensed",sans-serif;font-size:clamp(2.6rem,4vw,4rem);line-height:.95;text-transform:uppercase}.location-details{display:grid;gap:18px}.location-details p{display:grid;grid-template-columns:32px 1fr;margin:0;color:#d0d0d5;line-height:1.55}.location-details p>span{grid-row:1/span 2;color:#ffc400;font-size:1.35rem}.location-details strong{color:#858690;font-size:.66rem;letter-spacing:.16em;text-transform:uppercase}.location-details a{color:#fff;text-decoration:none}.location-map-link{align-self:flex-start;margin-top:31px;padding:12px 18px;border:1px solid rgba(255,196,0,.62);border-radius:999px;color:#ffc400;font-size:.78rem;font-weight:800;text-decoration:none;text-transform:uppercase;transition:background 180ms ease,color 180ms ease,transform 180ms ease}.location-map-link:hover{background:#ffc400;color:#070707;transform:translateY(-2px)}.lp-location-loading,.lp-location-empty{display:grid;place-items:center;min-height:250px;padding:35px;border:1px solid rgba(255,196,0,.2);border-radius:26px;background:rgba(255,255,255,.025);text-align:center}.lp-location-loading small,.lp-location-empty p{color:#858690}.location-loading-mark{width:46px;height:46px;border:2px solid rgba(255,196,0,.18);border-top-color:#ffc400;border-radius:50%;animation:location-spin .9s linear infinite}.lp-location-empty>span{color:#ffc400;font-size:.75rem;font-weight:900;letter-spacing:.25em}.lp-location-empty h3{margin:10px 0 0;font-family:"Barlow Condensed",sans-serif;font-size:2.5rem;text-transform:uppercase}@keyframes location-spin{to{transform:rotate(360deg)}}

@media (max-width: 900px) {
  :root { --page: min(100% - 32px, 820px); }
  .lp-nav { grid-template-columns: 150px 1fr 170px; }
  .lp-nav-links { gap: 24px; }
  .lp-hero { min-height: 590px; }
  .lp-hero h1 { font-size: clamp(3.8rem, 8vw, 5.1rem); }
  .lp-story-track { grid-template-columns: repeat(4, minmax(180px, 1fr)); overflow-x: auto; }
}

@media (max-width: 820px) {
  .lp-header { position: fixed; }
  .lp-nav { min-height: 72px; grid-template-columns: 1fr auto auto; }
  .lp-hero { width: 100%; min-height: 760px; }
  .lp-hero-copy { width: var(--page); padding-top: 112px; }
  .lp-hero::before { background: linear-gradient(180deg, #030304 0%, rgba(3,3,4,.94) 47%, rgba(3,3,4,.35) 100%); }
  .lp-hero-visual { right: -25%; bottom: -7%; width: 118%; height: 64%; opacity: 0.78; }
  .lp-hero-visual > img { right: 14%; bottom: -14%; width: 62%; height: 110%; }
  .hero-halo { right: 12%; width: 68%; }
  .lp-pillar-grid, .lp-plan-grid { grid-template-columns: 1fr; }
  .lp-pillar-card { min-height: 440px; }
  .lp-story-track { grid-template-columns: repeat(4, minmax(78vw, 1fr)); }
  .lp-download { grid-template-columns: 1fr; padding-bottom: 0; }
  .download-copy { grid-row: 1; }
  .lp-locations{padding-top:60px}.lp-location-card,.lp-location-card.location-reverse{grid-template-columns:1fr}.lp-location-card.location-reverse .lp-location-gallery{order:0}.lp-location-copy{min-height:340px}
}

@media (max-width: 520px) {
  .lp-hero h1 { font-size: clamp(3.1rem, 16vw, 4.2rem); }
  .lp-hero-lead { font-size: 0.9rem; }
  .lp-primary-button { min-width: 0; width: 100%; }
  .lp-store-row a { min-width: 0; }
  .lp-pillar-card { min-height: 410px; }
  .lp-plan-card { min-height: 390px; }
  .lp-location-card{border-radius:21px}.lp-location-gallery{padding:8px}.location-main-photo,.location-photo-placeholder,.location-main-photo img{min-height:245px}.lp-location-copy{min-height:320px;padding:30px 24px}.location-number{top:20px;right:22px;font-size:4.6rem}
}
