/* ══════════════════════════════════════════════════════════════
   PASSWORD REMEMBER / KODEHUSKER — Landing Page Styles
   Brand color: #B62E40  (Crimson Red)
   ══════════════════════════════════════════════════════════════ */

/* ── Brand tokens ─────────────────────────────────────────── */
:root {
  --pr-brand: #B62E40;
  --pr-brand-light: #D94A5C;
  --pr-brand-dark: #8C1F2E;
  --pr-brand-glow: rgba(182, 46, 64, .35);
  --pr-brand-bg: rgba(182, 46, 64, .06);
  --pr-glass-bg: rgba(255, 255, 255, .55);
  --pr-glass-border: rgba(255, 255, 255, .45);
  --pr-glass-shadow: 0 8px 32px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --pr-text: #1a1a2e;
  --pr-text-muted: #555;
  --pr-radius: 1.25rem;
  --pr-radius-lg: 1.75rem;
}

[data-mode="dark"] {
  --pr-glass-bg: rgba(30, 30, 50, .55);
  --pr-glass-border: rgba(255, 255, 255, .08);
  --pr-glass-shadow: 0 8px 32px rgba(0, 0, 0, .3), 0 1px 2px rgba(0, 0, 0, .2);
  --pr-text: #f0f0f5;
  --pr-text-muted: #aaa;
  --pr-brand-bg: rgba(182, 46, 64, .12);
  --pr-brand-glow: rgba(182, 46, 64, .5);
}

/* ── Container ────────────────────────────────────────────── */
.pr-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Shared glass card ────────────────────────────────────── */
.pr-glass {
  background: var(--pr-glass-bg);
  border: 1px solid var(--pr-glass-border);
  border-radius: var(--pr-radius);
  box-shadow: var(--pr-glass-shadow);
}

/* ── Shared label / pill ──────────────────────────────────── */
.pr-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-brand);
  margin-bottom: .75rem;
}
.pr-label--light { color: rgba(255,255,255,.7); }

/* ── Section title ────────────────────────────────────────── */
.pr-section-title {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--pr-text);
  margin: 0 0 1.5rem;
}
.pr-section-title--light { color: #fff; }

.pr-highlight {
  color: var(--pr-brand);
  position: relative;
}
.pr-highlight::after {
  content: '';
  position: absolute;
  bottom: -.1em;
  left: 0;
  right: 0;
  height: .15em;
  background: var(--pr-brand);
  border-radius: 1em;
  opacity: .3;
}

/* ── Buttons ──────────────────────────────────────────────── */
.pr-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer;
  border: none;
}
.pr-btn--primary {
  background: var(--pr-brand);
  color: #fff;
  box-shadow: 0 4px 20px var(--pr-brand-glow), 0 2px 6px rgba(0,0,0,.1);
}
.pr-btn--primary:hover {
  background: var(--pr-brand-light);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px var(--pr-brand-glow), 0 4px 12px rgba(0,0,0,.12);
}
.pr-btn--outline {
  background: transparent;
  color: var(--pr-brand);
  border: 2px solid var(--pr-brand);
}
.pr-btn--outline:hover {
  background: var(--pr-brand-bg);
  transform: translateY(-2px);
}
.pr-btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}
.pr-btn__apple { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS — Scroll-triggered entrance
   ══════════════════════════════════════════════════════════════ */
.pr-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
.pr-anim[data-anim="float-in"] {
  transform: translateX(60px) translateY(20px) rotate(-4deg);
  transition: opacity .9s cubic-bezier(.22,1,.36,1),
              transform .9s cubic-bezier(.22,1,.36,1);
}
.pr-anim--visible {
  opacity: 1 !important;
  transform: none !important;
}
/* Keep hero phone slightly rotated when visible */
.pr-hero__phone.pr-anim--visible {
  transform: rotate(-2deg) !important;
}

/* ══════════════════════════════════════════════════════════════
   HERO — Full-bleed gradient with floating orbs
   ══════════════════════════════════════════════════════════════ */
.pr-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
  gap: 3rem;
}

