:root{
  --pv-bg-0:#041416;
  --pv-bg-1:#061a1d;
  --pv-bg-2:#071f22;

  --pv-accent:#74ff9a;
  --pv-accent-2:#2ad77e;

  --pv-text: rgba(255,255,255,.92);
  --pv-muted: rgba(255,255,255,.72);

  --pv-line: rgba(255,255,255,.10);

  --pv-shadow: 0 18px 55px rgba(0,0,0,.38);
  --pv-radius-xl: 22px;
  --pv-radius-lg: 18px;
  --pv-radius-md: 14px;

  --pv-font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --pv-font-head: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --pv-wrap: 1220px;
  --pv-pad: 24px;

  --pv-topbar-h: 76px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--pv-font-ui);
  color: var(--pv-text);
  background: #12181f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }

.pv-skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.pv-skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(0,0,0,.55);
  border: 1px solid var(--pv-line);
  z-index: 9999;
}

:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px rgba(116,255,154,.18);
  border-radius: 12px;
}

.pv-topbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #12181f;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.pv-topbar__wrap{
  max-width: var(--pv-wrap);
  margin: 0 auto;
  padding: 0 var(--pv-pad);
  height: var(--pv-topbar-h);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

.pv-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 170px;
}
.pv-brand__logo{
  height: 34px;
  width: auto;
}

.pv-nav{
  display:flex;
  align-items:center;
  gap: 18px;
}

.pv-nav__link{
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.80);
  padding: 10px 10px;
  border-radius: 12px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.pv-nav__link:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

.pv-nav__actions{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-left: 4px;
}

.pv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 14px;
  padding: 11px 16px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  user-select:none;
}
.pv-btn:active{ transform: translateY(0); }

.pv-btn--ghost{
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.pv-btn--ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.095);
  border-color: rgba(255,255,255,.16);
}

.pv-btn--solid{
  color: #052015;
  background: linear-gradient(180deg, #98ffc0 0%, #2fe081 100%);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 14px 38px rgba(45, 220, 130, .22);
}
.pv-btn--solid:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 52px rgba(45, 220, 130, .26);
}

.pv-btn--wide{
  width: 100%;
  padding: 13px 16px;
}

.pv-btn--cta{
  padding: 13px 18px;
  border-radius: 16px;
}

.pv-btn--card{
  font-weight: 900;
  letter-spacing: .012em;
  text-transform: uppercase;
}

.pv-burger{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.pv-burger:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.095);
  border-color: rgba(255,255,255,.16);
}

.pv-burger__glyph{
  width: 18px;
  height: 12px;
  position: relative;
  display:block;
}
.pv-burger__glyph::before,
.pv-burger__glyph::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 6px 0 rgba(255,255,255,.90);
  top:0;
}
.pv-burger__glyph::after{
  top:auto;
  bottom:0;
  box-shadow:none;
}

.pv-mnav{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.pv-mnav.pv-mnav--open{
  opacity: 1;
  pointer-events: auto;
}

.pv-mnav__panel{
  position:absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 28px));
  border-radius: 22px;
  background:
    radial-gradient(900px 420px at 16% 0%, rgba(30, 130, 92, .28), transparent 60%),
    linear-gradient(180deg, rgba(10, 25, 28, .96) 0%, rgba(7, 18, 20, .96) 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--pv-shadow);
  padding: 16px;
}

.pv-mnav__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 8px;
}

.pv-mnav__logo{
  height: 34px;
  width:auto;
}

.pv-mnav__close{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.pv-mnav__x{
  width: 16px;
  height: 16px;
  position: relative;
  display:block;
}
.pv-mnav__x::before,
.pv-mnav__x::after{
  content:"";
  position:absolute;
  inset: 0;
  margin:auto;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
}
.pv-mnav__x::before{ transform: rotate(45deg); }
.pv-mnav__x::after{ transform: rotate(-45deg); }

.pv-mnav__links{
  display:flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 10px 12px;
}

.pv-mnav__link{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.pv-mnav__link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.085);
  border-color: rgba(255,255,255,.16);
}

.pv-mnav__actions{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 6px 10px 12px;
}

.pv-hero{
  padding: 26px 0 22px;
  background: #001b1f;
}

.pv-hero__wrap{
  max-width: var(--pv-wrap);
  margin: 0 auto;
  padding: 0 var(--pv-pad);
}

.pv-promoGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pv-promoCard{
  position: relative;
  border-radius: var(--pv-radius-xl);
  overflow: hidden;
  min-height: 188px;
  border: 3px solid rgba(120,255,156,.42);
  box-shadow: 0 18px 56px rgba(0,0,0,.30);
  background: rgba(255,255,255,.02);
}
.pv-promoCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: calc(var(--pv-radius-xl) + 2px);
  border: 1px solid rgba(255,255,255,.10);
  pointer-events:none;
}
.pv-promoCard::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--pv-radius-xl);
  box-shadow: 0 0 0 1px rgba(0,0,0,.18) inset, 0 0 0 1px rgba(120,255,156,.08);
  pointer-events:none;
}

