:root{
  --color-primary:#0F2027;
  --color-secondary:#1A3A40;
  --color-accent:#00F5A0;
}

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Urbanist',system-ui,sans-serif;text-rendering:optimizeLegibility;-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%}

/* Form controls */
.input-like{
  border-radius:9999px;
}
:focus-visible{outline:2px solid rgba(0,245,160,.45);outline-offset:2px}

/* Animations (from context: slide_right) */
[data-animate]{
  opacity:0;
  transform:translateX(-2rem);
  transition:opacity .6s ease-out,transform .6s ease-out;
  will-change:opacity,transform;
}
[data-animate].is-visible{
  opacity:1;
  transform:translateX(0);
}
.rotate-180{transform:rotate(180deg)}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(circle at 1px 1px, rgba(15,32,39,.18) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(15,32,39,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,32,39,.10) 1px, transparent 1px);
  background-size:28px 28px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(45deg, rgba(0,245,160,.10) 0, rgba(0,245,160,.10) 10px, transparent 10px, transparent 22px);
}
.decor-mesh{
  background:
    radial-gradient(800px 600px at 10% 10%, rgba(0,245,160,.20), transparent 55%),
    radial-gradient(700px 520px at 90% 25%, rgba(26,58,64,.22), transparent 55%),
    radial-gradient(700px 520px at 50% 95%, rgba(15,32,39,.20), transparent 60%);
}
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.20}

.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:420px;
  height:420px;
  filter:blur(60px);
  border-radius:9999px;
  opacity:.25;
  pointer-events:none;
}
.decor-gradient-blur::before{
  top:-140px; left:-140px;
  background:radial-gradient(circle, rgba(0,245,160,.55) 0%, rgba(0,245,160,0) 70%);
}
.decor-gradient-blur::after{
  bottom:-160px; right:-160px;
  background:radial-gradient(circle, rgba(26,58,64,.55) 0%, rgba(26,58,64,0) 70%);
}

.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width:140px; height:140px;
  background:radial-gradient(circle at 100% 0%, rgba(0,245,160,.22), transparent 70%);
  pointer-events:none;
}
.decor-corner-bl{position:relative}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px; left:-1px;
  width:160px; height:160px;
  background:radial-gradient(circle at 0% 100%, rgba(0,245,160,.18), transparent 72%);
  pointer-events:none;
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(0,245,160,.22) 0%, rgba(0,245,160,0) 68%);
  filter:blur(18px);
  pointer-events:none;
  z-index:-1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  [data-animate]{transition:none;transform:none;opacity:1}
}