@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:    #060d1a;
  --navy:   #0a1628;
  --navy2:  #0f1f38;
  --blue:   #2563eb;
  --blue2:  #1a4fd8;
  --ice:    #38bdf8;
  --gold:   #e2a74e;
  --white:  #ffffff;
  --off:    #dde6f5;
  --muted:  #7a90b3;
  --muted2: #4d6380;
  --green:  #10b981;
  --red:    #f87171;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;

  --r:   10px;
  --rlg: 18px;
  --rxl: 28px;
}

/* ─── BASE ───────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);background:var(--ink);
  color:var(--off);line-height:1.6;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}

/* grain */
body::before{
  content:'';position:fixed;inset:0;z-index:999;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size:160px;opacity:.5;mix-blend-mode:overlay;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.wrap{width:100%;max-width:1100px;margin:0 auto;padding:0 20px}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow{
  font-size:.68rem;font-weight:600;letter-spacing:.2em;
  text-transform:uppercase;color:var(--ice);
}
h1,h2{font-family:var(--serif);font-weight:900;color:var(--white);letter-spacing:-.01em;line-height:1.07}
h1{font-size:clamp(2.2rem,6.5vw,4.4rem)}
h2{font-size:clamp(1.6rem,4vw,2.8rem)}
h3{font-family:var(--sans);font-weight:700;font-size:1rem;color:var(--white)}
p.sub{font-size:1.05rem;color:var(--muted);line-height:1.75;font-weight:300}
.gold{color:var(--gold);font-style:italic}
.ice{color:var(--ice)}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--sans);font-weight:600;font-size:.9rem;letter-spacing:.02em;
  border-radius:var(--r);padding:14px 26px;
  transition:all .22s ease;white-space:nowrap;cursor:pointer;
}
.btn-call{
  background:linear-gradient(135deg,var(--blue) 0%,var(--blue2) 100%);
  color:var(--white);border:1px solid rgba(255,255,255,.1);
  box-shadow:0 6px 20px rgba(37,99,235,.4);
}
.btn-call:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(37,99,235,.55)}
.btn-sms{
  background:rgba(255,255,255,.05);color:var(--ice);
  border:1px solid rgba(56,189,248,.25);backdrop-filter:blur(8px);
}
.btn-sms:hover{background:rgba(56,189,248,.1);border-color:rgba(56,189,248,.5);transform:translateY(-2px)}
.btn-gold{
  background:linear-gradient(135deg,var(--gold) 0%,#c8923b 100%);
  color:var(--ink);font-weight:700;border:1px solid rgba(255,255,255,.15);
  box-shadow:0 6px 20px rgba(226,167,78,.35);
}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(226,167,78,.5)}
.btn-lg{font-size:1rem;padding:17px 32px}
.btn svg{flex-shrink:0;width:16px;height:16px}

