/* src/styles.css */
/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
@layer properties;
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 100;
  background: var(--bg-navbar);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  height: 70px;
  background: var(--bg-navbar-scrolled);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  cursor: pointer;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--secondary) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 0 15px var(--primary-glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--primary) 0%,
      var(--secondary) 100%);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-active);
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary-glow);
}
.theme-icon {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-toggle-btn:hover .theme-icon {
  transform: rotate(45deg);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 4px;
}
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background:
    radial-gradient(
      circle,
      rgba(2, 196, 159, 0.15) 0%,
      transparent 70%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background:
    radial-gradient(
      circle,
      rgba(0, 86, 69, 0.15) 0%,
      transparent 70%);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 580px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background:
    radial-gradient(
      circle,
      var(--primary-glow) 0%,
      transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}
.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 2px rgba(255, 255, 255, 0.1) inset;
  z-index: 1;
  animation: float 6s infinite ease-in-out;
  border: 1px solid var(--border-color);
}
.stats-section {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--primary) 0%,
      var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 196, 159, 0.3);
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 8px;
  background:
    linear-gradient(
      135deg,
      var(--gradient-start) 30%,
      var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}
.benefits {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background:
    linear-gradient(
      135deg,
      transparent 60%,
      var(--primary) 80%,
      var(--secondary) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.3;
  transition: opacity 0.4s;
}
.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(2, 196, 159, 0.15), 0 5px 15px rgba(0, 0, 0, 0.4);
  border-color: rgba(2, 196, 159, 0.3);
}
.benefit-card:hover::after {
  opacity: 1;
}
.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(2, 196, 159, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: all 0.3s;
  box-shadow: inset 0 0 10px rgba(2, 196, 159, 0.1);
}
.benefit-card:hover .benefit-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 0 20px var(--primary-glow);
}
.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.benefit-card p {
  font-size: 0.95rem;
}
.cta-banner {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.cta-box {
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(2, 196, 159, 0.1) 0%,
      rgba(0, 86, 69, 0.05) 100%);
  border: 1px solid rgba(2, 196, 159, 0.2);
}
.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.cta-box p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}
.footer {
  background: var(--bg-footer);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-col a:hover {
  color: var(--text-main);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-dim);
}
.credits {
  font-weight: 500;
  color: var(--text-muted);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay, rgba(2, 4, 10, 0.8));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  animation: fadeIn 0.3s both ease-out;
}
.modal-content {
  width: 100%;
  max-width: 650px;
  background: var(--bg-modal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(2, 196, 159, 0.15);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.4s 0.1s both cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: rotate(90deg);
}
.modal-inner {
  padding: 40px;
  max-height: 85vh;
  overflow-y: auto;
}
.modal-inner::-webkit-scrollbar {
  width: 6px;
}
.modal-inner::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.contact-header {
  margin-bottom: 30px;
  position: relative;
}
.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.contact-header .credits-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(2, 196, 159, 0.1);
  border: 1px solid rgba(2, 196, 159, 0.3);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.partner-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group-full {
  grid-column: span 2;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.form-input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  pointer-events: none;
  transition: color 0.3s;
}
.form-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.3s;
}
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--bg-input) inset !important;
  -webkit-text-fill-color: var(--text-main) !important;
  caret-color: var(--text-main) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(2, 196, 159, 0.2);
}
.form-input:focus + .form-input-icon {
  color: var(--primary);
}
textarea.form-input {
  padding-left: 16px;
  min-height: 100px;
  resize: vertical;
}
.form-error {
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.select-wrapper {
  position: relative;
  width: 100%;
}
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.select-wrapper::after {
  content: "\25bc";
  font-size: 0.75rem;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.upload-zone:hover,
.upload-zone.drag-active {
  border-color: var(--primary);
  background: rgba(2, 196, 159, 0.04);
}
.upload-zone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.upload-zone:hover .upload-zone-icon {
  background: rgba(2, 196, 159, 0.1);
  color: var(--primary);
  transform: scale(1.08);
}
.upload-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.upload-text span {
  color: var(--primary);
  font-weight: 600;
}
.upload-limits {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.file-preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 10px;
}
.file-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-icon {
  color: var(--primary);
}
.file-details {
  display: flex;
  flex-direction: column;
}
.file-name {
  font-size: 0.88rem;
  font-weight: 600;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-main);
}
.file-size {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.remove-file-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
}
.remove-file-btn:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
}
.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 24px;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.success-container h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.success-container p {
  max-width: 420px;
  margin-bottom: 30px;
}
.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}
.auth-tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.auth-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.oauth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.btn-oauth {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-oauth:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-active);
}
.divider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-color);
}
.auth-bottom-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 24px;
}
.auth-bottom-text span {
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
}
.auth-bottom-text span:hover {
  text-decoration: underline;
}
.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  padding: 0 10px;
}
.step-indicator-bar {
  position: absolute;
  top: 15px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
.step-indicator-progress {
  position: absolute;
  top: 15px;
  left: 30px;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--primary) 0%,
      var(--secondary) 100%);
  z-index: 2;
  transition: width 0.4s ease;
}
.step-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-modal);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 3;
  transition: all 0.3s;
}
.step-node.active {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}
.step-node.completed {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.step-node-label {
  position: absolute;
  top: 38px;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}
.step-node.active .step-node-label {
  color: var(--text-main);
}
.step-node.completed .step-node-label {
  color: var(--primary);
}
.form-flex-row {
  display: flex;
  gap: 16px;
}
.form-flex-row > div {
  flex: 1;
}
.card-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.card-option {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.01);
  text-align: left;
}
.card-option:hover {
  border-color: rgba(2, 196, 159, 0.4);
  background: rgba(2, 196, 159, 0.02);
}
.card-option.selected {
  border-color: var(--primary);
  background: rgba(2, 196, 159, 0.05);
  box-shadow: 0 0 15px rgba(2, 196, 159, 0.1);
}
.card-option-icon {
  margin-bottom: 12px;
  color: var(--text-dim);
}
.card-option.selected .card-option-icon {
  color: var(--primary);
}
.card-option h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.card-option p {
  font-size: 0.78rem;
  line-height: 1.4;
}
.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.animate-fade {
  animation: fadeIn 0.4s ease-out forwards;
}
.animate-slide {
  animation: slideUp 0.4s ease-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.4;
    filter: blur(40px);
  }
  100% {
    transform: scale(1.15);
    opacity: 0.6;
    filter: blur(50px);
  }
}
@keyframes successPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .navbar .container {
    padding: 0 16px;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero-content h1 {
    font-size: 2.3rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .partner-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .modal-inner {
    padding: 24px;
  }
  .card-options-grid {
    grid-template-columns: 1fr;
  }
  .form-flex-row {
    flex-direction: column;
    gap: 16px;
  }
}
.dashboard-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-main);
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: var(--font-sans);
}
.dashboard-sidebar {
  width: 280px;
  background: var(--bg-modal);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  box-sizing: border-box;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 10;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  cursor: pointer;
}
.sidebar-logo {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #0b111e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px var(--primary-glow);
}
.sidebar-brand-name {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  display: block;
}
.sidebar-brand-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.sidebar-node-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 30px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot.online {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}
.status-dot.offline {
  background: #64748b;
}
.sidebar-menu {
  flex: 1;
}
.menu-section-header {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 22px;
  margin-bottom: 8px;
  padding-left: 18px;
  opacity: 0.85;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-list li svg {
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.menu-list li:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}
.menu-list li:hover svg {
  opacity: 1;
}
.menu-list li.active {
  background: rgba(2, 196, 159, 0.06);
  color: var(--primary);
  border: 1px solid rgba(2, 196, 159, 0.15);
}
.menu-list li.active svg {
  opacity: 1;
  color: var(--primary);
}
.sidebar-footer {
  margin-top: auto;
}
.btn-logout {
  width: 100%;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  transition: all 0.2s ease;
}
.btn-logout:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}
.dashboard-main {
  flex: 1;
  padding: 40px;
  box-sizing: border-box;
  overflow-y: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -40px;
  margin-bottom: 35px;
  margin-inline: -40px;
  padding-inline: 40px;
  padding-top: 40px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  background: var(--bg-dark);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.dashboard-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.uptime-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #10b981;
}
.dashboard-content-panel {
  flex: 1;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}
