

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; position: relative; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: #111827; background: #fff; -webkit-font-smoothing: antialiased; }

/* --- NAVBAR (COMPACT & ELEGANT WITH BLUE ACCENTS) --- */
#header-slot { position: sticky; top: 0; z-index: 1000; }
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
  transition: all 0.3s ease;
  padding: 8px 48px;
}
nav.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.12);
  padding: 6px 48px;
  border-bottom: 2px solid #1d4ed8;
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ── Left: Logo ── */
.nav-left {
  display: flex;
  align-items: center;
}
.nav-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
  background: #ffffff;
  border-radius: 10px;
  border: 1.5px solid #dbeafe;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.06);
  text-decoration: none;
  transition: all 0.25s ease;
}
.nav-logo-box:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
  transform: translateY(-1px);
}
.nav-logo-box img {
  max-height: 38px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 4px 2px;
  transition: all 0.25s ease;
  position: relative;
  letter-spacing: 0.01em;
}
/* Stylish Blue Line Under Text on Hover & Active */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 2px;
  transition: width 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover {
  color: #2563eb;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: #1d4ed8;
  font-weight: 800;
}
.nav-links a.active::after {
  width: 100%;
  background: #1d4ed8;
}

/* ── Right: Links, Auth Control Pod & Mobile Toggle ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
/* ── Clean Hand-Crafted Navbar Auth Pod ── */
.nav-auth-combo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  padding: 3px 4px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
}
.nav-auth-combo:hover {
  border-color: #94a3b8;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}
.btn-login-combo {
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 9999px;
  background: transparent;
  transition: all 0.2s ease;
}
.btn-login-combo:hover {
  color: #2563eb;
  background: #f8fafc;
}
.auth-combo-divider {
  width: 1px;
  height: 12px;
  background: #cbd5e1;
  margin: 0 2px;
}
.btn-register-combo {
  background: #2563eb;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 9999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.2);
}
.btn-register-combo svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.btn-register-combo:hover {
  background: #1d4ed8;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
}
.btn-register-combo:hover svg {
  transform: translateX(2px);
}

/* ── Clean Hand-Crafted Mobile Toggle Button ── */
.nav-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: all 0.2s ease;
  outline: none;
}
.nav-toggle:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.nav-toggle-box {
  width: 16px;
  height: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.nav-toggle-bar {
  width: 100%;
  height: 1.75px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
nav.menu-open .nav-toggle {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
nav.menu-open .bar-1 {
  transform: translateY(5.1px) rotate(45deg);
}
nav.menu-open .bar-2 {
  transform: translateY(-5.1px) rotate(-45deg);
}

/* ── Mobile Drawer Container ── */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 4px 8px;
  margin-top: 8px;
  border-top: 1px solid #f1f5f9;
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile-links a {
  color: #334155;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.nav-mobile-links a:hover {
  color: #2563eb;
  background: #f8fafc;
}

/* Mobile Auth Buttons Grid */
.nav-mobile-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}
.mobile-btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-btn-login:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.mobile-btn-trial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #ffffff !important;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-btn-trial:hover {
  background: #1d4ed8;
}

/* --- FOOTER (CRAFTED RESPONSIVE DESIGN) --- */
.site-footer {
  background: linear-gradient(180deg, #09132c 0%, #030816 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(79, 110, 247, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 48px 44px;
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  background: #ffffff;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-logo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 110, 247, 0.4);
}
.footer-logo-img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.fsocial {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.fsocial:hover {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}
.fsocial svg {
  width: 15px;
  height: 15px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 11px;
}
.footer-links a {
  color: #cbd5e1;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  max-width: 1320px;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 48px;
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: #94a3b8;
}
.footer-copy a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.footer-credit {
  font-size: 12.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-credit a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}
.footer-credit a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: #94a3b8;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #e2e8f0;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.fstatus-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

/* ══════════════════════════════
   FOOTER RESPONSIVE MEDIA QUERIES
   ══════════════════════════════ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
    padding: 48px 32px 36px;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
  .footer-brand-desc {
    max-width: 100%;
  }
  .footer-bottom {
    padding: 20px 32px;
    gap: 16px;
  }
}

/* Mobile Devices (max-width: 640px) */
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 28px;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
  .footer-col-title {
    font-size: 11.5px;
    margin-bottom: 14px;
  }
  .footer-links li {
    margin-bottom: 10px;
  }
  .footer-links a {
    font-size: 13px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 20px;
  }
  .footer-bottom-links {
    justify-content: center;
    gap: 16px;
  }
  .footer-credit {
    justify-content: center;
  }
}

/* Small Mobile Screens (max-width: 400px) */
@media (max-width: 400px) {
  .footer-top {
    padding: 32px 16px 24px;
  }
  .footer-logo-img {
    max-height: 32px;
  }
  .footer-brand-desc {
    font-size: 12.5px;
  }
  .footer-bottom {
    padding: 16px;
  }
}


/* --- BOOK A DEMO & BECOME A PARTNER POPUP MODAL (COMPACT & SLEEK) --- */
.demo-modal-backdrop,
.partner-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-modal-backdrop.active,
.partner-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.demo-modal-box,
.partner-modal-box {
  background: #ffffff;
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(2, 155, 251, 0.3), 0 0 0 1px rgba(2, 155, 251, 0.25);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: #0f172a;
}

.demo-modal-backdrop.active .demo-modal-box,
.partner-modal-backdrop.active .partner-modal-box {
  transform: scale(1) translateY(0);
}

.demo-modal-close,
.partner-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}
.demo-modal-close:hover,
.partner-modal-close:hover {
  background: #029bfb;
  color: #ffffff;
  border-color: #029bfb;
  transform: rotate(90deg) scale(1.08);
}

.demo-modal-grid,
.partner-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}

