/* Androtil — Warm Slate & Copper */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&display=swap');

/* ================================================================
   CSS VARIABLES
================================================================ */
:root {
  --c-bg:        #0c1016;
  --c-panel:     #1a222d;
  --c-alt:       #141a22;
  --c-accent:    #c96b4a;
  --c-accent2:   #a85d42;
  --c-accent-bright: #e89572;
  --c-warm:      #d4a574;
  --c-warm2:     #b8926a;
  --c-deep:      #070a0e;
  --c-text:      #e8eef4;
  --c-text-dim:  #8fa3b0;
  --c-border:    rgba(201, 107, 74, 0.22);
  --c-border2:   rgba(201, 107, 74, 0.42);
  --c-glow:      rgba(201, 107, 74, 0.4);
  --c-glow2:     rgba(212, 165, 116, 0.28);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================================================
   ANIMATIONS
================================================================ */
@keyframes pulseGlow {
  0%,100% { opacity: 0.75; filter: brightness(1); }
  50%      { opacity: 1; filter: brightness(1.15); }
}
@keyframes meshDrift {
  0%,100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33%     { transform: translate(2%, -1%) scale(1.02); opacity: 0.95; }
  66%     { transform: translate(-1%, 2%) scale(0.98); opacity: 1; }
}
@keyframes shimmer {
  0%   { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}
@keyframes legalBarShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   GLOBAL BODY — warm gradient wash
================================================================ */
html body,
html body.u-body {
  font-family: 'Outfit', 'Segoe UI', sans-serif !important;
  color: var(--c-text) !important;
  background-color: var(--c-bg) !important;
  -webkit-font-smoothing: antialiased;
}

html body.u-body::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  animation: meshDrift 28s ease-in-out infinite !important;
  background:
    radial-gradient(ellipse 100% 80% at 15% -20%, rgba(201, 107, 74, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 105% 25%, rgba(212, 165, 116, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at -5% 75%, rgba(90, 120, 160, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 40% 35% at 70% 90%, rgba(201, 107, 74, 0.09) 0%, transparent 40%),
    linear-gradient(165deg, var(--c-deep) 0%, var(--c-bg) 45%, #121820 100%) !important;
}

html body.u-body::after {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 0.45 !important;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 3px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 3px) !important;
  mix-blend-mode: overlay !important;
}

/* ================================================================
   TYPOGRAPHY
================================================================ */
html body h1, html body h2, html body h3,
html body h4, html body h5, html body h6,
html body .u-body h1, html body .u-body h2,
html body .u-body h3, html body .u-body h4 {
  font-family: 'Source Serif 4', Georgia, serif !important;
  color: var(--c-text) !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}

html body h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.75rem) !important;
  letter-spacing: -0.03em !important;
  background: linear-gradient(
    125deg,
    var(--c-accent-bright) 0%,
    var(--c-accent) 35%,
    var(--c-warm) 85%,
    #f0c9a8 100%
  ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: var(--c-accent) !important;
  filter: drop-shadow(0 2px 24px rgba(201, 107, 74, 0.35)) drop-shadow(0 4px 2px rgba(0,0,0,0.35)) !important;
}
@supports not (background-clip: text) {
  html body h1 {
    -webkit-text-fill-color: var(--c-accent) !important;
    color: var(--c-accent) !important;
    background: none !important;
  }
}
html body h2 {
  color: var(--c-text) !important;
  letter-spacing: -0.02em !important;
  position: relative !important;
  display: inline-block !important;
  text-shadow: 0 0 28px rgba(201, 107, 74, 0.12) !important;
}
html body h2::after {
  content: '' !important;
  display: block !important;
  width: 3.5rem !important;
  height: 3px !important;
  margin-top: 0.65em !important;
  border-radius: 3px !important;
  background: linear-gradient(90deg, var(--c-accent), var(--c-warm), transparent) !important;
  box-shadow: 0 0 16px var(--c-glow) !important;
}
html body .u-align-center h2::after {
  margin-left: auto !important;
  margin-right: auto !important;
}
html body h3 {
  color: var(--c-accent) !important;
  text-shadow:
    0 0 20px var(--c-glow),
    0 1px 0 rgba(0,0,0,0.25) !important;
  position: relative !important;
}
html body h3.u-align-left.u-text-1:not(.u-custom-font) {
  padding-left: 0.75rem !important;
}
html body h3.u-align-left.u-text-1:not(.u-custom-font)::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.12em !important;
  bottom: 0.12em !important;
  width: 3px !important;
  border-radius: 2px !important;
  background: linear-gradient(180deg, var(--c-accent), var(--c-warm)) !important;
  opacity: 0.9 !important;
  box-shadow: 0 0 14px var(--c-glow) !important;
}

html body p,
html body .u-text-1, html body .u-text-2,
html body .u-text-3, html body .u-text-4,
html body .u-text-5, html body .u-text-6,
html body .u-text-7, html body .u-text-8,
html body .u-text-default, html body .u-text-variant {
  color: var(--c-text) !important;
  line-height: 1.7 !important;
}

html body a:not(.u-btn):not(.u-button-style):not(.u-nav-link):not(.u-logo) {
  color: var(--c-warm) !important;
  text-decoration: none !important;
  transition: color 0.2s, text-shadow 0.2s !important;
}
html body a:not(.u-btn):not(.u-button-style):not(.u-nav-link):not(.u-logo):hover {
  color: var(--c-accent) !important;
  text-shadow: 0 0 10px var(--c-glow) !important;
}

/* ================================================================
   LOGO
================================================================ */
html body .u-logo.u-logo-text,
html body a.u-logo.u-logo-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
  color: var(--c-text) !important;
  text-decoration: none !important;
  padding: 0.4em 0 !important;
  min-height: auto !important;
  width: auto !important;
  transition: color 0.2s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}
html body .u-logo.u-logo-text::before {
  content: '' !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  width: 4px !important;
  height: 1.4em !important;
  background: linear-gradient(180deg, var(--c-accent) 0%, var(--c-warm) 100%) !important;
  border-radius: 4px !important;
  box-shadow: 0 0 12px var(--c-glow), 0 0 22px var(--c-glow2) !important;
  animation: pulseGlow 2.4s ease-in-out infinite !important;
}
html body .u-logo.u-logo-text:hover {
  color: var(--c-accent) !important;
}

/* ================================================================
   HEADER — glassmorphism dark bar
================================================================ */
html body .u-header,
html body .u-header.u-palette-4-light-3,
html body header.u-header,
.u-palette-4-light-3,
section.u-palette-4-light-3,
.u-palette-4-light-3 > .u-container-layout,
.u-palette-4-light-3 > .u-inner-container-layout,
.u-container-layout.u-container-layout.u-palette-4-light-3 {
  background-color: rgba(15, 20, 25, 0.93) !important;
  backdrop-filter: blur(20px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
  border-bottom: 1px solid var(--c-border2) !important;
  box-shadow:
    0 4px 30px rgba(0,0,0,0.55),
    0 1px 0 var(--c-border) !important;
  color: var(--c-text) !important;
}

section.u-palette-4-light-3::before,
.u-palette-4-light-3 > .u-container-layout::before,
.u-palette-4-light-3 > .u-inner-container-layout::before,
.u-container-layout.u-container-layout.u-palette-4-light-3::before {
  background-color: transparent !important;
}

html body .u-nav-link,
html body .u-palette-4-light-3 .u-nav-link,
html body .u-palette-4-light-3 .u-text-grey-90,
html body .u-palette-4-light-3 .u-text-palette-1-base {
  color: var(--c-text) !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.04em !important;
  transition: color 0.2s !important;
}
html body .u-nav-link:hover,
html body .u-palette-4-light-3 .u-nav-link:hover {
  color: var(--c-accent) !important;
  text-shadow: 0 0 8px var(--c-glow) !important;
}

html body .u-palette-4-light-3 .u-nav-link:not(.u-hamburger-link) {
  position: relative !important;
}
html body .u-palette-4-light-3 .u-nav-link:not(.u-hamburger-link)::after {
  content: '' !important;
  position: absolute !important;
  bottom: 2px !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--c-accent), var(--c-warm)) !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  transition: transform 0.45s var(--ease-out-expo) !important;
  border-radius: 2px !important;
  box-shadow: 0 0 12px var(--c-glow) !important;
  pointer-events: none !important;
}
html body .u-palette-4-light-3 .u-nav-link:not(.u-hamburger-link):hover::after {
  transform: scaleX(1) !important;
}

