/* ══════════════════════════════════════════════════════
   NOXSTAFF — Glassmorphism Marketing Site
   Light palette · Black / White / Green #166534
   Design ref: glassmorphism cards, left sidebar, top pill bar
══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
::selection { background: #166534; color: #fff; }

:root {
  --bg:         #EEF1F9;
  --bg2:        #E4E9F5;
  --glass:      rgba(255,255,255,0.72);
  --glass-hi:   rgba(255,255,255,0.88);
  --glass-lo:   rgba(255,255,255,0.50);
  --gborder:    rgba(255,255,255,0.90);
  --gborder-lo: rgba(255,255,255,0.55);
  --shadow:     0 8px 32px rgba(80,100,160,0.10);
  --shadow-lg:  0 20px 60px rgba(80,100,160,0.16);
  --text:       #1A1A2E;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --green:      #166534;
  --green-d:    #0F4A26;
  --green-bg:   rgba(22,101,52,0.10);
  --green-bdr:  rgba(22,101,52,0.25);
  --red:        #EF4444;
  --red-bg:     rgba(239,68,68,0.08);
  --radius:     20px;
  --radius-sm:  12px;
  --radius-xl:  28px;
  --pill:       50px;
  --spring:     cubic-bezier(.22,1,.36,1);
  --ease:       cubic-bezier(.4,0,.2,1);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.18; }
em { color: var(--green); font-style: italic; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ── GLASS CARD ── */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--gborder);
  box-shadow: var(--shadow), 0 1px 0 rgba(255,255,255,0.8) inset;
  border-radius: var(--radius);
}
.glass-pill { border-radius: var(--pill); }
.glass-pill-v { border-radius: var(--radius-xl); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--spring), transform .7s var(--spring);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }
.delay-4 { transition-delay: .40s; }

/* ── SHARED ── */
.section { padding: 100px 0; }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--text); margin-bottom: 14px; }
.section-sub { font-size: .95rem; color: var(--text-mid); max-width: 520px; margin: 0 auto; line-height: 1.8; }
.eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #07090E 0%, #0C1420 55%, #080C14 100%);
}

/* Background image + orb container */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.14;
  filter: saturate(0.5) brightness(1.3);
  mix-blend-mode: overlay;
  z-index: 0;
}
/* Soft depth orbs */
.hbg-orb { position: absolute; border-radius: 50%; filter: blur(60px); }
.hbg-orb1 { width: 55vw; height: 55vw; max-width: 680px; max-height: 680px; background: rgba(200,148,42,0.14); top: -15%; right: -10%; animation: horbFloat 14s ease-in-out infinite; }
.hbg-orb2 { width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; background: rgba(22,101,52,0.11); bottom: -8%; left: -8%; animation: horbFloat 18s ease-in-out infinite reverse; }
.hbg-orb3 { width: 28vw; height: 28vw; max-width: 320px; max-height: 320px; background: rgba(110,70,200,0.11); top: 35%; left: 50%; transform: translateX(-50%); animation: horbPulse 7s ease-in-out infinite; }
/* Grid texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}
/* Ambient light — disabled in v2 */
.hero::after { display: none; }
@keyframes horbFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(12px,-14px)} }
@keyframes horbPulse { 0%,100%{opacity:.5} 50%{opacity:1} }

/* ── TOP BAR ── */
.topbar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(80,100,160,0.12);
  padding: 8px;
  z-index: 50;
  white-space: nowrap;
  max-width: calc(100vw - 40px);
}
.tb-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.tb-action-btn:hover { background: var(--green); transform: scale(1.03); }
.tb-action-ghost { background: transparent; color: var(--text); border: 1.5px solid rgba(0,0,0,0.12); }
.tb-action-ghost:hover { background: var(--text); color: #fff; }
.tb-filters {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 8px;
  flex: 1;
}
.tb-filter {
  display: flex;
  flex-direction: column;
  padding: 4px 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s;
}
.tb-filter:hover { background: rgba(0,0,0,0.04); }
.tb-filter-label { font-size: .6rem; color: var(--text-light); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.tb-filter-val { font-size: .82rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 4px; margin-top: 1px; }
.tb-divider { width: 1px; height: 28px; background: rgba(0,0,0,0.08); flex-shrink: 0; }

/* ── LEFT SIDEBAR ── */
.sidebar {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(80,100,160,0.12);
  border-radius: 28px;
  padding: 14px 10px;
  z-index: 50;
}
.sb-item {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.sb-item:hover, .sb-active { background: var(--text); color: #fff; }
.sb-divider { width: 24px; height: 1px; background: rgba(0,0,0,0.08); margin: 4px 0; }
.sb-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8922A, #8B5E1A);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.8);
}

/* ── HERO TEXT ── */
.hero-text {
  position: absolute;
  z-index: 5;
  text-align: left;
  max-width: 520px;
  left: 110px;    /* sidebar (~60px) + breathing room */
  top: 50%;
  transform: translateY(-50%);
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: rgba(255,255,255,0.94);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.50);
  animation: heroReveal 1s var(--spring) .32s both;
}
.hero-title em { color: rgba(255,255,255,0.65); font-style: italic; }
.hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.80;
  max-width: 370px;
  animation: heroFadeUp .85s var(--spring) .58s both;
}

/* ── HERO EYEBROW TAG ── */
.hero-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,101,52,0.14);
  border: 1px solid rgba(22,101,52,0.32);
  color: rgba(255,255,255,0.80);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  animation: heroFadeUp .7s var(--spring) .14s both;
}
.hero-eyebrow-tag .het-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: horbPulse 2s ease-in-out infinite;
}

/* ── HERO CTA ── */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  animation: heroFadeUp .7s var(--spring) .78s both;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: transform .22s var(--spring), box-shadow .22s;
  box-shadow: 0 8px 36px rgba(22,101,52,0.48);
  white-space: nowrap;
}
.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 48px rgba(22,101,52,0.62);
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'Inter', sans-serif;
  transition: background .2s, transform .2s var(--spring);
  white-space: nowrap;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ── HERO SOCIAL PROOF ── */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  animation: heroFadeUp .7s var(--spring) .94s both;
}
.hero-proof-avatars { display: flex; }
.hpa {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; font-weight: 700; color: #fff;
  margin-left: -8px; flex-shrink: 0;
}
.hpa:first-child { margin-left: 0; }
.hpa-a { background: #C8922A; }
.hpa-b { background: var(--green); }
.hpa-c { background: #7C3AED; }
.hpa-d { background: #0891B2; }
.hero-proof-text { font-size: .72rem; color: rgba(255,255,255,0.48); }
.hero-proof-text strong { color: rgba(255,255,255,0.78); font-weight: 600; }

/* ── FLOATING CHIPS ── */
.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  white-space: nowrap;
  z-index: 8;
  pointer-events: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}
/* All chips cluster on the right, near the profile card — nothing floats over the headline */
.hchip-1 { top: 22%; right: 6%;   animation: chipFloat1  8s ease-in-out infinite, heroFadeUp .8s var(--spring) 1.10s both; }
.hchip-2 { top: 38%; right: 2%;   animation: chipFloat2 10s ease-in-out infinite, heroFadeUp .8s var(--spring) 1.30s both; }
.hchip-3 { top: 14%; right: 17%;  animation: chipFloat1  9s ease-in-out infinite reverse, heroFadeUp .8s var(--spring) 1.00s both; }
.hchip-4 { bottom: 35%; right: 6%; animation: chipFloat2 12s ease-in-out infinite, heroFadeUp .8s var(--spring) 1.20s both; }

/* ── HERO PARTICLES ── */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }
.hp { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.28); animation: particleDrift linear infinite; }
.hp-1  { width: 3px; height: 3px; top: 82%; left: 14%; animation-duration: 14s; animation-delay:  0s; }
.hp-2  { width: 2px; height: 2px; top: 71%; left: 42%; animation-duration: 18s; animation-delay:  2s; }
.hp-3  { width: 4px; height: 4px; top: 63%; left: 72%; animation-duration: 12s; animation-delay:  4s; }
.hp-4  { width: 2px; height: 2px; top: 87%; left: 57%; animation-duration: 16s; animation-delay:  1s; }
.hp-5  { width: 3px; height: 3px; top: 76%; left: 87%; animation-duration: 20s; animation-delay:  3s; }
.hp-6  { width: 2px; height: 2px; top: 91%; left: 28%; animation-duration: 15s; animation-delay:  6s; }
.hp-7  { width: 3px; height: 3px; top: 67%; left: 62%; animation-duration: 17s; animation-delay:  5s; background: rgba(22,101,52,0.55); }
.hp-8  { width: 2px; height: 2px; top: 79%; left: 36%; animation-duration: 13s; animation-delay:  8s; }
.hp-9  { width: 3px; height: 3px; top: 55%; left: 20%; animation-duration: 19s; animation-delay:  7s; background: rgba(200,148,42,0.50); }
.hp-10 { width: 2px; height: 2px; top: 94%; left: 75%; animation-duration: 11s; animation-delay:  9s; }

/* ── HERO CARDS ── */
.hero-card {
  position: absolute;
  z-index: 10;
}
.hero-card-l {
  bottom: 40px;
  left: 110px;
  width: 260px;
  padding: 20px 20px 18px;
  animation: cardFloat1 6s ease-in-out 2s infinite, heroCardIn .9s var(--spring) 1.05s both;
}
.hero-card-r {
  top: 50%;
  margin-top: -210px;
  right: 40px;
  bottom: auto;
  width: 300px;
  padding: 20px 20px 16px;
  animation: cardFloat2 7s ease-in-out 2.2s infinite, heroCardIn .9s var(--spring) 1.25s both;
}
@keyframes cardFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes cardFloat2 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-8px) rotate(.5deg)} }