/* ─── TOP URGENCY BAR ────────────────────────────────────── */
.urgency{
  background:linear-gradient(90deg,#1a56db,#0ea5e9);
  text-align:center;padding:9px 16px;
  font-size:.8rem;font-weight:500;letter-spacing:.03em;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.urgency strong{font-weight:700}
.urgency .pulse-dot{
  display:inline-block;width:7px;height:7px;border-radius:50%;
  background:var(--green);margin-right:6px;
  box-shadow:0 0 0 0 rgba(16,185,129,.4);
  animation:pulseRing 2s infinite;
  vertical-align:middle;
}
@keyframes pulseRing{
  0%{box-shadow:0 0 0 0 rgba(16,185,129,.4)}
  70%{box-shadow:0 0 0 8px rgba(16,185,129,0)}
  100%{box-shadow:0 0 0 0 rgba(16,185,129,0)}
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav{
  position:sticky;top:0;z-index:200;
  background:rgba(6,13,26,.92);
  backdrop-filter:blur(20px) saturate(160%);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;gap:12px;
}
.nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.nav-logo img{height:32px;filter:invert(1);opacity:.9}
.nav-brand{font-family:var(--sans);font-weight:700;font-size:.9rem;color:var(--white)}
.nav-brand span{display:block;font-size:.58rem;font-weight:500;color:var(--ice);letter-spacing:.14em;text-transform:uppercase}
.nav-links{display:none;gap:28px;align-items:center}
.nav-links a{font-size:.84rem;color:var(--muted);transition:color .18s}
.nav-links a:hover{color:var(--white)}
.nav-phone{
  display:flex;align-items:center;gap:6px;
  font-family:var(--sans);font-weight:700;font-size:.88rem;color:var(--white);
  background:var(--blue);border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r);padding:9px 16px;
  box-shadow:0 4px 14px rgba(37,99,235,.4);
  transition:all .2s;flex-shrink:0;
}
.nav-phone:hover{background:var(--blue2);transform:translateY(-1px)}
.nav-phone svg{width:14px;height:14px}
@media(min-width:768px){.nav-links{display:flex}}

/* ─── HERO ───────────────────────────────────────────────── */
.hero{
  position:relative;min-height:92vh;
  display:flex;align-items:center;
  padding:90px 0 70px;overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 85% 65% at 50% -5%,rgba(37,99,235,.26) 0%,transparent 58%),
    radial-gradient(ellipse 45% 45% at 85% 65%,rgba(14,165,233,.09) 0%,transparent 55%),
    linear-gradient(180deg,var(--navy) 0%,var(--ink) 100%);
}
.hero-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(56,189,248,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(56,189,248,.035) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(ellipse 75% 75% at 50% 40%,black 10%,transparent 75%);
}
.hero-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;gap:24px;
}

/* eyebrow badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:5px 14px 5px 7px;
  background:rgba(255,255,255,.04);border:1px solid rgba(56,189,248,.2);
  border-radius:100px;backdrop-filter:blur(8px);
  animation:up .7s ease both;
}
.hero-badge-dot{
  width:24px;height:24px;border-radius:50%;
  background:rgba(16,185,129,.12);border:1px solid rgba(16,185,129,.3);
  display:flex;align-items:center;justify-content:center;
}
.hero-badge-dot::after{
  content:'';width:7px;height:7px;border-radius:50%;
  background:var(--green);box-shadow:0 0 8px rgba(16,185,129,.7);
  animation:pulse 2s infinite;
}
@keyframes pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.25);opacity:.75}}
.hero-badge span{font-size:.72rem;font-weight:600;color:var(--ice);letter-spacing:.07em}

/* pain line */
.hero-pain{
  font-family:var(--sans);font-size:clamp(.9rem,2vw,1rem);
  font-weight:500;color:var(--red);letter-spacing:.04em;
  background:rgba(248,113,113,.08);border:1px solid rgba(248,113,113,.2);
  padding:6px 16px;border-radius:100px;
  animation:up .7s ease .05s both;
}

.hero h1{animation:up .8s ease .1s both;max-width:820px}
.hero .sub{animation:up .8s ease .2s both;max-width:520px;font-size:clamp(.95rem,2.2vw,1.15rem)}

.hero-ctas{
  display:flex;flex-direction:column;gap:12px;
  width:100%;max-width:420px;
  animation:up .8s ease .3s both;
}
.hero-phone{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-size:.88rem;color:var(--muted);
  animation:up .8s ease .4s both;
}
.hero-phone a{color:var(--off);font-weight:700;font-size:1rem;transition:color .2s}
.hero-phone a:hover{color:var(--ice)}
.hero-phone .dot{color:rgba(255,255,255,.2);margin:0 4px}

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