/* ================================================================
   ALL SECTIONS — dark base
================================================================ */
html body section,
html body .u-section-1,
html body .u-section-2,
html body .u-section-3,
html body .u-section-4,
html body .u-section-5,
html body .u-section-6,
html body .u-section-7,
html body .u-section-8 {
  background-color: var(--c-bg) !important;
  position: relative !important;
  z-index: 1 !important;
}

/* ================================================================
   WHITE SECTIONS — dark glass panels
================================================================ */
.u-white,
section.u-white,
html body .u-white,
html body section.u-white {
  background-color: var(--c-panel) !important;
  background-image:
    radial-gradient(ellipse 85% 55% at 95% 8%, rgba(201, 107, 74, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse 50% 45% at 5% 95%, rgba(212, 165, 116, 0.06) 0%, transparent 48%),
    linear-gradient(180deg, rgba(26, 34, 45, 0.5) 0%, var(--c-panel) 100%) !important;
  color: var(--c-text) !important;
}

#sec-0611.u-white {
  background-image:
    radial-gradient(ellipse 95% 75% at 88% 12%, rgba(201, 107, 74, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 8% 88%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, #1e2838 0%, var(--c-panel) 55%, #151c26 100%) !important;
}

section.u-white::before,
.u-white > .u-container-layout::before,
.u-white > .u-inner-container-layout::before,
.u-white > .u-audio-main-layout-wrapper::before,
.u-white.u-sidenav::before,
.u-container-layout.u-container-layout.u-white::before {
  background-color: var(--c-panel) !important;
}

section.u-white::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--c-accent) 35%,
    var(--c-warm) 65%,
    transparent 100%) !important;
  opacity: 0.85 !important;
  box-shadow: 0 0 16px rgba(201, 107, 74, 0.35) !important;
  z-index: 2 !important;
}

