/* ========================================
   Design Tokens from Figma - LP_EA_010
   ======================================== */
:root {
  /* Colors */
  --primary: #6750a4;
  --primary-light: #eaddff;
  --primary-bg: rgba(103, 80, 164, 0.1);
  --bg-primary: #ffffff;
  --bg-secondary: #fef7ff;
  --bg-chat: #e6e0e9;
  --bg-chat-header: #ece6f0;
  --bg-chat-message: #f3edf7;
  --text-primary: #1d1b20;
  --text-secondary: #49454f;
  --text-white: #ffffff;
  --text-white-80: rgba(255, 255, 255, 0.8);
  --border-color: #cac4d0;
  --footer-border: rgba(33, 0, 93, 0.2);
  --footer-text: rgba(33, 0, 93, 0.7);

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-size-h1: 60px;
  --font-size-h2: 36px;
  --font-size-h3: 16px;
  --font-size-body: 18px;
  --font-size-medium: 16px;
  --font-size-small: 14px;
  --font-size-tiny: 12px;
  --line-height-h1: 75px;
  --line-height-h2: 40px;
  --line-height-body: 29.25px;
  --line-height-small: 22.75px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Spacing */
  --spacing-section: 94px;
  --spacing-xl: 64px;
  --spacing-lg: 48px;
  --spacing-md: 32px;
  --spacing-sm: 16px;
  --spacing-xs: 12px;

  /* Border Radius */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-full: 9999px;
}

/* ========================================
   Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-primary);
  background: var(--bg-primary);
}

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========================================
   Logo
   ======================================== */

.logo-wrapper {
  display: flex;
  justify-content: space-between;
}

.logo-wrapper div {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.logo-wrapper a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
}

.logo-wrapper a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 22px;
  flex-shrink: 0;
  margin-right: 12px;
}

.logo-title {
  font-size: 20px;
  line-height: 28px;
  color: var(--text-primary);
}

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

.footer-cards img {
  width: 40px;
  margin-left: 10px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  background: var(--primary);
  height: calc(var(--vh, 100vh) - 45px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-badge {
  background: #FFFFFF1A;
  display: inline-flex;
  align-items: center;
  color: var(--text-white);
  padding: 10px 16px;
  margin-bottom: 32px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  margin-right: 12px;
  flex-shrink: 0;
}

.hero-badge span {
  font-size: 14px;
  line-height: 20px;
}

.hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  padding-top: 40px;
  height: 100%;
}

.hero-content-left {
  width: 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-right: 2.5rem;
}

.hero-content-left-text {
  margin-bottom: auto;
  margin-top: auto;
}

.hero-content-left-text h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  font-weight: var(--font-weight-regular);
  color: var(--text-white);
  margin-bottom: var(--spacing-sm);
}

.hero-description {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-white-80);
  margin-bottom: var(--spacing-lg);
}

.hero-btn-cta {
  background: #fff;
  color: var(--primary);
  padding: 18px 32px;
  font-size: var(--font-size-medium);
  line-height: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0px 1px 2px 0px #0000004D;
  transition: all 0.3s ease;
}

.hero-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3), 0px 4px 8px 2px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Chat Window (Hero Right Side)
   ======================================== */
.hero-content-right {
  position: fixed;
  top: 12rem;
  right: 80px;
  z-index: 9999;
  max-width: 460px;
  width: 45%;
  max-height: 600px;
  height: 600px;
  flex-shrink: 0;
  z-index: 99;
}

.chat {
  background: var(--bg-chat);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chat-head {
  background: var(--bg-chat-header);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 20px;
}

.expert-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.expert-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.expert-avatar img {
  width: 100%;
}

.user-info h1 {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-regular);
  line-height: 20px;
  color: var(--text-primary);
  margin-bottom: 0;
}

.expert-online-text {
  font-size: var(--font-size-tiny);
  line-height: 16px;
  color: var(--text-secondary);
}

.chat-body {
  flex: 1;
  background: var(--bg-secondary);
  padding: 20px;
  overflow-y: auto;
}

.chat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-item-wrapper {
  display: flex;
  align-items: flex-start;
}

.chat-item-avatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  margin-right: 12px;
}

.chat-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.chat-item {
  background: var(--bg-chat-message);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

.chat-item p {
  font-size: var(--font-size-small);
  line-height: var(--line-height-small);
  color: var(--text-primary);
  margin: 0;
}

/* Chat Skeleton */
.skeleton {
  background: var(--bg-chat-message);
}

.skeleton-avatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 12px;
}

.chat-item-wrapper-skeleton {
  margin-bottom: 0.625rem;
  width: 80%;
}

