/* ==========================================================================
   INTEGNI - Traditional Vanilla CSS Stylesheet
   Design System: Corporate Enterprise Security & Compliance Dark Theme
   ========================================================================== */

/* --- CSS CUSTOM PROPERTIES (DESIGN SYSTEM TOKENS) --- */
:root {
  --color-slate-950: #020617;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-500: #64748b;
  --color-slate-400: #94a3b8;
  --color-slate-300: #cbd5e1;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-white: #ffffff;

  --color-blue-600: #2563eb;
  --color-blue-500: #3b82f6;
  --color-blue-400: #60a5fa;
  --color-blue-300: #93c5fd;
  --color-blue-200: #bfdbfe;
  --color-blue-bg: rgba(37, 99, 235, 0.2);

  --color-emerald-600: #059669;
  --color-emerald-500: #10b981;
  --color-emerald-400: #34d399;
  --color-emerald-300: #6ee7b7;
  --color-emerald-bg: rgba(16, 185, 129, 0.2);

  --color-rose-600: #e11d48;
  --color-rose-500: #f43f5e;
  --color-rose-400: #fb7185;
  --color-rose-300: #fca5a5;
  --color-rose-bg: rgba(244, 63, 94, 0.2);

  --color-amber-500: #f59e0b;
  --color-amber-400: #fbbf24;

  --color-indigo-500: #6366f1;
  --color-indigo-400: #818cf8;

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  font-family: var(--font-sans);
  background-color: var(--color-slate-950);
  color: var(--color-slate-100);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background-color: var(--color-slate-950);
  color: var(--color-slate-100);
  overflow-x: hidden;
}

::selection {
  background-color: var(--color-blue-600);
  color: var(--color-white);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-slate-950);
}
::-webkit-scrollbar-thumb {
  background: var(--color-slate-800);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-slate-700);
}

