/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./design-system/styles/theme.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  /* Primary Colors */
  --color-primary-navy: #07113A;
  --color-primary-dark-navy: #050B24;
  --color-primary-deep-indigo: #1A1F5A;

  /* Accent Colors */
  --color-accent-purple: #7B2FF7;
  --color-accent-magenta: #E91E8F;
  --color-accent-blue: #2F80ED;
  --color-accent-cyan: #38C6C8;
  --color-accent-green: #31C94C;

  /* Surface Colors */
  --color-surface-light: #F7F8FC;
  --color-surface-white: #FFFFFF;
  --color-surface-dark: #050B24;
  --color-surface-card: #0F1535;
  --color-surface-elevated: #1A1F5A;

  /* Border Colors */
  --color-border-light: #E5E7EF;
  --color-border-default: #2D3170;
  --color-border-hover: #7B2FF7;

  /* Text Colors */
  --color-text-primary: #0B123F;
  --color-text-secondary: #4A4F7A;
  --color-text-muted: #6B7280;
  --color-text-inverse: #FFFFFF;
  --color-text-accent: #7B2FF7;

  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, #07113A 0%, #7B2FF7 35%, #E91E8F 60%, #2F80ED 100%);
  --gradient-dark-app: linear-gradient(135deg, #050B24 0%, #111A4D 40%, #31106B 70%, #0B123F 100%);
  --gradient-purple-to-magenta: linear-gradient(135deg, #7B2FF7 0%, #E91E8F 100%);
  --gradient-blue-to-cyan: linear-gradient(135deg, #2F80ED 0%, #38C6C8 100%);

  /* Status Colors */
  --color-status-success: #31C94C;
  --color-status-warning: #F59E0B;
  --color-status-error: #EF4444;
  --color-status-info: #2F80ED;
  --color-status-neutral: #6B7280;

  /* Overlay Colors */
  --color-overlay-dark: rgba(5, 11, 36, 0.7);
  --color-overlay-light: rgba(255, 255, 255, 0.1);

  /* Typography - Font Families */
  --font-heading: 'Poppins', Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', Consolas, monospace;

  /* Typography - Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Typography - Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Typography - Line Heights */
  --line-height-none: 1;
  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;

  /* Spacing */
  --spacing-0: 0px;
  --spacing-4: 0.25rem;
  --spacing-8: 0.5rem;
  --spacing-12: 0.75rem;
  --spacing-16: 1rem;
  --spacing-20: 1.25rem;
  --spacing-24: 1.5rem;
  --spacing-32: 2rem;
  --spacing-40: 2.5rem;
  --spacing-48: 3rem;
  --spacing-64: 4rem;
  --spacing-80: 5rem;
  --spacing-96: 6rem;
  --spacing-128: 8rem;

  /* Border Radius */
  --radius-none: 0px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(5, 11, 36, 0.06), 0 1px 3px rgba(5, 11, 36, 0.1);
  --shadow-md: 0 4px 6px rgba(5, 11, 36, 0.07), 0 2px 4px rgba(5, 11, 36, 0.06);
  --shadow-lg: 0 10px 15px rgba(5, 11, 36, 0.1), 0 4px 6px rgba(5, 11, 36, 0.05);
  --shadow-xl: 0 20px 25px rgba(5, 11, 36, 0.12), 0 10px 10px rgba(5, 11, 36, 0.04);
  --shadow-2xl: 0 25px 50px rgba(5, 11, 36, 0.15);
  --shadow-focus: 0 0 0 3px rgba(123, 47, 247, 0.25);
  --shadow-glow-purple: 0 0 20px rgba(123, 47, 247, 0.3), 0 0 40px rgba(123, 47, 247, 0.1);
  --shadow-glow-blue: 0 0 20px rgba(47, 128, 237, 0.3), 0 0 40px rgba(47, 128, 237, 0.1);
  --shadow-inner: inset 0 2px 4px rgba(5, 11, 36, 0.06);

  /* Transition Tokens */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* Dark Theme Overrides */
.dark-theme {
  --color-surface-light: #0A0F2C;
  --color-surface-white: #0F1535;
  --color-border-light: #2D3170;
  --color-text-primary: #F7F8FC;
  --color-text-secondary: #B0B5D6;
  --color-text-muted: #6B7280;
  --color-overlay-light: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3), 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4), 0 10px 10px rgba(0, 0, 0, 0.2);
}

/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./design-system/styles/globals.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background-color: var(--color-surface-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

code,
pre,
kbd,
samp {
  font-family: var(--font-mono);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-border-default);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}

/* Selection */
::selection {
  background: var(--color-accent-purple);
  color: var(--color-text-inverse);
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--color-accent-purple);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Responsive Breakpoint Utility Classes */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }
}

/* Touch-friendly defaults */
@media (pointer: coarse) {
  body {
    -webkit-tap-highlight-color: rgba(123, 47, 247, 0.2);
    touch-action: manipulation;
  }
}