.chat-item-skeleton {
  flex: 1;
}

.skeleton-message-content {
  width: 100%;
  height: 20px;
}

.chat-item .message.typing {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.chat-item .message.error-message {
  color: #dc3545;
}

.chat-item .message.typing span {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: var(--text-secondary);
  display: inline-block;
}

.chat-item .message.typing span:nth-child(1) {
  animation: typing 1s infinite 0s;
}

.chat-item .message.typing span:nth-child(2) {
  animation: typing 1s infinite 0.2s;
}

.chat-item .message.typing span:nth-child(3) {
  animation: typing 1s infinite 0.4s;
}

.chat-item-wrapper:last-child {
  margin-bottom: 0;
}

.chat-item-wrapper.right {
  align-self: flex-end;
}

.right .chat-item label {
  text-align: right;
}

.right .chat-item {
  background-color: var(--primary);
}

.right .chat-item .message {
  color: var(--text-white)
}

.chat-input-wrapper {
  padding: 16px;
  background: var(--bg-chat);
  border-top: 1px solid var(--border-color);
}

.chat-input-group {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.chat-input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #79747E;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-small);
  resize: none;
  margin-right: 12px;
}

.chat-input-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.btn-send {
  background: var(--primary);
  color: var(--text-white);
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: var(--font-size-medium);
  height: 48px;
}

.tooltip-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--text-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tooltip.visible {
  opacity: 1;
  visibility: visible;
}

.tooltip-arrow {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--vc-zinc-950);
}

/* ========================================
   Mobile Chat (Hidden by default)
   ======================================== */
.mobile-chat-block {
  display: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: 0.75rem;
  overflow: hidden;
}

.mobile-chat-block .chat {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-chat-block .chat-input-wrapper {
  border-top: 1px solid var(--vc-border);
}

.mobile-chat-block .chat-input-group {
  margin-bottom: 0;
}

.mobile-chat-block .btn-send {
  width: 100%;
  font-weight: 600;
}

.btn-close-chat-mobile {
  display: none;
}

/* ========================================
   Checkout Section
   ======================================== */
.checkout-outer-container {
  padding: var(--spacing-section) 0;
  background: var(--bg-secondary);
}

.checkout-inner-container {
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  width: 50%;
}

.checkout-inner-container h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-medium);
}

.checkout-container {
  max-width: 600px;
  margin: 0 auto;
}

.checkout-form-loader {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.loading {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.form-legal {
  margin-top: var(--spacing-md);
  font-size: var(--font-size-small);
  color: var(--text-secondary);
}

.form-legal span {
  cursor: pointer;
  text-decoration: underline;
}

/* ========================================
   Utility Classes
   ======================================== */
.hidden {
  display: none !important;
}

.hidden-mobile {
  display: block;
}

.hidden-desktop {
  display: none;
}

.block-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ========================================
   Legal Modals
   ======================================== */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.dialog-content {
  background: var(--bg-primary);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  margin: 20px;
}

/* ========================================
   Professional Assistance Section
   ======================================== */
.professional-section {
  padding: var(--spacing-section) 0;
  background: var(--bg-primary);
}

.professional-content {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.professional-image {
  width: 100%;
  max-width: 552px;
  height: auto;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.professional-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.professional-text h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
  margin-bottom: 24px;
}

.professional-features {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 0 auto;
}

.professional-feature {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: var(--spacing-md);
  background: var(--bg-chat-message);
}

.professional-feature:last-child {
  margin-bottom: 0;
}

.feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 12px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-content h3 {
  font-size: var(--font-size-medium);
  line-height: 24px;
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
  margin-bottom: 4px;
  display: inline;
}

.feature-content p {
  font-size: var(--font-size-small);
  line-height: 20px;
  color: var(--text-secondary);
  display: inline;
  margin: 0;
}

/* ========================================
   Features Grid Section
   ======================================== */
.features-grid-section {
  padding: var(--spacing-section) 0;
  background: var(--bg-chat-message);

}

.features-grid {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 64px;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  flex-shrink: 0;
  padding: 12px;
  margin-bottom: var(--spacing-sm);
}

.feature-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-card h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
  line-height: 24px;
  margin: 0;
}

.feature-card .feature-subtitle {
  font-size: var(--font-size-small);
  line-height: 20px;
  color: var(--primary);
  margin: 0;
}

.feature-card p {
  font-size: var(--font-size-small);
  line-height: 20px;
  color: var(--text-secondary);
  margin: 0;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
  position: relative;
  padding: var(--spacing-section) 0;
  background: var(--primary);
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.pricing-bg img {
  opacity: 0.2 !important;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.pricing-content {
  position: relative;
  z-index: 1;
  color: var(--text-white);
  width: 50%;
}

.pricing-content h2 {
  font-size: 36px;
  line-height: 40px;
  font-weight: var(--font-weight-regular);
  margin-bottom: var(--spacing-sm);
}

.pricing-subheading {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-white-80);
  margin-bottom: var(--spacing-lg);
}

.pricing-card {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: var(--spacing-md);
}

.pricing-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  margin-bottom: 9px;
}

.pricing-price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 48px;
  line-height: 48px;
  font-weight: var(--font-weight-regular);
  color: var(--text-white);
}

.price-plus {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  margin-bottom: var(--spacing-md);
}

.price-period {
  font-size: var(--font-size-body);
  color: var(--text-white-80);
}

.pricing-features {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  gap: var(--spacing-xs);
  align-items: flex-start;
  font-size: var(--font-size-small);
  line-height: var(--line-height-small);
  color: var(--text-white);
  margin-bottom: 14px;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) invert(1);
}

