/* ═══════════════════════════════════════════════
   OneProtocol — Landing Page
   Brand: Black #121212 · Blue #007BFF · Silver #C0C0C0
═══════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0d0d0f;
  --bg2:     #111113;
  --bg3:     #18181b;
  --bg4:     #222226;
  --line:    rgba(255,255,255,.07);

  --blue:    #007BFF;
  --blue2:   #3399ff;
  --blue-bg: rgba(0,123,255,.08);
  --blue-brd:rgba(0,123,255,.2);
  --blue-glow:rgba(0,123,255,.35);

  --silver:  #C0C0C0;
  --silver2: #EBEBEB;
  --silver3: #666666;
  --grad-silver: linear-gradient(135deg, #555 0%, #aaa 35%, #eee 55%, #aaa 75%, #555 100%);

  --txt:     #FFFFFF;
  --txt2:    #C0C0C0;
  --muted:   #666;

  --r:  14px;
  --rs: 8px;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--blue);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--blue2);
  border-color: var(--blue2);
  box-shadow: 0 0 20px var(--blue-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: .9rem;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  color: var(--txt2);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.2);
  color: var(--txt);
  background: rgba(255,255,255,.04);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  color: var(--txt2);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--blue-brd);
  color: var(--blue2);
}

.btn-silver {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--grad-silver);
  color: #111;
  border: none;
  transition: var(--transition);
}
.btn-silver:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(192,192,192,.25);
}

.btn-lg { font-size: 1rem; padding: 13px 28px; border-radius: 12px; }
.btn-xl { font-size: 1.05rem; padding: 16px 36px; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section labels & headings ── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--txt);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--txt2);
  max-width: 520px;
  margin-bottom: 56px;
}

/* ═══ NAV ═══ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,15,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 28px; width: auto; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,123,255,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-bg);
  border: 1px solid var(--blue-brd);
  color: var(--blue2);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: .02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--txt);
  margin-bottom: 22px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tag {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--txt2);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--txt2);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 64px;
}

.hero-visual { padding-bottom: 0; }

/* ═══ PROOF BAR ═══ */
.proof-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
  padding: 14px 0;
  overflow: hidden;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.proof-item {
  font-size: .8rem;
  font-weight: 500;
  color: var(--txt2);
  white-space: nowrap;
}

.proof-sep { color: var(--muted); font-size: .8rem; }

/* ═══ FEATURES ═══ */
.features {
  padding: 96px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(255,255,255,.12);
  background: var(--bg3);
  transform: translateY(-2px);
}

.feature-card--highlight {
  border-color: var(--blue-brd);
  background: linear-gradient(145deg, var(--bg3) 0%, rgba(0,123,255,.04) 100%);
}
.feature-card--highlight:hover { border-color: rgba(0,123,255,.4); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-icon.blue { background: var(--blue-bg); border: 1px solid var(--blue-brd); color: var(--blue2); }
.feature-icon.silver { background: rgba(192,192,192,.08); border: 1px solid rgba(192,192,192,.18); color: var(--silver2); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--txt);
}

.feature-card p {
  font-size: .875rem;
  color: var(--txt2);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(192,192,192,.08);
  border: 1px solid rgba(192,192,192,.18);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ═══ HOW IT WORKS ═══ */
.how {
  padding: 0 0 96px;
}

.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0;
}

.step {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
}

.step-num {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p { font-size: .875rem; color: var(--txt2); line-height: 1.65; }

.step-arrow {
  font-size: 1.4rem;
  color: var(--muted);
  padding: 0 16px;
  flex-shrink: 0;
}

/* ═══ PRICING ═══ */
.pricing { padding: 96px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
}
.plan-card:hover { border-color: rgba(255,255,255,.14); }

.plan-card--featured {
  background: linear-gradient(160deg, #0d1826 0%, #0b1120 100%);
  border-color: var(--blue-brd);
  box-shadow: 0 0 40px rgba(0,123,255,.12);
}
.plan-card--featured:hover { border-color: rgba(0,123,255,.45); }

.plan-card--elite {
  background: linear-gradient(160deg, #151515 0%, #111 100%);
  border-color: rgba(192,192,192,.2);
}
.plan-card--elite:hover { border-color: rgba(192,192,192,.4); }

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--txt);
}

.price-period {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 400;
}

.plan-desc {
  font-size: .82rem;
  color: var(--txt2);
  line-height: 1.55;
  margin-top: 6px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  font-size: .85rem;
  color: var(--txt2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li.muted { color: var(--muted); }

.check { color: var(--blue2); font-weight: 700; }
.cross { color: var(--muted); }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: .85rem;
  color: var(--muted);
}
.pricing-note a { color: var(--blue2); }
.pricing-note a:hover { text-decoration: underline; }

/* ═══ CTA SECTION ═══ */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,123,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--txt2);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-note {
  margin-top: 16px;
  font-size: .78rem;
  color: var(--muted);
}

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-full {
  height: 40px;
  width: auto;
  mix-blend-mode: screen;
}

.footer-tagline {
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: .82rem;
  color: var(--txt2);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blue2); }

