:root {
    /* --color-primary: #fdaa38;
    --color-primary-dark: #e08c1a;
    --color-primary-light: #ffd051;
    --color-secondary: #0f172a; */

    --color-primary: #304AA6;
    --color-primary-dark: #24387D;
    --color-primary-light: #5B73C9;
    --color-bg-light: #F5F6F8;
    --color-bg-dark: #0B1437;
    --card-white: #FFFFFF;
}

.text-dark {
    color: var(--color-primary-dark);
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

body, * {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

h1 {
    font-weight: 700 !important;
}

h2 {
    font-weight: 600 !important;
}

.ambient-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ambient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.08);
}

.inner-highlight {
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.soft-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(48, 74, 166, 0.1);
    color: var(--color-primary);
}

.primary-gradient {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 45%, var(--color-primary-light) 100%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
}

.card-hover-effect {
    transition: all 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 40px 80px rgba(0, 0, 0, 0.08), 0 12px 24px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.footer-col a, .footer-col button {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(48, 74, 166, 0.2); }
    50% { box-shadow: 0 8px 24px rgba(48, 74, 166, 0.4); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }

  h1, h2, h3 {
    animation: fadeInUp 0.6s ease-out;
  }
  p {
    animation: fadeInUp 0.7s ease-out;
  }