.u-white .u-text-1, .u-white .u-text-2, .u-white .u-text-3,
.u-white .u-text-4, .u-white .u-text-5, .u-white .u-text-6,
.u-white .u-text-7, .u-white .u-text-8, .u-white p,
.u-white h3, .u-white h2, .u-white h1 {
  color: var(--c-text) !important;
}
.u-white h3 {
  color: var(--c-accent) !important;
  text-shadow: 0 0 14px var(--c-glow) !important;
}

/* ================================================================
   ALTERNATING PALETTE SECTIONS
================================================================ */
html body .u-section-2,
html body .u-section-4,
html body .u-section-6,
html body .u-section-8,
html body section.u-palette-4-light-3:not(.u-header):not(.u-sticky) {
  background-color: var(--c-alt) !important;
  background-image:
    linear-gradient(105deg, rgba(201, 107, 74, 0.04) 0%, transparent 42%),
    linear-gradient(-25deg, rgba(20, 28, 38, 0.9) 0%, transparent 35%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201, 107, 74, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--c-alt) 0%, #181f2a 100%) !important;
}

section.u-palette-4-light-3:not(.u-header)::before,
.u-palette-4-light-3:not(.u-header) > .u-container-layout::before,
.u-palette-4-light-3:not(.u-header) > .u-inner-container-layout::before {
  background-color: var(--c-alt) !important;
}

html body .u-section-2 h3,
html body .u-section-4 h3,
html body .u-section-6 h3,
html body .u-section-8 h3,
html body .u-palette-4-light-3 h3 {
  color: var(--c-accent) !important;
  text-shadow: 0 0 16px var(--c-glow) !important;
}

html body .u-section-2 .u-text-1,
html body .u-section-4 .u-text-1,
html body .u-section-6 .u-text-1 {
  color: var(--c-accent) !important;
  text-shadow: 0 0 12px var(--c-glow) !important;
}

html body .u-section-2::after,
html body .u-section-4::after,
html body .u-section-6::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--c-warm) 30%,
    var(--c-accent) 70%,
    transparent 100%) !important;
  opacity: 0.5 !important;
  z-index: 2 !important;
}