.footer-copy {
  font-size: .75rem;
  color: var(--muted);
}

/* ═══ PHONE MOCKUP ═══ */
.phone-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}

.phone-frame {
  width: 320px;
  background: #0d0d0f;
  border: 2px solid rgba(255,255,255,.12);
  border-bottom: none;
  border-radius: 40px 40px 0 0;
  padding: 14px 10px 0;
  box-shadow:
    0 -8px 60px rgba(0,123,255,.12),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.08);
  position: relative;
}

.phone-frame::before {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #111113;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  max-height: 540px;
  overflow-y: hidden;
}

/* Status bar */
.ps-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 4px;
  font-size: .65rem;
  color: var(--txt);
}
.ps-icons { display: flex; align-items: center; gap: 6px; color: var(--txt); }

/* App header */
.ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px 10px;
}
.ps-header-left { display: flex; align-items: center; gap: 8px; }
.ps-app-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.ps-app-icon img { width: 100%; height: 100%; object-fit: cover; }
.ps-header-title { font-size: .9rem; font-weight: 700; line-height: 1.2; }
.ps-header-sub { font-size: .58rem; color: var(--muted); letter-spacing: .06em; }
.ps-btn-blue {
  background: var(--blue);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: 8px;
}

/* Greeting */
.ps-greeting {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #18181b;
  border-radius: 12px;
  margin: 0 10px 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.ps-greeting-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: var(--txt);
  flex-shrink: 0;
}
.ps-greeting-date { font-size: .55rem; color: var(--muted); letter-spacing: .06em; margin-bottom: 2px; }
.ps-greeting-name { font-size: 1rem; font-weight: 800; letter-spacing: -.02em; }

