:root {
  --yellow: #f6c500;
  --yellow-2: #ffe45d;
  --black: #0c0c0d;
  --white: #fff;
  --muted: #b6bac3;
  --green: #24b36b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Avenir Next", Avenir, "Century Gothic", "Trebuchet MS", sans-serif;
}

button,
input {
  font: inherit;
}

.ambient {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 0%, rgba(246, 197, 0, 0.16), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(246, 197, 0, 0.12), transparent 30%),
    linear-gradient(145deg, #0a0a0b 0%, #111214 52%, #09090a 100%);
}

.ambient::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: 24px;
  place-items: center;
}

.phone {
  position: relative;
  width: min(100%, 460px);
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background: rgba(16, 16, 18, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.top-glow {
  height: 6px;
  background: linear-gradient(90deg, #ffec80, var(--yellow), #c99600);
}

.screen {
  display: none;
  min-height: 754px;
  padding: 28px;
  flex-direction: column;
}

.screen.active {
  display: flex;
  animation: slide 380ms ease;
}

@keyframes slide {
  from {
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.logo-frame {
  position: relative;
  display: block;
  width: 168px;
  height: 72px;
  overflow: hidden;
  flex: 0 0 168px;
  border-radius: 5px;
  background: var(--white);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
}

.logo {
  position: absolute;
  top: -72%;
  left: -5%;
  width: 110%;
  max-width: none;
  height: auto;
}

.centered-logo {
  margin: 0 auto 8px;
}

.secure {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c9ccd2;
  font-size: 12px;
}

.secure-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(36, 179, 107, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(246, 197, 0, 0.22);
  border-radius: 999px;
  color: #ffe78d;
  background: rgba(246, 197, 0, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 18px 0 12px;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(36px, 8vw, 54px);
}

h2 {
  font-size: 36px;
}

.highlight {
  color: var(--yellow);
}

.lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero-card {
  position: relative;
  padding: 22px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(246, 197, 0, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(246, 197, 0, 0.18), rgba(246, 197, 0, 0.03)),
    rgba(255, 255, 255, 0.035);
}

.hero-card::after {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
  background: var(--yellow);
  filter: blur(60px);
}

.price-label {
  color: #c9cbd1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin-top: 5px;
  color: var(--yellow);
  font-size: 43px;
  font-weight: 900;
}

.price small {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  color: #e9e9ec;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.feature {
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.feature b {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.feature span {
  display: block;
  color: #c7cad1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.info-box {
  padding: 16px;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c2c5cb;
  font-size: 13px;
  line-height: 1.45;
}

.info-row + .info-row {
  margin-top: 10px;
}

.icon {
  width: 20px;
  flex: 0 0 20px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 17px 18px;
  margin-top: 12px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.mini:focus-visible,
.confirm:has(input:focus-visible) {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.btn.primary {
  color: #0b0b0c;
  background: linear-gradient(135deg, var(--yellow-2), var(--yellow));
  box-shadow: 0 12px 26px rgba(246, 197, 0, 0.22);
}

.btn.dark {
  color: #0b0b0c;
  background: var(--white);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f5f6;
  background: transparent;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  transform: none;
}

.progress {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.progress span {
  height: 5px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress span.on {
  background: var(--yellow);
}

.insta-card {
  padding: 24px;
  margin: 8px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(226, 64, 95, 0.22), rgba(131, 58, 180, 0.18), rgba(252, 175, 69, 0.15));
  text-align: center;
}

.insta-logo {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 14px;
  border-radius: 25px;
  color: var(--white);
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 18px 35px rgba(131, 58, 180, 0.25);
  font-size: 40px;
  font-weight: 900;
  place-items: center;
}

.insta-card strong {
  display: block;
  font-size: 23px;
}

.insta-card span {
  display: block;
  margin-top: 7px;
  color: #d7d8dd;
  font-size: 13px;
}

.confirm {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.045);
}

.confirm input {
  width: 21px;
  height: 21px;
  margin-top: 1px;
  accent-color: var(--yellow);
}

.confirm span {
  color: #d6d8dd;
  font-size: 13px;
  line-height: 1.45;
}

.success-icon {
  display: grid;
  width: 102px;
  height: 102px;
  margin: 24px auto 18px;
  border: 1px solid rgba(88, 229, 154, 0.25);
  border-radius: 50%;
  color: #58e59a;
  background: rgba(36, 179, 107, 0.14);
  box-shadow: 0 16px 44px rgba(36, 179, 107, 0.15);
  font-size: 56px;
  place-items: center;
}

.credentials {
  padding: 10px 20px;
  margin: 8px 0;
  border: 1px solid rgba(246, 197, 0, 0.24);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(246, 197, 0, 0.15), rgba(255, 255, 255, 0.03));
}

.cred {
  padding: 17px 0;
  text-align: center;
}

.cred + .cred {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cred span {
  display: block;
  color: #b9bbc2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.cred strong {
  display: block;
  margin-top: 8px;
  font-size: 31px;
  letter-spacing: 0.12em;
}

.status {
  height: 20px;
  margin-top: 7px;
  color: #62e7a0;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.mini-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.mini {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.footer-note {
  margin-top: 14px;
  color: #777b84;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 520px) {
  .shell {
    padding: 0;
  }

  .phone {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    border: 0;
    border-radius: 0;
  }

  .screen {
    min-height: calc(100vh - 6px);
    min-height: calc(100svh - 6px);
    padding: 24px 20px;
  }

  .logo-frame {
    width: 150px;
    height: 64px;
    flex-basis: 150px;
  }

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

  .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .feature b {
    margin: 0;
  }
}

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