/* ================================================================
   LAYOUT CELLS — glass card style
================================================================ */
html body .u-layout-cell.u-white,
html body .u-layout-cell.u-white.u-layout-cell-1,
html body .u-layout-cell.u-white.u-layout-cell-2,
html body .u-layout-cell.u-white.u-layout-cell-3,
html body .u-layout-cell.u-white.u-layout-cell-4 {
  background:
    linear-gradient(145deg, rgba(42, 52, 65, 0.75) 0%, rgba(24, 30, 40, 0.92) 100%) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(14px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.2) !important;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.42),
    0 0 0 1px rgba(201, 107, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.35s ease, border-color 0.3s ease !important;
}
html body .u-layout-cell.u-white:hover {
  transform: translateY(-5px) !important;
  border-color: var(--c-border2) !important;
  box-shadow:
    0 22px 56px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201, 107, 74, 0.28),
    0 0 48px rgba(201, 107, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

html body .u-layout-cell.u-white .u-container-layout::before,
html body .u-layout-cell.u-white > .u-container-layout::before {
  background-color: transparent !important;
}

/* Footer legal box — use class on wrapper */
.u-footer-legal-box {
  margin: 18px auto 6px !important;
  max-width: 660px !important;
  position: relative !important;
  border: 1px solid var(--c-border) !important;
  background:
    linear-gradient(180deg, rgba(18, 22, 30, 0.95) 0%, rgba(12, 16, 22, 0.88) 100%) !important;
  border-radius: 12px !important;
  padding: 16px 22px !important;
  text-align: left !important;
  box-shadow:
    0 0 0 1px rgba(201, 107, 74, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  overflow: hidden !important;
}
.u-footer-legal-box::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--c-accent2), var(--c-accent), var(--c-warm), var(--c-accent2)) !important;
  background-size: 200% 100% !important;
  animation: legalBarShift 10s ease-in-out infinite !important;
}
.u-footer-legal-box .u-footer-legal-title {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  color: var(--c-accent) !important;
  margin: 0 0 9px !important;
  font-family: 'Outfit', sans-serif !important;
}
.u-footer-legal-box .u-footer-legal-body {
  font-size: 12px !important;
  color: var(--c-text-dim) !important;
  margin: 0 !important;
  line-height: 1.85 !important;
  font-family: 'Outfit', sans-serif !important;
}
.u-footer-legal-box .u-footer-legal-body strong {
  color: var(--c-text) !important;
  font-weight: 500 !important;
}

/* ================================================================
   FOOTER
================================================================ */
html body .u-footer,
html body .u-footer.u-grey-90,
html body footer.u-footer,
html body .u-grey-90 {
  background-color: #0a0e12 !important;
  border-top: 1px solid var(--c-border2) !important;
  box-shadow: 0 -10px 50px rgba(0,0,0,0.75) !important;
  color: var(--c-text-dim) !important;
  position: relative !important;
}

html body .u-footer::before,
html body .u-grey-90::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 10% !important;
  right: 10% !important;
  height: 1px !important;
  background: linear-gradient(90deg,
    transparent,
    var(--c-warm) 30%,
    var(--c-accent) 70%,
    transparent) !important;
  opacity: 0.85 !important;
}

html body .u-footer .u-text-1,
html body .u-footer .u-text-2,
html body .u-footer .u-text-legal,
html body .u-grey-90 .u-text-variant,
html body .u-grey-90 .u-text-1,
html body .u-grey-90 p {
  color: var(--c-text-dim) !important;
  font-size: 0.82rem !important;
  line-height: 1.7 !important;
}

html body .u-footer a,
html body .u-grey-90 a {
  color: var(--c-accent) !important;
  transition: color 0.2s !important;
}
html body .u-footer a:hover,
html body .u-grey-90 a:hover {
  color: var(--c-warm) !important;
  text-shadow: 0 0 8px var(--c-glow2) !important;
}
html body .u-text-palette-1-light-3,
html body .u-btn.u-text-palette-1-light-3 {
  color: var(--c-accent) !important;
}

/* ================================================================
   BUTTONS
================================================================ */
html body .u-btn-submit,
html body .u-button-style.u-palette-1-dark-3,
html body .u-active-palette-1-dark-3,
html body .u-hover-palette-1-dark-1,
html body a.u-btn.u-btn-submit {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent2) 100%) !important;
  color: #0f1419 !important;
  border: none !important;
  border-radius: 10px !important;
  text-transform: none !important;
  letter-spacing: 0.03em !important;
  font-weight: 600 !important;
  font-family: 'Outfit', sans-serif !important;
  box-shadow:
    0 4px 20px var(--c-glow),
    0 0 0 1px rgba(201, 107, 74, 0.3) !important;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease, background 0.3s ease !important;
}
html body .u-btn-submit:hover,
html body .u-button-style.u-palette-1-dark-3:hover {
  background: linear-gradient(135deg, var(--c-warm) 0%, var(--c-warm2) 100%) !important;
  color: #0f1419 !important;
  box-shadow:
    0 6px 28px var(--c-glow2),
    0 0 0 1px rgba(212, 165, 116, 0.35) !important;
  transform: translateY(-3px) scale(1.02) !important;
}