.pr-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(182,46,64,.15), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(217,74,92,.1), transparent 60%),
    linear-gradient(180deg, var(--pr-brand-bg) 0%, transparent 60%);
  z-index: 0;
}
[data-mode="dark"] .pr-hero__bg {
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(182,46,64,.25), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(140,31,46,.2), transparent 60%),
    linear-gradient(180deg, rgba(182,46,64,.1) 0%, transparent 60%);
}

/* Animated floating orbs */
.pr-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  animation: pr-orb-float 12s ease-in-out infinite;
}
.pr-hero__orb--1 {
  width: 400px; height: 400px;
  background: var(--pr-brand);
  top: -10%; left: -5%;
  opacity: .12;
  animation-delay: 0s;
}
.pr-hero__orb--2 {
  width: 300px; height: 300px;
  background: var(--pr-brand-light);
  top: 30%; right: 5%;
  opacity: .1;
  animation-delay: -4s;
  animation-duration: 15s;
}
.pr-hero__orb--3 {
  width: 200px; height: 200px;
  background: #ff6b81;
  bottom: 5%; left: 30%;
  opacity: .08;
  animation-delay: -8s;
  animation-duration: 18s;
}

@keyframes pr-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.08); }
  66%      { transform: translate(-20px, 25px) scale(0.95); }
}

/* Hero grid lines */
.pr-hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(182,46,64,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182,46,64,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.pr-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 540px;
  margin-left: max(2rem, 8vw);
}

.pr-hero__icon-glow {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 1.5rem;
}
.pr-hero__icon-glow::before {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 30%;
  background: var(--pr-brand);
  opacity: .15;
  filter: blur(30px);
  animation: pr-icon-pulse 3s ease-in-out infinite;
}
.pr-hero__icon {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 30px;
  box-shadow: 0 12px 48px var(--pr-brand-glow), 0 4px 12px rgba(0,0,0,.12);
}

@keyframes pr-icon-pulse {
  0%, 100% { opacity: .15; transform: scale(1); }
  50%      { opacity: .25; transform: scale(1.08); }
}

.pr-hero__title {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--pr-text);
  margin: 0 0 .6rem;
}

.pr-hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  color: var(--pr-text);
  margin: 0 0 .4rem;
  font-weight: 600;
}

.pr-hero__tagline {
  font-size: 1rem;
  color: var(--pr-text-muted);
  margin: 0 0 2rem;
}

.pr-hero__cta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-start;
}
.pr-hero__free-label {
  font-size: .78rem;
  color: var(--pr-text-muted);
  padding-left: .2rem;
}

/* Floating phone mockup */
.pr-hero__phone {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transform: rotate(-2deg);
  will-change: transform;
}
.pr-hero__phone-frame {
  position: relative;
  width: 360px;
}
.pr-hero__phone-screen {
  display: block;
  width: 100%;
  height: auto;
}
.pr-hero__phone-screen--dark { display: none; }
[data-mode="dark"] .pr-hero__phone-screen--light { display: none; }
[data-mode="dark"] .pr-hero__phone-screen--dark  { display: block; }

/* ══════════════════════════════════════════════════════════════
   USP STRIP
   ══════════════════════════════════════════════════════════════ */
