/* JointCurex — Deep Ocean */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Serif+Bengali:wght@400;600;700&display=swap');

/* ================================================================
   CSS VARIABLES
================================================================ */
:root {
  --c-bg:          #070e1a;
  --c-bg-alt:      #0d1a2e;
  --c-panel:       #0f2040;
  --c-panel-lt:    #132845;
  --c-cyan:        #06b6d4;
  --c-cyan-lt:     #22d3ee;
  --c-cyan-dk:     #0891b2;
  --c-blue:        #0ea5e9;
  --c-accent:      #f59e0b;
  --c-accent-dk:   #d97706;
  --c-text:        #e2e8f0;
  --c-text-dim:    #94a3b8;
  --c-border:      rgba(6, 182, 212, 0.18);
  --c-border-str:  rgba(6, 182, 212, 0.38);
  --c-glow:        rgba(6, 182, 212, 0.25);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================================================
   ANIMATIONS
================================================================ */
@keyframes cyanPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}
@keyframes scanLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes borderShift {
  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
================================================================ */
html body,
html body.u-body {
  font-family: 'Hind Siliguri', '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;
  background:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(6, 182, 212, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(6, 182, 212, 0.07) 0%, transparent 45%),
    linear-gradient(165deg, #07101e 0%, var(--c-bg) 55%, #050c17 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.3 !important;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(6, 182, 212, 0.03) 40px, rgba(6, 182, 212, 0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(6, 182, 212, 0.02) 40px, rgba(6, 182, 212, 0.02) 41px) !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: 'Noto Serif Bengali', 'Hind Siliguri', Georgia, serif !important;
  color: var(--c-text) !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

html body h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  background: linear-gradient(130deg, var(--c-cyan-lt) 0%, var(--c-cyan) 45%, var(--c-blue) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: var(--c-cyan) !important;
  filter: drop-shadow(0 2px 20px rgba(6, 182, 212, 0.35)) !important;
  text-shadow: none !important;
}
@supports not (background-clip: text) {
  html body h1 {
    -webkit-text-fill-color: var(--c-cyan) !important;
    color: var(--c-cyan) !important;
    background: none !important;
  }
}

html body h2 {
  color: var(--c-text) !important;
  position: relative !important;
  display: inline-block !important;
  text-shadow: 0 0 24px rgba(6, 182, 212, 0.12) !important;
}
html body h2::after {
  content: '' !important;
  display: block !important;
  width: 3rem !important;
  height: 2px !important;
  margin-top: 0.5em !important;
  border-radius: 2px !important;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-blue), transparent) !important;
  box-shadow: 0 0 12px 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-cyan) !important;
  text-shadow: 0 0 18px var(--c-glow) !important;
  position: relative !important;
}

html body h3.u-align-left.u-text-1:not(.u-custom-font) {
  padding-left: 0.8rem !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.1em !important;
  bottom: 0.1em !important;
  width: 3px !important;
  border-radius: 2px !important;
  background: linear-gradient(180deg, var(--c-cyan), var(--c-blue)) !important;
  box-shadow: 0 0 10px var(--c-glow) !important;
  display: block !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.75 !important;
}

html body a:not(.u-btn):not(.u-button-style):not(.u-nav-link):not(.u-logo) {
  color: var(--c-cyan) !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-cyan-lt) !important;
  text-shadow: 0 0 8px var(--c-glow) !important;
}

/* ================================================================
   LOGO
================================================================ */
html body .u-logo.u-logo-text,
html body a.u-logo.u-logo-text {
  font-family: 'Hind Siliguri', sans-serif !important;
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !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: 5px !important;
  height: 1.35em !important;
  background: linear-gradient(180deg, var(--c-cyan) 0%, var(--c-blue) 100%) !important;
  border-radius: 4px !important;
  box-shadow: 0 0 14px var(--c-glow), 0 0 28px rgba(6, 182, 212, 0.15) !important;
  animation: cyanPulse 2.8s ease-in-out infinite !important;
}
html body .u-logo.u-logo-text:hover {
  color: var(--c-cyan) !important;
}

/* ================================================================
   HEADER — deep navy glass
================================================================ */
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(7, 14, 26, 0.96) !important;
  backdrop-filter: blur(20px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.5) !important;
  border-bottom: 1px solid var(--c-border-str) !important;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6), 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-dim) !important;
  font-family: 'Hind Siliguri', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.03em !important;
  transition: color 0.2s, text-shadow 0.2s !important;
}
html body .u-nav-link:hover,
html body .u-palette-4-light-3 .u-nav-link:hover {
  color: var(--c-cyan) !important;
  text-shadow: 0 0 10px 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-cyan), var(--c-blue)) !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  transition: transform 0.4s var(--ease-out-expo) !important;
  border-radius: 2px !important;
  box-shadow: 0 0 10px 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 — deep navy 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 — deep panel
================================================================ */
.u-white,
section.u-white,
html body .u-white,
html body section.u-white {
  background-color: var(--c-bg-alt) !important;
  background-image:
    radial-gradient(ellipse 80% 50% at 90% 10%, rgba(6, 182, 212, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 5% 90%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(13, 26, 46, 0.5) 0%, var(--c-bg-alt) 100%) !important;
  color: var(--c-text) !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-bg-alt) !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-cyan) 35%,
    var(--c-blue) 65%,
    transparent 100%) !important;
  opacity: 0.7 !important;
  box-shadow: 0 0 16px var(--c-glow) !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-cyan) !important;
  text-shadow: 0 0 16px 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-bg-alt) !important;
  background-image:
    linear-gradient(110deg, rgba(6, 182, 212, 0.04) 0%, transparent 40%),
    linear-gradient(-20deg, rgba(13, 26, 46, 0.85) 0%, transparent 35%),
    linear-gradient(180deg, var(--c-bg-alt) 0%, #0a1628 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-bg-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-cyan) !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-cyan) !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-blue) 30%,
    var(--c-cyan) 70%,
    transparent 100%) !important;
  opacity: 0.4 !important;
  z-index: 2 !important;
}