.metric-card {
  padding: 24px;
  border-radius: 16px;
  transition: transform 0.25s ease;
}
.metric-card:hover {
  transform: translateY(-4px);
}
.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 700;
}
.metric-header svg {
  color: var(--primary);
}
.metric-value {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 14px 0 8px;
  letter-spacing: -0.02em;
}
.metric-comparison {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}
.metric-comparison.positive {
  color: #10b981;
}
.metric-comparison.negative {
  color: var(--text-dim);
}
.overview-visual-row {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 30px;
}
.visual-panel {
  padding: 26px;
  border-radius: 18px;
}
.visual-panel h3,
.nodes-panel h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.mock-chart-container {
  height: 220px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-top: 30px;
}
.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: right;
  width: 35px;
  font-weight: 600;
  padding-bottom: 24px;
  box-sizing: border-box;
}
.chart-bars-wrapper {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 180px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4px;
}
.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 10px;
  height: 100%;
  justify-content: flex-end;
}
.chart-bar-group span {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 700;
}
.chart-bar {
  width: 28px;
  border-radius: 8px 8px 0 0;
  background: rgba(2, 196, 159, 0.12);
  border: 1px solid rgba(2, 196, 159, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chart-bar-group:hover .chart-bar {
  background:
    linear-gradient(
      to top,
      var(--primary),
      var(--accent));
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  transform: scaleY(1.05);
}
.nodes-panel {
  padding: 26px;
  border-radius: 18px;
}
.nodes-status-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.node-status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}
.node-details {
  display: flex;
  align-items: center;
  gap: 12px;
}
.node-details strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}
.node-details span {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
}
.table-container {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.table-header-panel {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
}
.table-header-panel h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.table-header-panel p {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}
.dashboard-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-color);
  font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.08);
}
.dashboard-table td {
  padding: 18px 24px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}
