:root {
  --teal: #2dd4bf;
  --teal-bright: #5eead4;
  --teal-deep: #0f766e;
  --navy-0: #050b1a;
  --navy-1: #0a1326;
  --navy-2: #111e3a;
  --navy-3: #1a2a4f;
  --amber: #ffb020;
  --violet: #7c6df6;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f8fafc;
  --ink-soft: #cbd5e1;
  --ink-mute: #94a3b8;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --maxw: 1240px;
  --gutter: 32px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.pemepro-site {
  background: var(--navy-0);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  line-height: 1.05;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 1000;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: var(--navy-0);
  font-weight: 700;
}

.skip-link:focus-visible {
  top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--teal);
  color: var(--navy-0);
  box-shadow: 0 14px 34px rgba(45, 212, 191, 0.26);
}

.btn--primary:hover {
  background: var(--teal-bright);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

.btn--lg {
  min-height: 56px;
  padding: 18px 30px;
}

.btn .arrow,
.btn .aj-icon {
  width: 16px;
  height: 16px;
}

.aj-google-play-badge {
  display: inline-flex;
  flex: 0 0 auto;
  width: 188px;
  line-height: 0;
  transition: transform 180ms ease, filter 180ms ease;
}

.aj-google-play-badge:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.aj-google-play-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.aj-app-store-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  width: 188px;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #08111f;
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  cursor: default;
}

.aj-app-store-soon-badge .aj-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 11, 26, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(180%);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.nav__brand .mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.nav__brand .mark img {
  width: 100%;
  height: 100%;
}

.nav__list {
  display: flex;
  gap: var(--sp-6);
  margin-left: var(--sp-5);
}

.nav__list a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.nav__list a:hover {
  color: var(--ink);
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.nav__lang a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 800;
}

.nav__lang a[aria-current="true"] {
  background: var(--teal);
  color: var(--navy-0);
}

.nav__cta {
  width: 142px;
}

.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(45, 212, 191, 0.16), transparent 44%),
    linear-gradient(220deg, rgba(124, 109, 246, 0.14), transparent 48%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.hero__copy {
  max-width: 650px;
}

.hero__title {
  margin-top: var(--sp-5);
  font-size: 88px;
  line-height: 0.98;
  font-weight: 800;
}

.hero__title .accent {
  color: var(--teal);
}

.hero__sub {
  max-width: 560px;
  margin-top: var(--sp-6);
  color: var(--ink-soft);
  font-size: 21px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}

.hero__visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.hero__phone,
.how__phone {
  position: relative;
  width: 320px;
  aspect-ratio: 720 / 1420;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 44px;
  background: #0a1326;
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.58), 0 0 80px rgba(45, 212, 191, 0.2);
}

.hero__phone__screen,
.how__phone__screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #000;
}

.hero__phone__screen img,
.how__phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(17, 30, 58, 0.88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
}

.hero__chip__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.hero__chip__dot--gold {
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}

.hero__chip__text {
  font-size: 13px;
  line-height: 1.3;
}

.hero__chip__text strong,
.hero__chip__text small {
  display: block;
}

.hero__chip__text small {
  color: var(--ink-mute);
  font-size: 12px;
}

.hero__chip--1 {
  top: 17%;
  left: -6%;
}

.hero__chip--2 {
  top: 42%;
  right: -8%;
}

.hero__chip--3 {
  bottom: 14%;
  left: -2%;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}

.hero__trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.hero__trust__item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--teal);
}

.section-pad {
  padding: var(--sp-10) 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto var(--sp-9);
  text-align: center;
}

.section-head__title,
.currency__title,
.how__step__title,
.cta-band__title {
  font-size: 52px;
  font-weight: 800;
}

.section-head__title,
.currency__title {
  margin-top: var(--sp-4);
}

.section-head__sub,
.currency__sub,
.how__step__sub,
.cta-band__sub {
  margin-top: var(--sp-5);
  color: var(--ink-soft);
  font-size: 20px;
}

.how {
  background: linear-gradient(180deg, var(--navy-0), var(--navy-1));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 104px 0;
  border-bottom: 1px solid var(--line);
}

.how__step:last-child {
  border-bottom: 0;
}

.how__step--reverse .how__step__copy {
  order: 2;
}

.how__step--reverse .how__step__visual {
  order: 1;
}

.how__step__num {
  margin-bottom: var(--sp-4);
  color: rgba(45, 212, 191, 0.28);
  font-size: 118px;
  font-weight: 800;
  line-height: 0.9;
}

.how__phone {
  width: 280px;
  border-radius: 38px;
  padding: 8px;
}

.how__phone__screen {
  border-radius: 30px;
}