/* Stats grid */
.ps-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0 10px 10px;
}
.ps-stat {
  background: #18181b;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 10px 12px 8px;
  position: relative;
  overflow: hidden;
}
.ps-stat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.ps-stat-icon {
  width: 22px; height: 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.ps-stat-icon svg { width: 12px; height: 12px; }
.ps-stat-icon.gray  { background: rgba(255,255,255,.08); color: var(--txt2); }
.ps-stat-icon.green { background: rgba(46,171,101,.15); color: #2eab65; }
.ps-stat-icon.red   { background: rgba(220,50,50,.15); color: #d44; }
.ps-stat-icon.amber { background: rgba(232,150,12,.12); color: #e8960c; }

.ps-stat-label { font-size: .5rem; font-weight: 700; letter-spacing: .08em; color: var(--muted); }
.ps-stat-label.green { color: #2eab65; }
.ps-stat-label.red   { color: #d44; }
.ps-stat-label.amber { color: #e8960c; }

.ps-stat-num { font-size: 1.5rem; font-weight: 900; letter-spacing: -.04em; color: var(--txt); line-height: 1; margin: 2px 0; }
.ps-stat-num.green { color: #2eab65; }
.ps-stat-num.red   { color: #d44; }
.ps-stat-num.amber { color: #e8960c; }

.ps-stat-sub { font-size: .5rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }

.ps-stat-bar { height: 2px; border-radius: 999px; margin-top: 6px; }
.ps-stat-bar.white { background: rgba(255,255,255,.2); }
.ps-stat-bar.green { background: #2eab65; }
.ps-stat-bar.red   { background: #d44; }
.ps-stat-bar.amber { background: #e8960c; }

/* Client list */
.ps-list-label {
  display: flex; align-items: center; gap: 6px;
  font-size: .55rem; font-weight: 700; letter-spacing: .1em; color: var(--blue2);
  padding: 0 12px 8px;
}

.ps-client {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #18181b;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  margin: 0 10px 6px;
  padding: 10px;
}
.ps-client-avatar {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.ps-client-info { flex: 1; min-width: 0; }
.ps-client-name { font-size: .78rem; font-weight: 700; margin-bottom: 1px; }
.ps-client-goal { font-size: .58rem; color: var(--muted); margin-bottom: 5px; }
.ps-client-bar { height: 2px; background: rgba(255,255,255,.06); border-radius: 999px; margin-bottom: 5px; }
.ps-client-progress { height: 100%; border-radius: 999px; }
.ps-client-progress.green { background: #2eab65; }
.ps-client-meta { font-size: .55rem; color: var(--muted); }
.green-txt { color: #2eab65; }

.ps-client-badge {
  font-size: .5rem; font-weight: 700; letter-spacing: .04em;
  padding: 3px 7px; border-radius: 6px;
  white-space: nowrap; flex-shrink: 0;
}
.ps-client-badge.green {
  background: rgba(46,171,101,.15);
  border: 1px solid rgba(46,171,101,.3);
  color: #2eab65;
}

/* ═══ PHONE CAROUSEL ═══ */
.phone-carousel-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.phone-carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 320px;
}
.phone-carousel::-webkit-scrollbar { display: none; }

.phone-slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

/* Dots */
.pcd-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pcd {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .25s;
}
.pcd.active {
  width: 20px;
  background: var(--blue);
}

/* Labels */
.pcl-wrap {
  position: relative;
  height: 18px;
  width: 240px;
}
.pcl {
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  opacity: 0;
  transition: opacity .3s;
  white-space: nowrap;
}
.pcl.active { opacity: 1; }

/* ── Slide 2: Client elements ── */
.ps-icon-sq {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
}

.ps-clt-hero {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #18181b;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  margin: 0 10px 8px;
  padding: 12px;
  position: relative;
}
.ps-clt-av {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a3e7a, #0d2a5e);
  border: 2px solid rgba(79,142,247,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.ps-clt-saludo { font-size: .5rem; font-weight: 700; letter-spacing: .1em; color: var(--muted); margin-bottom: 2px; }
.ps-clt-name   { font-size: .92rem; font-weight: 900; letter-spacing: -.02em; line-height: 1.1; }
.ps-clt-goal   { font-size: .58rem; font-weight: 700; color: #e8960c; letter-spacing: .04em; margin-top: 2px; }
.ps-clt-week   { font-size: .55rem; color: var(--muted); margin-top: 2px; }

.ps-days-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #18181b;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  margin: 0 10px 7px;
  padding: 10px 14px;
}
.ps-days-left { display: flex; align-items: baseline; gap: 4px; }
.ps-days-num  { font-size: 1.8rem; font-weight: 900; letter-spacing: -.04em; color: var(--txt); line-height: 1; }
.ps-days-lbl  { font-size: .48rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); line-height: 1.4; }
.ps-days-right { border-left: 1px solid rgba(255,255,255,.06); padding-left: 12px; }
.ps-days-title { font-size: .72rem; font-weight: 700; margin-bottom: 2px; }
.ps-days-sub   { font-size: .55rem; color: var(--muted); }

.ps-memb-card {
  background: linear-gradient(135deg, #0a1f0a, #0d260d);
  border: 1px solid rgba(46,171,101,.25);
  border-radius: 10px;
  margin: 0 10px 7px;
  padding: 10px 12px;
}
.ps-memb-row   { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.ps-memb-icon  {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(46,171,101,.2); border: 1px solid rgba(46,171,101,.3);
  color: #2eab65; font-size: .65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ps-memb-title { font-size: .58rem; font-weight: 800; letter-spacing: .08em; color: #2eab65; }
.ps-memb-sub   { font-size: .5rem; color: var(--muted); }
.ps-memb-badge {
  margin-left: auto; flex-shrink: 0;
  background: rgba(46,171,101,.15); border: 1px solid rgba(46,171,101,.3);
  color: #2eab65; font-size: .5rem; font-weight: 700; padding: 3px 7px; border-radius: 6px;
}
.ps-memb-big {
  font-size: 1.4rem; font-weight: 900; color: #2eab65; letter-spacing: -.03em; line-height: 1;
  margin-bottom: 2px;
}
.ps-memb-big span { font-size: .5rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; vertical-align: middle; }
.ps-memb-vence {
  font-size: .5rem; font-weight: 700; letter-spacing: .06em; color: var(--muted);
  margin-bottom: 6px;
}
.ps-memb-vence strong { color: var(--txt); }
.ps-memb-bar {
  height: 3px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden;
}

.ps-warn-card {
  background: rgba(232,150,12,.06);
  border: 1px solid rgba(232,150,12,.2);
  border-radius: 10px;
  margin: 0 10px 8px;
  padding: 9px 12px;
}
.ps-warn-tag   { font-size: .48rem; font-weight: 700; letter-spacing: .1em; color: #e8960c; margin-bottom: 4px; }
.ps-warn-title { font-size: .72rem; font-weight: 800; margin-bottom: 3px; }
.ps-warn-sub   { font-size: .55rem; color: var(--muted); line-height: 1.5; }

.ps-bottom-nav {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #0d0d0f;
  padding: 8px 0 4px;
  margin-top: auto;
}
.ps-nav-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: .45rem; font-weight: 700; letter-spacing: .04em; color: var(--muted);
  position: relative;
}
.ps-nav-item.active { color: var(--blue); }
.ps-nav-item.active svg { stroke: var(--blue); }
.ps-nav-item.active path { fill: var(--blue); }
.ps-nav-dot {
  position: absolute; top: 0; right: 18px;
  width: 5px; height: 5px; border-radius: 50%;
  background: #e8960c;
}

/* ── Slide 3: Biometrics ── */
.ps-clt-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 12px 10px;
}
.ps-back  { font-size: .9rem; color: var(--blue2); font-weight: 700; cursor: pointer; }
.ps-more  { font-size: .9rem; color: var(--muted); font-weight: 700; letter-spacing: .1em; }
.ps-clt-hdr-center { text-align: center; }
.ps-clt-hdr-name { font-size: .82rem; font-weight: 800; }
.ps-clt-hdr-sub  { font-size: .52rem; color: var(--muted); letter-spacing: .06em; }

.ps-tabs {
  display: flex; border-bottom: 1px solid rgba(255,255,255,.06);
  margin: 0 0 8px; padding: 0 10px;
}
.ps-tab {
  flex: 1; text-align: center;
  font-size: .48rem; font-weight: 700; letter-spacing: .06em;
  color: var(--muted); padding-bottom: 7px;
}
.ps-tab.active { color: var(--txt); border-bottom: 2px solid var(--blue); }

.ps-bio-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; margin: 0 10px 8px;
}
.ps-bio-card {
  background: #18181b; border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; padding: 10px 10px 8px;
}
.ps-bio-num {
  font-size: 1.6rem; font-weight: 900; letter-spacing: -.04em; line-height: 1;
}
.ps-bio-num.amber { color: #e8960c; }
.ps-bio-num.red   { color: #d44; }
.ps-bio-num.green { color: #2eab65; }

.ps-bio-unit  { font-size: .5rem; color: var(--muted); font-weight: 700; letter-spacing: .06em; margin-bottom: 2px; }
.ps-bio-label { font-size: .55rem; color: var(--txt2); margin-bottom: 6px; }

.ps-bio-badge {
  display: inline-block;
  font-size: .45rem; font-weight: 700; letter-spacing: .06em;
  padding: 2px 7px; border-radius: 5px;
}
.ps-bio-badge.amber { background: rgba(232,150,12,.12); border: 1px solid rgba(232,150,12,.3); color: #e8960c; }
.ps-bio-badge.red   { background: rgba(220,50,50,.12);  border: 1px solid rgba(220,50,50,.3);  color: #d44; }
.ps-bio-badge.green { background: rgba(46,171,101,.12); border: 1px solid rgba(46,171,101,.3); color: #2eab65; }

.ps-comp-bar {
  display: flex; height: 5px; margin: 0 10px 6px; border-radius: 4px; overflow: hidden; gap: 2px;
}
.ps-comp-legend {
  display: flex; flex-wrap: wrap; gap: 4px 12px;
  padding: 0 10px; margin-bottom: 6px;
}
.ps-comp-legend div {
  display: flex; align-items: center; gap: 4px;
  font-size: .48rem; font-weight: 700; letter-spacing: .06em; color: var(--muted);
}
.ps-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
}
.ps-updated {
  font-size: .48rem; font-weight: 700; letter-spacing: .08em;
  color: var(--muted); text-align: right; padding: 0 12px;
}

/* ═══ PRICING CAROUSEL (mobile) ═══ */
.pricing-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
}
.pricing-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.18); border: none; cursor: pointer; padding: 0;
  transition: all .25s;
}
.pricing-dot.active { width: 20px; background: var(--blue); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .nav-actions .btn-ghost { display: none; }

  .hero { padding: 72px 0 0; }

  .steps {
    flex-direction: column;
    gap: 12px;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .proof-inner { gap: 12px; }
  .proof-sep { display: none; }

  .mockup-content { height: 220px; }
  .mockup-sidebar { display: none; }
  .mockup-stat-cards .mstat:nth-child(3) { display: none; }
}

@media (max-width: 600px) {
  /* Pricing → swipe carousel */
  .pricing-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding: 8px 20px 12px;
    margin: 0 -20px;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }

  .plan-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: center;
  }

  .pricing-dots { display: flex; }
}

@media (max-width: 500px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
}
