/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg-primary: #050508;
  --bg-secondary: #0a0a0f;
  --bg-tertiary: #101018;
  --bg-card: #0f0f19b3;
  --bg-glass: #ffffff08;
  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #0ea5e9 100%);
  --gradient-secondary: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #38bdf8 100%);
  --gradient-glow: linear-gradient(135deg, #8b5cf666, #6366f166, #0ea5e966);
  --gradient-subtle: linear-gradient(180deg, #8b5cf61a 0%, transparent 100%);
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --text-muted: #52525b;
  --accent-purple: #8b5cf6;
  --accent-indigo: #6366f1;
  --accent-cyan: #0ea5e9;
  --accent-green: #22c55e;
  --accent-amber: #f59e0b;
  --accent-coral: #f97316;
  --border-subtle: #ffffff0f;
  --border-medium: #ffffff1a;
  --border-accent: #8b5cf64d;
  --shadow-glow: 0 0 60px #8b5cf626;
  --shadow-card: 0 4px 24px #0006;
  --shadow-elevated: 0 8px 40px #00000080;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Consolas", "Monaco", "Courier New", monospace;
  --space-xs: .25rem;
  --space-sm: .5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: .15s ease;
  --transition-base: .25s ease;
  --transition-slow: .4s ease;
  --transition-spring: .5s cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-grid {
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(#8b5cf608 1px, #0000 1px), linear-gradient(90deg, #8b5cf608 1px, #0000 1px);
  background-size: 60px 60px;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.bg-glow {
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(at 30% 20%, #8b5cf614 0%, #0000 50%), radial-gradient(at 70% 60%, #0ea5e90f 0%, #0000 40%), radial-gradient(at 50% 80%, #6366f10d 0%, #0000 45%);
  width: 150%;
  height: 150%;
  position: fixed;
  top: -50%;
  left: -25%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -.01em;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  max-width: 65ch;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 var(--space-xl);
  margin: 0 auto;
}

.container-narrow {
  max-width: 960px;
}

.navbar {
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: var(--transition-base);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar.scrolled {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  background: #050508d9;
}

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

.logo {
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.logo-icon {
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
}

.nav-links {
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
  display: flex;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
  align-items: center;
  gap: var(--space-xs);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active:after {
  content: "";
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: pointer;
}

.nav-dropdown > a:after {
  content: "";
  width: 0;
  height: 0;
  margin-left: var(--space-xs);
  transition: var(--transition-fast);
  border-top: 4px solid;
  border-left: 4px solid #0000;
  border-right: 4px solid #0000;
}

.nav-dropdown:hover > a:after, .nav-dropdown.open > a:after {
  transform: rotate(180deg);
}

.dropdown-menu {
  top: calc(100% + var(--space-md));
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  min-width: 200px;
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-elevated);
  z-index: 1000;
  list-style: none;
  position: absolute;
  left: 0;
  transform: translateY(-10px);
}

.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: var(--space-md) var(--space-lg);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  font-size: .95rem;
  text-decoration: none;
  display: block;
}

.dropdown-menu a:hover, .dropdown-menu a.active {
  background: var(--bg-glass);
  color: var(--text-primary);
}

.dropdown-menu a.active:after {
  display: none;
}

.nav-cta {
  align-items: center;
  gap: var(--space-md);
  display: flex;
}

.mobile-menu-toggle {
  cursor: pointer;
  padding: var(--space-sm);
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  display: none;
}

.mobile-menu-toggle span {
  background: var(--text-primary);
  border-radius: var(--radius-full);
  width: 24px;
  height: 2px;
  transition: var(--transition-fast);
}

.btn {
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px #8b5cf64d;
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  background: #ffffff14;
}

.btn-ghost {
  color: var(--text-secondary);
  padding: var(--space-sm) var(--space-md);
  background: none;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

.btn-disabled {
  background: var(--bg-tertiary);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-disabled:hover {
  box-shadow: none;
  transform: none;
}

.hero {
  padding: calc(120px + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-size: .875rem;
  animation: .6s ease-out fadeInDown;
  display: inline-flex;
}

.hero-badge .badge-dot {
  background: var(--accent-green);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s infinite pulse;
}

.hero h1 {
  margin-bottom: var(--space-xl);
  animation: .6s ease-out .1s both fadeInUp;
}

.hero p {
  margin: 0 auto var(--space-2xl);
  max-width: 600px;
  font-size: 1.25rem;
  animation: .6s ease-out .2s both fadeInUp;
}

.hero-actions {
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  animation: .6s ease-out .3s both fadeInUp;
  display: flex;
}

.hero-visual {
  margin-top: var(--space-4xl);
  animation: .8s ease-out .4s both fadeInUp;
  position: relative;
}

.hero-mockup {
  border-radius: var(--radius-xl);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 1000px;
  box-shadow: var(--shadow-elevated), var(--shadow-glow);
  margin: 0 auto;
  overflow: hidden;
}

.mockup-header {
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
}

.mockup-dot {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.mockup-dot.red {
  background: #ff5f57;
}

.mockup-dot.yellow {
  background: #febc2e;
}

.mockup-dot.green {
  background: #28c840;
}

.mockup-content {
  padding: var(--space-2xl);
  justify-content: center;
  align-items: center;
  min-height: 300px;
  display: flex;
}

.mockup-code {
  font-family: var(--font-mono);
  text-align: left;
  font-size: .9rem;
  line-height: 1.8;
}

.code-line {
  opacity: 0;
  animation: .3s ease-out forwards typeIn;
}

.code-keyword {
  color: #c084fc;
}

.code-string {
  color: #22c55e;
}

.code-function {
  color: #38bdf8;
}

.code-comment {
  color: var(--text-muted);
}

.code-number {
  color: #f59e0b;
}

.section {
  padding: var(--space-4xl) 0;
  z-index: 1;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header p {
  margin: var(--space-lg) auto 0;
}

.features-grid {
  gap: var(--space-xl);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.feature-card {
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: "";
  background: var(--gradient-primary);
  opacity: 0;
  height: 2px;
  transition: var(--transition-base);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.feature-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.feature-card:hover:before {
  opacity: 1;
}

.feature-icon {
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  display: flex;
}

.feature-card h4 {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.pricing-section {
  padding: calc(120px + var(--space-2xl)) 0 var(--space-4xl);
}

.pricing-toggle {
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  display: flex;
}

.pricing-toggle span {
  color: var(--text-secondary);
  transition: var(--transition-fast);
  font-size: .95rem;
}

.pricing-toggle span.active {
  color: var(--text-primary);
}

.toggle-switch {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  cursor: pointer;
  width: 56px;
  height: 28px;
  transition: var(--transition-base);
  position: relative;
}

.toggle-switch:after {
  content: "";
  background: var(--gradient-primary);
  width: 20px;
  height: 20px;
  transition: var(--transition-base);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

.toggle-switch.annual:after {
  transform: translateX(28px);
}

.toggle-switch.annual {
  border-color: var(--accent-purple);
}

.discount-badge {
  padding: var(--space-xs) var(--space-sm);
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 700;
}

.pricing-grid {
  gap: var(--space-xl);
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  display: grid;
}

.pricing-card {
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.pricing-card.featured:before {
  content: "";
  background: var(--gradient-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.pricing-header {
  text-align: center;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-xl);
}

.pricing-name {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
  font-weight: 600;
}

.pricing-price {
  justify-content: center;
  align-items: baseline;
  gap: var(--space-xs);
  display: flex;
}

.pricing-amount {
  font-family: var(--font-display);
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3.5rem;
  font-weight: 800;
}

.pricing-period {
  color: var(--text-tertiary);
  font-size: .95rem;
}

.pricing-features {
  margin-bottom: var(--space-2xl);
  list-style: none;
}

.pricing-features li {
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-size: .95rem;
  display: flex;
}

.pricing-features li.included {
  color: var(--text-secondary);
}

.pricing-features li.excluded {
  color: var(--text-muted);
}

.feature-check {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  font-size: .75rem;
  display: flex;
}

.feature-check.included {
  color: var(--accent-green);
  background: #22c55e26;
}

.feature-check.excluded {
  color: var(--text-muted);
  background: #71717a26;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.pricing-note p {
  color: var(--text-secondary);
  margin: 0 auto;
  font-size: 1rem;
}

.download-section {
  padding: calc(120px + var(--space-2xl)) 0 var(--space-4xl);
}

.download-grid {
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.download-card {
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
}

.download-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.download-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-xl);
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  display: flex;
}

.download-card h4 {
  margin-bottom: var(--space-sm);
}

.download-version {
  color: var(--text-tertiary);
  margin-bottom: var(--space-xl);
  font-size: .875rem;
}

.download-card .btn {
  width: 100%;
}

.download-requirements {
  margin-top: var(--space-3xl);
  text-align: center;
}

.download-requirements h4 {
  margin-bottom: var(--space-lg);
}

.requirements-list {
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  display: flex;
}

.requirement-item {
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: .95rem;
  display: flex;
}

.requirement-item svg {
  color: var(--accent-green);
}

.footer {
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-4xl) 0 var(--space-2xl);
  background: linear-gradient(#0000 0%, #8b5cf605 100%);
  position: relative;
}

.footer-grid {
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
  grid-template-columns: 2fr repeat(3, 1fr);
  display: grid;
}

.footer-brand p {
  color: var(--text-tertiary);
  margin-top: var(--space-lg);
  max-width: 280px;
  font-size: .95rem;
}

.footer-column h5 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-tertiary);
  margin-bottom: var(--space-lg);
  font-size: .85rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-md);
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
  font-size: .95rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: .875rem;
}

.footer-social {
  gap: var(--space-md);
  display: flex;
}

.footer-social a {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-social a:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border-accent);
}

.legal-section {
  padding: calc(120px + var(--space-2xl)) 0 var(--space-4xl);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: var(--space-md);
}

.legal-date {
  color: var(--text-tertiary);
  margin-bottom: var(--space-3xl);
  font-size: .95rem;
}

.legal-content h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  font-size: 1.25rem;
}

.legal-content p {
  margin-bottom: var(--space-lg);
}

.legal-content ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@keyframes typeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.reveal {
  opacity: 0;
  transition: opacity .6s ease-out, transform .6s ease-out;
  transform: translateY(30px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .features-grid, .pricing-grid, .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    transform: none;
  }

  .footer-grid {
    gap: var(--space-2xl);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-xl);
    gap: var(--space-lg);
    flex-direction: column;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: var(--space-lg);
    margin-top: var(--space-sm);
    border: none;
    position: static;
    transform: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .features-grid, .pricing-grid, .download-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    grid-column: span 1;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    margin: var(--space-lg) auto 0;
  }

  .footer-bottom {
    gap: var(--space-lg);
    text-align: center;
    flex-direction: column;
  }

  .requirements-list {
    flex-direction: column;
    align-items: center;
  }
}

.auth-modal-overlay {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 10000;
  padding: var(--space-lg);
  background: #000c;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.auth-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  box-shadow: var(--shadow-elevated);
  overflow-y: auto;
}

.auth-modal-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.auth-modal-close {
  color: var(--text-secondary);
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  background: none;
  border: none;
}

.auth-modal-close:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.auth-modal-content {
  padding: var(--space-xl);
}

.auth-tabs {
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
}

.auth-tab {
  color: var(--text-secondary);
  padding: var(--space-md) 0;
  cursor: pointer;
  transition: var(--transition-base);
  background: none;
  border: none;
  border-bottom: 2px solid #0000;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  bottom: -1px;
}

.auth-tab.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent-purple);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 700;
}

.auth-subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.btn-google {
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-base);
  margin-bottom: var(--space-lg);
  font-size: .95rem;
  font-weight: 500;
  display: flex;
}

.btn-google:hover {
  background: var(--bg-card);
  border-color: var(--border-accent);
}

.auth-divider {
  text-align: center;
  margin: var(--space-xl) 0;
  color: var(--text-tertiary);
  align-items: center;
  font-size: .875rem;
  display: flex;
}

.auth-divider:before, .auth-divider:after {
  content: "";
  border-bottom: 1px solid var(--border-subtle);
  flex: 1;
}

.auth-divider span {
  padding: 0 var(--space-md);
}

.auth-form-fields {
  gap: var(--space-lg);
  flex-direction: column;
  display: flex;
}

.form-group {
  gap: var(--space-sm);
  flex-direction: column;
  display: flex;
}

.form-group label {
  color: var(--text-primary);
  font-size: .875rem;
  font-weight: 500;
}

.form-group input {
  padding: var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: var(--transition-base);
  font-size: .95rem;
}

.form-group input:focus {
  border-color: var(--accent-purple);
  outline: none;
  box-shadow: 0 0 0 3px #8b5cf61a;
}

.form-hint {
  color: var(--text-tertiary);
  margin-top: var(--space-xs);
  font-size: .75rem;
}

.form-options {
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  display: flex;
}

.checkbox-label {
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
}

.checkbox-label input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.checkbox-label a {
  color: var(--accent-purple);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.forgot-password {
  color: var(--accent-purple);
  font-size: .875rem;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-full {
  width: 100%;
  margin-top: var(--space-sm);
}

.dashboard-container {
  background: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dashboard-container:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(at 20% 30%, #8b5cf61a 0%, #0000 50%), radial-gradient(at 80% 70%, #0ea5e914 0%, #0000 50%);
  position: fixed;
  inset: 0;
}

.dashboard-sidebar {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border-subtle);
  z-index: 100;
  width: 280px;
  transition: var(--transition-base);
  background: #0a0a0fcc;
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.sidebar-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-nav {
  padding: var(--space-lg);
  gap: var(--space-xs);
  flex-direction: column;
  flex: 1;
  display: flex;
  overflow-y: auto;
}

.nav-item {
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-item:before {
  content: "";
  background: var(--gradient-primary);
  width: 3px;
  transition: var(--transition-base);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
}

.nav-item:hover {
  color: var(--text-primary);
  background: #8b5cf61a;
  transform: translateX(4px);
}

.nav-item.active {
  color: var(--text-primary);
  background: #8b5cf626;
}

.nav-item.active:before {
  transform: scaleY(1);
}

.sidebar-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.user-profile {
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: #8b5cf60d;
  border: 1px solid #8b5cf61a;
  display: flex;
}

.user-avatar {
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .95rem;
  font-weight: 600;
  overflow: hidden;
}

.user-email {
  color: var(--text-tertiary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .8rem;
  overflow: hidden;
}

.btn-signout {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
  background: #ffffff0d;
  font-size: .9rem;
  font-weight: 500;
}

.btn-signout:hover {
  color: var(--text-primary);
  border-color: var(--border-accent);
  background: #ffffff1a;
}

.dashboard-main {
  z-index: 1;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
  margin-left: 280px;
  display: flex;
  position: relative;
}

.dashboard-header {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-xl);
  z-index: 50;
  background: #0a0a0f99;
  position: sticky;
  top: 0;
}

.header-content {
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}

.page-title {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.header-actions {
  align-items: center;
  gap: var(--space-md);
  display: flex;
}

.btn-icon {
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
  background: #ffffff0d;
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-icon:hover {
  color: var(--text-primary);
  border-color: var(--border-accent);
  background: #ffffff1a;
  transform: translateY(-2px);
}

.dashboard-content {
  padding: var(--space-xl);
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.content-section {
  animation: .4s ease-out fadeIn;
  display: none;
}

.content-section.active {
  display: block;
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  font-weight: 700;
}

.section-description {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1.1rem;
}

.stats-grid {
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  display: grid;
}

.stat-card {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
  background: #0f0f1999;
  position: relative;
  overflow: hidden;
}

.stat-card:before {
  content: "";
  background: var(--gradient-primary);
  height: 3px;
  transition: var(--transition-base);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.stat-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px #8b5cf626;
}

.stat-card:hover:before {
  transform: scaleX(1);
}

.stat-header {
  margin-bottom: var(--space-md);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.stat-header h3 {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
  font-size: .9rem;
  font-weight: 600;
}

.stat-header svg {
  color: var(--accent-purple);
  opacity: .6;
}

.stat-value {
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-change {
  color: var(--text-tertiary);
  align-items: center;
  gap: var(--space-xs);
  font-size: .875rem;
  display: flex;
}

.stat-change.positive {
  color: var(--accent-green);
}

.stat-change.negative {
  color: var(--accent-coral);
}

.stat-change.neutral {
  color: var(--text-tertiary);
}

.content-grid {
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  display: grid;
}

.content-card {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
  background: #0f0f1999;
}

.content-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 32px #8b5cf61a;
}

.content-card h3 {
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
}

.activity-list {
  gap: var(--space-md);
  flex-direction: column;
  display: flex;
}

.activity-item {
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-base);
  background: #ffffff08;
  display: flex;
}

.activity-item:hover {
  border-color: var(--border-medium);
  background: #ffffff0d;
  transform: translateX(4px);
}

.activity-icon {
  border-radius: var(--radius-md);
  width: 32px;
  height: 32px;
  color: var(--accent-purple);
  background: #8b5cf626;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.activity-content {
  flex: 1;
}

.activity-title {
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  font-size: .95rem;
  font-weight: 500;
}

.activity-time {
  color: var(--text-tertiary);
  font-size: .8rem;
}

.action-buttons {
  gap: var(--space-md);
  flex-direction: column;
  display: flex;
}

.action-btn {
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-base);
  text-align: left;
  background: #ffffff0d;
  font-size: .95rem;
  font-weight: 500;
  display: flex;
}

.action-btn:hover {
  border-color: var(--accent-purple);
  background: #8b5cf626;
  transform: translateX(4px);
}

.action-btn svg {
  color: var(--accent-purple);
  flex-shrink: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-group input, .form-group select, .form-group textarea {
  padding: var(--space-md);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: var(--transition-base);
  width: 100%;
  font-size: .95rem;
  font-family: var(--font-body);
  background: #0f0f19cc;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-purple);
  background: #0f0f19f2;
  outline: none;
  box-shadow: 0 0 0 3px #8b5cf626;
}

.form-group input::placeholder {
  color: var(--text-tertiary);
}

.auth-modal {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-subtle);
  background: #0a0a0ff2;
  animation: .3s ease-out slideIn;
  box-shadow: 0 20px 60px #00000080, 0 0 0 1px #8b5cf61a;
}

.auth-modal-overlay {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #000000d9;
}

.auth-tab {
  position: relative;
}

.auth-tab.active:after {
  content: "";
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
  }

  .dashboard-sidebar.open {
    transform: translateX(0);
  }

  .dashboard-main {
    margin-left: 0;
  }

  .stats-grid, .content-grid {
    grid-template-columns: 1fr;
  }

  .auth-modal {
    max-width: 100%;
    margin: 1rem;
  }
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary:before {
  content: "";
  background: linear-gradient(90deg, #0000, #fff3, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.btn-primary:hover:before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px #8b5cf666;
}

.btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

.form-group input:focus, .form-group select:focus {
  transform: translateY(-1px);
}

a, button, input, select {
  transition: all .2s;
}

.glass {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #8b5cf633;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  border-radius: var(--radius-full);
  background: #8b5cf64d;
}

::-webkit-scrollbar-thumb:hover {
  background: #8b5cf680;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-purple) !important;
  background: #0f0f19f2 !important;
  box-shadow: 0 0 0 3px #8b5cf626 !important;
}

.auth-tab {
  transition: all .2s;
  position: relative;
}

.auth-tab:hover, .auth-tab.active {
  color: var(--text-primary);
}

.auth-tab.active:after {
  content: "";
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  height: 2px;
  animation: .3s ease-out slideIn;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.logo {
  transition: transform .2s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  transition: transform .3s;
}

.logo:hover .logo-icon {
  transform: rotate(5deg)scale(1.1);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .6s linear infinite spin;
  display: inline-block;
}

.content-card, .stat-card {
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.content-card:hover, .stat-card:hover {
  transform: translateY(-2px);
}

.content-section {
  animation: .4s ease-out fadeIn;
}

button:active {
  transform: scale(.98);
}

::selection {
  color: var(--text-primary);
  background: #8b5cf64d;
}

a {
  transition: color .2s;
}

a:hover {
  color: var(--accent-purple);
}

input:invalid:not(:placeholder-shown) {
  border-color: var(--accent-coral);
}

input:valid:not(:placeholder-shown) {
  border-color: var(--accent-green);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-position: right .75rem center;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b5cf6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

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