:root{
  --nav-height: 96px;
  --container: 1120px;

  --bg0:#050b1a;
  --bg1:#07142f;
  --bg2:#0a1f44;
  --bg3:#0b2a5a;

  --text:#eaf2ff;
  --muted: rgba(234,242,255,.78);

  --card: rgba(255,255,255,.94);
  --cardText:#0f172a;

  --ctaA:#ff9f1c;
  --ctaB:#7c3aed;

  --success:#16a34a;

  --radius: 22px;
  --shadow: 0 18px 60px rgba(0,0,0,.32);
}

@media (max-width: 768px){
  :root{ --nav-height: 72px; }
}

body.prices-page{
  margin:0;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 15% 8%, rgba(20,184,166,.22), transparent 60%),
    radial-gradient(900px 520px at 85% 25%, rgba(59,130,246,.20), transparent 55%),
    radial-gradient(900px 520px at 50% 95%, rgba(56,189,248,.14), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 28%, var(--bg2) 62%, var(--bg3));
  min-height: 100dvh;
}

.prices-container{
  max-width: var(--container);
  margin: calc(var(--nav-height) + 22px) auto 64px;
  padding: 0 20px;
}

.prices-hero{
  text-align:center;
  margin: 18px 0 34px;
}

.prices-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 900;
  color: #dbeafe;
  background: rgba(59,130,246,.16);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 30px rgba(0,0,0,.16);
}

.prices-hero h1{
  margin:0 0 12px;
  font-size: clamp(30px, 3vw + 12px, 58px);
  line-height: 1.02;
  text-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.prices-hero p{
  max-width: 760px;
  margin:0 auto;
  color: var(--muted);
  font-weight: 800;
  font-size: clamp(15px, 1vw + 12px, 22px);
}

.anchor{
  position: relative;
  top: -120px;
}

.offers-grid{
  display:grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

@media (max-width: 820px){
  .offers-grid{
    grid-template-columns: 1fr;
  }
}

.offer-card{
  background: var(--card);
  color: var(--cardText);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.22);
  text-align: center;
  padding: 24px 22px 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-card::before{
  content:"";
  position:absolute;
  inset:-60% -60%;
  background: radial-gradient(circle at 40% 30%, rgba(255,255,255,.22), transparent 55%);
  transform: rotate(10deg);
  pointer-events:none;
}

.offer-card--featured{
  outline: 2px solid rgba(255,255,255,.18);
  box-shadow: 0 26px 85px rgba(0,0,0,.38);
  transform: translateY(-4px);
}

@media (max-width: 820px){
  .offer-card--featured{
    transform: none;
  }
}

.offer-topline{
  display:inline-flex;
  align-self:center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  color:#1d4ed8;
  background: rgba(59,130,246,.10);
}

.offer-topline--best{
  color:#7c3aed;
  background: rgba(124,58,237,.10);
}

.offer-title{
  margin: 0 0 14px;
  font-size: clamp(24px, 1.2vw + 16px, 38px);
  font-weight: 1000;
  line-height: 1.08;
}

.offer-prices{
  margin: 4px 0 16px;
}

.price-main{
  font-size: clamp(38px, 3.2vw + 10px, 58px);
  font-weight: 1100;
  letter-spacing: -1px;
  margin: 0;
}

.price-sub{
  font-size: 16px;
  font-weight: 900;
  opacity: .78;
  margin-top: 4px;
}

.offer-prices--annual .price-strike{
  font-size: clamp(32px, 2.6vw + 10px, 52px);
  font-weight: 1000;
  color: rgba(15,23,42,.42);
  text-decoration: line-through;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}

.offer-prices--annual .price-main{
  font-size: clamp(34px, 2.8vw + 10px, 54px);
}

.price-saving{
  font-size: 13px;
  font-weight: 900;
  color: var(--success);
  margin-top: 8px;
}

.offer-features{
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  text-align: left;
}

.offer-features li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(15,23,42,.86);
}

.offer-features li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 1000;
  color: #2563eb;
}

.offer-cta{
  margin-top: auto;
  padding-top: 18px;
}

.offer-cta form,
.offer-cta a{
  display: inline-flex;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  min-width: 220px;
  height: 50px;
  border-radius: 14px;
  font-weight: 1000;
  text-decoration: none;
  border: none;
  cursor: pointer;
  color: #0b1020;
  background: linear-gradient(135deg, var(--ctaA), var(--ctaB));
  box-shadow:
    0 18px 55px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.18) inset;
  transition: transform .12s ease, filter .2s ease, box-shadow .2s ease;
}

.btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 24px 60px rgba(0,0,0,.26),
    0 0 0 1px rgba(255,255,255,.18) inset;
}

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

.btn-pay--alt{
  background: linear-gradient(135deg, var(--ctaB), var(--ctaA));
}

.btn-free{
  background: none;
}

.btn-pay{
  background: linear-gradient(135deg, var(--ctaA), var(--ctaB));
}

.note{
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

.price-switch,
.price-button,
.price-section,
.price-grid,
.price-card{
}