/* =============================================
   RUBIX CODES — Animations & Enhanced Styles
   ============================================= */

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.reveal-scale { opacity:0; transform:scale(0.92); transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1); }
.reveal-scale.visible { opacity:1; transform:scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── HERO LAPTOP MOCKUP ── */
.laptop-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.laptop-frame {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
}

/* Laptop lid */
.laptop-lid {
  position: absolute;
  inset: 0 5% 0 5%;
  background: linear-gradient(160deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 14px 14px 0 0;
  border: 2px solid #3a3a3a;
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.05);
}

/* Screen bezel */
.laptop-screen-bezel {
  position: absolute;
  inset: 8px 8px 0 8px;
  background: #111;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

/* Browser chrome */
.browser-bar {
  height: 28px;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid #2a2a2a;
  flex-shrink: 0;
}
.browser-dot {
  width: 9px; height: 9px; border-radius: 50%;
}
.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #28c840; }
.browser-url {
  flex: 1; height: 16px; background: #2a2a2a; border-radius: 4px; margin: 0 12px;
  display: flex; align-items: center; padding: 0 8px;
  font-size: 8px; color: rgba(255,255,255,.4); font-family: 'Barlow', sans-serif;
  overflow: hidden; white-space: nowrap;
}

/* Screenshot area */
.browser-content {
  position: absolute;
  top: 28px; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  background: #f5f3ef;
}
.browser-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
/* Fallback mock website if no image */
.mock-website {
  width: 100%;
  height: 100%;
  background: #f8f5f0;
  display: flex;
  flex-direction: column;
}
.mock-nav {
  height: 28px;
  background: #fff;
  border-bottom: 1px solid #e5e0d8;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}
.mock-logo-pill {
  width: 50px; height: 8px;
  background: linear-gradient(90deg, #ff6b1a, #ff8c47);
  border-radius: 4px;
}
.mock-links { display: flex; gap: 8px; margin-left: auto; }
.mock-link { width: 24px; height: 6px; background: #e5e0d8; border-radius: 3px; }
.mock-hero {
  flex: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mock-hero::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 80%;
  right: -10%;
  top: 10%;
  background: radial-gradient(circle, rgba(255,107,26,.15), transparent 70%);
}
.mock-h1-line { height: 10px; background: #fff; border-radius: 3px; margin-bottom: 8px; width: 75%; }
.mock-h1-line.orange { background: #ff6b1a; width: 55%; }
.mock-h1-line.thin { width: 50%; opacity: .3; }
.mock-para { height: 6px; background: rgba(255,255,255,.3); border-radius: 3px; margin-bottom: 5px; }
.mock-para:nth-child(2) { width: 90%; }
.mock-para:nth-child(3) { width: 75%; }
.mock-btns { display: flex; gap: 8px; margin-top: 10px; }
.mock-btn { height: 12px; width: 55px; border-radius: 3px; background: #ff6b1a; }
.mock-btn.outline { background: transparent; border: 1px solid rgba(255,255,255,.3); }
.mock-stats {
  display: flex;
  padding: 8px 12px;
  background: rgba(255,255,255,.06);
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mock-stat { text-align: center; }
.mock-stat-num { height: 8px; background: #ff6b1a; border-radius: 2px; width: 30px; margin: 0 auto 3px; }
.mock-stat-lbl { height: 4px; background: rgba(255,255,255,.2); border-radius: 2px; width: 40px; margin: 0 auto; }

/* Laptop base/keyboard */
.laptop-base {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 8%;
  background: linear-gradient(180deg, #2a2a2a, #1e1e1e);
  border-radius: 0 0 6px 6px;
  border: 2px solid #3a3a3a;
  border-top: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.6), 0 2px 0 #111;
}
.laptop-base::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 25%; height: 4px;
  background: #252525;
  border-radius: 4px 4px 0 0;
}

/* Glow under laptop */
.laptop-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(255,107,26,.3), transparent 70%);
  filter: blur(10px);
}

/* Floating badges on laptop */
.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  border: 1px solid rgba(0,0,0,.06);
}
.floating-badge .fb-icon { font-size: 1rem; }
.floating-badge .fb-text { color: #1a1a1a; line-height: 1.3; }
.floating-badge .fb-sub { font-size: 0.65rem; color: #6b6b6b; font-weight: 500; display: block; }

.badge-leads {
  top: 12%;
  right: -4%;
  animation: floatBadge1 3.5s ease-in-out infinite;
}
.badge-google {
  bottom: 22%;
  left: -6%;
  animation: floatBadge2 4s ease-in-out infinite;
}
.badge-calls {
  top: 55%;
  right: -6%;
  animation: floatBadge3 3s ease-in-out infinite;
}
@keyframes floatBadge1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatBadge2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes floatBadge3 { 0%,100%{transform:translateY(-4px)} 50%{transform:translateY(4px)} }

/* Green dot pulse */
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(22,163,74,.3);
  animation: pulseDot 1.5s ease-out infinite;
}
@keyframes pulseDot { 0%{transform:scale(1);opacity:1} 100%{transform:scale(2.5);opacity:0} }

/* ── COUNTER ANIMATION ── */
.count-up { display: inline-block; }

/* ── HERO SECTION ENHANCED ── */
.hero-section {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  opacity: .035;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridSlide 20s linear infinite;
}
@keyframes gridSlide {
  from { background-position: 0 0; }
  to { background-position: 55px 55px; }
}
.hero-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,107,26,.1), transparent 65%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:.6;transform:translateY(-50%) scale(1)} 50%{opacity:1;transform:translateY(-50%) scale(1.1)} }

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--orange);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── PORTFOLIO PAGE ── */
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.portfolio-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  border-color: rgba(255,107,26,.3);
}

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.04);
}