.demo-modal-info,
.partner-modal-info {
  background: radial-gradient(circle at 10% 20%, #112759 0%, #08122a 60%, #030712 100%);
  padding: 24px 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.demo-modal-info::before,
.partner-modal-info::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 155, 251, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.demo-modal-badge,
.partner-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3.5px 11px;
  border-radius: 99px;
  background: rgba(2, 155, 251, 0.16);
  border: 1px solid rgba(2, 155, 251, 0.4);
  color: #38bdf8;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  width: fit-content;
}
.demo-modal-badge svg,
.partner-modal-badge svg { width: 10px; height: 10px; fill: currentColor; }

.demo-modal-title,
.partner-modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #bae6fd 60%, #029bfb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.demo-modal-desc,
.partner-modal-desc {
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.demo-modal-checklist,
.partner-modal-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dm-check-item,
.pm-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.dm-check-icon,
.pm-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(2, 155, 251, 0.14);
  border: 1px solid rgba(2, 155, 251, 0.35);
  color: #029bfb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dm-check-icon svg,
.pm-check-icon svg { width: 11px; height: 11px; stroke-width: 2.5; }

.dm-trust-pill,
.pm-trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.dm-trust-pill svg,
.pm-trust-pill svg { width: 12px; height: 12px; color: #22c55e; flex-shrink: 0; }

.demo-modal-form-wrap,
.partner-modal-form-wrap {
  padding: 22px 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-form-header {
  margin-bottom: 10px;
}
.modal-form-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}
.modal-form-sub {
  font-size: 11px;
  color: #64748b;
  margin: 0;
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 0;
}

.modal-fg {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 6px;
}

.modal-fg label {
  font-size: 10.5px;
  font-weight: 700;
  color: #334155;
}

.modal-fg input,
.modal-fg select {
  width: 100%;
  padding: 7px 10px;
  border-radius: 7px;
  border: 1.5px solid #cbd5e1;
  font-size: 12px;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: all 0.2s ease;
}

.modal-fg input:focus,
.modal-fg select:focus {
  border-color: #029bfb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 155, 251, 0.16);
}

.modal-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #112759 0%, #029bfb 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 9.5px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  box-shadow: 0 5px 16px rgba(2, 155, 251, 0.32);
  transition: all 0.25s ease;
}

.modal-submit-btn:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 8px 22px rgba(2, 155, 251, 0.48);
}
.modal-submit-btn svg { width: 13px; height: 13px; }

.modal-error-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.modal-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: modalSpin 0.7s linear infinite;
  display: inline-block;
}

@keyframes modalSpin {
  to { transform: rotate(360deg); }
}

.modal-success-box {
  text-align: center;
  padding: 16px 8px;
}
.modal-success-box svg {
  width: 36px;
  height: 36px;
  color: #16a34a;
  margin-bottom: 6px;
}
.modal-success-box h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
}
.modal-success-box p {
  font-size: 11.5px;
  color: #475569;
}

@media (max-width: 680px) {
  .demo-modal-grid, .partner-modal-grid { grid-template-columns: 1fr; }
  .demo-modal-info, .partner-modal-info { padding: 18px 16px; }
  .demo-modal-form-wrap, .partner-modal-form-wrap { padding: 18px 16px; }
  .modal-form-row { grid-template-columns: 1fr; gap: 0; }
}

/* --- SHARED RESPONSIVE --- */
@media(max-width:1280px){
  nav{padding:14px 36px;}
  nav.scrolled{padding:12px 36px;}
  .nav-right{gap:16px;}
  .nav-links{gap:16px;}
}
@media(max-width:1080px){
  .nav-right .nav-links { display: none; }
  .nav-right .nav-auth-combo { display: inline-flex; }
  .nav-toggle { display: flex; }
  nav.menu-open .nav-mobile-menu { display: flex; }
}
@media(max-width:768px){
  nav{padding:10px 16px;}
  nav.scrolled, nav.menu-open{padding:10px 16px;}
  .nav-logo-box { padding: 4px 8px; }
  .nav-logo-box img { max-height: 34px; }
  .nav-right .nav-auth-combo { display: none; }
}
@media(max-width:480px){
  .nav-mobile-auth-grid { grid-template-columns: 1fr; gap: 8px; }
  .mobile-btn-login, .mobile-btn-trial { padding: 12px 14px; font-size: 13.5px; }
}

/* --- SMOOTH SCROLL & REVEAL --- */
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
a, button, input, textarea, select { touch-action: manipulation; }
.reveal-up { opacity: 0; transform: translateY(30px); will-change: opacity, transform; transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