.pr-usp-strip {
  position: relative;
  padding: 4rem 0;
  z-index: 3;
  margin-top: -2rem;
}
.pr-usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pr-usp-card {
  padding: 2rem;
  text-align: center;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.pr-usp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.pr-usp-card__icon {
  font-size: 2.2rem;
  margin-bottom: .75rem;
}
.pr-usp-card h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 .5rem;
  color: var(--pr-text);
}
.pr-usp-card p {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--pr-text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   WHY DIFFERENT — Dark statement block
   ══════════════════════════════════════════════════════════════ */
.pr-why {
  background: linear-gradient(135deg, #1a1020 0%, #2a1525 50%, #1a1020 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.pr-why::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -20%; right: -10%;
  background: var(--pr-brand);
  opacity: .08;
  border-radius: 50%;
  filter: blur(100px);
}
.pr-why__inner {
  max-width: 700px;
}
.pr-why__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — 3 steps
   ══════════════════════════════════════════════════════════════ */
.pr-steps {
  padding: 5rem 0;
}
.pr-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.pr-step {
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.pr-step:hover { transform: translateY(-6px); }
.pr-step__number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pr-brand);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--pr-brand-glow);
}
.pr-step__icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
}
.pr-step h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 .5rem;
  color: var(--pr-text);
}
.pr-step p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--pr-text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SCREENSHOTS — Horizontal scroll gallery with phone frames
   ══════════════════════════════════════════════════════════════ */
.pr-screenshots {
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.pr-screenshots__track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2rem 2rem 2rem max(2rem, calc((100vw - 1140px) / 2 + 1.5rem));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pr-screenshots__track::-webkit-scrollbar { display: none; }

.pr-screenshots__phone {
  flex-shrink: 0;
  scroll-snap-align: center;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.pr-screenshots__phone:hover {
  transform: translateY(-10px) scale(1.03);
}
.pr-screenshots__phone-frame {
  width: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0,0,0,.15),
    0 4px 12px rgba(0,0,0,.08),
    inset 0 0 0 2px rgba(255,255,255,.15);
  background: #111;
  transition: box-shadow .4s ease;
}
.pr-screenshots__phone:hover .pr-screenshots__phone-frame {
  box-shadow:
    0 24px 64px rgba(182,46,64,.2),
    0 8px 24px rgba(0,0,0,.12),
    inset 0 0 0 2px rgba(182,46,64,.3);
}
.pr-screenshots__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES — What can you store
   ══════════════════════════════════════════════════════════════ */
.pr-features {
  padding: 5rem 0;
  background: var(--pr-brand-bg);
}
.pr-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.pr-feature-card {
  padding: 2rem;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.pr-feature-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 16px 48px rgba(182,46,64,.12);
}
.pr-feature-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.pr-feature-card h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 .4rem;
  color: var(--pr-text);
}
.pr-feature-card p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--pr-text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SECURITY — Dark split section
   ══════════════════════════════════════════════════════════════ */
.pr-security {
  background: linear-gradient(160deg, #12101a 0%, #1e1028 40%, #2a1420 100%);
  padding: 6rem 0;
  overflow: hidden;
}
.pr-security__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.pr-security__text { flex: 1; }
.pr-security__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pr-security__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.pr-security__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(182,46,64,.25);
  color: var(--pr-brand-light);
  font-size: .75rem;
  font-weight: 800;
}

/* Animated shield visual */
.pr-security__visual {
  flex-shrink: 0;
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-shield { position: relative; }
.pr-shield__icon {
  font-size: 4rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px var(--pr-brand-glow));
}
.pr-shield__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(182,46,64,.3);
  animation: pr-shield-pulse 4s ease-in-out infinite;
}
.pr-shield__ring--1 {
  width: 120px; height: 120px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}
.pr-shield__ring--2 {
  width: 180px; height: 180px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -.8s;
  border-color: rgba(182,46,64,.2);
}
.pr-shield__ring--3 {
  width: 240px; height: 240px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -1.6s;
  border-color: rgba(182,46,64,.1);
}

