:root {
  --background: #f0f2f5;
  --surface: #ffffff;
  --surface-variant: #f5f8fc;
  --text-primary: #2c3e50;
  --text-secondary: #5c7089;
  --border-color: rgba(0, 0, 0, 0.08);
  --divider: rgba(0, 0, 0, 0.04);
  --hover: rgba(50, 115, 220, 0.04);
  --selected: rgba(50, 115, 220, 0.08);
  --appbar-bg: #ffffff;
  --drawer-bg: #ffffff;
  --drawer-border: rgba(0, 0, 0, 0.04);
  --card-bg: #ffffff;
  --color-primary: #3273dc;
  --color-primary-light: #4a89dc;
  --color-primary-dark: #2661c7;
  --color-primary-rgb: 50, 115, 220;
  --color-secondary: #00d1b2;
  --color-secondary-light: #00f3d1;
  --color-secondary-dark: #00a693;
  --color-secondary-rgb: 0, 209, 178;
  --color-success: #2661c7;
  --color-success-light: #3273dc;
  --color-success-dark: #1e4b94;
  --color-success-rgb: 38, 97, 199;
  --color-warning: #ffdd57;
  --color-warning-light: #ffe97d;
  --color-warning-dark: #e6c64c;
  --color-warning-rgb: 255, 221, 87;
  --color-error: #ff3860;
  --color-error-light: #ff5b7f;
  --color-error-dark: #e6324d;
  --color-error-rgb: 255, 56, 96;
  --color-info: #3498db;
  --color-info-light: #5dade2;
  --color-info-dark: #2980b9;
  --color-info-rgb: 52, 152, 219;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
  --spacing-5xl: 12rem;
  --border-radius-xs: 2px;
  --border-radius-sm: 4px;
  --border-radius-md: 6px;
  --border-radius-lg: 8px;
  --border-radius-xl: 12px;
  --border-radius-2xl: 16px;
  --border-radius-3xl: 24px;
  --border-radius-4xl: 32px;
  --border-radius-5xl: 48px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-3xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-4xl: 0 20px 56px rgba(0, 0, 0, 0.18);
  --shadow-5xl: 0 24px 64px rgba(0, 0, 0, 0.2);
}
:root .dark-theme {
  --background: #121212;
  --surface: #1e1e1e;
  --surface-variant: #2c2c2c;
  --text-primary: #f5f5f5;
  --text-secondary: #aaaaaa;
  --border-color: rgba(255, 255, 255, 0.12);
  --divider: rgba(255, 255, 255, 0.08);
  --hover: rgba(50, 115, 220, 0.08);
  --selected: rgba(50, 115, 220, 0.12);
  --appbar-bg: #1e1e1e;
  --drawer-bg: #1e1e1e;
  --drawer-border: rgba(255, 255, 255, 0.08);
  --card-bg: #1e1e1e;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  background-color: #f7f9fc;
  /* height: 100%; */ /* Removed - causes AOS issues */
  width: 100%;
  overflow-x: hidden;
}

#app, .blazor-app {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

a {
  color: #3273dc;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #4a89dc;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.5rem;
}

.hero-section {
  position: relative;
  padding: 3rem 1rem 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  left: 0;
  right: 0;
  color: white;
  display: flex;
  flex-direction: column;
}
.hero-section .container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-section__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
  min-height: calc(100vh - 6rem);
  position: relative;
  z-index: 2;
}
.hero-section__text {
  color: #ffffff;
  position: relative;
  z-index: 3;
}
.hero-section__title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.5px;
  opacity: 1;
  animation: fadeInUp 0.8s ease-out;
}
.hero-section__gradient-text {
  background: linear-gradient(135deg, #ffcc33 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-section__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 90%;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-section__logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}
.hero-section__input {
  margin-bottom: 2.5rem;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-section__input-wrapper {
  display: flex;
  margin-bottom: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-section__input-wrapper:focus-within {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.hero-section__input-field {
  flex: 1;
  border: none;
  outline: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  color: #333;
  background: transparent;
}
.hero-section__input-field::placeholder {
  color: #a0a0a0;
}
.hero-section__dashboard {
  margin-bottom: 2.5rem;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-section__dashboard-content {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  gap: 2rem;
  transition: all 0.3s ease;
}
.hero-section__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-section__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-section__feature i {
  color: #ffffff;
  font-size: 1.1rem;
}
.hero-section__feature span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 1400px) {
  .hero-section__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 1200px) {
  .hero-section__title {
    font-size: 3.25rem;
  }
  .hero-section__subtitle {
    font-size: 1.15rem;
  }
}
@media (max-width: 992px) {
  .hero-section {
    padding: 2rem 1rem 2rem;
  }
  .hero-section__logo {
    top: 1.5rem;
    left: 1.5rem;
  }
  .hero-section__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    min-height: calc(100vh - 4rem);
  }
  .hero-section__title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
  }
  .hero-section__subtitle {
    max-width: 100%;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
  }
  .hero-section__features {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 1.5rem 0.75rem 2rem;
  }
  .hero-section__logo {
    top: 1.25rem;
    left: 1.25rem;
  }
  .hero-section__content {
    gap: 1.5rem;
    min-height: calc(100vh - 3.5rem);
  }
  .hero-section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero-section__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-section__input-field {
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
  }
  .hero-section__dashboard-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding: 1rem 0.5rem 2rem;
  }
  .hero-section__logo {
    top: 1rem;
    left: 1rem;
  }
  .hero-section__content {
    gap: 1rem;
    min-height: calc(100vh - 2rem);
  }
  .hero-section__title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  .hero-section__subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .hero-section__input-field {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .hero-section__dashboard-content {
    padding: 1rem;
    gap: 0.75rem;
  }
}
@media (max-width: 400px) {
  .hero-section {
    padding: 1rem 0.5rem 1.5rem;
  }
  .hero-section__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .hero-section__subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .hero-section__input-field {
    padding: 0.8rem 0.9rem;
    font-size: 0.9rem;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
}

.loading-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/*# sourceMappingURL=critical.css.map */