@media(min-width:560px){
  .hero-ctas{flex-direction:row}
  .hero-ctas .btn{flex:1}
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats{
  background:rgba(255,255,255,.025);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.stats-inner{
  display:grid;grid-template-columns:repeat(2,1fr);
}
.stat{
  padding:26px 20px;text-align:center;
  border-right:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.stat:nth-child(even){border-right:none}
.stat:nth-child(n+3){border-bottom:none}
.stat-n{
  font-family:var(--serif);font-weight:900;font-size:2.2rem;line-height:1;
  background:linear-gradient(135deg,var(--white),var(--ice));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.stat-l{font-size:.7rem;font-weight:500;color:var(--muted2);letter-spacing:.1em;text-transform:uppercase;margin-top:4px}
@media(min-width:600px){
  .stats-inner{grid-template-columns:repeat(4,1fr)}
  .stat{border-bottom:none}
  .stat:nth-child(even){border-right:1px solid rgba(255,255,255,.05)}
  .stat:last-child{border-right:none}
}

/* ─── SECTION ────────────────────────────────────────────── */
.sec{padding:80px 0}
.sec-hd{margin-bottom:48px}
.sec-hd.center{text-align:center}
.sec-hd.center .sub{max-width:500px;margin:12px auto 0}
.sec-hd .sub{margin-top:12px;max-width:520px}
.sec-hd h2{margin-top:8px}
.line{height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.07),transparent)}
.bg-navy{background:var(--navy)}
.bg-ink{background:var(--ink)}

/* ─── PAIN GRID ──────────────────────────────────────────── */
.pain-grid{
  display:grid;gap:1px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.05);
  border-radius:var(--rxl);overflow:hidden;
}
.pain-card{
  background:var(--navy);padding:26px 22px;
  display:flex;gap:14px;align-items:flex-start;
  transition:background .2s;
}
.pain-card:hover{background:var(--navy2)}
.pain-icon{
  width:38px;height:38px;border-radius:8px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:1.15rem;
  background:rgba(248,113,113,.08);border:1px solid rgba(248,113,113,.15);
}
.pain-card h3{margin-bottom:5px}
.pain-card p{font-size:.85rem;color:var(--muted);line-height:1.6}
@media(min-width:640px){.pain-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.pain-grid{grid-template-columns:repeat(3,1fr)}}

/* ─── COMPARE TABLE ──────────────────────────────────────── */
.compare-table{
  width:100%;border-collapse:collapse;
  border-radius:var(--rlg);overflow:hidden;
  border:1px solid rgba(255,255,255,.07);
  margin-top:48px;
}
.compare-table thead th{
  padding:14px 20px;font-family:var(--sans);font-weight:700;
  font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;
  text-align:left;
}
.compare-table thead th:first-child{
  background:rgba(248,113,113,.1);color:var(--red);
  border-bottom:1px solid rgba(248,113,113,.15);
}
.compare-table thead th:last-child{
  background:rgba(37,99,235,.15);color:var(--ice);
  border-bottom:1px solid rgba(37,99,235,.2);
  border-left:1px solid rgba(255,255,255,.06);
}
.compare-table tbody tr{border-bottom:1px solid rgba(255,255,255,.04)}
.compare-table tbody tr:last-child{border-bottom:none}
.compare-table tbody tr:nth-child(even) td{background:rgba(255,255,255,.015)}
.compare-table td{
  padding:13px 20px;font-size:.88rem;
  color:var(--muted);vertical-align:top;
}
.compare-table td:last-child{
  color:var(--off);border-left:1px solid rgba(255,255,255,.06);
}
.compare-table .tag-bad{color:var(--red);margin-right:6px}
.compare-table .tag-good{color:var(--green);margin-right:6px}

/* ─── 3-STEP PROCESS ─────────────────────────────────────── */
.steps-row{
  display:grid;gap:24px;margin-top:48px;
}
.step-card{
  background:var(--navy);border:1px solid rgba(255,255,255,.06);
  border-radius:var(--rlg);padding:32px 26px;
  position:relative;overflow:hidden;
  transition:border-color .25s,transform .25s;
}
.step-card:hover{border-color:rgba(56,189,248,.25);transform:translateY(-4px)}
.step-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--blue),var(--ice));
  opacity:0;transition:opacity .25s;
}
.step-card:hover::before{opacity:1}
.step-num{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-weight:900;font-size:1.1rem;color:var(--white);
  margin-bottom:18px;
  box-shadow:0 4px 16px rgba(37,99,235,.4);
}
.step-card h3{margin-bottom:8px}
.step-card p{font-size:.875rem;color:var(--muted);line-height:1.65}
@media(min-width:768px){.steps-row{grid-template-columns:repeat(3,1fr)}}