@keyframes pr-shield-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
  50%      { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════════
   TRIPLE LOCK
   ══════════════════════════════════════════════════════════════ */
.pr-locks {
  padding: 5rem 0;
}
.pr-locks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.pr-lock-card {
  padding: 2.25rem 2rem;
  text-align: center;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.pr-lock-card:hover {
  transform: translateY(-6px);
}
.pr-lock-card__ring {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--pr-brand-bg);
  border: 2px solid rgba(182,46,64,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1), border-color .3s;
}
.pr-lock-card:hover .pr-lock-card__ring {
  transform: rotate(12deg) scale(1.1);
  border-color: var(--pr-brand);
}
.pr-lock-card h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 .4rem;
  color: var(--pr-text);
}
.pr-lock-card p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--pr-text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════ */
.pr-pricing {
  padding: 5rem 0;
  background: var(--pr-brand-bg);
}
.pr-pricing__sub {
  font-size: 1.05rem;
  color: var(--pr-text-muted);
  margin: -.75rem 0 2.5rem;
}
.pr-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.pr-price-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.pr-price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(182,46,64,.12);
}
.pr-price-card--popular {
  border: 2px solid var(--pr-brand);
  box-shadow: 0 8px 32px var(--pr-brand-glow);
  transform: scale(1.04);
}
.pr-price-card--popular:hover {
  transform: scale(1.04) translateY(-8px);
}
.pr-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pr-brand);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--pr-brand-glow);
}
.pr-price-card__header {
  margin-bottom: 1.25rem;
}
.pr-price-card__header h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 .5rem;
  color: var(--pr-text);
}
.pr-price-card__price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.pr-price-card__amount {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--pr-text);
  letter-spacing: -.02em;
}
.pr-price-card__period {
  font-size: .8rem;
  color: var(--pr-text-muted);
}
.pr-price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.pr-price-card__features li {
  font-size: .85rem;
  color: var(--pr-text-muted);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.pr-price-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pr-brand);
  font-weight: 800;
  font-size: .75rem;
}
.pr-price-card .pr-btn {
  width: 100%;
  justify-content: center;
  padding: .7rem 1rem;
  font-size: .88rem;
}

/* ══════════════════════════════════════════════════════════════
   NERDS — Tech tag cloud
   ══════════════════════════════════════════════════════════════ */
.pr-nerds {
  padding: 4rem 0;
  text-align: center;
}
.pr-nerds__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: .5rem;
}
.pr-nerd-tag {
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--pr-text);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  cursor: default;
}
.pr-nerd-tag:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 8px 24px var(--pr-brand-glow);
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════ */
.pr-final-cta {
  padding: 6rem 0;
}
.pr-final-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.pr-final-cta__logo {
  width: 500px;
  max-width: 90%;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}
/* Handle dark mode logo swap via data-mode */
[data-mode="dark"] .pr-final-cta__logo {
  content: url('logo-white.png');
}
.pr-final-cta__sub {
  font-size: 1.05rem;
  color: var(--pr-text-muted);
  margin: -.5rem 0 2rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .pr-hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 8rem 1.5rem 3rem;
  }
  .pr-hero__content {
    margin-left: 0;
    max-width: 100%;
  }
  .pr-hero__cta { align-items: center; }
  .pr-hero__phone-frame { width: 280px; }
  .pr-hero__icon-glow { margin: 0 auto 1.5rem; }

  .pr-usp-strip__grid { grid-template-columns: 1fr; gap: 1rem; }
  .pr-steps__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pr-features__grid { grid-template-columns: repeat(2, 1fr); }
  .pr-security__inner { flex-direction: column; text-align: center; }
  .pr-security__visual { width: 200px; height: 200px; }
  .pr-locks__grid { grid-template-columns: 1fr; }
  .pr-pricing__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pr-hero__title { font-size: 2.2rem; }
  .pr-hero__phone-frame { width: 240px; }
  .pr-features__grid { grid-template-columns: 1fr; }
  .pr-pricing__grid { grid-template-columns: 1fr; }
  .pr-price-card--popular { transform: none; }
  .pr-price-card--popular:hover { transform: translateY(-8px); }
  .pr-screenshots__phone-frame { width: 180px; border-radius: 24px; }
  .pr-screenshots__img { border-radius: 24px; }
}

/* ══════════════════════════════════════════════════════════════
   Hide main aurora on this page — we have our own hero bg
   ══════════════════════════════════════════════════════════════ */
.aurora { display: none !important; }
