/* ============================================================
   TIVRA TELECOM — Design tokens
   Palette: deep navy + electric/sky blue (from mark) + lime ping accent
   Type: Space Grotesk (display) / Inter (body) / IBM Plex Mono (data)
   Signature: the "route line" — a dashed trace with pulsing nodes,
   echoing the forward arrow in the mark; used as a connecting device
   between sections and as the hero's live "trace" animation.
   ============================================================ */

:root{
  --ink:        #0A0E17;
  --navy:       #0B1E3D;
  --navy-2:     #0F2A52;
  --blue:       #1C63D6;
  --blue-2:     #1450B0;
  --sky:        #3FA9F5;
  --lime:       #8CC63F;
  --paper:      #F6F8FB;
  --paper-2:    #EEF2F8;
  --line:       #DCE3EE;
  --line-navy:  rgba(255,255,255,0.14);
  --muted:      #5B6472;
  --muted-inv:  #A9B7CE;
  --white:      #FFFFFF;

  --display: "Space Grotesk", "Arial Narrow", sans-serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    "IBM Plex Mono", "SFMono-Regular", monospace;

  --max: 1180px;
  --radius: 10px;
  --ease: cubic-bezier(.4,0,.2,1);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--display); margin:0; line-height:1.08; letter-spacing:-0.01em; }
p{ margin:0; }

:focus-visible{
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section{ padding: 88px 0; }
.section-tight{ padding: 56px 0; }
@media (max-width:760px){
  .section{ padding: 60px 0; }
  .section-tight{ padding: 40px 0; }
  .wrap{ padding: 0 20px; }
}

.eyebrow{
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px; border-radius:50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(140,198,63,0.22);
}
.eyebrow.on-dark{ color: var(--sky); }
.eyebrow.on-dark::before{ box-shadow: 0 0 0 3px rgba(140,198,63,0.3); }

.mono-stat{ font-family: var(--mono); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-family: var(--body);
  font-weight:600;
  font-size:15px;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--blue); color:#fff; }
.btn-primary:hover{ background: var(--blue-2); }
.btn-ghost{ background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--blue); color: var(--blue); }
.btn-on-dark{ background: transparent; border-color: var(--line-navy); color: var(--white); }
.btn-on-dark:hover{ border-color: var(--sky); color: var(--sky); }
.btn-arrow{ transition: transform .18s var(--ease); }
.btn:hover .btn-arrow{ transform: translateX(3px); }
.btn-block{ width:100%; justify-content:center; }

/* ---------- Nav ---------- */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(246,248,251,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height: 34px; width:auto; }
.brand-word{ display:none; }
.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{
  font-size: 14.5px; font-weight: 600; color: var(--muted);
  position:relative; padding: 4px 0;
  transition: color .15s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color: var(--ink); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background: var(--lime);
}
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{ font-family: var(--mono); font-size: 13.5px; color: var(--muted); display:none; }
.menu-btn{
  display:none; background:none; border:1px solid var(--line); border-radius:8px;
  width:40px; height:40px; align-items:center; justify-content:center; cursor:pointer;
}
.menu-btn svg{ width:18px; height:18px; }

@media (min-width: 900px){
  .brand-word{ display:block; font-family: var(--display); font-weight:700; font-size:19px; letter-spacing:-0.01em; }
  .nav-phone{ display:block; }
}
@media (max-width: 860px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background: var(--paper); border-bottom:1px solid var(--line);
    flex-direction:column; align-items:flex-start; gap:0;
    padding: 8px 20px 18px;
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ width:100%; padding: 12px 0; border-bottom: 1px solid var(--paper-2); }
  .menu-btn{ display:flex; }
  .nav-cta .btn-ghost{ display:none; }
}