/* Mock screenshot for portfolio cards */
.portfolio-mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pm-nav { height: 20px; display: flex; align-items: center; padding: 0 8px; gap: 4px; flex-shrink: 0; }
.pm-dot { width: 6px; height: 6px; border-radius: 50%; }
.pm-hero { flex: 1; position: relative; overflow: hidden; padding: 12px; display: flex; flex-direction: column; justify-content: flex-end; }
.pm-overlay { position: absolute; inset: 0; }
.pm-title { height: 8px; border-radius: 3px; background: rgba(255,255,255,.9); width: 70%; margin-bottom: 6px; position: relative; z-index: 1; }
.pm-sub { height: 5px; border-radius: 2px; background: rgba(255,255,255,.5); width: 50%; position: relative; z-index: 1; }
.pm-btn { height: 14px; width: 60px; border-radius: 4px; background: #ff6b1a; margin-top: 8px; position: relative; z-index: 1; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,107,26,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,.6);
  padding: 10px 20px;
  border-radius: 5px;
}

.portfolio-info {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.portfolio-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.portfolio-trade {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.portfolio-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.portfolio-tag {
  padding: 3px 10px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.portfolio-result {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.portfolio-metric {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.portfolio-metric-label { font-size: 0.7rem; color: var(--text-muted); text-align: right; }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  padding: 40px 5%;
  backdrop-filter: blur(8px);
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-card {
  background: #fff;
  border-radius: 14px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s;
}
.lightbox-overlay.open .lightbox-card { transform: scale(1); }
.lightbox-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}
.lightbox-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,.6); color: #fff;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background .2s;
  z-index: 10;
}
.lightbox-close:hover { background: var(--orange); }
.lightbox-body { padding: 28px 32px 32px; }
.lightbox-trade { font-size: 0.75rem; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.lightbox-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.lightbox-metrics { display: flex; gap: 16px; flex-wrap: wrap; margin: 16px 0 20px; }
.lb-metric { flex: 1; min-width: 100px; background: var(--light); border-radius: 8px; padding: 14px; text-align: center; }
.lb-metric-num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--orange); line-height: 1; }
.lb-metric-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

/* ── ENHANCED CARD HOVERS ── */
.card { transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s, border-color .22s; }

/* ── ORANGE ACCENT LINE HEADINGS ── */
.heading-with-line { position: relative; display: inline-block; }
.heading-with-line::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.6s ease 0.3s;
}
.heading-with-line.visible::after { width: 100%; }

/* ── NUMBER TICKER SECTION ── */
.ticker-section {
  background: var(--orange);
  padding: 60px 5%;
  overflow: hidden;
}
.ticker-section .stat-num { color: #fff; font-size: 3rem; }
.ticker-section .stat-label { color: rgba(255,255,255,.75); }
.ticker-section .stat-block { border-color: rgba(255,255,255,.2); }

/* ── RESPONSIVE LAPTOP ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .laptop-wrapper { max-width: 460px; }
  .badge-leads { right: 0%; }
  .badge-google { left: 0%; }
  .badge-calls { right: 0%; }
  .hero-section { padding-top: 120px; padding-bottom: 60px; }
}
@media (max-width: 600px) {
  .laptop-wrapper { max-width: 340px; }
  .floating-badge { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   ENHANCED ANIMATIONS v3
   ══════════════════════════════════════════ */

/* ── MAGNETIC HOVER BUTTONS ── */
.btn-primary, .btn-outline, .nav-cta {
  transition: background .2s, transform .15s, box-shadow .2s !important;
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(255,107,26,.4) !important;
  transform: translateY(-3px) !important;
}

/* ── CARD HOVER GLOW ── */
.card {
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, border-color .25s !important;
}
.card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,.1), 0 0 0 1px rgba(255,107,26,.1) !important;
}

