/* =========================================================
   VISTELA — Professional Redesign 2025
   System: Inter (body) + Instrument Serif (display)
   Palette: Off-white bg, dark navy, warm accent #C9A96E
   ========================================================= */

:root {
  /* Fonts */
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* Colors */
  --c-bg:        #FAFAF8;
  --c-bg-alt:    #F3F2EF;
  --c-dark:      #0F0E13;
  --c-dark-2:    #1A1825;
  --c-dark-3:    #252335;
  --c-accent:    #C9A96E;
  --c-accent-dk: #A8834A;
  --c-accent-lt: #EDE0C8;
  --c-text:      #1A1825;
  --c-muted:     #6B6880;
  --c-border:    rgba(26,24,37,0.1);
  --c-border-dk: rgba(255,255,255,0.1);

  /* Spacing */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 2rem;
  --s-lg: 4rem;
  --s-xl: 7rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 100px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(0,0,0,0.06);
  --sh-md: 0 8px 30px rgba(0,0,0,0.1);
  --sh-lg: 0 24px 60px rgba(0,0,0,0.14);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 720px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav--scrolled {
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
  padding: 0.85rem 0;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-text);
  flex-shrink: 0;
}
.nav-brand img { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--c-text);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--c-dark-2); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--c-accent-lt);
  color: var(--c-accent-dk);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-accent-dk);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--c-text);
  color: #fff;
  border-radius: var(--r-md);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 160px;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-store i { font-size: 1.4rem; }
.btn-store span { display: flex; flex-direction: column; line-height: 1.2; }
.btn-store small { font-size: 0.65rem; opacity: 0.7; font-weight: 400; }
.btn-store span > :last-child { font-size: 0.9rem; font-weight: 600; }
.btn-store--apple { background: #111; }
.btn-store--dark { background: #fff; color: var(--c-text); }
.btn-store--dark:hover { background: #f0f0f0; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--c-muted);
}
.hero-trust .fa-star { color: #F59E0B; font-size: 0.75rem; }
.trust-dot { opacity: 0.4; }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.phones-scene {
  position: relative;
  width: 300px;
  height: 560px;
}
.phone {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 8px solid #fff;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone--front {
  width: 220px; height: 440px;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone--back {
  width: 180px; height: 360px;
  top: 0; right: 0;
  transform: rotate(6deg);
  z-index: 1;
  opacity: 0.85;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--c-muted);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── PROOF BAND ── */
.proof-band {
  background: var(--c-text);
  padding: 2rem 0;
}
.proof-band-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}
.proof-stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.proof-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ── SECTIONS ── */
.section {
  padding: var(--s-xl) 0;
}
.section--alt {
  background: var(--c-bg-alt);
}
.section--dark {
  background: var(--c-dark);
}
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent-dk);
  margin-bottom: 1rem;
}
.section--dark .section-label { color: var(--c-accent); }
.section-title {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 3rem;
}
.section-title em { font-style: italic; color: var(--c-accent-dk); }
.section--dark .section-title { color: #fff; }
.section--dark .section-title em { color: var(--c-accent); }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.step-num {
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--c-accent-lt);
  line-height: 1;
  letter-spacing: -0.03em;
}
.step-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.step-body p {
  font-size: 0.93rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* ── FEATURES ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-media { display: flex; justify-content: center; }
.phone-frame {
  width: 240px;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 10px solid #fff;
  background: #fff;
}
.phone-frame img { width: 100%; height: 100%; object-fit: cover; }
.feature-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--c-accent-lt);
  color: var(--c-accent-dk);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}