/* ---------- Route line signature ---------- */
.route-divider{
  position: relative;
  height: 64px;
  display:flex; align-items:center;
  overflow:hidden;
}
.route-divider .dash-line{
  position:absolute; left:0; right:0; top:50%; height:1px;
  background-image: linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  background-size: 16px 1px;
}
.route-divider.on-dark .dash-line{
  background-image: linear-gradient(90deg, var(--line-navy) 0 8px, transparent 8px 16px);
}
.route-divider .node{
  position:absolute; top:50%; width:9px; height:9px; border-radius:50%;
  background: var(--sky); transform: translate(-50%,-50%);
  box-shadow: 0 0 0 5px rgba(63,169,245,0.15);
}
.route-divider .node.lime{ background: var(--lime); box-shadow: 0 0 0 5px rgba(140,198,63,0.18); }
.route-divider .pulse{
  position:absolute; top:50%; width:9px; height:9px; border-radius:50%;
  background: var(--blue); transform: translate(-50%,-50%);
  animation: travel 4.5s linear infinite;
}
@keyframes travel{
  0%{ left:-2%; opacity:0; }
  8%{ opacity:1; }
  92%{ opacity:1; }
  100%{ left:102%; opacity:0; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background: radial-gradient(1200px 500px at 15% -10%, #12335f 0%, var(--navy) 55%), var(--navy);
  color: var(--white);
  overflow:hidden;
}
.hero .wrap{
  display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px;
  align-items:center;
  padding-top: 76px; padding-bottom: 64px;
}
@media (max-width: 980px){
  .hero .wrap{ grid-template-columns: 1fr; padding-top: 48px; }
}
.hero h1{
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  margin: 18px 0 20px;
}
.hero h1 em{
  font-style: normal;
  background: linear-gradient(90deg, var(--sky), var(--lime));
  -webkit-background-clip: text; background-clip:text; color:transparent;
}
.hero p.lead{
  font-size: 18px; color: var(--muted-inv); max-width: 46ch; margin-bottom: 32px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 40px; }
.hero-fine{ display:flex; gap:22px; flex-wrap:wrap; }
.hero-fine .item{ font-size: 13px; color: var(--muted-inv); display:flex; align-items:center; gap:8px; }
.hero-fine .item::before{ content:"—"; color: var(--lime); font-family: var(--mono); }

/* Trace panel (signature hero element) */
.trace-panel{
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-navy);
  border-radius: 16px;
  padding: 26px 26px 22px;
}
.trace-head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom: 18px; }
.trace-head .label{ font-family: var(--mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted-inv); }
.trace-head .live{ font-family: var(--mono); font-size:12px; color: var(--lime); display:flex; align-items:center; gap:6px; }
.trace-head .live::before{ content:""; width:6px; height:6px; border-radius:50%; background: var(--lime); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:.25;} }

.trace-hops{ position:relative; padding-left: 6px; }
.hop{ display:grid; grid-template-columns: 22px 1fr auto; align-items:center; gap:14px; padding: 9px 0; position:relative; }
.hop:not(:last-child)::after{
  content:""; position:absolute; left: 10px; top: 100%; width:1px; height: 12px;
  background: var(--line-navy);
}
.hop .dot{ width:9px; height:9px; border-radius:50%; background: var(--sky); position:relative; }
.hop .dot::after{
  content:""; position:absolute; inset:0; border-radius:50%; background: var(--sky);
  animation: ping 2.4s cubic-bezier(0,0,.2,1) infinite;
}
.hop:nth-child(1) .dot::after{ animation-delay: 0s; }
.hop:nth-child(2) .dot::after{ animation-delay: .5s; }
.hop:nth-child(3) .dot::after{ animation-delay: 1s; }
.hop:nth-child(4) .dot::after{ animation-delay: 1.5s; }
.hop.you .dot{ background: var(--lime); }
.hop.you .dot::after{ background: var(--lime); }
@keyframes ping{
  0%{ transform: scale(1); opacity: .7; }
  75%,100%{ transform: scale(2.6); opacity: 0; }
}
.hop .name{ font-size: 14px; color: var(--white); font-weight:600; }
.hop .name small{ display:block; font-weight:400; font-size:12px; color: var(--muted-inv); margin-top:1px; }
.hop .ms{ font-family: var(--mono); font-size: 13px; color: var(--sky); }
.hop.you .ms{ color: var(--lime); }

.trace-stats{ display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin-top: 22px; padding-top: 20px; border-top:1px solid var(--line-navy); }
.trace-stats .stat b{ display:block; font-family: var(--mono); font-size: 22px; color:var(--white); }
.trace-stats .stat span{ font-size: 11.5px; color: var(--muted-inv); text-transform:uppercase; letter-spacing:.06em; }