/* ── SCROLL REVEAL — data-reveal system ── */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="down"]  { transform: translateY(-36px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── HERO ENTRY ANIMATIONS ── */
.anim-1 { animation: heroEntry .7s cubic-bezier(.22,1,.36,1) .1s both; }
.anim-2 { animation: heroEntry .7s cubic-bezier(.22,1,.36,1) .2s both; }
.anim-3 { animation: heroEntry .7s cubic-bezier(.22,1,.36,1) .35s both; }
.anim-4 { animation: heroEntry .7s cubic-bezier(.22,1,.36,1) .5s both; }
.anim-5 { animation: heroEntry .7s cubic-bezier(.22,1,.36,1) .65s both; }

@keyframes heroEntry {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ── PAGE HERO IMAGE ENTRY ── */
.page-hero-img .hero-img-frame {
  animation: heroImgEntry .8s cubic-bezier(.22,1,.36,1) .3s both;
}
@keyframes heroImgEntry {
  from { opacity: 0; transform: translateX(40px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

/* ── SHIMMER LOADING EFFECT ── */
.shimmer-bg {
  background: linear-gradient(90deg, rgba(255,255,255,.05) 25%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── TYPEWRITER TEXT EFFECT ── */
.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--orange);
  white-space: nowrap;
  animation: typing 3s steps(30,end) 1s both, blink .75s step-end infinite 4s;
}
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes blink  { 50% { border-color: transparent; } }

/* ── STAT COUNTER ── */
.stat-num[data-count] { transition: all .2s; }

/* ── VIDEO CARD HOVER ── */
.video-card {
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s !important;
}
.video-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 56px rgba(0,0,0,.25) !important;
}
.video-card .play-btn {
  transform: scale(1);
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .2s !important;
}
.video-card:hover .play-btn {
  transform: scale(1.12) !important;
  background: var(--orange-light) !important;
}

/* ── PRICING CARD HOVER ── */
.pkg-card {
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s !important;
}
.pkg-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,.1) !important;
}

/* ── TRUST BAR ITEM HOVER ── */
.trust-item {
  transition: color .2s, transform .2s;
}
.trust-item:hover {
  color: rgba(255,255,255,.85);
  transform: translateY(-1px);
}

/* ── STATS COUNTER JUMP IN ── */
@keyframes countUp {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.stat-num { animation: countUp .6s cubic-bezier(.22,1,.36,1) both; }

/* ── NOTIFICATION BADGE PULSE ── */
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 8px 24px rgba(255,107,26,.3); }
  50%       { box-shadow: 0 8px 36px rgba(255,107,26,.6), 0 0 0 4px rgba(255,107,26,.1); }
}
.hero-img-badge.bl { animation: pulseBadge 3s ease-in-out infinite 1s, floatY 4s ease-in-out infinite .5s; }
.hero-img-badge.br { animation: pulseBadge 3s ease-in-out infinite 2s, floatY 4s ease-in-out infinite 1.2s; }
.stat-bubble { animation: pulseBadge 3s ease-in-out infinite, floatY 4s ease-in-out infinite 1s; }

/* ── GRADIENT BORDER ANIMATION ── */
.featured.pkg-card, .pkg-card.featured {
  animation: borderGlow 3s ease-in-out infinite;
}
@keyframes borderGlow {
  0%,100% { box-shadow: 0 0 0 2px rgba(255,107,26,.3), 0 12px 40px rgba(255,107,26,.1); }
  50%      { box-shadow: 0 0 0 2px rgba(255,107,26,.6), 0 20px 60px rgba(255,107,26,.2); }
}

/* ── WEB SCREENSHOT CARD ── */
.web-screenshot-card {
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  animation: floatY 5s ease-in-out infinite;
}
.web-screenshot-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}

/* ── NAV SCROLLED ── */
nav.scrolled {
  background: rgba(248,245,240,0.99) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

/* ── DIVIDER GROW-IN ── */
.divider {
  transition: width .8s ease .4s;
}
.revealed .divider, .divider.visible {
  width: 100%;
}