/* --- LAYOUT CONTAINERS --- */
.max-w-7xl {
  max-width: 80rem; /* 1280px */
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-sm {
  max-width: 24rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* --- FLEXBOX UTILITIES --- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

/* --- GRID UTILITIES --- */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
}

/* Gaps */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-16 > * + * { margin-top: 4rem; }

/* --- TYPOGRAPHY & TEXT UTILITIES --- */
.font-mono { font-family: var(--font-mono); }
.font-sans { font-family: var(--font-sans); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

@media (min-width: 640px) {
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tight { letter-spacing: -0.025em; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Text Colors */
.text-white { color: var(--color-white); }
.text-slate-100 { color: var(--color-slate-100); }
.text-slate-200 { color: var(--color-slate-200); }
.text-slate-300 { color: var(--color-slate-300); }
.text-slate-400 { color: var(--color-slate-400); }
.text-slate-500 { color: var(--color-slate-500); }

.text-blue-400 { color: var(--color-blue-400); }
.text-blue-300 { color: var(--color-blue-300); }
.text-blue-200 { color: var(--color-blue-200); }
.text-blue-100 { color: #dbeafe; }

.text-emerald-400 { color: var(--color-emerald-400); }
.text-emerald-300 { color: var(--color-emerald-300); }

.text-rose-400 { color: var(--color-rose-400); }
.text-amber-400 { color: var(--color-amber-400); }
.text-indigo-400 { color: var(--color-indigo-400); }

.hover\:text-white:hover { color: var(--color-white); }
.hover\:text-blue-400:hover { color: var(--color-blue-400); }

/* --- BACKGROUNDS & BORDERS --- */
.bg-slate-950 { background-color: var(--color-slate-950); }
.bg-slate-900 { background-color: var(--color-slate-900); }
.bg-slate-800 { background-color: var(--color-slate-800); }
.bg-blue-600 { background-color: var(--color-blue-600); }
.bg-blue-500 { background-color: var(--color-blue-500); }
.bg-blue-700\/60 { background-color: rgba(29, 78, 216, 0.6); }

.bg-emerald-600 { background-color: var(--color-emerald-600); }
.bg-rose-600 { background-color: var(--color-rose-600); }
.bg-slate-100 { background-color: var(--color-slate-100); }

.bg-blue-600\/20 { background-color: var(--color-blue-bg); }
.bg-emerald-500\/20 { background-color: var(--color-emerald-bg); }
.bg-rose-500\/20 { background-color: var(--color-rose-bg); }
.bg-rose-950\/40 { background-color: rgba(76, 5, 25, 0.4); }
.bg-emerald-950\/40 { background-color: rgba(6, 78, 59, 0.4); }
.bg-slate-950\/80 { background-color: rgba(2, 6, 23, 0.8); }
.bg-slate-950\/60 { background-color: rgba(2, 6, 23, 0.6); }

.border { border: 1px solid var(--border-subtle); }
.border-b { border-bottom: 1px solid var(--border-subtle); }
.border-t { border-top: 1px solid var(--border-subtle); }

.border-slate-800 { border-color: rgba(255, 255, 255, 0.1); }
.border-slate-700 { border-color: var(--color-slate-700); }
.border-blue-500\/30 { border-color: rgba(59, 130, 246, 0.3); }
.border-blue-400 { border-color: var(--color-blue-400); }
.border-emerald-500\/30 { border-color: rgba(16, 185, 129, 0.3); }
.border-emerald-500\/40 { border-color: rgba(16, 185, 129, 0.4); }
.border-rose-500\/30 { border-color: rgba(244, 63, 94, 0.3); }

/* --- BORDER RADIUS --- */
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-b-3xl { border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; }

/* --- PADDING & MARGIN UTILITIES --- */
.p-0\.5 { padding: 0.125rem; }
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }

.pb-2 { padding-bottom: 0.5rem; }
.pb-2\.5 { padding-bottom: 0.625rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }

.pl-11 { padding-left: 2.75rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; }
.-mb-6 { margin-bottom: -1.5rem; }

@media (min-width: 640px) {
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
}

@media (min-width: 1024px) {
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:p-10 { padding: 2.5rem; }
}

/* --- SIZES --- */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-2 { width: 0.5rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }

.h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-40 { height: 10rem; }

@media (min-width: 640px) {
  .sm\:w-auto { width: auto; }
}

/* --- DISPLAY & POSITIONING --- */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none !important; }

@media (min-width: 640px) {
  .sm\:flex { display: flex !important; }
  .sm\:inline-block { display: inline-block !important; }
  .sm\:hidden { display: none !important; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex !important; }
  .md\:hidden { display: none !important; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
}

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

.top-1\/2 { top: 50%; }
.left-4 { left: 1rem; }
.right-6 { right: 1.5rem; }
.top-6 { top: 1.5rem; }

.-translate-y-1\/2 { transform: translateY(-50%); }

.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-10 { z-index: 10; }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* --- HEADER NAVBAR STYLES --- */
header#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(2, 6, 23, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}

.header-nav-link {
  color: #cbd5e1;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-nav-link:hover {
  color: #60a5fa;
  background-color: rgba(59, 130, 246, 0.12);
}

/* --- BUTTONS & INTERACTIVE ELEMENTS --- */
button, .btn {
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-weight: 700;
  border: 1px solid transparent;
}

button:hover {
  transform: translateY(-1px);
}

.hover\:scale-\[1\.01\]:hover { transform: scale(1.01); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }

.tab-btn, .compliance-filter-btn, .arch-step-btn, .industry-btn, .env-type-btn {
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover, .arch-step-btn:hover, .industry-btn:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

/* --- FORMS & INPUTS --- */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background-color: var(--color-slate-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: var(--color-white);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-blue-500);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Range Slider Styling */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.625rem;
  background: var(--color-slate-800);
  border-radius: 0.5rem;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color-blue-500);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

input[type="range"]::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color-blue-500);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* --- TERMINAL LOG BOX --- */
#sim-terminal-logs {
  font-family: var(--font-mono);
  background-color: var(--color-slate-950);
}

/* --- MODAL DIALOG --- */
#contact-modal {
  background-color: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- BOX SHADOWS & ACCENTS --- */
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.shadow-blue-600\/25, .shadow-blue-600\/30 {
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.35);
}

/* --- TRANSITIONS & HOVER --- */
.transition-all { transition: all 0.2s ease-in-out; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}
.hover\:border-slate-700:hover {
  border-color: var(--color-slate-700);
}
.hover\:bg-slate-800:hover {
  background-color: var(--color-slate-800);
}
.hover\:bg-blue-500:hover {
  background-color: var(--color-blue-500);
}
.hover\:bg-emerald-500:hover {
  background-color: var(--color-emerald-500);
}
.hover\:bg-rose-500:hover {
  background-color: var(--color-rose-500);
}
.hover\:bg-white:hover {
  background-color: var(--color-white);
}

/* Radial background effect for Hero */
.bg-radial-hero {
  background: radial-gradient(ellipse at top, rgba(30, 58, 138, 0.25) 0%, rgba(2, 6, 23, 1) 70%);
}