.pv-promoCard__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}
.pv-promoCard__shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.56) 0%, rgba(0,0,0,.62) 55%, rgba(0,0,0,.66) 100%),
    radial-gradient(900px 300px at 20% 0%, rgba(120,255,156,.12), transparent 60%);
}

.pv-promoCard__inner{
  position: relative;
  padding: 20px 20px 18px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-height: 188px;
}

.pv-promoCard__title{
  margin:0;
  font-family: var(--pv-font-head);
  font-weight: 900;
  letter-spacing: -0.012em;
  line-height: 1.14;
  font-size: 22px;
  text-shadow: 0 8px 22px rgba(0,0,0,.45);
}
.pv-promoCard__sub{
  margin:0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.65;
  max-width: 48ch;
}

.pv-promoCard__grow{
  flex: 1 1 auto;
}

.pv-codeChip{
  position: relative;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  width: fit-content;
}

.pv-codeChip__label{
  font-size: 12px;
  color: rgba(255,255,255,.76);
  font-weight: 800;
}

.pv-codeChip__code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.36);
  border: 1px solid rgba(120,255,156,.30);
  color: rgba(255,255,255,.94);
}

.pv-codeChip__copy{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.90);
  font-weight: 900;
  font-size: 12px;
  padding: 9px 11px;
  border-radius: 12px;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.pv-codeChip__copy:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.pv-toast{
  margin: 0;
  min-height: 16px;
  font-size: 12px;
  color: rgba(152,255,192,.90);
  font-weight: 800;
  letter-spacing: .01em;
  text-align: left;
  position: absolute;
  top: -10px;
  right: 0;
}

.pv-info{
  padding: 40px 0 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.pv-info__wrap{
  max-width: var(--pv-wrap);
  margin: 0 auto;
  padding: 0 var(--pv-pad);
}

.pv-info__title{
  margin: 0 0 12px;
  font-family: var(--pv-font-head);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.pv-info__lead{
  margin:0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.9;
  max-width: 100ch;
}

.pv-foot{
  background: #12181f;
}

.pv-foot__top,
.pv-foot__mid,
.pv-foot__bot{
  border-top: 1px solid rgba(255,255,255,.08);
}

.pv-foot__wrap{
  max-width: var(--pv-wrap);
  margin: 0 auto;
  padding: 18px var(--pv-pad);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.pv-foot__wrap--stack{
  flex-direction: column;
  justify-content:flex-start;
}

.pv-foot__wrap--center{
  align-items: center;
  text-align: center;
}

.pv-foot__wrap--top{
  align-items: center;
}

.pv-footBrand__logo{
  height: 34px;
  width: auto;
}

.pv-footNav{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items:center;
  justify-content:center;
}
.pv-footNav__link{
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.76);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.pv-footNav__link:hover{
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

.pv-storeRow{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:center;
}

.pv-storeBtn{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(61, 230, 150, .34) 0%, rgba(26, 160, 104, .28) 100%);
  box-shadow: 0 14px 38px rgba(45, 220, 130, .16);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pv-storeBtn:hover{
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(61, 230, 150, .44) 0%, rgba(26, 160, 104, .34) 100%);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 18px 52px rgba(45, 220, 130, .20);
}
.pv-storeBtn__ic{
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.28));
}
.pv-storeBtn__txt{
  font-weight: 900;
  font-size: 14px;
  color: rgba(255,255,255,.94);
  letter-spacing: .01em;
}

.pv-payRow{
  width: 100%;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  justify-content: center;
}
.pv-payRow__item{
  width: 54px;
  height: 34px;
  object-fit: contain;
}

.pv-helpRow{
  width: 100%;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  justify-content: center;
  padding-top: 8px;
}
.pv-helpRow__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.pv-helpRow__link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.14);
}
.pv-helpRow__badge{
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.pv-miniNav{
  width: 100%;
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}
.pv-miniNav__link{
  font-weight: 800;
  font-size: 12px;
  color: rgba(255,255,255,.72);
  padding: 8px 10px;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.pv-miniNav__link:hover{
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

.pv-copy{
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.pv-copy__line{
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.88);
}
.pv-copy__sub{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  max-width: 76ch;
  margin-left:auto;
  margin-right:auto;
}

@media (max-width: 1020px){
  .pv-promoGrid{ grid-template-columns: 1fr; }
  .pv-promoCard{ min-height: 196px; }
  .pv-promoCard__inner{ min-height: 196px; }
  .pv-info__title{ font-size: 26px; }
}

@media (max-width: 860px){
  .pv-nav{ display:none; }
  .pv-burger{ display:flex; }
  .pv-foot__wrap{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .pv-footBrand{
    display:flex;
    justify-content:center;
    width:100%;
  }
  .pv-footNav{ width:100%; justify-content:center; }
  .pv-storeRow{ width:100%; justify-content:center; }
}

@media (max-width: 520px){
  :root{ --pv-pad: 16px; --pv-topbar-h: 70px; }
  .pv-info__title{ font-size: 24px; }
  .pv-promoCard__title{ font-size: 18px; }
  .pv-mnav__panel{ padding: 14px; }
  .pv-mnav__actions{ grid-template-columns: 1fr 1fr; }
  .pv-payRow__item{ width: 52px; height: 34px; }
  .pv-toast{ text-align: center; }
}