html body .u-btn-submit::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%,
    transparent 100%
  ) !important;
  transform: translateX(-100%) skewX(-15deg) !important;
  transition: transform 0s !important;
  pointer-events: none !important;
}
html body .u-btn-submit:hover::before {
  transition: transform 0.65s var(--ease-out-expo) !important;
  transform: translateX(100%) skewX(-15deg) !important;
}

/* ================================================================
   FORM INPUTS
================================================================ */
html body .u-input,
html body .u-input-rectangle,
html body .u-form-group input,
html body .u-form-group textarea {
  background-color: rgba(22, 28, 36, 0.9) !important;
  color: var(--c-text) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: 8px !important;
  font-family: 'Outfit', sans-serif !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
html body .u-input:focus,
html body .u-form-group input:focus,
html body .u-form-group textarea:focus {
  border-color: var(--c-accent) !important;
  box-shadow:
    0 0 0 3px rgba(201, 107, 74, 0.15),
    0 0 18px var(--c-glow) !important;
  outline: none !important;
}
html body .u-input::placeholder,
html body .u-input-rectangle::placeholder {
  color: var(--c-text-dim) !important;
  opacity: 0.75 !important;
}

/* ================================================================
   DIVIDERS
================================================================ */
html body .u-line-horizontal,
html body .u-border-grey-dark-1,
html body .u-line.u-line-horizontal {
  background: linear-gradient(90deg,
    transparent,
    var(--c-accent),
    transparent) !important;
  border: none !important;
  height: 1px !important;
  opacity: 0.45 !important;
}

/* ================================================================
   IMAGES — warm editorial tint
================================================================ */
html body .u-image img {
  filter: contrast(1.06) saturate(0.96) brightness(0.93) sepia(0.07) !important;
  border-radius: 18px !important;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 107, 74, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.35s ease, filter 0.35s ease !important;
}
html body .u-layout-cell.u-white .u-image img:hover,
html body .u-image:hover img {
  transform: scale(1.03) !important;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 107, 74, 0.35),
    0 0 36px rgba(201, 107, 74, 0.15) !important;
  filter: contrast(1.08) saturate(1) brightness(0.96) sepia(0.05) !important;
}

/* ================================================================
   MOBILE NAV
================================================================ */
html body .u-sidenav,
html body .u-menu-overlay {
  background-color: rgba(10, 14, 18, 0.97) !important;
  border-left: 1px solid var(--c-border2) !important;
  backdrop-filter: blur(24px) !important;
}
html body .u-sidenav .u-nav-link {
  color: var(--c-text) !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
}
html body .u-sidenav .u-nav-link:hover {
  color: var(--c-accent) !important;
}

/* ================================================================
   OVERLAP HEADER FIX
================================================================ */
html body .u-overlap:not(.u-sticky-scroll) .u-header,
.u-overlap:not(.u-sticky-scroll) .u-header {
  background-color: rgba(15, 20, 25, 0.92) !important;
  backdrop-filter: blur(20px) !important;
}

/* ================================================================
   FORCE ALL SECTION TEXT VISIBLE
================================================================ */
html body .u-section-1 p, html body .u-section-1 .u-text-1,
html body .u-section-2 p, html body .u-section-2 .u-text-2,
html body .u-section-2 .u-text-4, html body .u-section-2 .u-text-6,
html body .u-section-2 .u-text-8, html body .u-section-2 .u-text-default,
html body .u-section-3 p, html body .u-section-3 .u-text-2,
html body .u-section-4 p, html body .u-section-4 .u-text-2,
html body .u-section-5 p, html body .u-section-5 .u-text-2,
html body .u-section-6 p, html body .u-section-6 .u-text-2,
html body .u-section-7 p, html body .u-section-7 .u-text-2,
html body .u-section-8 p, html body .u-section-8 .u-text-1,
html body .u-section-8 .u-text-2 {
  color: var(--c-text) !important;
}

/* ================================================================
   OVERRIDE NICEPAGE BUTTON-STYLE.U-WHITE
================================================================ */
html body .u-button-style.u-white,
html body .u-button-style.u-white[class*="u-border-"],
html body a.u-button-link.u-white,
html body a.u-btn.u-white {
  color: var(--c-accent) !important;
  background-color: transparent !important;
}
html body .u-button-style.u-white:hover {
  color: var(--c-warm) !important;
}

html body .u-footer .u-btn.u-button-link,
html body .u-footer a.u-button-link {
  color: var(--c-accent) !important;
  background-color: transparent !important;
}
html body .u-footer .u-btn.u-button-link:hover {
  color: var(--c-warm) !important;
}