.dashboard-table tbody tr {
  transition: background-color 0.2s ease;
}
.dashboard-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.015);
}
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1500;
  display: flex;
  justify-content: flex-end;
}
.drawer-content {
  width: 480px;
  height: 100%;
  background: var(--bg-modal);
  border-left: 1px solid var(--border-color);
  padding: 40px;
  box-sizing: border-box;
  overflow-y: auto;
  animation: slideDrawer 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.drawer-body h4 {
  margin: 30px 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
}
.drawer-tx-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.drawer-tx-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
}
.filters-panel {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 18px;
  align-items: center;
}
.dashboard-table th span {
  font-size: 0.75rem;
  margin-left: 4px;
  color: var(--primary);
}
.api-hash-display-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.hash-field span {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}
.hash-input-field {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 380px;
  padding: 18px 20px;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  border: none;
  transition: all 0.3s ease;
}
.toast-container.toast-success {
  background: #48a462;
}
.toast-container.toast-error {
  background: #d32f2f;
}
.toast-container.toast-info {
  background: #1976d2;
}
.animate-toast,
.animate-slideToast {
  animation: slideToast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.toast-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-top: -2px;
  margin-right: -4px;
  border-radius: 4px;
  color: #ffffff;
  opacity: 0.92;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.toast-close-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}
