:root{
  --color-primary:#0F1729;
  --color-secondary:#1E293B;
  --color-accent:#3B82F6;
}

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Source Sans 3',system-ui,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

/* Button fixes */
button,.btn,[class*="btn-"],a[href="#order_form"]{
  white-space:nowrap;
  min-width:fit-content;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem
}
form button[type="submit"]{white-space:normal;width:100%}

/* Focus rings */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:2px solid rgba(59,130,246,.55);
  outline-offset:2px;
  border-radius:.5rem
}

/* Animations (context: fade_in) */
[data-animate]{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease-out,transform .6s ease-out
}
[data-animate].is-visible{
  opacity:1;
  transform:translateY(0)
}
.rotate-180{transform:rotate(180deg)}

/* Premium glass + subtle borders helper */
.glass-panel{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(16px);
  border:1px solid rgba(15,23,41,.08);
}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(59,130,246,.18) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(15,23,41,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,41,.06) 1px, transparent 1px);
  background-size:38px 38px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(59,130,246,.12), rgba(59,130,246,.12) 1px, transparent 1px, transparent 10px);
}
.decor-mesh{
  background:
    radial-gradient(900px circle at 10% 10%, rgba(59,130,246,.25), transparent 55%),
    radial-gradient(700px circle at 90% 20%, rgba(219,234,254,.35), transparent 55%),
    radial-gradient(900px circle at 30% 95%, rgba(59,130,246,.18), transparent 55%);
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:9999px;
  filter:blur(42px);
  opacity:.35;
  pointer-events:none;
}
.decor-gradient-blur::before{
  top:-200px;
  left:-180px;
  background:radial-gradient(circle at 30% 30%, rgba(59,130,246,.9), rgba(59,130,246,.0) 60%);
}
.decor-gradient-blur::after{
  bottom:-220px;
  right:-200px;
  background:radial-gradient(circle at 30% 30%, rgba(219,234,254,.95), rgba(219,234,254,.0) 60%);
}

.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:180px;
  height:180px;
  background:linear-gradient(135deg, rgba(59,130,246,.22), transparent 60%);
  pointer-events:none;
}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:200px;
  height:200px;
  background:linear-gradient(315deg, rgba(219,234,254,.35), transparent 60%);
  pointer-events:none;
}
.decor-glow-element{
  position:relative;
}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-30px;
  border-radius:9999px;
  background:radial-gradient(circle at 50% 50%, rgba(59,130,246,.30), transparent 60%);
  filter:blur(28px);
  z-index:-1;
  pointer-events:none;
}

/* Intensity modifiers */
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.10}
.decor-bold{opacity:.18}

/* Mobile menu animation */
#mobile-menu{
  transform-origin:top;
  animation:menuIn .18s ease-out;
}
@keyframes menuIn{
  from{opacity:0; transform:translateY(-6px)}
  to{opacity:1; transform:translateY(0)}
}

/* Cookie banner subtle drop shadow on mobile */
#cookie-consent > div{
  box-shadow:0 24px 70px rgba(15,23,41,.25);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  [data-animate]{transition:none; transform:none}
  #mobile-menu{animation:none}
}