/* ─── SERVICE TIERS ──────────────────────────────────────── */
.tier-row{display:grid;gap:18px;margin-top:48px}
.tier{
  background:var(--navy);border:1px solid rgba(255,255,255,.07);
  border-radius:var(--rxl);padding:32px 28px;
  position:relative;overflow:hidden;
  transition:border-color .25s,transform .3s,box-shadow .3s;
}
.tier::after{
  content:'';position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.1),transparent);
}
.tier:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 50px rgba(0,0,0,.5),0 0 50px rgba(37,99,235,.15);
  border-color:rgba(37,99,235,.3);
}
.tier--star{
  border-color:rgba(37,99,235,.3);
  background:linear-gradient(145deg,rgba(37,99,235,.18) 0%,var(--navy2) 60%);
}
.tier-badge{
  display:inline-block;
  background:linear-gradient(135deg,var(--gold),#c8923b);
  color:var(--ink);font-weight:700;font-size:.68rem;
  letter-spacing:.1em;text-transform:uppercase;
  padding:4px 12px;border-radius:100px;
  margin-bottom:18px;box-shadow:0 4px 12px rgba(226,167,78,.35);
}
.tier-icon{font-size:2rem;margin-bottom:14px}
.tier h3{font-size:1.2rem;margin-bottom:8px}
.tier p.desc{font-size:.875rem;color:var(--muted);margin-bottom:20px;line-height:1.65}
.tier-feats{display:flex;flex-direction:column;gap:8px}
.tier-feat{
  display:flex;gap:10px;align-items:flex-start;
  font-size:.85rem;color:var(--off);
}
.ck{
  width:18px;height:18px;border-radius:50%;flex-shrink:0;margin-top:1px;
  background:rgba(37,99,235,.12);border:1px solid rgba(37,99,235,.25);
  display:flex;align-items:center;justify-content:center;
  color:var(--ice);font-size:.6rem;
}
@media(min-width:768px){.tier-row{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.tier-row{grid-template-columns:repeat(3,1fr)}}

/* ─── SOCIAL PROOF ───────────────────────────────────────── */
.proof-grid{display:grid;gap:14px;margin-top:48px}
.proof-card{
  background:var(--navy2);border:1px solid rgba(255,255,255,.06);
  border-radius:var(--rlg);padding:26px 24px;
  position:relative;overflow:hidden;
  transition:border-color .2s,transform .25s;
}
.proof-card:hover{border-color:rgba(56,189,248,.2);transform:translateY(-3px)}
.proof-card::before{
  content:'\201C';position:absolute;top:10px;right:16px;
  font-family:var(--serif);font-size:4.5rem;line-height:1;
  color:rgba(37,99,235,.18);pointer-events:none;
}
.stars{color:var(--gold);font-size:.8rem;letter-spacing:2px;margin-bottom:12px}
.proof-card blockquote{
  font-size:.92rem;color:var(--off);line-height:1.75;
  font-style:italic;font-weight:300;margin-bottom:18px;
}
.proof-author{display:flex;align-items:center;gap:10px}
.proof-av{
  width:38px;height:38px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,var(--blue),var(--ice));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--sans);font-weight:700;font-size:.85rem;color:var(--white);
}
.proof-name{font-weight:600;font-size:.875rem;color:var(--white)}
.proof-role{font-size:.75rem;color:var(--muted2);margin-top:1px}
@media(min-width:768px){.proof-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.proof-grid{grid-template-columns:repeat(3,1fr)}}

/* ─── AREAS ──────────────────────────────────────────────── */
.areas{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:36px}
.area{
  display:flex;align-items:center;gap:9px;
  padding:13px 16px;border-radius:var(--r);font-size:.875rem;color:var(--off);
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);
  transition:all .2s;
}
.area:hover{background:rgba(37,99,235,.08);border-color:rgba(56,189,248,.22);color:var(--white)}
.area-dot{width:6px;height:6px;border-radius:50%;background:var(--ice);flex-shrink:0}
@media(min-width:560px){.areas{grid-template-columns:repeat(3,1fr)}}
@media(min-width:900px){.areas{grid-template-columns:repeat(4,1fr)}}