/* ================================================================
   LAYOUT CELLS — dark glass card
================================================================ */
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(19, 40, 69, 0.85) 0%, rgba(13, 26, 46, 0.95) 100%) !important;
  border: 1px solid var(--c-border) !important;
  border-left: 3px solid var(--c-cyan) !important;
  border-radius: 14px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(6, 182, 212, 0.08),
    inset 0 1px 0 rgba(6, 182, 212, 0.08) !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-border-str) !important;
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(6, 182, 212, 0.22),
    0 0 40px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(6, 182, 212, 0.12) !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
================================================================ */
.u-footer-legal-box {
  margin: 18px auto 6px !important;
  max-width: 660px !important;
  position: relative !important;
  border: 1px solid var(--c-border) !important;
  background: rgba(6, 182, 212, 0.06) !important;
  border-radius: 10px !important;
  padding: 16px 22px !important;
  text-align: left !important;
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.1), 0 8px 30px rgba(0, 0, 0, 0.25) !important;
  overflow: hidden !important;
}
.u-footer-legal-box::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--c-cyan-dk), var(--c-cyan), var(--c-blue), var(--c-cyan-dk)) !important;
  background-size: 200% 100% !important;
  animation: borderShift 8s 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-cyan) !important;
  margin: 0 0 9px !important;
  font-family: 'Hind Siliguri', 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: 'Hind Siliguri', sans-serif !important;
}
.u-footer-legal-box .u-footer-legal-body strong {
  color: var(--c-text) !important;
  font-weight: 500 !important;
}

/* ================================================================
   FOOTER — darkest navy
================================================================ */
html body .u-footer,
html body .u-footer.u-grey-90,
html body footer.u-footer,
html body .u-grey-90 {
  background-color: #020912 !important;
  border-top: 1px solid var(--c-border-str) !important;
  box-shadow: 0 -8px 48px 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: 8% !important;
  right: 8% !important;
  height: 1px !important;
  background: linear-gradient(90deg,
    transparent,
    var(--c-cyan) 30%,
    var(--c-blue) 70%,
    transparent) !important;
  opacity: 0.7 !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.83rem !important;
  line-height: 1.75 !important;
}

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

/* ================================================================
   BUTTONS — amber glow
================================================================ */
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-accent-dk) 100%) !important;
  color: #0f1419 !important;
  border: none !important;
  border-radius: 8px !important;
  text-transform: none !important;
  letter-spacing: 0.03em !important;
  font-weight: 700 !important;
  font-family: 'Hind Siliguri', sans-serif !important;
  box-shadow:
    0 4px 20px rgba(245, 158, 11, 0.4),
    0 0 0 1px rgba(245, 158, 11, 0.25) !important;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 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, #fbbf24 0%, var(--c-accent) 100%) !important;
  color: #0f1419 !important;
  box-shadow:
    0 6px 28px rgba(245, 158, 11, 0.52),
    0 0 0 1px rgba(245, 158, 11, 0.4) !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 42%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 58%,
    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.6s 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(13, 26, 46, 0.9) !important;
  color: var(--c-text) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: 8px !important;
  font-family: 'Hind Siliguri', 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-cyan) !important;
  box-shadow:
    0 0 0 3px rgba(6, 182, 212, 0.15),
    0 0 20px 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-cyan),
    transparent) !important;
  border: none !important;
  height: 1px !important;
  opacity: 0.35 !important;
}

/* ================================================================
   IMAGES
================================================================ */
html body .u-image img {
  filter: contrast(1.05) saturate(0.95) brightness(0.92) !important;
  border-radius: 16px !important;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(6, 182, 212, 0.15) !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 28px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(6, 182, 212, 0.32),
    0 0 36px rgba(6, 182, 212, 0.14) !important;
  filter: contrast(1.07) saturate(1) brightness(0.95) !important;
}

/* ================================================================
   MOBILE NAV
================================================================ */
html body .u-sidenav,
html body .u-menu-overlay {
  background-color: rgba(5, 10, 20, 0.98) !important;
  border-left: 1px solid var(--c-border-str) !important;
  backdrop-filter: blur(24px) !important;
}
html body .u-sidenav .u-nav-link {
  color: var(--c-text) !important;
  font-family: 'Hind Siliguri', sans-serif !important;
  font-weight: 500 !important;
}
html body .u-sidenav .u-nav-link:hover {
  color: var(--c-cyan) !important;
  text-shadow: 0 0 8px var(--c-glow) !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(7, 14, 26, 0.95) !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;
}

/* ================================================================
   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-cyan) !important;
  background-color: transparent !important;
}
html body .u-button-style.u-white:hover {
  color: var(--c-cyan-lt) !important;
}

html body .u-footer .u-btn.u-button-link,
html body .u-footer a.u-button-link {
  color: var(--c-cyan) !important;
  background-color: transparent !important;
}
html body .u-footer .u-btn.u-button-link:hover {
  color: var(--c-cyan-lt) !important;
  text-shadow: 0 0 8px var(--c-glow) !important;
}