.pricing-cta {
  width: 100%;
  padding: 18px 32px;
  font-size: var(--font-size-medium);
  background: var(--bg-primary);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-top: 24px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3), 0px 4px 8px 2px rgba(0, 0, 0, 0.15);
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works-section {
  padding: var(--spacing-section) 0;
  background: var(--bg-primary);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.how-it-works-header h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.how-it-works-header p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-secondary);
  max-width: 672px;
  margin: 0 auto;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.how-it-works-card {
  background: var(--bg-secondary);
  padding: var(--spacing-md);
  margin-right: var(--spacing-md);
}

.how-it-works-card:last-child {
  margin-right: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  margin-bottom: var(--spacing-md);
}

.how-it-works-card h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.how-it-works-card p {
  font-size: var(--font-size-small);
  line-height: var(--line-height-small);
  color: var(--text-secondary);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--primary-light);
  padding: var(--spacing-lg) 0;
}

.footer-content {
  color: var(--footer-text);
  font-weight: 400;
}

.footer-description {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.footer-description a {
  color: var(--footer-text);
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  margin-right: 12px;
  flex-shrink: 0;
}

.footer-copyright {
  font-size: var(--font-size-small);
  line-height: 20px;
  color: var(--footer-text);
}

@media (min-width: 1500px) {
  .hero-content-right {
    right: 100px;
  }
}

@media(max-width: 1200px) {
  .hero-content-left {
    max-width: 50%;
  }

  .hero-content-right {
    right: 32px;
  }
}

@media (max-width: 1024px) {
  .hero-content-right {
    right: 24px;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .how-it-works-card {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
  }

  .how-it-works-card:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 28px;
    height: 100%;
  }

  .hero-content-left-text h1 {
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0px;
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: var(--font-size-medium);
    line-height: 16px;
    margin-bottom: var(--spacing-md);
  }

  .hero-btn-cta {
    display: none;
  }

  .hero-content-right {
    display: none;
  }

  .mobile-chat-block {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  .btn-close-chat-mobile {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    cursor: pointer;
    color: var(--text-primary);
  }

  .btn-close-chat-mobile img {
    width: 2rem;
    height: 2rem;
    color: var(--text-white);
  }

  .mobile-chat-block .chat {
    flex: 1;
    min-height: 0;
  }

  .mobile-chat-block.chat-modal-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }

  .hero-content-right.chat-modal-wrapper {
    display: flex;
    flex-direction: column;
    position: fixed;
    padding: 24px 16px;
    top: 0;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    max-height: 100%;
    z-index: 999;
    background-color: #fff;
  }

  .chat-modal-wrapper .chat {
    height: 100%;
    box-shadow: 0px 25px 50px -12px #00000040;
  }

  .chat-modal-wrapper .chat-input-group {
    margin-bottom: 0;
  }

  .chat-modal-wrapper .chat .btn-send {
    width: 100%;
    justify-content: center;
  }

  .hero-content-left {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    margin-right: 0;
    padding: 0;
    justify-content: flex-end;
    margin-top: 24px;
  }

  .hero-badge {
    display: none;
  }

  .professional-content {
    width: 100%;
  }

  .features-grid {
    width: 100%;
  }

  .pricing-content {
    width: 100%;
  }

  .features-grid {
    max-width: 100%;
  }

  .hidden-mobile {
    display: none;
  }

  .hidden-desktop {
    display: block;
  }

  .checkout-inner-container {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-copyright-container {
    display: block;
  }

  .footer-cards {
    margin-top: 16px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

@keyframes typing {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}