.feature-copy h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 1rem;
}
.feature-copy p {
  font-size: 0.97rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--c-text);
}
.feature-list li i {
  color: var(--c-accent-dk);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* screens handled in animations block */

/* ── PRICING ── */

.pricing-card {
  background: var(--c-dark-2);
  border: 1px solid var(--c-border-dk);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.pricing-card--featured {
  background: var(--c-dark-3);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 1px var(--c-accent), var(--sh-lg);
}
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: var(--c-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-plan {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.price-amt {
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-per {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}
.pricing-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
}
.pricing-features li.on { color: rgba(255,255,255,0.85); }
.pricing-features li.off { color: rgba(255,255,255,0.25); }
.pricing-features li i { font-size: 0.75rem; margin-top: 0.22rem; flex-shrink: 0; }
.pricing-features li.on i { color: var(--c-accent); }
.pricing-features li.off i { color: rgba(255,255,255,0.2); }
.btn-primary {
  display: block;
  padding: 0.85rem 1.5rem;
  background: var(--c-accent);
  color: var(--c-dark);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #d4b476; transform: translateY(-1px); }
.btn-outline {
  display: block;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border-dk);
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.pricing-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--c-text);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--c-accent-dk); }
.faq-q i {
  font-size: 0.8rem;
  color: var(--c-muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.93rem;
  color: var(--c-muted);
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.25rem; }

/* ── FINAL CTA ── */
.cta-final {
  background: var(--c-accent-lt);
  padding: var(--s-xl) 0;
}
.cta-final-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-final-text h2 {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 1rem;
}
.cta-final-text h2 em { font-style: italic; color: var(--c-accent-dk); }
.cta-final-text p {
  font-size: 1rem;
  color: var(--c-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.cta-stores { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta-final-visual { display: flex; justify-content: center; }
.cta-final-visual .phone-frame { background: #fff; }

/* ── FOOTER ── */
.footer {
  background: var(--c-dark);
  padding: 2.5rem 0;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand img { width: 24px; height: 24px; object-fit: contain; border-radius: 4px; }
.footer-links {
  display: flex;
  gap: 1.75rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── FADE IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--c-bg);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.3rem;
    z-index: 99;
  }
  .nav-hamburger { display: flex; z-index: 101; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .phones-scene { width: 250px; height: 460px; }
  .phone--front { width: 190px; height: 380px; }
  .phone--back { width: 150px; height: 300px; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row--reverse { direction: ltr; }
  .screens-grid { grid-template-columns: 1fr 1fr; }
  .screen-card--tall { height: 300px; }
  
  .cta-final-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-stores { justify-content: center; }
  .cta-final-visual { display: none; }
}
@media (max-width: 600px) {
  :root { --s-xl: 5rem; }
  .container { padding: 0 1.25rem; }
  .proof-band-inner { gap: 1.5rem; }
  .proof-divider { display: none; }
  .screens-grid { grid-template-columns: 1fr; }
  .screen-card { height: 260px; }
  .screen-card--tall { height: 260px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   ANIMATIONS & TRANSITIONS
   ========================================================= */

/* Custom cursor */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--c-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--c-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s, height 0.25s, opacity 0.25s;
  opacity: 0.5;
}
.cursor--hover { width: 20px; height: 20px; }
.cursor-ring--hover { width: 54px; height: 54px; opacity: 0.25; }
@media (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

/* Hero phone entrance */
.phone--back  { opacity: 0; transform: rotate(6deg) translateX(60px); transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.23,1,0.32,1) 0.2s; }
.phone--front { opacity: 0; transform: translateY(50px); transition: opacity 0.9s ease 0.45s, transform 0.9s cubic-bezier(0.23,1,0.32,1) 0.45s; }
.hero-text h1  { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease 0.05s, transform 0.8s cubic-bezier(0.23,1,0.32,1) 0.05s; }
.hero-badge    { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease 0s, transform 0.6s ease 0s; }
.hero-sub      { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s; }
.hero-actions  { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s; }
.hero-trust    { opacity: 0; transition: opacity 0.7s ease 0.5s; }

.hero-loaded .phone--back  { opacity: 0.85; transform: rotate(6deg) translateX(0); }
.hero-loaded .phone--front { opacity: 1;    transform: translateY(0); }
.hero-loaded .hero-text h1 { opacity: 1; transform: translateY(0); }
.hero-loaded .hero-badge   { opacity: 1; transform: translateY(0); }
.hero-loaded .hero-sub     { opacity: 1; transform: translateY(0); }
.hero-loaded .hero-actions { opacity: 1; transform: translateY(0); }
.hero-loaded .hero-trust   { opacity: 1; }

/* Steps connector line */
.steps-grid { position: relative; }
.steps-line {
  position: absolute;
  top: 24px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 1px;
  background: var(--c-border);
  overflow: hidden;
}
.steps-line-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--c-accent-lt), var(--c-accent));
  transition: width 1.2s cubic-bezier(0.23,1,0.32,1);
}
.steps-line.animated .steps-line-fill { width: 100%; }

/* Scroll horizontal gallery */
.screens-scroll-wrap {
  overflow-x: auto;
  overflow-y: visible;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  margin: 0 -2rem;
  padding: 0 2rem 1.5rem;
  scrollbar-width: none;
}
.screens-scroll-wrap::-webkit-scrollbar { display: none; }
.screens-scroll-wrap:active { cursor: grabbing; }
.screens-grid {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}
.screen-card {
  flex-shrink: 0;
  width: 260px;
  height: 480px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: #fff;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s;
}
.screen-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--sh-lg);
}
.screen-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.screen-card--tall { width: 260px; height: 480px; }

/* Pricing hover */
.pricing-card {
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Proof band counter */
.proof-stat strong { display: inline-block; }

/* Parallax hero */
.hero-parallax { will-change: transform; }

/* Section fade variants */
.fade-in-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23,1,0.32,1); }
.fade-in-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23,1,0.32,1); }
.fade-in-left.visible, .fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Feature row directional */
.feature-row .feature-media  { }
.feature-row .feature-copy   { }

/* Nav link underline anim */
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--c-accent-dk);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Btn hover lift */
.btn-primary, .btn-outline, .nav-cta {
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.35); }
.nav-cta:hover      { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* Store btn pulse on load */
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
  50%      { box-shadow: 0 0 0 8px rgba(201,169,110,0.15); }
}
.btn-store { animation: pulse-glow 3s ease-in-out 2s infinite; }
.btn-store:hover { animation: none; }

/* Scroll hint bounce already defined, add fade */
.hero-scroll-hint { opacity: 0; transition: opacity 1s ease 1.5s; }
.hero-loaded .hero-scroll-hint { opacity: 1; }



/* ── PRICING ── */
.pricing-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1060px;
  margin: 0 auto 1rem;
  align-items: stretch;
}
.pricing-row-packs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 580px;
  margin: 0 auto;
}
.pricing-group-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  max-width: 1060px;
  margin: 0 auto 1.25rem;
}
.pricing-group-sub {
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.3);
}
@media (max-width: 780px) {
  .pricing-row-3 { grid-template-columns: 1fr; }
  .pricing-row-packs { grid-template-columns: 1fr; }
}

/* ── PACKS ── */
.pricing-pack {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color .25s, transform .25s;
}
.pricing-pack:hover {
  border-color: rgba(201,169,110,.4);
  transform: translateY(-3px);
}
.pricing-pack--mid {
  border-color: rgba(201,169,110,.2);
}
.pack-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.pack-price {
  font-family: var(--f-serif);
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.pack-price span {
  font-family: var(--f-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.pack-qty {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}
.btn-outline--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
  align-self: flex-start;
}

/* ── BTN LIGHT (Pro card) ── */
.btn--light {
  background: #fff;
  color: var(--c-dark);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: opacity .2s, transform .2s;
}
.btn--light:hover { opacity: 0.88; transform: translateY(-2px); }