/* ---------- Logo strip ---------- */
.trust-strip{ border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip .wrap{ display:flex; align-items:center; justify-content:space-between; gap: 24px; padding: 20px 28px; flex-wrap:wrap; }
.trust-strip .t-item{ font-family: var(--mono); font-size: 13px; color: var(--muted); }
.trust-strip .t-item b{ color: var(--ink); }

/* ---------- Cards ---------- */
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.grid-4{ display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 1080px){ .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 900px){ .grid-3{ grid-template-columns:1fr; } .grid-2{ grid-template-columns:1fr; } }
@media (max-width: 600px){ .grid-4{ grid-template-columns:1fr; } }

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover{ border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(11,30,61,0.25); }
.card .icon{ width:40px; height:40px; margin-bottom:18px; transition: transform .35s var(--ease); }
.card:hover .icon{ transform: rotate(-6deg) scale(1.08); }
.card h3{ font-size: 19px; margin-bottom: 10px; }
.card p{ color: var(--muted); font-size: 14.5px; }
.card .card-meta{ margin-top: 18px; display:flex; gap:16px; font-family: var(--mono); font-size:12.5px; color: var(--blue); }

/* section headers */
.section-head{ max-width: 640px; margin-bottom: 46px; }
.section-head h2{ font-size: clamp(26px,3.2vw,38px); margin-top: 14px; }
.section-head p{ color: var(--muted); font-size: 16px; margin-top: 14px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }

/* ---------- Steps (how it works) ---------- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: 0; position:relative; }
@media (max-width: 900px){ .steps{ grid-template-columns:1fr; gap: 28px; } }
.step{ position:relative; padding: 0 20px 0 0; }
.step .idx{ font-family: var(--mono); font-size: 13px; color: var(--sky); background: var(--navy); display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; margin-bottom:16px; }
.step h4{ font-size:16.5px; margin-bottom:8px; }
.step p{ color: var(--muted); font-size: 14px; }

/* ---------- Pricing ---------- */
.pricing-toggle{ display:inline-flex; background: var(--paper-2); border:1px solid var(--line); border-radius:10px; padding: 4px; margin-bottom: 8px; }
.pricing-toggle button{ font-family: var(--body); font-weight:600; font-size:13.5px; padding: 9px 18px; border-radius:7px; border:none; background:none; cursor:pointer; color: var(--muted); }
.pricing-toggle button.active{ background: var(--white); color: var(--ink); box-shadow: 0 1px 4px rgba(11,30,61,.12); }

.plan-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items:stretch; }
@media (max-width: 940px){ .plan-grid{ grid-template-columns:1fr; } }
.plan-grid-4{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items:stretch; }
@media (max-width: 1080px){ .plan-grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .plan-grid-4{ grid-template-columns: 1fr; } }

/* Business pricing tiers */
.biz-tiers{ display:flex; flex-direction:column; gap:10px; margin: 20px 0; }
.biz-tier{
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 16px; background: var(--paper); border:1px solid var(--line); border-radius: 8px;
}
.biz-tier .bt-speed{ font-family: var(--mono); font-weight:600; color: var(--ink); font-size: 14px; }
.biz-tier .bt-price{ font-family: var(--mono); font-weight:700; color: var(--blue-2); font-size: 15px; white-space:nowrap; }

/* Referral promo band */
.promo-band{
  background: var(--paper-2); border: 1px dashed var(--lime); border-radius: 20px;
  padding: 40px 44px; display:flex; align-items:center; justify-content:space-between; gap: 32px; flex-wrap:wrap;
}
.promo-badge{
  display:inline-block; font-family: var(--mono); font-size: 11px; font-weight:700; letter-spacing:.05em;
  text-transform: uppercase; color:#fff; background: var(--lime); padding: 6px 12px; border-radius: 20px; margin-bottom: 12px;
  animation: badge-glow 2.6s ease-in-out infinite;
}
@keyframes badge-glow{
  0%,100%{ box-shadow: 0 0 0 0 rgba(140,198,63,0.45); }
  50%{ box-shadow: 0 0 0 7px rgba(140,198,63,0); }
}
.promo-band h3{ font-size: clamp(20px,2.4vw,26px); max-width: 34ch; }
.promo-band p{ color: var(--muted); margin-top: 10px; max-width: 56ch; }
.plan{
  background: var(--white); border:1px solid var(--line); border-radius: 14px;
  padding: 28px 26px; display:flex; flex-direction:column;
}
.plan.featured{ border-color: var(--blue); box-shadow: 0 20px 40px -24px rgba(28,99,214,0.4); position:relative; }
.plan.featured::before{
  content:"MOST POPULAR"; position:absolute; top:-12px; left:26px;
  background: var(--blue); color:#fff; font-family: var(--mono); font-size: 10.5px; letter-spacing:.08em;
  padding: 5px 10px; border-radius:6px;
}
.plan-name{ font-family: var(--mono); font-size:13px; letter-spacing:.08em; text-transform:uppercase; color: var(--blue); margin-bottom: 10px; }
.plan-speed{ font-family: var(--display); font-size: 40px; margin-bottom:2px; }
.plan-speed span{ font-size: 16px; font-weight:400; color: var(--muted); }
.plan-price{ font-family: var(--mono); font-size: 15px; color: var(--muted); margin-bottom: 22px; }
.plan-price b{ color: var(--ink); font-size:15px; }
.plan-feats{ margin-bottom: 26px; flex:1; }
.plan-feats li{ display:flex; gap:10px; align-items:flex-start; padding: 7px 0; font-size:14px; color: var(--ink); }
.plan-feats li::before{ content:"✓"; color: var(--lime); font-weight:700; }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  padding: 22px 0; font-family: var(--display); font-size:17px; color: var(--ink);
}
.faq-q .plus{ font-family: var(--mono); font-size:20px; color: var(--blue); transition: transform .2s var(--ease); }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s var(--ease); }
.faq-a p{ padding-bottom: 22px; color: var(--muted); font-size: 14.5px; max-width: 62ch; }

