:root {
  --brand-purple: #3C4EF5;
  --brand-purple-hover: #2D3EE6;
  --text-primary: #232526;
  --text-secondary: #7b8996;
  --text-light: #9ca3af;
  --bg-light: #f8f9fa;
  --bg-purple-light: #f0f0ff;
  --border-light: #d6d9dc;
  --success-green: #10b981;
  --danger-red: #ef4444;
  --shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.03), 0px 2px 1px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background: white;
}

body.homepage,
body:not(.homepage) {
  background-image: url("../images/rs-hero-background.jpg");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  max-width: 100%;
}

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

.section-padding {
  padding: 64px 32px;
}

.text-center {
  text-align: center;
}

.heading-large {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.3;
}

.heading-xl {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.body-large {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.card-hover {
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 32px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border-light);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: var(--brand-purple);
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  display: flex;
  height: 38px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
}
.nav-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}
.nav-link.active {
  color: var(--brand-purple);
}

.btn {
  display: flex;
  height: 38px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 14px;
}
.btn-primary {
  background: var(--brand-purple);
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 2px 4px 0 rgba(0, 48, 194, 0.25), 0 4px 12px 2px rgba(0, 48, 194, 0.15), 0 1px 0 0 rgba(255, 255, 255, 0.2) inset, 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
}
.btn-primary:hover {
  background: var(--brand-purple-hover);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1px solid #7374BC;
  color: rgba(72, 71, 107, 0.9);
  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.btn-outline:hover {
  background: rgba(115, 116, 188, 0.1);
  border-color: #5A5B9A;
  color: #48476B;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(115, 116, 188, 0.2);
}
.btn-white {
  background: rgba(60, 78, 245, 0);
  color: rgba(72, 71, 107, 0.9);
  border: 1px solid #7374bc;
  border-radius: 8px;
  height: 44px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.btn-white:hover {
  background: var(--bg-light);
}

.btn-hero {
  display: flex;
  width: 150px;
  height: 48px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  line-height: 1;
}
.btn-hero.btn-primary {
  background: var(--brand-purple);
  box-shadow: 0 2px 4px 0 rgba(0, 48, 194, 0.25), 0 4px 12px 2px rgba(0, 48, 194, 0.15), 0 1px 0 0 rgba(255, 255, 255, 0.2) inset, 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
}
.btn-hero.btn-primary:hover {
  background: var(--brand-purple-hover);
  transform: translateY(-1px);
}
.btn-hero.btn-outline {
  background: transparent;
  border: 1px solid #7374BC;
  color: rgba(72, 71, 107, 0.9);
  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.btn-hero.btn-outline:hover {
  background: rgba(115, 116, 188, 0.1);
  border-color: #5A5B9A;
  color: #48476B;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(115, 116, 188, 0.2);
}

.hero {
  padding: 150px 32px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.hero h1 {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #2c313c;
  letter-spacing: -1.56px;
  line-height: normal;
  max-width: 742px;
  margin: 0;
}
.hero .highlight {
  background: linear-gradient(91.5deg, #2764ff 1.95%, #5900ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #47536b;
  line-height: 1.5;
  max-width: 598px;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.dashboard-preview {
  margin: 0 auto 64px;
  perspective: 1000px;
}

.dashboard-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.dashboard-image:hover {
  transform: rotateX(5deg) translateY(-10px);
}

.features {
  padding-left: 0;
  padding-right: 0;
}
.features h2 {
  margin-bottom: 24px;
  color: var(--brand-purple);
}
.features p {
  margin-bottom: 64px;
}

.feature-grid {
  margin-bottom: 64px;
}

.feature-card {
  border-radius: 12px;
  border: 1px solid #D8D9F2;
  background: linear-gradient(285deg, #F5F7FD 7.44%, #FBFCFF 99.3%);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.03), 0 2px 1px -1px rgba(0, 0, 0, 0.03);
  padding: 50px;
}
.feature-card h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: transparent;
}

.cta {
  background: #FBFCFF url("../images/rs-hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  border: 1px solid #D8D9F2;
  padding: 64px 32px;
  text-align: center;
  margin-bottom: 128px;
}
.cta-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.cta h2 {
  margin-bottom: 16px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.cta p {
  margin-bottom: 32px;
}

.footer {
  padding: 32px;
  background: white;
  border-top: 1px solid var(--border-light);
}
.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}
.footer-link:hover {
  color: var(--text-primary);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-light);
}
.footer-email {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 13px;
}
.footer-email:hover {
  color: var(--brand-purple);
}

body:not(.homepage) .hero .body-large {
  max-width: 550px;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin: 0;
}

.toggle-container {
  background: #ecedef;
  border-radius: 6px;
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  height: 36px;
  align-items: center;
}

.toggle-option {
  padding: 10px 12px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  border: none;
  color: rgba(35, 37, 38, 0.65);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.toggle-option.active {
  background: #ffffff;
  color: #232526;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.02), 0px 1px 6px -1px rgba(0, 0, 0, 0.02), 0px 1px 2px 0px rgba(0, 0, 0, 0.03);
}
.toggle-option:not(.active):hover {
  color: rgba(35, 37, 38, 0.8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(115, 116, 188, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}
.pricing-card.popular {
  border: 2px solid var(--brand-purple);
  transform: translateY(0);
}
.pricing-card.popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(60, 78, 245, 0.25);
}
.pricing-card .btn {
  margin-top: auto;
  width: 100% !important;
}

.popular-badge {
  position: absolute;
  top: 27px;
  right: 27px;
  background: rgba(60, 78, 245, 0.13);
  color: var(--brand-purple);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-header {
  margin-bottom: 42px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.plan-name {
  font-family: "Inter", sans-serif;
  font-size: 23px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.69px;
  margin-bottom: 0;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}
.price-container {
  display: flex;
  align-items: end;
  gap: 2px;
}
.price-amount {
  font-family: "Inter", sans-serif;
  font-size: 43px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -1.29px;
  line-height: 1;
}
.price-period {
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.69px;
  line-height: 1;
  padding-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-description {
  color: rgba(44, 49, 60, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}
.price-description .highlight {
  color: var(--brand-purple);
  font-weight: 500;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(24, 24, 26, 0.6);
  letter-spacing: -0.15px;
  line-height: 1.53;
}

.pricing-card .feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.enterprise-section {
  background: white;
  border-radius: 12px;
  padding: 60px 50px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(115, 116, 188, 0.4);
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.enterprise-section .enterprise-content {
  font-family: "Inter", sans-serif;
  font-size: 23px;
  letter-spacing: -0.69px;
  line-height: normal;
  color: var(--text-primary);
}
.enterprise-section .enterprise-content .enterprise-title {
  font-weight: 600;
}
.enterprise-section .enterprise-content .enterprise-subtitle {
  font-weight: 400;
}

.contact-section {
  text-align: center;
  margin-bottom: 48px;
}
.contact-section p {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-link {
  color: var(--brand-purple);
  text-decoration: none;
  font-weight: 500;
}
.contact-link:hover {
  text-decoration: underline;
}

.pricing-card .monthly-price,
.pricing-card .annual-price {
  transition: opacity 0.3s ease;
}

body:not(.annual-mode) .annual-price,
body.annual-mode .monthly-price {
  display: none;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  .hero {
    padding: 120px 24px 64px;
    gap: 48px;
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }
  .hero p {
    font-size: 16px;
  }
  .feature-card {
    padding: 40px;
  }
  .grid-auto {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 12px 16px;
  }
  .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
  }
  .nav {
    padding: 0;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-link {
    padding: 0 12px;
    font-size: 13px;
    height: 36px;
  }
  .btn {
    padding: 0 16px;
    height: 44px;
    font-size: 14px;
  }
  .header .btn {
    padding: 0 12px;
    height: 36px;
    font-size: 13px;
  }
  .btn-hero {
    width: 140px;
    height: 44px;
    font-size: 14px;
  }
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 80px 16px 48px;
    gap: 40px;
  }
  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .hero p {
    font-size: 16px;
    max-width: 500px;
  }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
  }
  .heading-xl {
    font-size: 36px;
    line-height: 1.2;
  }
  .heading-large {
    font-size: 32px;
    line-height: 1.3;
  }
  .body-large {
    font-size: 16px;
    max-width: 500px;
  }
  .dashboard-preview {
    margin: 0 auto 48px;
  }
  .dashboard-image {
    border-radius: 8px;
  }
  .features {
    padding: 48px 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 32px 24px;
  }
  .feature-card h3 {
    font-size: 22px;
  }
  .feature-item {
    font-size: 14px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-card {
    padding: 24px;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }
  .pricing-card .btn {
    height: 44px;
    font-size: 14px;
    padding: 0 16px;
  }
  .popular-badge {
    top: 20px;
    right: 20px;
    font-size: 12px;
    padding: 6px 12px;
    height: 26px;
  }
  .enterprise-section {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 24px;
  }
  .enterprise-section .enterprise-content {
    font-size: 20px;
  }
  .cta {
    padding: 48px 16px;
    margin-bottom: 80px;
  }
  .cta h2 {
    font-size: 28px;
  }
  .footer {
    padding: 24px 16px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-content .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 10px 12px;
  }
  .logo svg {
    width: 116px;
    height: auto;
  }
  .nav-links {
    gap: 6px;
  }
  .nav-link:not(.btn) {
    display: none;
  }
  .btn {
    padding: 0 16px;
    height: 42px;
    font-size: 13px;
  }
  .header .btn {
    padding: 0 10px;
    height: 34px;
    font-size: 12px;
  }
  .btn-hero {
    width: 130px;
    height: 42px;
    font-size: 13px;
    padding: 0 16px;
  }
  .container {
    padding: 0 12px;
  }
  .hero {
    padding: 60px 12px 40px;
    gap: 32px;
  }
  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.8px;
    line-height: 1.2;
  }
  .hero p {
    font-size: 15px;
    max-width: 400px;
  }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
  }
  .heading-xl {
    font-size: 28px;
    line-height: 1.2;
  }
  .heading-large {
    font-size: 26px;
    line-height: 1.3;
  }
  .body-large {
    font-size: 15px;
    max-width: 400px;
  }
  .dashboard-preview {
    margin: 0 auto 32px;
  }
  .features {
    padding: 40px 0;
  }
  .feature-card {
    padding: 24px 20px;
  }
  .feature-card h3 {
    font-size: 20px;
  }
  .feature-card p {
    font-size: 14px;
  }
  .pricing-grid {
    gap: 16px;
  }
  .pricing-card {
    padding: 20px;
    max-width: 350px;
  }
  .pricing-card .btn {
    height: 42px;
    font-size: 13px;
    padding: 0 16px;
  }
  .plan-name {
    font-size: 20px;
  }
  .price-amount {
    font-size: 36px;
  }
  .price-period {
    font-size: 20px;
  }
  .price-description {
    font-size: 15px;
  }
  .toggle-container {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .toggle-container .toggle-option {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 8px 10px;
  }
  .enterprise-section {
    padding: 32px 20px;
  }
  .enterprise-section .enterprise-content {
    font-size: 18px;
  }
  .contact-section {
    margin-bottom: 32px;
  }
  .contact-section p {
    font-size: 14px;
  }
  .cta {
    padding: 40px 12px;
    margin-bottom: 60px;
  }
  .cta h2 {
    font-size: 24px;
  }
  .cta p {
    font-size: 15px;
  }
  .footer {
    padding: 20px 12px;
  }
  .footer-links {
    gap: 12px;
  }
  .footer-copy,
  .footer-email {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .hero p {
    font-size: 14px;
  }
  .btn-hero {
    width: 120px;
    height: 40px;
    font-size: 12px;
  }
  .feature-card {
    padding: 20px 16px;
  }
  .feature-card h3 {
    font-size: 18px;
  }
  .feature-card p {
    font-size: 13px;
  }
  .pricing-card {
    padding: 16px;
  }
  .price-amount {
    font-size: 32px;
  }
  .toggle-container {
    max-width: 260px;
  }
  .toggle-container .toggle-option {
    font-size: 12px;
    padding: 6px 8px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.page-load-fade,
.page-load-fade-up {
  opacity: 0;
  transform: translateY(15px);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in.visible,
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.loaded .page-load-fade {
  animation: fadeIn 0.4s ease-out forwards;
}
body.loaded .page-load-fade-up {
  animation: fadeInUpSmall 0.5s ease-out forwards;
}
body.loaded .page-load-fade-up.delay-1 {
  animation-delay: 0.08s;
}
body.loaded .page-load-fade-up.delay-2 {
  animation-delay: 0.16s;
}
body.loaded .page-load-fade-up.delay-3 {
  animation-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-up,
  .page-load-fade,
  .page-load-fade-up {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/*# sourceMappingURL=styles.css.map */