@keyframes slideToast {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDrawer {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@media (max-width: 1200px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .overview-visual-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .dashboard-layout {
    flex-direction: column;
  }
  .dashboard-sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 20px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-main {
    padding: 20px;
  }
  .api-split-layout {
    grid-template-columns: 1fr !important;
  }
}
@layer theme, base, components, utilities;
@layer theme {
  :root,
  :host {
    --font-sans:
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji";
    --font-mono:
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace;
    --color-slate-100: oklch(96.8% 0.007 247.896);
    --color-slate-800: oklch(27.9% 0.041 260.031);
    --spacing: 0.25rem;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --radius-sm: 0.25rem;
    --radius-2xl: 1rem;
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --animate-spin: spin 1s linear infinite;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type=button], [type=reset], [type=submit]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden=until-found])) {
    display: none !important;
  }
}
@layer utilities {
  .visible {
    visibility: visible;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .container {
    width: 100%;
  }
  @media (width >= 40rem) {
    .container {
      max-width: 40rem;
    }
  }
  @media (width >= 48rem) {
    .container {
      max-width: 48rem;
    }
  }
  @media (width >= 64rem) {
    .container {
      max-width: 64rem;
    }
  }
  @media (width >= 80rem) {
    .container {
      max-width: 80rem;
    }
  }
  @media (width >= 96rem) {
    .container {
      max-width: 96rem;
    }
  }
  .block {
    display: block;
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .table\! {
    display: table !important;
  }
  .flex-shrink {
    flex-shrink: 1;
  }
  .flex-grow {
    flex-grow: 1;
  }
  .border-collapse {
    border-collapse: collapse;
  }
  .transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .animate-spin {
    animation: var(--animate-spin);
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .justify-between {
    justify-content: space-between;
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .lowercase {
    text-transform: lowercase;
  }
  .uppercase {
    text-transform: uppercase;
  }
  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }
  .filter {
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
    backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
  }
  .transition {
    transition-property:
      color,
      background-color,
      border-color,
      outline-color,
      text-decoration-color,
      fill,
      stroke,
      --tw-gradient-from,
      --tw-gradient-via,
      --tw-gradient-to,
      opacity,
      box-shadow,
      transform,
      translate,
      scale,
      rotate,
      filter,
      -webkit-backdrop-filter,
      backdrop-filter,
      display,
      content-visibility,
      overlay,
      pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .duration-200 {
    --tw-duration: 200ms;
    transition-duration: 200ms;
  }
  @media (hover: hover) {
    .hover\:scale-105:hover {
      --tw-scale-x: 105%;
      --tw-scale-y: 105%;
      --tw-scale-z: 105%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }
  }
}
:root {
  --bg-dark: #0b111e;
  --bg-card: rgba(23, 33, 53, 0.6);
  --bg-input: rgba(15, 23, 42, 0.8);
  --bg-modal: rgba(11, 17, 30, 0.95);
  --bg-overlay: rgba(2, 4, 10, 0.8);
  --bg-login-card: #1d2433;
  --border-login-card: #2b354c;
  --bg-navbar: rgba(11, 17, 30, 0.75);
  --bg-navbar-scrolled: rgba(11, 17, 30, 0.92);
  --bg-button-secondary: rgba(255, 255, 255, 0.05);
  --bg-footer: #060911;
  --gradient-start: #ffffff;
  --gradient-mid: #02c49f;
  --gradient-end: #005645;
  --primary: #02c49f;
  --primary-glow: rgba(2, 196, 159, 0.35);
  --secondary: #005645;
  --secondary-glow: rgba(0, 86, 69, 0.35);
  --accent: #10b981;
  --accent-glow: rgba(16, 185, 129, 0.3);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-active: rgba(2, 196, 159, 0.6);
  --font-sans:
    "Nunito",
    system-ui,
    -apple-system,
    sans-serif;
  --font-display:
    "Nunito",
    system-ui,
    -apple-system,
    sans-serif;
  color-scheme: dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[data-theme=light] {
  --bg-dark: #eef5f3;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-input: #ffffff;
  --bg-modal: #ffffff;
  --bg-overlay: rgba(238, 245, 243, 0.8);
  --bg-login-card: #ffffff;
  --border-login-card: #eaf0f6;
  --bg-navbar: rgba(255, 255, 255, 0.75);
  --bg-navbar-scrolled: rgba(255, 255, 255, 0.95);
  --bg-button-secondary: rgba(15, 23, 42, 0.05);
  --bg-footer: #e3ece9;
  --gradient-start: #005645;
  --gradient-mid: #02c49f;
  --gradient-end: #0f172a;
  --primary: #005645;
  --primary-glow: rgba(0, 86, 69, 0.15);
  --secondary: #02c49f;
  --secondary-glow: rgba(2, 196, 159, 0.2);
  --accent: #10b981;
  --accent-glow: rgba(16, 185, 129, 0.15);
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  --border-color: rgba(15, 23, 42, 0.08);
  --border-active: rgba(0, 86, 69, 0.6);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-family: var(--font-sans);
  color: var(--text-main);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(2, 196, 159, 0.08) 0%,
      rgba(0, 86, 69, 0.02) 50%,
      var(--bg-dark) 100%);
  background-attachment: fixed;
  transition: background-color 0.3s ease, color 0.3s ease;
}
app-root {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.2;
}
p {
  color: var(--text-muted);
  line-height: 1.6;
}
a {
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-text {
  background:
    linear-gradient(
      135deg,
      var(--gradient-start) 0%,
      var(--gradient-mid) 60%,
      var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-alt {
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--accent) 50%,
      var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--accent) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(2, 196, 159, 0.5), 0 0 15px rgba(16, 185, 129, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background: var(--bg-button-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-active);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1.5px;
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--secondary) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}
.btn-outline:hover::before {
  opacity: 1;
}
.logo-img {
  transition: filter 0.3s ease;
}
:root:not([data-theme=light]) .logo-img {
  filter: invert(1) hue-rotate(180deg);
}
.loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(2, 196, 159, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@property --tw-rotate-x { syntax: "*"; inherits: false; }
@property --tw-rotate-y { syntax: "*"; inherits: false; }
@property --tw-rotate-z { syntax: "*"; inherits: false; }
@property --tw-skew-x { syntax: "*"; inherits: false; }
@property --tw-skew-y { syntax: "*"; inherits: false; }
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-blur { syntax: "*"; inherits: false; }
@property --tw-brightness { syntax: "*"; inherits: false; }
@property --tw-contrast { syntax: "*"; inherits: false; }
@property --tw-grayscale { syntax: "*"; inherits: false; }
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-invert { syntax: "*"; inherits: false; }
@property --tw-opacity { syntax: "*"; inherits: false; }
@property --tw-saturate { syntax: "*"; inherits: false; }
@property --tw-sepia { syntax: "*"; inherits: false; }
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
@property --tw-backdrop-blur { syntax: "*"; inherits: false; }
@property --tw-backdrop-brightness { syntax: "*"; inherits: false; }
@property --tw-backdrop-contrast { syntax: "*"; inherits: false; }
@property --tw-backdrop-grayscale { syntax: "*"; inherits: false; }
@property --tw-backdrop-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-backdrop-invert { syntax: "*"; inherits: false; }
@property --tw-backdrop-opacity { syntax: "*"; inherits: false; }
@property --tw-backdrop-saturate { syntax: "*"; inherits: false; }
@property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
@property --tw-duration { syntax: "*"; inherits: false; }
@property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *,
    ::before,
    ::after,
    ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
    }
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-QKAOHYTX.css.map */