/* ---------- Stats band ---------- */
.stats-band{ background: var(--navy); color:#fff; }
.stats-band .grid-3{ grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); }
@media (max-width:760px){ .stats-band .grid-3{ grid-template-columns: repeat(2,1fr); } }
.stat-block b{ display:block; font-family: var(--mono); font-size: 34px; color: var(--sky); }
.stat-block span{ font-size:13px; color: var(--muted-inv); }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-2) 100%);
  color:#fff; border-radius: 20px; padding: 54px 48px;
  display:flex; align-items:center; justify-content:space-between; gap: 32px; flex-wrap:wrap;
}
.cta-band h3{ font-size: clamp(22px,2.6vw,30px); color:#fff; max-width: 30ch; }
.cta-band p{ color: rgba(255,255,255,.85); margin-top:10px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy); color: var(--muted-inv); }
.footer-top{ padding: 60px 0 40px; display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
.footer-brand img{ height: 30px; margin-bottom: 14px; }
.footer-brand p{ font-size: 13.5px; max-width: 32ch; }
.footer-col h5{ font-family: var(--body); font-size: 13px; text-transform:uppercase; letter-spacing:.08em; color:#fff; margin-bottom:16px; }
.footer-col li{ margin-bottom: 10px; }
.footer-col a{ font-size: 14px; color: var(--muted-inv); transition: color .15s; }
.footer-col a:hover{ color: var(--sky); }
.footer-bottom{
  border-top: 1px solid var(--line-navy); padding: 20px 0 32px;
  display:flex; justify-content:space-between; align-items:center; gap: 16px; flex-wrap:wrap;
  font-size: 12.5px;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero{ background: var(--navy); color:#fff; padding: 56px 0 40px; }
.page-hero h1{ color:#fff; font-size: clamp(30px,4vw,44px); margin-top:14px; }
.page-hero p{ color: var(--muted-inv); max-width: 56ch; margin-top:14px; font-size:16px; }
.breadcrumb{ font-family: var(--mono); font-size:12.5px; color: var(--muted-inv); }
.breadcrumb a{ color: var(--sky); }

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width:700px){ .form-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:7px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 13px; font-weight:600; color: var(--ink); }
.field input, .field select, .field textarea{
  font-family: var(--body); font-size: 14.5px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28,99,214,0.12);
}
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.form-success{ display:none; background:#EFF8EA; border:1px solid var(--lime); color:#3B5A1C; padding: 14px 16px; border-radius:8px; font-size:14px; margin-bottom:18px; }
.form-success.show{ display:block; }
.form-error{ display:none; background:#FBEAEA; border:1px solid #D9564C; color:#8A2E27; padding: 14px 16px; border-radius:8px; font-size:14px; margin-bottom:18px; }
.form-error.show{ display:block; }
.field-error{ font-size:12.5px; color:#D9564C; min-height:1px; }

.contact-info{ display:flex; flex-direction:column; gap: 22px; }
.info-item{ display:flex; gap:14px; }
.info-item .ii-icon{
  width:38px; height:38px; border-radius:9px; background: var(--paper-2); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-item h4{ font-size:15px; margin-bottom:4px; }
.info-item p{ font-size:14px; color: var(--muted); }
.info-item a{ color: var(--blue); font-weight:600; }

/* ---------- Values / about ---------- */
.value-list{ display:grid; grid-template-columns: repeat(2,1fr); gap: 26px 34px; }
@media (max-width:760px){ .value-list{ grid-template-columns:1fr; } }
.value-list .v{ display:flex; gap:16px; }
.value-list .v-num{ font-family: var(--mono); color: var(--sky); background: var(--navy); width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0; }
.value-list h4{ font-size:16px; margin-bottom:6px; }
.value-list p{ font-size:14px; color: var(--muted); }

/* misc */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
@media (max-width:900px){ .split{ grid-template-columns:1fr; gap:32px; } }
.tag-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.tag-list span{ font-family:var(--mono); font-size:12px; border:1px solid var(--line); padding:6px 12px; border-radius:20px; color: var(--muted); }

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.reveal-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}
