/* =========================================
   GLOBAL LESS VARIABLES & ROOT STYLES
   ========================================= */
/* --- Fonts & Base --- */
/* Regular (400) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}
/* Medium (500) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}
/* Bold (700) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}
/* Extra Bold (800) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-800.woff2') format('woff2');
}
/* Black (900) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-900.woff2') format('woff2');
}
:root {
  --sectionPadding: clamp(3.75rem, 8vw, 6.25rem) 16px;
  --containerGap: clamp(3rem, 6vw, 4rem);
  --headerFont: "Inter", sans-serif;
  --bodyFont: "Inter", sans-serif;
  /* Global Glow - Light Blue */
  --glow: 0 0 20px rgba(56, 189, 248, 0.25);
  --glow-hover: 0 0 30px rgba(56, 189, 248, 0.45);
}
/* --- Theme Definitions --- */
/* For DivBricks, we default to Dark Futuristic */
:root,
.theme-dark {
  --primary: #38BDF8;
  /* Energetic Light Blue / Cyan */
  --primary-fg: #020617;
  /* Very dark text on primary button */
  --secondary: #6366F1;
  /* Indigo accent */
  --bg: #020617;
  /* Deepest Slate/Black */
  --surface: #0F172A;
  /* Slate 900 */
  --surface-alt: #1E293B;
  /* Slate 800 */
  --text: #F8FAFC;
  /* White/Slate 50 */
  --text-muted: #94A3B8;
  /* Slate 400 */
  --border: #1E293B;
  /* Subtle border */
  --nav-height: 4.5rem;
}
/* --- RESET --- */
body {
  margin: 0;
  padding: 0;
  font-family: var(--bodyFont);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  transition: background 0.3s, color 0.3s;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
/* Layout Elements */
section,
header,
footer {
  padding: var(--sectionPadding);
  position: relative;
  background: var(--bg);
  /* Default to bg, specific sections override */
  width: 100%;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
section,
footer {
  overflow: hidden;
}
header {
  padding: 0 !important;
  border-bottom: 1px solid var(--border);
  overflow: visible;
  z-index: 1000;
}
@media (min-width: 1024px) {
  .db-toggle {
    display: none;
  }
}
/* --- LESS Variables Mapping for Compilation --- */
/* --- Global Utilities --- */
/* --- NAVIGATION --- */
#db-nav-10 {
  background: radial-gradient(circle at 50% 0%, var(--surface) 0%, var(--bg) 100%);
  padding: 1rem !important;
  /* Mobile Nav Dropdown */
  /* Desktop View */
}
#db-nav-10 .db-wrapper {
  background: var(--surface);
  /* Dark semi-transparent */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin: 0 auto;
}
#db-nav-10 .db-container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 0 1.5rem;
}
#db-nav-10 .db-nav-box {
  position: absolute;
  top: 80px;
  left: 1rem;
  right: 1rem;
  background: var(--bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#db-nav-10 .db-nav-box.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 1024px) {
  #db-nav-10 .db-nav-box {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: auto;
    flex: 1;
    justify-content: flex-end;
  }
}
#db-nav-10 .db-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
@media (min-width: 1024px) {
  #db-nav-10 .db-ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    margin-right: 2rem;
  }
}
@media (min-width: 0rem) {
  #db-nav-10 .db-nav-actions {
    display: flex;
    flex-direction: column;
    margin-right: 0;
  }
}
#db-nav-10 .db-li {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  #db-nav-10 .db-li {
    margin: 0;
  }
}
#db-nav-10 .db-nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
#db-nav-10 .db-nav-link:hover,
#db-nav-10 .db-nav-link.active {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}
@media (min-width: 1024px) {
  #db-nav-10 .db-toggle {
    display: none;
  }
  #db-nav-10 .db-nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  #db-nav-10 .db-nav-actions .db-btn-primary {
    margin-left: 1rem;
  }
}
.db-container {
  width: 100%;
  margin: 0 auto;
  max-width: 80rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 6vw, 4rem);
}
/* Logo */
.db-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.02em;
}
.db-logo i {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.8));
}
/* Buttons */
.db-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 0.95rem;
  line-height: 1;
}
.db-btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--glow);
}
.db-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--glow-hover);
}
.db-btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.db-btn-outline:hover {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--glow);
}
.db-btn-ghost {
  background: transparent;
  color: var(--text);
}
.db-btn-ghost:hover {
  color: var(--primary);
}
/* Typography */
.db-topper {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
  font-size: 0.75rem;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}
.db-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  color: var(--text);
}
.db-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin: 0 0 2rem 0;
  color: var(--text-muted);
  max-width: 40rem;
}
/* Toggle Menu */
.db-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1002;
}
.db-toggle .db-line {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.db-toggle.active .db-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.db-toggle.active .db-line:nth-child(2) {
  opacity: 0;
}
.db-toggle.active .db-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* --- FOOTER --- */
#footer-14 {
  background-color: radial-gradient(circle at 50% 0%, var(--surface) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
#footer-14 .db-footer-split-v {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}
#footer-14 .db-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
#footer-14 .db-top h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}
#footer-14 .db-top .db-inline-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
}
#footer-14 .db-top .db-inline-form .db-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  outline: none;
}
#footer-14 .db-top .db-inline-form .db-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}
@media (min-width: 768px) {
  #footer-14 .db-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
#footer-14 .db-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
  width: 100%;
}
#footer-14 .db-middle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  #footer-14 .db-middle {
    grid-template-columns: repeat(4, 1fr);
  }
}
#footer-14 .db-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footer-14 .db-col strong {
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
#footer-14 .db-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
#footer-14 .db-col a:hover {
  color: var(--primary);
}
#footer-14 .db-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-top: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  #footer-14 .db-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
#footer-14 .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
