/* =========================================================
   TALENTERO — design tokens
   Primary: #0668E1 (brand blue)   Navy: #0B1E3D   BG: #F6F8FC
   Display: Century Gothic (fallback Jost)   Body: Inter
   ========================================================= */
:root{
  --blue: #0668E1;
  --blue-dark: #054FB0;
  --blue-light: #EAF2FF;
  --navy: #0B1E3D;
  --ink: #101828;
  --slate: #5B6472;
  --slate-light: #8A93A3;
  --bg: #F6F8FC;
  --white: #FFFFFF;
  --green: #17A673;
  --green-light: #E4F7EF;
  --amber: #F5A524;
  --amber-light: #FDF1DD;
  --border: #E3E8F0;

  --font-display: "Century Gothic", "Jost", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(11,30,61,0.18);
  --shadow-sm: 0 8px 24px -12px rgba(11,30,61,0.15);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
h1,h2,h3{ font-family: var(--font-display); font-weight:600; letter-spacing:-0.01em; color: var(--navy); }
button{ font-family: inherit; cursor:pointer; border:none; background:none; }
input, textarea{ font-family: var(--font-body); }

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

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

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight:600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(6,104,225,0.55);
}
.btn-primary:hover{ background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover{ border-color: var(--blue); color: var(--blue); }
.btn-ghost-light{
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-sm{ padding: 10px 20px; font-size: 14px; }
.btn-lg{ padding: 16px 32px; font-size: 16px; }
.btn-block{ width:100%; }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 76px;
}
.nav-logo img{ height: 22px; width:auto; }
.nav-links{
  display:flex;
  gap: 36px;
}
.nav-links a{
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  transition: color .15s ease;
}
.nav-links a:hover{ color: var(--blue); }
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width: 44px;
  height: 44px;
}
.nav-toggle span{
  height:2px; width:22px; background: var(--navy); border-radius:2px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(6,104,225,0.10), transparent 60%),
    var(--bg);
  padding-top: 88px;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items:center;
  padding-bottom: 72px;
}
.eyebrow{
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow-light{ color: rgba(255,255,255,0.65); }
.eyebrow-blue{ color: var(--blue); }

.hero h1{
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  margin-bottom: 22px;
}
.text-blue{ color: var(--blue); }
.typed-cursor{
  display:inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--blue);
  margin-left: 4px;
  vertical-align: -0.1em;
  animation: cursor-blink 0.9s step-start infinite;
}
@keyframes cursor-blink{
  50%{ opacity: 0; }
}
.hero-sub{
  font-size: 18px;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats{
  display:flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stats div{ display:flex; flex-direction:column; }
.hero-stats strong{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
}
.hero-stats span{
  font-size: 13px;
  color: var(--slate-light);
}

/* --- signature visual: live hiring pipeline board --- */
.hero-visual{
  position: relative;
  height: 460px;
}
.pipeline-board{
  position: relative;
  width: 100%;
  height: 100%;
}
.pipeline-glow{
  position:absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(6,104,225,0.16), transparent 65%);
  filter: blur(20px);
}
.pcard{
  position:absolute;
  width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  animation: float 7s ease-in-out infinite;
}
.pcard-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pcard-role{ font-weight:700; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.pcard-meta{ font-size: 13px; color: var(--slate-light); }
.pcard-fit{ font-size: 12px; font-weight:700; color: var(--slate-light); }

.tag{
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.tag-amber{ background: var(--amber-light); color: #A8670C; }
.tag-blue{ background: var(--blue-light); color: var(--blue-dark); }
.tag-green{ background: var(--green-light); color: #0E7A54; }
.tag-slate{ background: #EEF1F6; color: var(--slate); }

.pcard-1{ top: 0; left: 30px; animation-delay: 0s; z-index:4; }
.pcard-2{ top: 130px; left: 190px; animation-delay: 1.4s; z-index:3; }
.pcard-3{ top: 265px; left: 20px; animation-delay: 2.6s; z-index:2; }
.pcard-4{ top: 360px; left: 210px; animation-delay: 0.7s; z-index:1; opacity: 0.9; }

@keyframes float{
  0%, 100%{ transform: translateY(0px); }
  50%{ transform: translateY(-12px); }
}

.trust-bar{
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.trust-label{
  font-size: 14px;
  font-weight:600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 24px;
}
.marquee{
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track{
  display:flex;
  align-items:center;
  gap: 18px;
  width: max-content;
  padding-left: 32px;
  animation: marquee-scroll 80s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }

.trust-chip{
  display:inline-flex;
  align-items:center;
  gap: 14px;
  padding: 12px 24px 12px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  white-space: nowrap;
}
.trust-chip-logo{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex-shrink:0;
}
.trust-chip-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.trust-chip span{
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.trust-disclaimer{
  max-width: 640px;
  margin: 22px auto 0;
  padding: 0 32px;
  text-align: center;
  font-size: 12.5px;
  color: var(--slate-light);
  line-height: 1.5;
}
@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   CHALLENGE (problem/solution) — dark section
   ========================================================= */
.challenge{
  background: var(--navy);
  color: rgba(255,255,255,0.86);
  padding: 96px 0;
}
.challenge-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.challenge h2{
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 30px);
  line-height:1.25;
  margin-bottom: 18px;
}
.challenge p{ color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 16px; }
.challenge p:last-child{ margin-bottom: 0; }

/* =========================================================
   SECTION TITLES (shared)
   ========================================================= */
.section-title{
  font-size: clamp(28px, 3.2vw, 38px);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.15;
}
section{ padding: 96px 0; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.service-card-head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.service-icon{
  color: var(--blue);
  font-size: 16px;
}
.service-card h3{
  font-size: 18px;
  line-height:1.3;
}
.service-card p{
  font-size: 14.5px;
  color: var(--slate);
}

/* =========================================================
   PROCESS
   ========================================================= */
.process{ background: var(--bg); }
.process-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-step{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position:relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.process-step:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-sm);
  border-color: var(--blue);
}
.process-step:hover .process-num{ color: var(--blue-dark); }
.process-step-head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.process-num{
  font-family: var(--font-display);
  font-size: 15px;
  font-weight:700;
  color: var(--blue);
}
.process-step h3{ font-size: 19px; }
.process-step p{ font-size: 14.5px; color: var(--slate); }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
}
.about-copy .section-title{ margin-bottom: 20px; }
.about-copy p{
  color: var(--slate);
  font-size: 16px;
  margin-bottom: 16px;
  max-width: 560px;
}
.about-person{
  grid-column: 1 / -1;
  order: 1;
  display:flex;
  align-items:center;
  gap: 18px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.about-avatar-link{
  display:block;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.about-avatar-link:hover{ transform: scale(1.04); }
.about-avatar{
  width: 120px;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 12%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--border);
}
.about-person strong{
  display:block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--navy);
}
.about-person span{
  font-size: 13px;
  color: var(--slate-light);
}
.about-stats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: space-between;
}
.stat-card{
  background: var(--blue);
  border-radius: var(--radius);
  padding: 26px 22px;
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
  display:block;
  text-align:left;
  border: none;
  font-family: inherit;
  cursor: default;
}
.stat-card:hover{
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-sm);
}
.stat-card-link{ cursor: pointer; }
.stat-card:nth-child(2){ background: var(--navy); }
.stat-card:nth-child(3){ background: var(--navy); }
.stat-card:nth-child(4){ background: var(--blue); }
.stat-card strong{
  display:block;
  font-family: var(--font-display);
  font-size: 30px;
  margin-bottom: 8px;
}
.stat-card span{
  font-size: 13.5px;
  opacity: 0.8;
  line-height:1.4;
  display:block;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.about{ padding-bottom: 56px; }
.testimonials{ background: var(--white); padding-top: 56px; }
.testimonial-tabs{
  display:flex;
  gap: 10px;
  margin-bottom: 36px;
}
.tab-btn{
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  color: var(--slate);
  transition: all .15s ease;
}
.tab-btn.active{
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.testimonial-grid{
  column-count: 3;
  column-gap: 22px;
}
.t-row{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  break-inside: avoid;
  margin-bottom: 22px;
  transition: border-color .15s ease;
}
.t-row:hover{ border-color: var(--blue); }
.t-row-toggle{
  order: 2;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  text-align: left;
  font-family: inherit;
  pointer-events: none;
}
.t-row-person{ display:flex; flex-direction:column; gap: 2px; }
.t-row-person strong{ font-size: 14px; color: var(--navy); }
.t-row-person span{ font-size: 13px; color: var(--slate-light); }
.t-row-chevron{ display: none; }
.t-row-body{
  order: 1;
  max-height: none;
  overflow: visible;
}
.t-row-body p{
  font-size: 14.5px;
  color: var(--ink);
  padding: 0;
  margin-bottom: 20px;
}
.testimonial-more-wrap{
  display:flex;
  justify-content:center;
  margin-top: 32px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact{ background: var(--navy); color: var(--white); }
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-intro h2{
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 16px;
}
.contact-intro p{
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 420px;
}
.contact-details{
  display:flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.contact-details a{
  font-size: 14.5px;
  font-weight:600;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
}
.contact-details a:hover{ color: var(--white); border-color: var(--white); }

.contact-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}
.contact-card:hover{
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.contact-card h3{
  font-size: 22px;
  color: var(--navy);
}
.contact-card p{
  font-size: 15px;
  color: var(--slate);
  max-width: 320px;
}
.contact-card .btn{
  margin-top: 8px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 0 32px;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand img{ height: 20px; margin-bottom: 12px; }
.footer-brand p{ font-size: 13.5px; color: rgba(255,255,255,0.5); }
.footer-links{ display:flex; gap: 26px; flex-wrap: wrap; }
.footer-links a{ font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-links a:hover{ color: var(--white); }
.footer-links-linkedin{ display: none; }
.footer-contact{ display:flex; flex-direction:column; gap: 8px; align-items:flex-end; }
.footer-contact a{ font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact a:hover{ color: var(--white); }
.footer-bottom{
  padding: 20px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p{ font-size: 13px; color: rgba(255,255,255,0.4); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }

  /* Pipeline card visual removed on mobile/tablet - text-only hero */
  .hero-visual{
    display: none;
  }
  .challenge-grid{ grid-template-columns: 1fr; gap: 40px; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-grid{ grid-template-columns: 1fr; }
  .about-stats{ grid-template-columns: repeat(2,1fr); }
  .trust-bar{ padding-bottom: 24px; }
  .challenge{ padding-top: 48px; }
  .testimonial-grid{ column-count: 2; }
  .contact-grid{ grid-template-columns: 1fr; }
}

/* Nav collapses to hamburger earlier than content stacking does, so
   tablets (iPad portrait ~768-820px, small laptop windows) get a proper
   mobile nav instead of a cramped full desktop nav bar. */
@media (max-width: 900px){
  .nav-links{
    position:absolute;
    top: 76px; left:0; right:0;
    background: var(--white);
    flex-direction:column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display:none;
    gap: 18px;
  }
  .nav-links.open{ display:flex; }
  .nav-inner{ gap: 10px; }
  .nav-cta .btn{ padding: 9px 16px; font-size: 13.5px; }
  .nav-toggle{ display:flex; }
}

@media (max-width: 680px){
  .wrap{ padding: 0 20px; }

  /* Close the gap between the sticky nav and the hero headline */
  .hero{ padding-top: 28px; }

  /* Condense section-to-section spacing across the whole page - the
     96px top+bottom default was compounding into ~190px dead zones
     between sections on mobile */
  section{ padding: 44px 0; }
  .trust-bar{ padding: 24px 0 16px; }
  .challenge{ padding: 36px 0; }
  .about{ padding: 44px 0 32px; }
  .testimonials{ padding: 32px 0 44px; }
  .contact{ padding: 44px 0; }

  /* Slightly smaller type across the board so more fits on screen
     without feeling cramped */
  .hero-sub{ font-size: 16px; }
  .section-title{ font-size: 24px; margin-bottom: 32px; }
  .eyebrow{ font-size: 13px; margin-bottom: 12px; }
  .challenge h2{ font-size: 21px; }
  .challenge p{ font-size: 14.5px; }
  .service-card p, .process-step p{ font-size: 13.5px; }
  .about-copy p{ font-size: 14.5px; }
  .stat-card strong{ font-size: 24px; }
  .stat-card span{ font-size: 13px; }
  .t-row-body p{ font-size: 13.5px; }
  .contact-intro h2{ font-size: 26px; }
  .contact-intro p{ font-size: 14.5px; }

  .services-grid, .process-grid{ grid-template-columns: 1fr; }
  .about-stats{ grid-template-columns: 1fr 1fr; }

  .about-grid{ gap: 20px; }

  /* Mobile keeps the photo right after the paragraph (not at the
     bottom, like desktop) - just with a tighter gap above it */
  .about-person{
    order: -1;
    margin-top: 0;
    margin-bottom: 8px;
    padding-top: 0;
    padding-bottom: 20px;
    border-top: none;
    border-bottom: 1px solid var(--border);
  }
  .hero-stats{ gap: 26px; }

  /* Accordion testimonials on phones - collapsed rows the user taps
     to expand, instead of the card/masonry layout used everywhere else */
  .testimonial-grid{ column-count: 1; display: flex; flex-direction: column; gap: 10px; }
  .t-row{
    display: block;
    padding: 0;
    margin-bottom: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .t-row-toggle{
    order: initial;
    pointer-events: auto;
    cursor: pointer;
    justify-content: space-between;
    padding: 16px 20px;
  }
  .t-row-chevron{
    display: block;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 13px;
    transition: transform .2s ease;
  }
  .t-row.open .t-row-chevron{ transform: rotate(180deg); }
  .t-row-body{
    order: initial;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .t-row.open .t-row-body{ max-height: 800px; }
  .t-row-body p{ padding: 0 20px 20px; margin-bottom: 0; }

  .footer-inner{ flex-direction:column; align-items: flex-start; gap: 24px; padding: 40px 0 24px 12px; }
  .footer-links{
    display: grid;
    grid-template-columns: repeat(4, auto);
    column-gap: 20px;
    row-gap: 14px;
  }
  .footer-links-linkedin{ display: block; }
  .footer-contact{ display: none; }

  /* Removed - was sitting too close to the brand logo above it */
  .footer-bottom{ border-top: none; padding: 4px 0 40px 12px; }
}

/* Extra-narrow phones (iPhone SE and similar ~360-390px) */
@media (max-width: 420px){
  .about-avatar{ width: 96px; }
}

/* Book a call card drop-in animation */
.contact-card.drop-in-ready{
  opacity: 0;
  transform: translateY(-40px);
}
.contact-card.drop-in{
  animation: drop-in-call 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}
@keyframes drop-in-call{
  0%{ opacity: 0; transform: translateY(-40px); }
  100%{ opacity: 1; transform: translateY(0); }
}