/* ─── CLOSING CTA ────────────────────────────────────────── */
.close-cta{
  position:relative;overflow:hidden;
  background:linear-gradient(140deg,rgba(37,99,235,.25) 0%,var(--ink) 65%);
  border-top:1px solid rgba(37,99,235,.2);
  border-bottom:1px solid rgba(37,99,235,.15);
  padding:90px 0;text-align:center;
}
.close-cta::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 55% 55% at 50% -5%,rgba(37,99,235,.28) 0%,transparent 60%);
  pointer-events:none;
}
.close-inner{position:relative;z-index:1}
.close-cta h2{margin-top:10px;max-width:700px;margin-left:auto;margin-right:auto}
.close-cta .sub{max-width:440px;margin:14px auto 0}
.close-btns{display:flex;flex-direction:column;gap:12px;align-items:center;margin-top:36px}
.close-num{
  font-family:var(--serif);font-weight:900;font-size:1.9rem;
  color:var(--white);margin-top:28px;
}
.close-num a{color:var(--ice)}
.close-num a:hover{text-decoration:underline}
.close-note{font-size:.8rem;color:var(--muted);margin-top:10px}
@media(min-width:520px){.close-btns{flex-direction:row;justify-content:center}}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer{
  background:#040810;
  border-top:1px solid rgba(255,255,255,.05);
  padding:56px 0 24px;
}
.footer-grid{display:grid;gap:40px}
.footer-brand-row{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.footer-brand-row img{height:28px;filter:invert(1);opacity:.75}
.footer-brand-name{font-family:var(--sans);font-weight:700;font-size:.9rem;color:var(--white)}
.footer-desc{font-size:.83rem;color:var(--muted2);line-height:1.7;max-width:250px}
.footer-col h5{font-size:.68rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--muted2);margin-bottom:16px}
.footer-col ul{display:flex;flex-direction:column;gap:10px}
.footer-col ul a{font-size:.85rem;color:var(--muted);transition:color .18s}
.footer-col ul a:hover{color:var(--white)}
.footer-cta-btn{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--blue);color:var(--white);font-family:var(--sans);
  font-weight:600;font-size:.85rem;padding:11px 18px;
  border-radius:var(--r);border:1px solid rgba(255,255,255,.1);
  box-shadow:0 4px 14px rgba(37,99,235,.35);transition:all .2s;
}
.footer-cta-btn:hover{background:var(--blue2);transform:translateY(-1px)}
.footer-bottom{
  margin-top:44px;padding-top:18px;
  border-top:1px solid rgba(255,255,255,.05);
  display:flex;flex-direction:column;gap:6px;
  align-items:center;text-align:center;
  font-size:.75rem;color:var(--muted2);
}
@media(min-width:768px){
  .footer-grid{grid-template-columns:1.6fr 1fr 1fr}
  .footer-bottom{flex-direction:row;justify-content:space-between;text-align:left}
}

/* ─── MOBILE STICKY CTA ──────────────────────────────────── */
.sticky{
  position:fixed;bottom:0;left:0;right:0;z-index:500;
  display:flex;gap:10px;padding:11px 14px 14px;
  background:rgba(4,8,16,.94);
  backdrop-filter:blur(18px);
  border-top:1px solid rgba(255,255,255,.08);
  box-shadow:0 -8px 30px rgba(0,0,0,.5);
}
.sticky a{
  flex:1;display:flex;align-items:center;justify-content:center;gap:6px;
  padding:13px 10px;border-radius:var(--r);
  font-family:var(--sans);font-weight:700;font-size:.875rem;
  transition:opacity .2s;
}
.sticky a:active{opacity:.75}
.sticky-call{background:var(--blue);color:var(--white);box-shadow:0 4px 14px rgba(37,99,235,.45);border:1px solid rgba(255,255,255,.1)}
.sticky-sms{background:rgba(255,255,255,.05);color:var(--ice);border:1px solid rgba(56,189,248,.22)}
@media(min-width:768px){.sticky{display:none}}
@media(max-width:767px){body{padding-bottom:76px}}

/* ─── REVEAL ─────────────────────────────────────────────── */
.rv{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.rv.in{opacity:1;transform:translateY(0)}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}