.how__step__visual {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.pillars {
  background: var(--navy-0);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-5);
}

.pillar,
.plan,
.currency__panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 30, 58, 0.5);
}

.pillar {
  padding: var(--sp-7);
}

.pillar__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-5);
  border: 1px solid rgba(45, 212, 191, 0.26);
  border-radius: var(--radius);
  background: rgba(45, 212, 191, 0.12);
}

.pillar__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.pillar__title {
  font-size: 20px;
}

.pillar__copy {
  margin-top: var(--sp-3);
  color: var(--ink-soft);
  font-size: 15px;
}

.currency {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-1), var(--navy-0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.currency__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.currency__copy {
  max-width: 540px;
}

.currency__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-6);
}

.currency__pill {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
}

.currency__panel {
  padding: var(--sp-7);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32);
}

.currency__rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--line);
}

.currency__rate__label {
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.currency__rate__value {
  color: var(--teal);
  font-weight: 800;
}

.currency__rows {
  display: grid;
  gap: var(--sp-3);
}

.currency__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.currency__row__flag {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--navy-3);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.currency__row__name {
  font-weight: 700;
}

.currency__row__name small {
  display: block;
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 500;
}

.currency__row__amount {
  font-weight: 800;
}

.pricing {
  background: var(--navy-0);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-5);
  max-width: 880px;
  margin: 0 auto;
}

.plan {
  padding: var(--sp-7);
}

.plan--featured {
  border-color: rgba(45, 212, 191, 0.42);
  background: linear-gradient(160deg, rgba(45, 212, 191, 0.1), rgba(17, 30, 58, 0.5));
}

.plan__name {
  color: var(--ink-mute);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan--featured .plan__name {
  color: var(--teal);
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: var(--sp-3) 0 var(--sp-4);
}

.plan__price strong {
  font-size: 52px;
  line-height: 1;
}

.plan__price small,
.plan__desc,
.plan__list li {
  color: var(--ink-soft);
}

.plan__desc {
  margin-bottom: var(--sp-6);
}

.plan__list {
  display: grid;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.plan__list svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--teal);
}

.plan .btn {
  width: 100%;
}

.cta-band {
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-0), #10121d);
}

.cta-band__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-band__sub {
  margin-bottom: var(--sp-7);
}

.cta-band__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  align-items: center;
}

.cta-band__ctas .aj-google-play-badge {
  width: 214px;
}

.cta-band__ctas .aj-app-store-soon-badge {
  width: 214px;
  min-height: 64px;
}

.site-footer {
  padding: var(--sp-9) 0 var(--sp-6);
  border-top: 1px solid var(--line);
  background: var(--navy-0);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
}

.footer__col--brand p {
  max-width: 340px;
  margin-top: var(--sp-4);
  color: var(--ink-mute);
  font-size: 14px;
}

.footer__col h4 {
  margin-bottom: var(--sp-4);
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer__col ul {
  display: grid;
  gap: 10px;
}

.footer__col a {
  color: var(--ink-soft);
  font-size: 14px;
}

.footer__col a:hover {
  color: var(--teal);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 13px;
}

.footer__lang {
  display: flex;
  gap: 12px;
}

.footer__lang a {
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 800;
}

.footer__lang a[aria-current="true"] {
  color: var(--teal);
}

@media (max-width: 980px) {
  .nav__list {
    display: none;
  }

  .hero__grid,
  .how__step,
  .currency__grid,
  .pricing__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar {
    padding: var(--sp-5);
  }

  .hero__title {
    font-size: 58px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .hero__phone {
    width: 270px;
  }

  .hero__chip--1 {
    left: 0;
  }

  .hero__chip--2 {
    right: 0;
  }

  .hero__chip--3 {
    left: 0;
  }

  .hero__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how__step--reverse .how__step__copy,
  .how__step--reverse .how__step__visual {
    order: initial;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
  }

  .nav {
    gap: var(--sp-3);
  }

  .nav__cta {
    display: none;
  }

  .hero {
    padding: 52px 0 84px;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__sub,
  .section-head__sub,
  .currency__sub,
  .how__step__sub,
  .cta-band__sub {
    font-size: 18px;
  }

  .section-head__title,
  .currency__title,
  .how__step__title,
  .cta-band__title {
    font-size: 34px;
  }

  .section-pad {
    padding: var(--sp-8) 0;
  }

  .how__step {
    padding: var(--sp-8) 0;
    gap: var(--sp-6);
  }

  .how__step__num {
    font-size: 72px;
  }

  .hero__trust {
    grid-template-columns: 1fr;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .currency__row {
    grid-template-columns: auto 1fr;
  }

  .currency__row__amount {
    grid-column: 2;
  }
}

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