.hc-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.hc-desc { font-size: .75rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.hc-stat-row { display: flex; flex-direction: column; gap: 4px; }
.hc-stat { display: flex; align-items: center; gap: 10px; }
.hc-big { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--text); line-height: 1; }
.hc-avatars { display: flex; }
.hca { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: .55rem; font-weight: 700; color: #fff; margin-left: -6px; }
.hca:first-child { margin-left: 0; }
.hca-1 { background: #C8922A; }
.hca-2 { background: #166534; }
.hca-3 { background: #7C3AED; }
.hca-4 { background: #0891B2; font-size: .5rem; }
.hc-arrow-btn { width: 28px; height: 28px; background: var(--text); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; flex-shrink: 0; transition: background .2s; }
.hc-arrow-btn:hover { background: var(--green); }
.hc-label { font-size: .65rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

/* Right card */
.hcr-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.hcr-name { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.hcr-loc { font-size: .72rem; color: var(--text-mid); display: flex; align-items: center; gap: 4px; }
.icon-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.06); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); flex-shrink: 0; transition: background .2s; }
.icon-btn:hover { background: var(--green); color: #fff; }
.hcr-desc { font-size: .74rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 10px; }
.hcr-specs { font-size: .72rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 10px; }
.hcr-dot { margin: 0 4px; color: var(--text-light); }
.hcr-badge-row { display: flex; gap: 6px; margin-bottom: 12px; }
.verified-chip { background: var(--green-bg); color: var(--green-d); font-size: .62rem; font-weight: 700; padding: 3px 8px; border-radius: 20px; border: 1px solid var(--green-bdr); }
.hcr-actions { display: flex; gap: 6px; align-items: center; }
.hcr-btn { display: flex; align-items: center; gap: 5px; background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); padding: 6px 10px; border-radius: 8px; font-size: .72rem; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: background .2s; }
.hcr-btn:hover { background: rgba(0,0,0,0.10); }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .62rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--spring) 1.8s both;
  z-index: 10;
}
.hero-scroll-hint svg { animation: scrollBounce 1.8s ease-in-out infinite; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── HERO ENTRANCE ANIMATIONS ── */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(52px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes chipFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes chipFloat2 { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-8px) translateX(6px)} }
@keyframes particleDrift {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  15%  { opacity: .55; }
  85%  { opacity: .55; }
  100% { opacity: 0; transform: translateY(-110px) translateX(24px); }
}
@keyframes heroCardIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════
   HERO v2
══════════════════════════════════════════ */

/* Background orbs */
.hv2-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hv2-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.hv2-orb-g { width: 680px; height: 680px; background: rgba(22,101,52,0.16); top: -120px; right: -80px; animation: hv2OrbFloat 18s ease-in-out infinite; }
.hv2-orb-a { width: 440px; height: 440px; background: rgba(200,148,42,0.09); top: 25%; left: -80px; animation: hv2OrbFloat 22s ease-in-out infinite reverse; }
.hv2-orb-b { width: 320px; height: 320px; background: rgba(59,130,246,0.07); bottom: 8%; right: 30%; animation: hv2OrbFloat 15s ease-in-out 4s infinite; }
@keyframes hv2OrbFloat {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(24px,-18px); }
  66%     { transform: translate(-12px,12px); }
}

/* Left content */
.hv2-left {
  position: absolute;
  left: 110px; top: 50%;
  transform: translateY(-50%);
  max-width: 490px; z-index: 5;
}
.hv2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,101,52,0.14); border: 1px solid rgba(22,101,52,0.32);
  color: rgba(255,255,255,0.82);
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 30px; margin-bottom: 22px;
  animation: heroFadeUp .7s var(--spring) .10s both;
}
.hv2-ey-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #1DBF73; flex-shrink: 0;
  animation: horbPulse 2s ease-in-out infinite;
}
.hv2-headline {
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
  font-weight: 900; color: rgba(255,255,255,0.96);
  letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 20px;
  animation: heroReveal .9s var(--spring) .25s both;
}
.hv2-headline em { color: #1DBF73; font-style: italic; }
.hv2-sub {
  font-size: .95rem; color: rgba(255,255,255,0.50);
  line-height: 1.80; margin-bottom: 32px;
  animation: heroFadeUp .85s var(--spring) .42s both;
}
.hv2-cta-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 28px;
  animation: heroFadeUp .7s var(--spring) .58s both;
}
.hv2-btn-hire {
  display: inline-flex; align-items: center; gap: 8px;
  background: #166534; color: #fff;
  padding: 15px 30px; border-radius: 50px;
  font-size: .9rem; font-weight: 700; text-decoration: none; font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 36px rgba(22,101,52,0.52);
  transition: transform .22s var(--spring), box-shadow .22s;
}
.hv2-btn-hire:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 48px rgba(22,101,52,0.68); }
.hv2-btn-work {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.82);
  padding: 14px 24px; border-radius: 50px;
  font-size: .9rem; font-weight: 600; text-decoration: none; font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255,255,255,0.16);
  transition: background .2s, transform .2s var(--spring);
}
.hv2-btn-work:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.hv2-proof {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  animation: heroFadeUp .7s var(--spring) .72s both;
}
.hv2-proof-avs { display: flex; }
.hv2-pav {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; font-weight: 700; color: #fff;
  margin-left: -8px; flex-shrink: 0;
}
.hv2-pav:first-child { margin-left: 0; }
.hv2-pav-a { background: #C8922A; }
.hv2-pav-b { background: #166534; }
.hv2-pav-c { background: #7C3AED; }
.hv2-pav-d { background: #0891B2; }
.hv2-proof-copy { font-size: .72rem; color: rgba(255,255,255,0.44); }
.hv2-proof-num { font-weight: 700; color: rgba(255,255,255,0.82); }
.hv2-rating {
  display: flex; align-items: center; gap: 8px;
  animation: heroFadeUp .7s var(--spring) .84s both;
}
.hv2-stars-row { color: #F59E0B; font-size: .88rem; letter-spacing: 1px; }
.hv2-rating-val { font-size: .86rem; font-weight: 700; color: rgba(255,255,255,0.82); }
.hv2-rating-label { font-size: .72rem; color: rgba(255,255,255,0.40); }

/* Right card stack */
.hv2-right {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  width: 460px; height: 520px;
  z-index: 5; pointer-events: none;
}
.hv2-card {
  position: absolute;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.98); border-radius: 20px; padding: 18px 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.50), 0 1px 0 rgba(255,255,255,0.55) inset;
}
.hv2-card-bl {
  width: 280px; left: -10px; top: 68px;
  transform: rotate(-6deg); z-index: 1; opacity: 0.75;
  animation: heroCardIn .9s var(--spring) .9s both, hv2FloatL 9s ease-in-out 2s infinite;
}
.hv2-card-br {
  width: 280px; right: -10px; top: 68px;
  transform: rotate(6deg); z-index: 1; opacity: 0.75;
  animation: heroCardIn .9s var(--spring) 1.1s both, hv2FloatR 10s ease-in-out 2.5s infinite;
}
.hv2-card-main {
  width: 340px; left: 50%; top: 0;
  transform: translateX(-50%); z-index: 3;
  animation: heroCardIn .9s var(--spring) .65s both, hv2FloatM 8s ease-in-out 1.8s infinite;
}
@keyframes hv2FloatM { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-12px)} }
@keyframes hv2FloatL { 0%,100%{transform:rotate(-6deg) translateY(0)} 50%{transform:rotate(-6deg) translateY(-8px)} }
@keyframes hv2FloatR { 0%,100%{transform:rotate(6deg) translateY(0)} 50%{transform:rotate(6deg) translateY(-8px)} }

/* Back-card internals */
.hv2-crd-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hv2-crd-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.hv2-crd-av-g { background: linear-gradient(135deg, #166534, #22C55E); }
.hv2-crd-av-p { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.hv2-crd-info { flex: 1; }
.hv2-crd-name { font-size: .82rem; font-weight: 700; color: #1A1A2E; }
.hv2-crd-role { font-size: .68rem; color: #718096; margin-top: 1px; }
.hv2-avail-pill {
  font-size: .56rem; font-weight: 700;
  background: rgba(22,101,52,0.10); color: #166534;
  border: 1px solid rgba(22,101,52,0.24);
  padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
}
.hv2-crd-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.hv2-crd-chip { font-size: .58rem; font-weight: 600; background: rgba(0,0,0,0.05); color: #4A5568; padding: 3px 8px; border-radius: 12px; }

/* Main card internals */
.hv2-main-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.hv2-main-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #C8922A, #E8B84B);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; color: #fff; flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.18);
}
.hv2-main-info { flex: 1; }
.hv2-main-name { font-size: .92rem; font-weight: 700; color: #1A1A2E; }
.hv2-main-role { font-size: .70rem; color: #718096; margin-top: 1px; }
.hv2-main-live { display: flex; align-items: center; gap: 5px; font-size: .62rem; font-weight: 700; color: #166534; }
.hv2-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #1DBF73;
  animation: horbPulse 2s ease-in-out infinite;
}
.hv2-main-stars { font-size: .72rem; color: #4A5568; margin-bottom: 12px; }
.hv2-ms-gold { color: #F59E0B; }
.hv2-main-stats {
  display: flex; align-items: center;
  background: rgba(0,0,0,0.03); border-radius: 12px; padding: 10px 14px; margin-bottom: 12px;
}
.hv2-mstat { flex: 1; text-align: center; }
.hv2-mstat-v { font-size: .88rem; font-weight: 700; color: #1A1A2E; }
.hv2-mstat-l { font-size: .60rem; color: #718096; margin-top: 2px; }
.hv2-mstat-sep { width: 1px; height: 28px; background: rgba(0,0,0,0.08); }
.hv2-main-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.hv2-mbadge {
  font-size: .6rem; font-weight: 700;
  background: rgba(22,101,52,0.10); color: #166534;
  border: 1px solid rgba(22,101,52,0.22); padding: 3px 8px; border-radius: 14px;
}
.hv2-hire-btn {
  width: 100%; padding: 13px;
  background: #166534; color: #fff; border: none; border-radius: 12px;
  font-size: .85rem; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background .2s, transform .2s var(--spring);
  box-shadow: 0 4px 20px rgba(22,101,52,0.40); pointer-events: all;
}
.hv2-hire-btn:hover { background: #0F4A26; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(22,101,52,0.52); }

/* Floating pills */
.hv2-fpill {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.96); border: 1px solid rgba(255,255,255,0.98);
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  padding: 9px 16px; border-radius: 40px;
  font-size: .72rem; font-weight: 600; color: #1A1A2E;
  white-space: nowrap; z-index: 10;
}
.hv2-fpill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #1DBF73;
  animation: horbPulse 2s ease-in-out infinite;
}
.hv2-fpill-1 {
  left: -50px; bottom: 90px;
  animation: heroCardIn .8s var(--spring) 1.5s both, hv2PillFloat 7s ease-in-out 3s infinite;
}
.hv2-fpill-2 {
  right: -20px; bottom: 36px;
  animation: heroCardIn .8s var(--spring) 1.7s both, hv2PillFloat 9s ease-in-out 3.5s infinite reverse;
}
@keyframes hv2PillFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

/* Bottom marquee */
.hv2-marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 44px; overflow: hidden; display: flex; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
  z-index: 8; pointer-events: none;
}
.hv2-marquee-inner {
  white-space: nowrap; flex-shrink: 0;
  font-size: .68rem; font-weight: 600; letter-spacing: .10em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  animation: hv2Scroll 30s linear infinite;
}
@keyframes hv2Scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* Push scroll hint above marquee */
.hero-scroll-hint { bottom: 56px; }

/* ══════════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,20,33,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  z-index: 200;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 16px;
  color: rgba(255,255,255,0.36);
  text-decoration: none;
  font-size: .52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .2s;
  min-width: 56px;
}
.mbn-item:hover, .mbn-item.mbn-active { color: var(--green); }

/* ══════════════════════════════════════════
   PROOF STRIP
══════════════════════════════════════════ */
.proof-strip { background: #fff; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); padding: 32px 28px; }
.proof-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.proof-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.proof-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--text); line-height: 1; display: inline; }
.proof-suf { font-size: 1.1rem; font-weight: 700; color: var(--green); }
.proof-label { font-size: .68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.proof-sep { width: 1px; height: 36px; background: rgba(0,0,0,0.08); }

/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.why-section { padding: 100px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.why-card { padding: 36px 30px; transition: transform .3s var(--ease), box-shadow .3s; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon-wrap { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; border: 1px solid rgba(0,0,0,0.06); }
.why-icon-red   { background: rgba(239,68,68,0.08); }
.why-icon-amber { background: rgba(245,158,11,0.10); }
.why-icon-green { background: var(--green-bg); }
.why-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 12px; }
.why-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.why-stat-box { background: var(--bg2); border-radius: var(--radius-sm); padding: 14px 16px; border-left: 3px solid var(--green); }
.why-big { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); display: block; margin-bottom: 3px; }
.why-stat-text { font-size: .75rem; color: var(--text-mid); line-height: 1.5; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.svc-card { padding: 28px 24px; display: flex; flex-direction: column; gap: 0; transition: transform .3s var(--ease), box-shadow .3s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; border: 1px solid rgba(0,0,0,0.06); }
.svc-body { flex: 1; }
.svc-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.svc-card p { font-size: .82rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 12px; }
.svc-count { font-size: .72rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.svc-link { display: inline-flex; align-items: center; font-size: .82rem; font-weight: 600; color: var(--text-mid); text-decoration: none; transition: color .2s, gap .2s; gap: 4px; margin-top: auto; }
.svc-card:hover .svc-link { color: var(--text); gap: 8px; }

/* ══════════════════════════════════════════
   COMPARISON
══════════════════════════════════════════ */
.comp-section { background: #fff; }
.comp-table { overflow: hidden; }
.comp-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
}
.comp-col-label { font-size: .78rem; font-weight: 700; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.comp-col-label.new-label { color: var(--green-d); justify-content: flex-end; }
.comp-col-label.old-label { color: var(--red); }
.comp-col-feature { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); text-align: center; }
.comp-badge { display: inline-flex; padding: 2px 8px; border-radius: 20px; font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.comp-badge-old { background: var(--red-bg); color: var(--red); }
.comp-badge-new { background: var(--green-bg); color: var(--green-d); }

.comp-body { display: flex; flex-direction: column; }
.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  align-items: center;
  transition: background .2s;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(22,101,52,0.03); }
.comp-old { font-size: .82rem; color: var(--red); display: flex; align-items: center; gap: 6px; }
.comp-feat { font-size: .82rem; font-weight: 600; color: var(--text); text-align: center; }
.comp-new { font-size: .82rem; color: var(--green-d); font-weight: 600; display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.cx { width: 18px; height: 18px; background: var(--red-bg); color: var(--red); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; flex-shrink: 0; }
.ck { width: 18px; height: 18px; background: var(--green-bg); color: var(--green-d); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; flex-shrink: 0; }

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process-row { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ps-card { padding: 32px 28px; flex: 1; min-width: 220px; max-width: 300px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s; }
.ps-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ps-number { font-size: .62rem; font-weight: 700; letter-spacing: .14em; color: var(--green); text-transform: uppercase; margin-bottom: 14px; }
.ps-emoji { font-size: 2rem; margin-bottom: 14px; display: block; }
.ps-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 10px; }
.ps-card p { font-size: .82rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.ps-tags { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.ps-tags span { font-size: .68rem; background: var(--green-bg); color: var(--green-d); font-weight: 600; padding: 3px 10px; border-radius: 20px; border: 1px solid var(--green-bdr); }
.ps-arrow { color: rgba(0,0,0,0.25); flex-shrink: 0; display: flex; }

/* ══════════════════════════════════════════
   TRUST
══════════════════════════════════════════ */
.trust-section { background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.trust-card { padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s; }
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trust-num { font-size: .6rem; font-weight: 700; letter-spacing: .12em; color: var(--green); margin-bottom: 12px; }
.trust-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.trust-card h3 { font-size: .95rem; color: var(--text); margin-bottom: 10px; }
.trust-card p { font-size: .82rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.trust-bar { height: 2px; background: rgba(0,0,0,0.07); border-radius: 1px; overflow: hidden; }
.trust-fill { height: 100%; width: 0; background: var(--green); border-radius: 1px; transition: width 1.4s var(--spring); }
.trust-card.visible .trust-fill { width: 100%; }

/* ══════════════════════════════════════════
   ESCROW
══════════════════════════════════════════ */
.escrow-section { padding: 80px 28px; background: var(--bg); }
.escrow-card { max-width: 1000px; margin: 0 auto; padding: 48px 44px; display: grid; grid-template-columns: 80px 1fr auto; gap: 36px; align-items: center; }
.escrow-icon { font-size: 3rem; text-align: center; filter: drop-shadow(0 0 16px rgba(22,101,52,0.25)); animation: escrowPulse 3s ease-in-out infinite; }
@keyframes escrowPulse { 0%,100%{filter:drop-shadow(0 0 10px rgba(22,101,52,.2))} 50%{filter:drop-shadow(0 0 28px rgba(22,101,52,.45))} }
.escrow-text h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--text); margin-bottom: 10px; }
.escrow-text p { font-size: .88rem; color: var(--text-mid); line-height: 1.75; max-width: 420px; }
.escrow-badges { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.eb { padding: 10px 14px; font-size: .78rem; color: var(--text-mid); font-weight: 500; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.testi-card { padding: 30px 28px; transition: transform .3s var(--ease), box-shadow .3s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #F59E0B; font-size: .9rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-quote { font-size: .9rem; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.av-1 { background: linear-gradient(135deg, #C8922A, #7B4F14); }
.av-2 { background: linear-gradient(135deg, #166534, #0F4A26); }
.av-3 { background: linear-gradient(135deg, #7C3AED, #5B21B6); }
.av-4 { background: linear-gradient(135deg, #0891B2, #0E7490); }
.testi-author strong { display: block; font-size: .88rem; color: var(--text); }
.testi-author span { font-size: .72rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   APP SECTION
══════════════════════════════════════════ */
.app-section { background: #fff; }
.app-inner { padding: 52px 48px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.app-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 14px; }
.app-sub { font-size: .92rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
.app-store-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.store-btn { display: flex; align-items: center; gap: 12px; padding: 11px 18px; text-decoration: none; color: var(--text); min-width: 140px; transition: transform .2s, box-shadow .2s; }
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.sb-icon { font-size: 1.4rem; }
.sb-copy small { display: block; font-size: .62rem; color: var(--text-light); }
.sb-copy strong { display: block; font-size: .9rem; }
.app-bullets { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: .78rem; color: var(--text-mid); font-weight: 500; }
.app-bullets span { color: var(--green-d); }

/* ── PHONE MOCKUP ── */
.app-mockup { display: flex; align-items: center; justify-content: center; }

.phone-outer {
  width: 248px;
  background: #14161F;
  border-radius: 44px;
  padding: 12px 11px 0;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.38),
    0 0 0 1px rgba(255,255,255,0.07),
    0 0 0 7px rgba(255,255,255,0.03),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: phoneBob 6s ease-in-out infinite;
  position: relative;
}
@keyframes phoneBob { 0%,100%{transform:translateY(0) rotate(-1.5deg)} 50%{transform:translateY(-14px) rotate(1.5deg)} }

/* Dynamic island */
.phone-island {
  width: 88px; height: 26px;
  background: #000;
  border-radius: 20px;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 8px; gap: 5px;
}
.pi-camera {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.06);
}
.pi-sensor {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(22,101,52,0.4);
  box-shadow: 0 0 5px rgba(22,101,52,0.6);
}

/* Screen */
.phone-screen {
  background: #F0F2F8;
  border-radius: 34px 34px 0 0;
  height: 468px;
  overflow: hidden;
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 10px 12px 0;
}

/* Status bar */
.ps-status {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 2px;
}
.ps-time { font-size: .62rem; font-weight: 700; color: var(--text); letter-spacing: .01em; }
.ps-signal { display: flex; gap: 2px; align-items: flex-end; }
.ps-signal span { width: 3px; background: var(--text); border-radius: 1px; opacity: .7; }
.ps-signal span:nth-child(1) { height: 4px; }
.ps-signal span:nth-child(2) { height: 6px; }
.ps-signal span:nth-child(3) { height: 8px; opacity: .3; }
.ps-battery { display: flex; align-items: center; gap: 2px; }
.ps-batt-body {
  width: 18px; height: 9px; border-radius: 2px;
  border: 1.2px solid rgba(0,0,0,0.30);
  padding: 1.5px 2px; position: relative;
}
.ps-batt-body::after {
  content: ''; position: absolute; right: -4px; top: 50%;
  transform: translateY(-50%); width: 2px; height: 4px;
  background: rgba(0,0,0,0.25); border-radius: 0 1px 1px 0;
}
.ps-batt-fill { width: 70%; height: 100%; background: #22C55E; border-radius: 1px; }

/* Top bar */
.ps-bar2 {
  display: flex; justify-content: space-between; align-items: center;
}
.ps-wm { font-size: .58rem; font-weight: 800; letter-spacing: 4px; color: var(--text); }
.ps-bell { position: relative; width: 28px; height: 28px; border-radius: 8px; background: #fff; border: 1px solid rgba(0,0,0,0.07); display: flex; align-items: center; justify-content: center; color: var(--text); flex-shrink: 0; }
.ps-bell-dot { position: absolute; top: 4px; right: 4px; width: 6px; height: 6px; border-radius: 50%; background: #EF4444; border: 1.5px solid #F0F2F8; animation: notifPop 2.5s ease-in-out infinite; }
@keyframes notifPop { 0%,80%,100%{transform:scale(1)} 85%{transform:scale(1.5)} 90%{transform:scale(1)} }

/* Greeting */
.ps-greet-row { display: flex; align-items: center; justify-content: space-between; }
.ps-greet { font-size: .68rem; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.ps-sub-date { font-size: .50rem; color: var(--text-light); font-weight: 500; }
.ps-user-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #C8922A, #8B5E1A);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: .65rem; font-weight: 700; color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
  flex-shrink: 0;
}

/* Stats row */
.ps-stats {
  display: flex; background: #fff; border-radius: 12px;
  padding: 9px 12px; align-items: center; justify-content: space-between;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  animation: psSlideIn .5s var(--spring) .2s both;
}
.ps-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ps-sv { font-size: .72rem; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.ps-sv-star { color: #D97706; }
.ps-sk { font-size: .46rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.ps-sdiv { width: 1px; height: 22px; background: rgba(0,0,0,0.07); }

/* Live shift card */
.ps-card-live {
  background: rgba(22,101,52,0.07);
  border-radius: 14px; padding: 10px 11px;
  border: 1.2px solid rgba(22,101,52,0.25);
  display: flex; flex-direction: column; gap: 8px;
  animation: psSlideIn .5s var(--spring) .35s both;
  position: relative; overflow: hidden;
}
.ps-card-live::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,101,52,0.15), transparent 70%);
  pointer-events: none;
}
.ps-live-hd { display: flex; justify-content: space-between; align-items: center; }
.ps-live-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: .52rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .10em;
  color: #15803D;
}
.ps-dot-wrap {
  position: relative; width: 8px; height: 8px; flex-shrink: 0;
}
.ps-pulse-dot {
  position: absolute; inset: 0;
  border-radius: 50%; background: var(--green);
}
.ps-pulse-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  animation: liveRing 1.5s ease-out infinite;
}
@keyframes liveRing { 0%{transform:scale(1);opacity:.9} 100%{transform:scale(3);opacity:0} }
.ps-timer {
  font-size: .62rem; font-weight: 800; color: #15803D;
  font-variant-numeric: tabular-nums; letter-spacing: .04em;
  animation: timerBlink 1s step-end infinite;
}
@keyframes timerBlink { 50%{opacity:.5} }
.ps-staff { display: flex; align-items: center; gap: 8px; }
.ps-av { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: .78rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.ps-av-a { background: linear-gradient(135deg, #C8922A, #8B5E1A); box-shadow: 0 2px 8px rgba(200,146,42,.35); }
.ps-av-k { background: linear-gradient(135deg, #166534, #0F4A26); box-shadow: 0 2px 8px rgba(22,101,52,.35); }
.ps-sinfo { flex: 1; min-width: 0; }
.ps-sname { font-size: .6rem; font-weight: 700; color: var(--text); margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-sstatus { font-size: .52rem; font-weight: 500; }
.live { color: #15803D; }
.pending { color: #D97706; }
.ps-track-btn {
  font-size: .48rem; font-weight: 800; letter-spacing: .06em;
  background: var(--green); color: #fff;
  padding: 4px 9px; border-radius: 8px;
  text-transform: uppercase; flex-shrink: 0;
}
.ps-prog-wrap {
  height: 4px; background: rgba(22,101,52,0.15);
  border-radius: 2px; overflow: hidden;
}
.ps-prog-fill {
  height: 100%; background: linear-gradient(90deg, #0F4A26, #166534);
  border-radius: 2px; width: 0;
  animation: progFill 2.2s var(--spring) 1.5s forwards;
}
@keyframes progFill { to { width: 26%; } }
.ps-prog-labels {
  display: flex; justify-content: space-between;
  font-size: .44rem; color: var(--text-light); font-weight: 500;
}

/* Pending offer card */
.ps-card-offer {
  background: #fff; border-radius: 14px; padding: 10px 11px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  animation: psSlideIn .5s var(--spring) .50s both;
}
.ps-offer-hd { display: flex; align-items: center; justify-content: space-between; }
.ps-offer-label {
  font-size: .48rem; font-weight: 800; letter-spacing: .10em;
  text-transform: uppercase; color: var(--text-light);
}
.ps-offer-new {
  font-size: .46rem; font-weight: 700;
  background: rgba(239,68,68,.10); color: #DC2626;
  padding: 2px 7px; border-radius: 10px;
  border: 1px solid rgba(239,68,68,.20);
  animation: notifPop 3s ease-in-out infinite .5s;
}
.ps-offer-acts { display: flex; gap: 6px; }
.ps-btn-no {
  flex: 1; padding: 5px 0; border-radius: 9px;
  background: rgba(239,68,68,.07); border: 1px solid rgba(239,68,68,.18);
  color: #DC2626; font-size: .52rem; font-weight: 700;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.ps-btn-yes {
  flex: 1.6; padding: 5px 0; border-radius: 9px;
  background: var(--green); border: none;
  color: #fff; font-size: .52rem; font-weight: 800;
  cursor: pointer; font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
}

/* Quick action grid */
.ps-qa-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px;
  animation: psSlideIn .5s var(--spring) .62s both;
}
.ps-qa {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: #fff; border-radius: 11px; padding: 8px 4px 7px;
  border: 1px solid rgba(0,0,0,0.05); cursor: pointer;
  transition: transform .18s var(--spring);
}
.ps-qa:hover { transform: translateY(-2px); }
.ps-qa-ic {
  width: 24px; height: 24px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.ps-qa span:last-child { font-size: .44rem; font-weight: 600; color: var(--text-mid); letter-spacing: .01em; }

/* Bottom nav */
.ps-bottombar {
  margin-top: auto;
  display: flex; justify-content: space-around;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 9px 8px 14px;
  margin: 0 -13px;
  animation: psSlideIn .5s var(--spring) .72s both;
}
.ps-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--text-light); cursor: pointer; flex: 1;
}
.ps-nav-item svg { width: 16px; height: 16px; }
.ps-nav-item span { font-size: .44rem; font-weight: 600; letter-spacing: .02em; }
.ps-nav-active { color: var(--green); }

@keyframes psSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   COMMUNITY
══════════════════════════════════════════ */
.social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; margin-bottom: 36px; }
.social-card { display: flex; align-items: center; gap: 14px; padding: 18px 20px; text-decoration: none; color: var(--text); transition: transform .25s var(--ease), box-shadow .25s; }
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sc-icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-info strong { display: block; font-size: .9rem; color: var(--text); margin-bottom: 1px; }
.sc-info span { display: block; font-size: .72rem; color: var(--green); font-weight: 600; margin-bottom: 3px; }
.sc-info p { font-size: .72rem; color: var(--text-light); line-height: 1.4; }
.sc-arrow { margin-left: auto; color: var(--text-light); font-size: .9rem; transition: color .2s, transform .2s; }
.social-card:hover .sc-arrow { color: var(--green); transform: translateX(4px); }

.comm-stat-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.comm-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 20px 28px; flex: 1; min-width: 140px; }
.cs-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); }
.cs-label { font-size: .68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter-section { padding: 80px 28px; background: #fff; }
.nl-inner { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 48px 44px; }
.nl-text h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--text); margin-bottom: 10px; }
.nl-text p { font-size: .88rem; color: var(--text-mid); line-height: 1.75; }
.nl-fields { display: flex; flex-direction: column; gap: 10px; }
.nl-field { display: flex; background: var(--bg); border: 1.5px solid rgba(0,0,0,0.10); border-radius: 50px; padding: 5px 5px 5px 18px; gap: 6px; transition: border-color .25s, box-shadow .25s; }
.nl-field:focus-within { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-bg); }
.nl-input { flex: 1; background: transparent; border: none; outline: none; font-size: .88rem; color: var(--text); font-family: 'Inter', sans-serif; min-width: 0; }
.nl-input::placeholder { color: var(--text-light); }
.nl-btn { background: var(--text); color: #fff; border: none; padding: 10px 18px; border-radius: 44px; font-size: .85rem; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; transition: background .2s; white-space: nowrap; }
.nl-btn:hover { background: var(--green); }
.nl-note { font-size: .7rem; color: var(--text-light); margin-top: 10px; }
.nl-success {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 24px;
  background: var(--green-bg); border: 1px solid var(--green-bdr); border-radius: 18px;
  animation: popIn .5s var(--spring);
}
.nl-success-emoji { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.nl-success-copy { display: flex; flex-direction: column; gap: 4px; }
.nl-success-copy strong { font-size: .9rem; color: var(--green-d); font-weight: 700; }
.nl-success-copy span { font-size: .78rem; color: var(--text-mid); line-height: 1.6; }
@keyframes popIn { from{opacity:0;transform:scale(.9)} to{opacity:1;transform:scale(1)} }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--text); color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 64px 28px 48px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { text-decoration: none; display: inline-flex; margin-bottom: 10px; }
.logo-nox { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.5rem; color: #fff; letter-spacing: -0.5px; }
.logo-staff { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 1.5rem; color: rgba(255,255,255,0.38); letter-spacing: -0.5px; }
.footer-tagline { font-size: .82rem; margin-bottom: 6px; color: rgba(255,255,255,0.38); }
.footer-loc { font-size: .75rem; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.footer-socials a { width: 32px; height: 32px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; color: rgba(255,255,255,0.55); text-decoration: none; transition: background .2s, color .2s; }
.footer-socials a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.footer-handle { font-size: .72rem; color: var(--green); font-weight: 600; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; font-size: .82rem; color: rgba(255,255,255,0.38); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); max-width: 1160px; margin: 0 auto; padding: 20px 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .72rem; }
.footer-bottom strong { color: var(--green); }

/* ══════════════════════════════════════════
   SAFETY & SECURITY SECTION
══════════════════════════════════════════ */
.safety-section {
  background: linear-gradient(155deg, #07182E 0%, #0D2645 38%, #0A1F3A 68%, #071526 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
}
/* Subtle top-edge white shimmer — the "white" in blue-and-white */
.safety-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  z-index: 2;
}
/* Bottom white light source */
.safety-section::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70%; height: 280px;
  background: radial-gradient(ellipse at bottom, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.saf-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; z-index: 0;
}
.saf-orb-1 { width: 700px; height: 700px; background: rgba(59,130,246,0.13); top: -220px; right: -80px; }
.saf-orb-2 { width: 520px; height: 520px; background: rgba(255,255,255,0.05); bottom: -140px; left: -100px; }
.safety-section .section-inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.safety-section .section-head .eyebrow { color: rgba(147,197,253,0.85); }
.safety-section .section-head h2 em { color: #60A5FA; }

/* Stats strip — white glass card */
.saf-stats {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.96);
  border: none;
  border-radius: 20px;
  padding: 24px 40px;
  margin: 52px 0 0;
  gap: 0;
  flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(7,24,46,0.22), 0 1px 0 rgba(255,255,255,0.6) inset;
}
.saf-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; min-width: 120px; }
.saf-sv { font-size: 1.65rem; font-weight: 800; color: #0A1F3A; line-height: 1; font-family: 'Playfair Display', Georgia, serif; }
.saf-sk { font-size: .72rem; color: rgba(10,31,58,0.52); font-weight: 500; text-align: center; }
.saf-sdiv { width: 1px; height: 44px; background: rgba(10,31,58,0.1); flex-shrink: 0; }

/* Main split */
.saf-main {
  display: flex; align-items: center; gap: 80px;
  margin-top: 72px;
}

/* Text side */
.saf-text { flex: 1; min-width: 0; }
.saf-shield-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.saf-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; color: #fff; margin: 0 0 14px; line-height: 1.25;
}
.saf-text > p {
  font-size: .92rem; color: rgba(255,255,255,0.50); line-height: 1.72; margin-bottom: 32px;
}
.saf-two-col { display: flex; gap: 28px; }
.saf-for { flex: 1; }
.saf-for-badge {
  display: inline-block;
  background: rgba(22,101,52,0.1); border: 1px solid rgba(22,101,52,0.22);
  color: #166534; font-size: .64rem; font-weight: 700; letter-spacing: .6px;
  padding: 4px 11px; border-radius: 20px; margin-bottom: 12px;
}
.saf-for-b {
  background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.22); color: #A78BFA;
}
.saf-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.saf-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .8rem; color: rgba(255,255,255,0.62); line-height: 1.4; }
.saf-chk { color: #166534; font-weight: 700; font-size: .78rem; flex-shrink: 0; margin-top: 1px; }

/* Phone cluster */
.saf-cluster {
  position: relative;
  width: 560px; height: 520px;
  flex-shrink: 0;
}

/* Floating badges — white glass */
.saf-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  color: #0A1F3A;
  font-size: .64rem; font-weight: 700; font-family: 'Inter', sans-serif;
  padding: 6px 13px; border-radius: 20px; white-space: nowrap; z-index: 10;
  box-shadow: 0 4px 20px rgba(7,24,46,0.22), 0 1px 0 rgba(255,255,255,0.8) inset;
}
.saf-bdg-1 { top: 4%;  left: 2%;  animation: saf-float-a 6s ease-in-out infinite; }
.saf-bdg-2 { top: 6%;  right: 0%; animation: saf-float-b 8s ease-in-out infinite; }
.saf-bdg-3 { bottom: 28%; left: 0%; animation: saf-float-a 7s ease-in-out 1s infinite reverse; }
.saf-bdg-4 { bottom: 26%; right: 1%; animation: saf-float-b 9s ease-in-out .5s infinite reverse; }
@keyframes saf-float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes saf-float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(9px)} }

/* Phone base styles */
.saf-ph {
  position: absolute;
  background: #14161F; border-radius: 36px;
  padding: 9px 9px 0;
  box-shadow: 0 28px 70px rgba(7,24,46,0.7), 0 0 0 1px rgba(255,255,255,0.09);
}
.saf-ph-island {
  width: 62px; height: 20px; background: #000;
  border-radius: 12px; margin: 0 auto 6px;
}
.saf-ph-screen {
  background: #0A0E1A; border-radius: 26px 26px 0 0;
  height: 310px; overflow: hidden;
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px 9px 0;
}

/* Phone positions in cluster */
.saf-ph-a { width: 175px; left:  22px; top: 70px; transform: rotate(-7deg); z-index: 1; opacity: 0.82; }
.saf-ph-c { width: 175px; right: 22px; top: 70px; transform: rotate(7deg);  z-index: 1; opacity: 0.82; }
.saf-ph-b {
  width: 195px; left: 50%; top: 0; transform: translateX(-50%);
  z-index: 3; border-radius: 38px; padding: 10px 10px 0;
  box-shadow: 0 40px 90px rgba(7,24,46,0.75), 0 0 0 1px rgba(255,255,255,0.11), inset 0 1px 0 rgba(255,255,255,0.08);
}
.saf-isl-b { width: 68px; height: 22px; border-radius: 14px; }
.saf-scr-b { background: #0A0E1A; border-radius: 28px 28px 0 0; height: 345px; gap: 5px; padding: 8px 10px 0; }

/* ── Screen micro-styles (scs-) ── */
.scs-bar { display: flex; justify-content: space-between; align-items: center; padding: 2px 0; flex-shrink: 0; }
.scs-wm  { font-size: .52rem; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,0.55); }
.scs-bar span:last-child { font-size: .68rem; }
.scs-section-title { font-size: .58rem; font-weight: 700; color: #fff; letter-spacing: .3px; flex-shrink: 0; }

/* Phone A – Identity Verification */
.scs-avatar-ring { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; padding: 4px 0; }
.scs-av-wrap { position: relative; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; }
.scs-ring-spin {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px dashed rgba(22,101,52,0.55);
  animation: saf-spin 7s linear infinite;
}
@keyframes saf-spin { to { transform: rotate(360deg); } }
.scs-big-av {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg,#166534,#15803D);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid rgba(22,101,52,0.4);
}
.scs-big-name { font-size: .58rem; font-weight: 700; color: #fff; }
.scs-checks { display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.scs-check { display: flex; align-items: center; gap: 7px; font-size: .52rem; color: rgba(255,255,255,0.72); }
.scs-ck-ic {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(22,101,52,0.15); border: 1px solid rgba(22,101,52,0.3);
  color: #166534; font-size: .46rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.scs-trust-row { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 5px 8px; flex-shrink: 0; }
.scs-ts-lbl { font-size: .46rem; color: rgba(255,255,255,0.45); }
.scs-ts-val { font-size: .52rem; font-weight: 800; color: #166534; }
.scs-verified-pill {
  background: linear-gradient(135deg,rgba(22,101,52,0.18),rgba(21,128,61,0.12));
  border: 1px solid rgba(22,101,52,0.3);
  color: #166534; font-size: .48rem; font-weight: 700; letter-spacing: .6px;
  text-align: center; padding: 6px 0; border-radius: 9px; flex-shrink: 0;
}

/* Phone B – Security Dashboard */
.scs-ring-wrap { display: flex; flex-direction: column; align-items: center; gap: 3px; flex-shrink: 0; padding: 2px 0; }
.scs-score-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: conic-gradient(#166534 355deg, rgba(22,101,52,0.12) 355deg);
  padding: 5px;
}
.scs-score-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: #0A0E1A;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
.scs-score-num { font-size: .9rem; font-weight: 800; color: #166534; line-height: 1.1; }
.scs-score-sub { font-size: .34rem; color: rgba(255,255,255,0.38); }
.scs-hub-sub { font-size: .44rem; color: rgba(255,255,255,0.45); }
.scs-secure-pill {
  font-size: .44rem; font-weight: 700; color: #166534; letter-spacing: .4px;
  background: rgba(22,101,52,0.1); border: 1px solid rgba(22,101,52,0.22);
  padding: 3px 10px; border-radius: 20px;
}
.scs-staff-row { display: flex; gap: 6px; justify-content: space-around; flex-shrink: 0; background: rgba(59,130,246,0.08); border-radius: 10px; padding: 6px 4px; }
.scs-si { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.scs-sav {
  width: 28px; height: 28px; border-radius: 50%;
  font-size: .56rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.scs-sav-a { background: linear-gradient(135deg,#166534,#15803D); }
.scs-sav-k { background: linear-gradient(135deg,#3B82F6,#1D4ED8); }
.scs-sn { font-size: .42rem; color: rgba(255,255,255,0.55); }
.scs-sdot { width: 5px; height: 5px; border-radius: 50%; background: #166534; }
.scs-off { background: rgba(255,255,255,0.2); }
.scs-shields { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.scs-sh-row {
  display: flex; align-items: center; gap: 6px;
  background: rgba(59,130,246,0.07); border-radius: 8px; padding: 5px 7px;
}
.scs-sh-ic  { font-size: .62rem; flex-shrink: 0; }
.scs-sh-lbl { font-size: .48rem; color: rgba(255,255,255,0.5); flex: 1; }
.scs-sh-val { font-size: .5rem; font-weight: 700; color: #fff; }
.scs-g { color: #166534 !important; }

/* Phone C – Escrow */
.scs-escrow-hero { display: flex; flex-direction: column; align-items: center; background: rgba(22,101,52,0.08); border: 1px solid rgba(22,101,52,0.15); border-radius: 10px; padding: 8px; flex-shrink: 0; gap: 2px; }
.scs-eh-lbl { font-size: .44rem; color: rgba(255,255,255,0.45); letter-spacing: .3px; }
.scs-eh-amt { font-size: .88rem; font-weight: 800; color: #fff; line-height: 1.1; }
.scs-eh-tag { font-size: .42rem; color: #166534; font-weight: 600; }
.scs-flow { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; flex-shrink: 0; }
.scs-flow li {
  display: flex; align-items: center; gap: 7px;
  font-size: .5rem; color: rgba(255,255,255,0.45);
  padding: 4px 0; position: relative;
}
.scs-flow li::after {
  content: ''; position: absolute; left: 3.5px; top: 14px;
  width: 1px; height: calc(100% - 5px); background: rgba(22,101,52,0.18);
}
.scs-flow li.last::after { display: none; }
.scs-flow li em { margin-left: auto; font-style: normal; }
.scs-flow li.done { color: rgba(255,255,255,0.72); }
.scs-flow li.act  { color: #fff; font-weight: 600; }
.scs-fd      { width: 8px; height: 8px; border-radius: 50%; background: #166534; flex-shrink: 0; }
.scs-fd-empty { background: rgba(255,255,255,0.15); }
.scs-fd-pulse { animation: saf-pulse 1.4s ease-in-out infinite; }
@keyframes saf-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(22,101,52,0.45)} 50%{box-shadow:0 0 0 5px rgba(22,101,52,0)} }
.scs-ok  { color: #166534; font-weight: 700; font-size: .48rem; }
.scs-now { color: #fff; font-size: .38rem; background: #166534; padding: 1px 4px; border-radius: 4px; font-weight: 700; }
.scs-escrow-note { font-size: .42rem; color: rgba(255,255,255,0.35); text-align: center; flex-shrink: 0; }
.scs-lock-pill {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: .46rem; font-weight: 700; letter-spacing: .5px;
  text-align: center; padding: 5px 0; border-radius: 9px; flex-shrink: 0;
}

/* ── Feature phones row ── */
.saf-feat-row {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 22px; margin-top: 80px;
}
.saf-feat-item { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.saf-fp {
  width: 185px; background: #14161F; border-radius: 36px;
  padding: 9px 9px 0;
  box-shadow: 0 24px 56px rgba(7,24,46,0.5), 0 0 0 1px rgba(255,255,255,0.09);
}
.saf-fp-island { width: 60px; height: 20px; background: #000; border-radius: 12px; margin: 0 auto 6px; }
.saf-fp-screen {
  background: #F0F2F8; border-radius: 27px 27px 0 0;
  height: 330px; overflow: hidden;
  display: flex; flex-direction: column; gap: 5px; padding: 8px 10px 0;
}
.saf-feat-label { text-align: center; }
.saf-feat-label strong { font-size: .84rem; color: #fff; display: block; margin-bottom: 6px; }
.saf-feat-label p { font-size: .74rem; color: rgba(255,255,255,0.42); line-height: 1.6; margin: 0; }

/* Scoped font boosts for larger feature phones */
.saf-feat-row .scs-bar .scs-wm    { font-size: .62rem; }
.saf-feat-row .scs-cert-badge     { font-size: .46rem; }
.saf-feat-row .scs-cert-num       { font-size: .5rem; }
.saf-feat-row .scs-cert-av        { width: 42px; height: 42px; font-size: .84rem; }
.saf-feat-row .scs-cert-name      { font-size: .64rem; }
.saf-feat-row .scs-cl             { font-size: .54rem; padding: 4px 7px; }
.saf-feat-row .scs-cl-ok          { font-size: .52rem; }
.saf-feat-row .scs-cert-foot span { font-size: .5rem; }
.saf-feat-row .scs-map-box        { height: 102px; }
.saf-feat-row .scs-gps-row        { padding: 6px 8px; }
.saf-feat-row .scs-gps-name       { font-size: .6rem; }
.saf-feat-row .scs-gps-time       { font-size: .5rem; }
.saf-feat-row .scs-cl-row         { font-size: .52rem; }
.saf-feat-row .scs-geo-bar        { font-size: .52rem; padding: 6px 8px; }
.saf-feat-row .scs-earn-hero      { padding: 10px; }
.saf-feat-row .scs-earn-lbl       { font-size: .52rem; }
.saf-feat-row .scs-earn-amt       { font-size: .98rem; }
.saf-feat-row .scs-earn-status    { font-size: .5rem; }
.saf-feat-row .scs-es             { font-size: .54rem; gap: 7px; }
.saf-feat-row .scs-es-ic          { width: 18px; height: 18px; font-size: .52rem; }
.saf-feat-row .scs-earn-foot      { font-size: .5rem; }
.saf-feat-row .scs-disp-clear     { padding: 10px; }
.saf-feat-row .scs-dc-n           { font-size: 1.7rem; }
.saf-feat-row .scs-dc-lbl         { font-size: .52rem; }
.saf-feat-row .scs-dc-tag         { font-size: .48rem; padding: 3px 9px; }
.saf-feat-row .scs-ds             { font-size: .54rem; gap: 7px; }
.saf-feat-row .scs-ds-n           { width: 18px; height: 18px; font-size: .52rem; }
.saf-feat-row .scs-sup-btn        { font-size: .52rem; padding: 8px 0; }
.saf-feat-row .scs-sup-tag        { font-size: .5rem; padding: 5px 10px; }

/* Feature Phone 1 – Background Cert (light screen, dark text) */
.scs-cert-header { display: flex; flex-direction: column; align-items: center; gap: 1px; flex-shrink: 0; }
.scs-cert-badge { font-size: .38rem; font-weight: 800; letter-spacing: 1.2px; color: #0D1421; background: rgba(26,26,46,0.07); padding: 2px 7px; border-radius: 4px; }
.scs-cert-num   { font-size: .42rem; color: rgba(26,26,46,0.4); }
.scs-cert-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg,#166534,#15803D);
  color: #fff; font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 2px auto 0; flex-shrink: 0;
}
.scs-cert-name  { font-size: .54rem; font-weight: 700; color: #1A1A2E; text-align: center; flex-shrink: 0; }
.scs-cert-list  { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.scs-cl { display: flex; align-items: center; gap: 5px; font-size: .46rem; color: rgba(26,26,46,0.7); background: #fff; border-radius: 6px; padding: 3px 6px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.scs-cl-d  { width: 5px; height: 5px; border-radius: 50%; background: #166534; flex-shrink: 0; }
.scs-cl-ok { margin-left: auto; color: #15803D; font-weight: 700; font-size: .44rem; }
.scs-cert-foot { display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.scs-cert-foot span { font-size: .42rem; color: rgba(26,26,46,0.45); }
.scs-cert-clear { background: rgba(21,128,61,0.1) !important; border: 1px solid rgba(21,128,61,0.2); color: #15803D !important; font-weight: 700 !important; padding: 2px 6px; border-radius: 5px; }

/* Feature Phone 2 – GPS Map (light screen) */
.scs-map-box {
  height: 88px; background: #162032; border-radius: 8px;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.scs-map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(22,101,52,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(22,101,52,0.06) 1px,transparent 1px);
  background-size: 14px 14px;
}
.scs-map-roads {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(22,101,52,0.1) 2px,transparent 2px), linear-gradient(90deg,rgba(22,101,52,0.1) 2px,transparent 2px);
  background-size: 42px 42px; background-position: 7px 21px;
}
.scs-map-pin-wrap { position: absolute; top: 50%; left: 55%; transform: translate(-50%,-50%); }
.scs-map-ring1 { position: absolute; inset: -10px; border-radius: 50%; border: 1.5px solid rgba(22,101,52,0.3); animation: saf-map-ring 2s ease-out infinite; }
.scs-map-ring2 { position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(22,101,52,0.2); animation: saf-map-ring 2s ease-out .6s infinite; }
@keyframes saf-map-ring { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(2.2);opacity:0} }
.scs-map-dot-pin { width: 10px; height: 10px; border-radius: 50%; background: #166534; box-shadow: 0 0 0 2px rgba(22,101,52,0.3); }
.scs-map-label { position: absolute; bottom: 5px; left: 6px; font-size: .38rem; color: rgba(255,255,255,0.6); background: rgba(0,0,0,0.4); padding: 2px 5px; border-radius: 4px; font-weight: 600; }
.scs-gps-row { display: flex; align-items: center; gap: 5px; flex-shrink: 0; background: #fff; border-radius: 7px; padding: 5px 7px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
.scs-av-sm { width: 22px; height: 22px; border-radius: 50%; font-size: .45rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.scs-gps-name { font-size: .5rem; font-weight: 700; color: #1A1A2E; }
.scs-gps-time { font-size: .42rem; color: rgba(26,26,46,0.5); }
.scs-live-chip { display: flex; align-items: center; gap: 3px; font-size: .38rem; font-weight: 700; color: #15803D; background: rgba(21,128,61,0.1); padding: 2px 6px; border-radius: 4px; margin-left: auto; flex-shrink: 0; }
.scs-live-dot { width: 5px; height: 5px; border-radius: 50%; background: #166534; animation: saf-blink 1.2s ease-in-out infinite; flex-shrink: 0; }
@keyframes saf-blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.scs-clock-log { display: flex; flex-direction: column; gap: 3px; flex-shrink: 0; }
.scs-cl-row { display: flex; align-items: center; gap: 5px; font-size: .44rem; color: rgba(26,26,46,0.7); }
.scs-dim { opacity: 0.45; }
.scs-in-tag  { font-size: .38rem; font-weight: 700; color: #15803D; background: rgba(21,128,61,0.1); padding: 1px 4px; border-radius: 3px; flex-shrink: 0; }
.scs-out-tag { font-size: .38rem; font-weight: 700; color: rgba(26,26,46,0.4); background: rgba(26,26,46,0.06); padding: 1px 4px; border-radius: 3px; flex-shrink: 0; }
.scs-gps-ok  { margin-left: auto; font-size: .4rem; color: #15803D; font-weight: 700; }
.scs-geo-bar { display: flex; justify-content: space-between; align-items: center; font-size: .44rem; color: rgba(26,26,46,0.55); flex-shrink: 0; background: #fff; border-radius: 7px; padding: 5px 7px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
.scs-geo-on  { color: #D97706; font-weight: 700; font-size: .4rem; }

/* Feature Phone 3 – Worker Earnings (light screen) */
.scs-earn-hero { background: rgba(22,101,52,0.07); border: 1px solid rgba(22,101,52,0.15); border-radius: 9px; padding: 8px; display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; }
.scs-earn-lbl    { font-size: .42rem; color: rgba(26,26,46,0.55); letter-spacing: .3px; }
.scs-earn-amt    { font-size: .82rem; font-weight: 800; color: #1A1A2E; line-height: 1.1; }
.scs-earn-status { font-size: .42rem; color: #15803D; font-weight: 600; }
.scs-earn-steps  { display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.scs-es { display: flex; align-items: center; gap: 6px; font-size: .46rem; color: rgba(26,26,46,0.55); }
.scs-es.done { color: rgba(26,26,46,0.8); }
.scs-es.live { color: #0D1421; font-weight: 600; }
.scs-es-ic { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .44rem; font-weight: 700; }
.scs-es.done .scs-es-ic { background: rgba(21,128,61,0.12); color: #15803D; }
.scs-es.live .scs-es-ic { background: rgba(22,101,52,0.12); color: #166534; animation: saf-blink 1.2s ease-in-out infinite; }
.scs-es-ic.empty { background: rgba(26,26,46,0.06); color: rgba(26,26,46,0.3); }
.scs-earn-foot   { display: flex; justify-content: space-between; align-items: center; font-size: .42rem; color: rgba(26,26,46,0.45); flex-shrink: 0; }
.scs-earn-ok { color: #15803D; font-weight: 700; }

/* Feature Phone 4 – Disputes (light screen) */
.scs-disp-clear  { display: flex; flex-direction: column; align-items: center; background: rgba(21,128,61,0.06); border: 1px solid rgba(21,128,61,0.15); border-radius: 10px; padding: 8px; flex-shrink: 0; gap: 2px; }
.scs-dc-n   { font-size: 1.4rem; font-weight: 800; color: #15803D; line-height: 1; font-family: 'Playfair Display', Georgia, serif; }
.scs-dc-lbl { font-size: .44rem; color: rgba(26,26,46,0.55); }
.scs-dc-tag { font-size: .4rem; font-weight: 700; color: #15803D; background: rgba(21,128,61,0.1); padding: 2px 7px; border-radius: 4px; }
.scs-disp-steps  { display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.scs-ds { display: flex; align-items: flex-start; gap: 6px; font-size: .46rem; color: rgba(26,26,46,0.65); }
.scs-ds-n { width: 16px; height: 16px; border-radius: 50%; background: rgba(26,26,46,0.06); color: rgba(26,26,46,0.55); font-size: .44rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.scs-support-row { display: flex; align-items: center; gap: 6px; flex-shrink: 0; margin-top: 2px; }
.scs-sup-btn { flex: 1; background: #0D1421; color: #fff; font-size: .44rem; font-weight: 700; padding: 7px 0; border-radius: 8px; text-align: center; }
.scs-sup-tag { background: rgba(22,101,52,0.12); border: 1px solid rgba(22,101,52,0.2); color: #166534; font-size: .42rem; font-weight: 700; padding: 4px 8px; border-radius: 8px; }

/* ── Feature Phone 5 – Face Verification (dark camera screen) ── */
.scs-fv-screen {
  background: #060D1A !important;
}
.scs-fv-screen .scs-wm  { color: rgba(255,255,255,0.5) !important; }
.scs-fv-title { color: rgba(255,255,255,0.88) !important; text-align: center; font-size: .62rem !important; letter-spacing: .3px; }

/* Scan area container */
.scs-fv-wrap {
  width: 140px; height: 140px;
  position: relative; flex-shrink: 0;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}

/* Outer rotating dashed ring */
.scs-fv-arc {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(22,101,52,0.38);
  animation: fv-spin 5s linear infinite;
}
@keyframes fv-spin { to { transform: rotate(360deg); } }

/* Guide oval (face outline) */
.scs-fv-oval {
  width: 80px; height: 108px;
  border-radius: 50%;
  border: 2px solid rgba(22,101,52,0.6);
  position: relative;
  overflow: hidden;
  background: rgba(22,101,52,0.03);
  animation: fv-oval-glow 3s ease-in-out infinite;
}
@keyframes fv-oval-glow {
  0%,100% { border-color: rgba(22,101,52,0.5); }
  45%     { border-color: #166534; box-shadow: 0 0 18px rgba(22,101,52,0.22), inset 0 0 14px rgba(22,101,52,0.07); }
}

/* Sweeping scan line */
.scs-fv-line {
  position: absolute; left: -2px; right: -2px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(22,101,52,0.95), transparent);
  box-shadow: 0 0 10px rgba(22,101,52,0.7), 0 0 3px rgba(22,101,52,0.5);
  animation: fv-sweep 2.8s ease-in-out infinite;
}
@keyframes fv-sweep {
  0%   { top: 6%;  opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { top: 94%; opacity: 0; }
}

/* Face landmarks (minimal dots/lines) */
.scs-fv-face { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 12px 0; }
.scs-fv-eyes { display: flex; gap: 18px; }
.scs-fv-eye  { width: 9px; height: 6px; border-radius: 50%; background: rgba(22,101,52,0.55); animation: fv-blink 5s ease-in-out infinite; }
.scs-fv-eye:last-child { animation-delay: .08s; }
@keyframes fv-blink { 0%,88%,92%,100%{transform:scaleY(1)} 90%{transform:scaleY(0.08)} }
.scs-fv-nose  { width: 7px; height: 9px; border-left: 1.5px solid rgba(22,101,52,0.4); border-bottom: 1.5px solid rgba(22,101,52,0.4); border-right: 1.5px solid rgba(22,101,52,0.4); border-radius: 0 0 4px 4px; }
.scs-fv-mouth { width: 22px; height: 7px; border-bottom: 1.5px solid rgba(22,101,52,0.45); border-left: 1.5px solid rgba(22,101,52,0.45); border-right: 1.5px solid rgba(22,101,52,0.45); border-radius: 0 0 14px 14px; }

/* Corner brackets (outside the oval, positioned relative to wrap) */
.scs-fv-corner { position: absolute; width: 11px; height: 11px; }
.scs-fvc-tl { top: 14px; left: 27px;  border-top:  2px solid #166534; border-left:  2px solid #166534; }
.scs-fvc-tr { top: 14px; right: 27px; border-top:  2px solid #166534; border-right: 2px solid #166534; }
.scs-fvc-bl { bottom: 14px; left: 27px;  border-bottom: 2px solid #166534; border-left:  2px solid #166534; }
.scs-fvc-br { bottom: 14px; right: 27px; border-bottom: 2px solid #166534; border-right: 2px solid #166534; }

/* Cardinal dot markers on ring */
.scs-fv-dot { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: #166534; box-shadow: 0 0 5px rgba(22,101,52,0.8); }
.scs-fvd-n  { top: 0;   left: calc(50% - 2.5px); animation: fv-dot-p 2s ease-in-out 0s    infinite; }
.scs-fvd-e  { right: 0; top:  calc(50% - 2.5px); animation: fv-dot-p 2s ease-in-out .5s   infinite; }
.scs-fvd-s  { bottom:0; left: calc(50% - 2.5px); animation: fv-dot-p 2s ease-in-out 1s   infinite; }
.scs-fvd-w  { left:  0; top:  calc(50% - 2.5px); animation: fv-dot-p 2s ease-in-out 1.5s infinite; }
@keyframes fv-dot-p { 0%,100%{opacity:.38} 50%{opacity:1} }

/* Worker name/role */
.scs-fv-name { font-size: .6rem; font-weight: 700; color: #fff; text-align: center; flex-shrink: 0; }
.scs-fv-role { font-size: .48rem; color: rgba(255,255,255,0.45); text-align: center; flex-shrink: 0; }

/* Progress bar */
.scs-fv-prog { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.scs-fv-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, #166534, #3B82F6);
  border-radius: 2px;
  animation: fv-progress 5s ease-in-out infinite;
}
@keyframes fv-progress {
  0%    { width: 0%; }
  62%   { width: 82%; }
  78%   { width: 100%; }
  88%,100% { width: 100%; }
}

/* Status text (scanning ↔ verified) */
.scs-fv-status { position: relative; height: 16px; flex-shrink: 0; }
.scs-fv-scanning, .scs-fv-verified {
  position: absolute; inset: 0;
  font-size: .48rem; text-align: center; font-weight: 600;
}
.scs-fv-scanning { color: rgba(255,255,255,0.52); animation: fv-show-a 5s ease-in-out infinite; }
.scs-fv-verified { color: #166534; animation: fv-show-b 5s ease-in-out infinite; }
@keyframes fv-show-a { 0%,70%{opacity:1} 80%,100%{opacity:0} }
@keyframes fv-show-b { 0%,73%{opacity:0} 83%,100%{opacity:1} }

/* Verified pill (fades in at end of cycle) */
.scs-fv-pill {
  background: rgba(22,101,52,0.14); border: 1px solid rgba(22,101,52,0.28);
  color: #166534; font-size: .48rem; font-weight: 700; letter-spacing: .4px;
  text-align: center; padding: 6px 0; border-radius: 9px; flex-shrink: 0;
  animation: fv-pill 5s ease-in-out infinite;
}
@keyframes fv-pill {
  0%,72%  { opacity: 0; transform: translateY(4px); }
  82%,100%{ opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .saf-main  { gap: 48px; }
  .saf-cluster { width: 440px; height: 470px; }
  .saf-ph-a { left: 10px; }
  .saf-ph-c { right: 10px; }
  .saf-feat-row { grid-template-columns: repeat(3,1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .saf-stats { padding: 18px 20px; gap: 0; }
  .saf-sdiv  { display: none; }
  .saf-stat  { min-width: 40%; padding: 8px 0; }
  .saf-main  { flex-direction: column; gap: 52px; }
  .saf-cluster { width: 100%; height: 460px; }
  .saf-ph-a  { left: calc(50% - 265px); }
  .saf-ph-c  { right: calc(50% - 265px); }
  .saf-feat-row { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .saf-fp { width: 160px; }
  .saf-fp-screen { height: 295px; }
  .saf-badge { display: none; }
  .safety-section .section-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .saf-feat-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .saf-feat-label strong { font-size: .76rem; }
  .saf-feat-label p { display: none; }
  .saf-fp { width: 140px; }
  .saf-fp-screen { height: 268px; }
}

/* ══════════════════════════════════════════
   APP WALKTHROUGH SECTION
══════════════════════════════════════════ */
.walkthrough-section {
  background: #0D1421;
  padding: 80px 0 100px;
}
.walkthrough-section .section-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.walkthrough-section .section-head .eyebrow { color: rgba(22,101,52,0.75); }
.walkthrough-section .section-head h2 { color: #fff; }

/* Row layout */
.wt-row {
  display: flex; align-items: center; gap: 80px;
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wt-row:first-of-type { border-top: none; }
.wt-row-flip { flex-direction: row-reverse; }

/* Info panel */
.wt-info, .wt-info-l { flex: 1; min-width: 0; }
.wt-info h3, .wt-info-l h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem; color: #fff;
  margin: 10px 0 12px; line-height: 1.25;
}
.wt-info > p, .wt-info-l > p {
  font-size: .9rem; color: rgba(255,255,255,0.52);
  line-height: 1.72; margin-bottom: 24px;
}
.wt-step-num {
  font-size: 5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; color: rgba(22,101,52,0.14);
  line-height: 1; margin-bottom: -8px;
}
.wt-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.wt-points li { display: flex; align-items: flex-start; gap: 14px; }
.wt-points li strong { font-size: .86rem; color: #fff; display: block; margin-bottom: 2px; }
.wt-points li p { font-size: .76rem; color: rgba(255,255,255,0.42); margin: 0; line-height: 1.55; }
.wt-pt-num {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(22,101,52,0.12); border: 1px solid rgba(22,101,52,0.25);
  color: #166534; font-size: .64rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}

/* Phone wrap */
.wt-phone-wrap {
  position: relative; width: 350px; height: 430px;
  flex-shrink: 0; display: flex; justify-content: center; align-items: flex-start;
}
.wt-phone {
  width: 210px; background: #14161F; border-radius: 38px;
  padding: 10px 10px 0;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative; z-index: 1;
}
.wt-island {
  width: 68px; height: 22px; background: #000;
  border-radius: 14px; margin: 0 auto 7px;
}
.wt-screen {
  background: #F0F2F8; border-radius: 28px 28px 0 0;
  height: 380px; overflow: hidden;
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px 10px 0;
}

/* Annotation system */
.wt-ann {
  position: absolute; display: flex; align-items: center;
  z-index: 3; transform: translateY(-50%); pointer-events: none;
}
.wt-ann-r { left: calc(50% + 105px); flex-direction: row; }
.wt-ann-l { right: calc(50% + 105px); flex-direction: row-reverse; }
.wt-ann-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #166534; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(22,101,52,0.2);
}
.wt-ann-line {
  width: 44px; border-top: 1.5px dashed rgba(22,101,52,0.35); flex-shrink: 0;
}
.wt-ann-bubble {
  background: rgba(15,24,42,0.78); border: 1px solid rgba(22,101,52,0.25);
  color: rgba(255,255,255,0.88); font-size: .58rem; font-weight: 600;
  font-family: 'Inter', sans-serif; letter-spacing: .4px;
  padding: 4px 9px; border-radius: 20px; white-space: nowrap;
  backdrop-filter: blur(6px);
}

/* ─── Screen micro-styles (wts-) ─── */
.wts-bar { display: flex; justify-content: space-between; align-items: center; padding: 3px 0 2px; flex-shrink: 0; }
.wts-wm { font-size: .52rem; font-weight: 800; letter-spacing: 2px; color: #0D1421; }
.wts-bell-ic { font-size: .68rem; }

.wts-greet { font-size: .57rem; font-weight: 700; color: #1A1A2E; line-height: 1.4; flex-shrink: 0; }
.wts-greet small { font-size: .46rem; color: rgba(26,26,46,0.5); font-weight: 400; }

/* Stats row */
.wts-stats {
  display: flex; align-items: center; background: #fff;
  border-radius: 10px; padding: 7px 8px;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.wts-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 1px; }
.wts-sv { font-size: .7rem; font-weight: 800; color: #1A1A2E; line-height: 1; }
.wts-sk { font-size: .42rem; color: rgba(26,26,46,0.44); font-weight: 500; letter-spacing: .3px; }
.wts-sdiv { width: 1px; height: 18px; background: rgba(26,26,46,0.08); flex-shrink: 0; }
.wts-amber { color: #F59E0B !important; }
.wts-green { color: #15803D !important; }

/* Live shift */
.wts-live {
  background: #fff; border-radius: 10px; padding: 7px 8px;
  display: flex; flex-direction: column; gap: 5px;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.wts-live-hd { display: flex; justify-content: space-between; align-items: center; }
.wts-live-badge { display: flex; align-items: center; gap: 4px; font-size: .42rem; font-weight: 700; color: #1A1A2E; letter-spacing: .8px; }
.wts-dot { width: 5px; height: 5px; border-radius: 50%; background: #166534; animation: wts-blink 1.2s ease-in-out infinite; }
@keyframes wts-blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.wts-timer { font-size: .48rem; font-weight: 700; color: #166534; font-variant-numeric: tabular-nums; }
.wts-srow { display: flex; align-items: center; gap: 6px; }
.wts-av {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg,#166534,#15803D);
  color: #fff; font-size: .54rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wts-av-a { background: linear-gradient(135deg,#166534,#15803D); }
.wts-av-k { background: linear-gradient(135deg,#3B82F6,#1D4ED8); }
.wts-av-lg {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,#166534,#15803D);
  color: #fff; font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-bottom: 6px;
}
.wts-sn { font-size: .56rem; font-weight: 700; color: #1A1A2E; line-height: 1.2; }
.wts-ss { font-size: .48rem; color: rgba(26,26,46,0.5); font-weight: 400; }
.wts-track {
  margin-left: auto; font-size: .42rem; font-weight: 700; color: #166534;
  background: rgba(22,101,52,0.1); padding: 3px 6px; border-radius: 5px; flex-shrink: 0;
}
.wts-prog { height: 3px; background: rgba(26,26,46,0.08); border-radius: 2px; overflow: hidden; }
.wts-pfill { width: 62%; height: 100%; background: linear-gradient(90deg,#166534,#15803D); border-radius: 2px; }

/* Offer card */
.wts-offer {
  background: #fff; border-radius: 10px; padding: 6px 8px;
  display: flex; flex-direction: column; gap: 5px;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.wts-offer-hd { font-size: .42rem; font-weight: 700; color: #1A1A2E; letter-spacing: .5px; display: flex; align-items: center; gap: 5px; }
.wts-new { background: #FEF3C7; color: #92400E; font-size: .36rem; font-weight: 700; padding: 1px 5px; border-radius: 4px; }
.wts-obts { display: flex; gap: 4px; }
.wts-no { flex: 1; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: #EF4444; font-size: .48rem; font-weight: 700; padding: 4px 0; border-radius: 6px; cursor: pointer; }
.wts-yes { flex: 2; background: linear-gradient(135deg,#166534,#15803D); color: #fff; font-size: .48rem; font-weight: 700; padding: 4px 0; border-radius: 6px; border: none; cursor: pointer; }

/* Quick actions */
.wts-qa { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; flex-shrink: 0; }
.wts-qa-btn {
  background: var(--qc,rgba(22,101,52,.12)); border-radius: 8px;
  padding: 6px 3px 5px; display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.wts-qa-btn svg { color: var(--qi,#166534); }
.wts-qa-btn span { font-size: .4rem; font-weight: 600; color: rgba(26,26,46,0.7); }

/* Search & filter chips */
.wts-search { display: flex; align-items: center; gap: 5px; background: #fff; border-radius: 8px; padding: 6px 8px; font-size: .52rem; color: rgba(26,26,46,0.4); flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.wts-chips { display: flex; gap: 4px; flex-shrink: 0; overflow: hidden; }
.wts-chip { font-size: .42rem; font-weight: 600; padding: 3px 7px; border-radius: 20px; background: rgba(26,26,46,0.07); color: rgba(26,26,46,0.6); white-space: nowrap; }
.wts-chip-on { background: #166534; color: #fff; }

/* Staff cards (Discover) */
.wts-scard { background: #fff; border-radius: 10px; padding: 7px 8px; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.wts-scard-dim { opacity: 0.65; }
.wts-sc-hd { display: flex; align-items: center; gap: 6px; }
.wts-sc-info { flex: 1; min-width: 0; }
.wts-stars { font-size: .42rem; color: #F59E0B; font-weight: 600; }
.wts-vchip { font-size: .38rem; font-weight: 700; color: #15803D; background: rgba(21,128,61,0.1); border: 1px solid rgba(21,128,61,0.2); padding: 2px 5px; border-radius: 4px; flex-shrink: 0; }
.wts-sc-tags { display: flex; gap: 3px; flex-wrap: wrap; }
.wts-sc-tags span { font-size: .38rem; background: rgba(26,26,46,0.06); color: rgba(26,26,46,0.6); padding: 1px 4px; border-radius: 4px; font-weight: 500; }
.wts-sc-ft { display: flex; align-items: center; justify-content: space-between; }
.wts-price { font-size: .56rem; font-weight: 800; color: #1A1A2E; }
.wts-hire-btn { background: linear-gradient(135deg,#166534,#15803D); color: #fff; font-size: .42rem; font-weight: 700; padding: 4px 8px; border-radius: 6px; border: none; cursor: pointer; }

/* Profile screen */
.wts-prof-top {
  background: linear-gradient(180deg,#0D1421,#162032);
  padding: 14px 10px 10px; display: flex; flex-direction: column; align-items: center;
  margin: -8px -10px 0; flex-shrink: 0;
}
.wts-prof-name { font-size: .68rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.wts-prof-role { font-size: .48rem; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.wts-prof-stars { font-size: .44rem; color: #F59E0B; font-weight: 600; }
.wts-vrow { display: flex; gap: 4px; flex-shrink: 0; justify-content: center; padding: 5px 0; }
.wts-vb { font-size: .4rem; font-weight: 700; color: #15803D; background: rgba(21,128,61,0.1); border: 1px solid rgba(21,128,61,0.18); padding: 2px 5px; border-radius: 5px; }
.wts-bio { font-size: .46rem; color: rgba(26,26,46,0.58); text-align: center; padding: 0 4px; line-height: 1.4; flex-shrink: 0; }
.wts-rev-card { background: #fff; border-radius: 8px; padding: 6px 8px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.wts-rev-hd { display: flex; align-items: center; gap: 5px; margin-bottom: 3px; }
.wts-rev-txt { font-size: .46rem; color: rgba(26,26,46,0.58); margin: 0; line-height: 1.5; font-style: italic; }
.wts-hire-bar { background: #fff; border-radius: 10px; padding: 7px 8px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.wts-hire-price { font-size: .68rem; font-weight: 800; color: #1A1A2E; line-height: 1.2; }
.wts-hire-price small { font-size: .42rem; font-weight: 400; color: rgba(26,26,46,0.5); }
.wts-hire-big { background: linear-gradient(135deg,#166534,#15803D); color: #fff; font-size: .48rem; font-weight: 700; padding: 7px 10px; border-radius: 8px; border: none; cursor: pointer; white-space: nowrap; }

/* Booking screen */
.wts-book-hd { padding: 3px 0; flex-shrink: 0; }
.wts-cal-lbl { font-size: .46rem; font-weight: 700; color: rgba(26,26,46,0.58); letter-spacing: .3px; flex-shrink: 0; }
.wts-cal { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; flex-shrink: 0; }
.wts-cal span { text-align: center; font-size: .42rem; color: rgba(26,26,46,0.65); padding: 3px 0; border-radius: 4px; }
.wts-cal span:nth-child(-n+7) { font-weight: 700; color: rgba(26,26,46,0.38); font-size: .36rem; }
.wts-cal-sel { background: #166534 !important; color: #fff !important; font-weight: 700 !important; border-radius: 50% !important; }
.wts-dim { opacity: 0.28; }
.wts-escrow-box { background: rgba(22,101,52,0.06); border: 1px solid rgba(22,101,52,0.16); border-radius: 9px; padding: 7px 8px; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.wts-escrow-title { font-size: .46rem; font-weight: 700; color: #1A1A2E; margin-bottom: 2px; }
.wts-escrow-r { display: flex; justify-content: space-between; align-items: center; font-size: .44rem; color: rgba(26,26,46,0.6); }
.wts-escrow-r strong { color: #1A1A2E; font-size: .46rem; }
.wts-escrow-tot { border-top: 1px solid rgba(22,101,52,0.15); padding-top: 3px; margin-top: 1px; }
.wts-escrow-tot strong { color: #166534 !important; font-weight: 800; }
.wts-pay-btn { background: linear-gradient(135deg,#166534,#15803D); color: #fff; font-size: .48rem; font-weight: 700; padding: 9px 0; border-radius: 9px; border: none; width: 100%; cursor: pointer; flex-shrink: 0; }

/* Tracking screen */
.wts-track-card { background: #fff; border-radius: 10px; padding: 7px 8px; display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.wts-gps-log { display: flex; flex-direction: column; gap: 4px; }
.wts-gps-row { display: flex; align-items: center; gap: 6px; }
.wts-gps-dim { opacity: 0.4; }
.wts-gps-in { font-size: .4rem; font-weight: 700; color: #166534; background: rgba(22,101,52,0.1); padding: 2px 4px; border-radius: 4px; flex-shrink: 0; }
.wts-gps-out { font-size: .4rem; font-weight: 700; color: rgba(26,26,46,0.4); background: rgba(26,26,46,0.06); padding: 2px 4px; border-radius: 4px; flex-shrink: 0; }
.wts-escrow-release { background: rgba(22,101,52,0.07); border: 1px solid rgba(22,101,52,0.18); border-radius: 10px; padding: 7px 8px; display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.wts-er-hd { font-size: .48rem; font-weight: 700; color: #1A1A2E; }
.wts-er-bal { display: flex; justify-content: space-between; font-size: .44rem; color: rgba(26,26,46,0.6); }
.wts-er-bal strong { color: #166534; font-size: .56rem; font-weight: 800; }
.wts-release-btn { background: linear-gradient(135deg,#166534,#15803D); color: #fff; font-size: .48rem; font-weight: 700; padding: 7px 0; border-radius: 8px; border: none; width: 100%; cursor: pointer; }
.wts-er-note { font-size: .38rem; color: rgba(26,26,46,0.42); text-align: center; margin: 0; }
.wts-rate-card { background: #fff; border-radius: 10px; padding: 7px 8px; display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.wts-rate-q { font-size: .5rem; font-weight: 700; color: #1A1A2E; text-align: center; }
.wts-stars-row { display: flex; gap: 3px; }
.wts-star { font-size: .88rem; color: rgba(26,26,46,0.14); line-height: 1; }
.wts-star.on { color: #F59E0B; }
.wts-rate-btn { background: #0D1421; color: #fff; font-size: .44rem; font-weight: 700; padding: 5px 14px; border-radius: 7px; border: none; cursor: pointer; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .topbar { top: 12px; }
  .tb-filters { display: none; }
  .hero-text { left: 90px; max-width: 460px; }
  .hero-card-r { right: 16px; width: 270px; margin-top: -195px; }
  .hero-card-l { left: 84px; width: 240px; }
  .app-inner { grid-template-columns: 1fr; gap: 40px; }
  .app-mockup { order: -1; }
  .escrow-card { grid-template-columns: 60px 1fr; }
  .escrow-badges { display: none; }
  .nl-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .wt-row { gap: 48px; }
  .wt-phone-wrap { width: 300px; }
  .hv2-left { max-width: 400px; }
  .hv2-right { width: 380px; right: 20px; }
  .hv2-card-main { width: 300px; }
  .hv2-card-bl, .hv2-card-br { width: 246px; }
}
@media (max-width: 768px) {
  .hero { height: 100svh; }
  .hero-text { left: 16px; right: 16px; top: 90px; transform: none; max-width: calc(100vw - 32px); }
  .sidebar { display: none; }
  .hero-card-r { display: none; }
  .hero-card-l { left: 16px; bottom: 88px; width: calc(100vw - 32px); }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-desc { font-size: .88rem; }
  .hero-chip { display: none; }
  .hero-cta-row { gap: 10px; margin-top: 24px; }
  .hero-btn-primary { padding: 13px 22px; font-size: .85rem; }
  .hero-btn-secondary { padding: 12px 20px; font-size: .85rem; }
  .hero-proof { margin-top: 16px; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 68px; }
  .proof-inner { justify-content: center; gap: 16px 32px; }
  .proof-sep { display: none; }
  .comp-head { display: none; }
  .comp-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 16px; }
  .comp-old { font-size: .75rem; }
  .comp-feat { text-align: left; font-weight: 700; font-size: .8rem; padding: 4px 0; }
  .comp-new { justify-content: flex-start; }
  .ps-arrow { display: none; }
  .process-row { flex-direction: column; align-items: stretch; }
  .ps-card { max-width: 100%; }
  .escrow-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .escrow-icon { font-size: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .social-grid { grid-template-columns: 1fr; }
  .topbar { padding: 6px; top: 12px; }
  .tb-action-btn { padding: 8px 14px; font-size: .75rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .nl-inner { padding: 32px 24px; }
  .wt-row, .wt-row.wt-row-flip { flex-direction: column; align-items: center; gap: 40px; padding: 52px 0; }
  .wt-info, .wt-info-l { max-width: 480px; width: 100%; }
  .wt-phone-wrap { width: 100%; height: 430px; justify-content: center; }
  .wt-ann { display: none; }
  .walkthrough-section .section-inner { padding: 0 20px; }
  /* Hero becomes a vertical flex column on mobile */
  .hero { height: auto; min-height: 100svh; padding: 80px 0 80px; flex-direction: column; justify-content: center; gap: 32px; }

  /* Left content — exit absolute flow */
  .hv2-left { position: relative; left: auto; right: auto; top: auto; transform: none; max-width: 100%; width: calc(100% - 32px); margin: 0 auto; text-align: center; }
  .hv2-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hv2-sub { font-size: .88rem; }
  .hv2-cta-row { gap: 10px; margin-bottom: 20px; justify-content: center; }
  .hv2-proof { justify-content: center; }
  .hv2-rating { justify-content: center; }
  .hv2-btn-hire { padding: 13px 22px; font-size: .85rem; }
  .hv2-btn-work { padding: 12px 20px; font-size: .85rem; }

  /* Right stack — exit absolute flow, show only the main card */
  .hv2-right { position: relative; right: auto; top: auto; transform: none; width: calc(100% - 32px); max-width: 340px; height: 340px; margin: 0 auto; display: block; }
  .hv2-card-main { width: 100%; left: 50%; transform: translateX(-50%); }
  .hv2-card-bl, .hv2-card-br, .hv2-fpill-1, .hv2-fpill-2 { display: none; }

  /* Hide marquee (too narrow) and reposition scroll hint */
  .hv2-marquee { display: none; }
  .hero-scroll-hint { bottom: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .hcr-desc { display: none; }
  .tb-action-ghost { display: none; }
  .hero-eyebrow-tag { font-size: .58rem; padding: 5px 11px; }
  .hv2-headline { font-size: 2.1rem; letter-spacing: -1px; }
  .hv2-eyebrow { font-size: .58rem; padding: 5px 11px; }
  .hv2-right { height: 300px; }
  .hero { gap: 24px; }
  .nl-fields { gap: 8px; }
  .nl-field { flex-direction: column; padding: 12px 14px; border-radius: 16px; }
  .nl-btn { width: 100%; justify-content: center; }
  .app-inner { padding: 32px 24px; }
  .store-btn { min-width: 120px; }
}
