:root{
  --color-primary:#0F2027;
  --color-secondary:#1A3A40;
  --color-accent:#00F5A0;
  --bg-light:#ECFDF5;
  --bg-alt:#D1FAE5;
}

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Space Grotesk',system-ui,sans-serif}

/* Better rendering */
*{text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
img{max-width:100%;height:auto}
::selection{background:rgba(0,245,160,.2)}

/* 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%}

/* Animation system (context: zoom_in) */
[data-animate]{
  opacity:0;
  transform:scale(.95);
  transition:all .5s ease-out;
}
[data-animate].is-visible{
  opacity:1;
  transform:scale(1);
}

/* FAQ helpers */
.rotate-180{transform:rotate(180deg)}

/* Premium focus states */
:focus-visible{
  outline:2px solid rgba(0,245,160,.9);
  outline-offset:3px;
  border-radius:12px;
}

/* Decorative backgrounds (used by landing pages) */
.decor-grid-dots{
  background-image:radial-gradient(rgba(15,32,39,.25) 1px,transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(15,32,39,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,32,39,.08) 1px, transparent 1px);
  background-size:32px 32px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(0,245,160,.14) 0 8px, transparent 8px 16px);
}
.decor-mesh{
  background:
    radial-gradient(800px 400px at 10% 20%, rgba(0,245,160,.22), transparent 60%),
    radial-gradient(700px 380px at 85% 30%, rgba(26,58,64,.22), transparent 60%),
    radial-gradient(700px 420px at 35% 95%, rgba(0,245,160,.18), transparent 60%);
}

.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:9999px;
  filter:blur(50px);
  opacity:.35;
  pointer-events:none;
}
.decor-gradient-blur::before{
  left:-180px;
  top:-180px;
  background:rgba(0,245,160,.45);
}
.decor-gradient-blur::after{
  right:-180px;
  bottom:-180px;
  background:rgba(26,58,64,.45);
}

.decor-corner-tr::before{
  content:"";
  position:absolute;
  right:0; top:0;
  width:220px; height:220px;
  background:rgba(0,245,160,.14);
  border-bottom-left-radius:32px;
  pointer-events:none;
}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:220px; height:220px;
  background:rgba(0,245,160,.12);
  border-top-right-radius:32px;
  pointer-events:none;
}
.decor-glow-element{
  box-shadow:
    0 0 0 1px rgba(0,245,160,.06) inset,
    0 40px 120px rgba(0,245,160,.16);
}

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

/* Subtle top border gradient helper */
.hr-glow{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(0,245,160,.6), transparent);
}

/* Cookie banner: prevent layout shift on mobile */
#cookie-consent{padding-bottom:calc(env(safe-area-inset-bottom) + 16px)}

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