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

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

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

/* Inputs */
.input-base{
  width:100%;
  border-radius:.75rem;
  border:1px solid rgb(229 231 235);
  background:#fff;
  padding:.75rem 1rem;
  font-size:.95rem;
  line-height:1.25rem;
  color:rgb(17 24 39);
  outline:0;
  transition:box-shadow .2s ease,border-color .2s ease,transform .2s ease
}
.input-base::placeholder{color:rgb(156 163 175)}
.input-base:focus{
  border-color:color-mix(in srgb, var(--color-accent) 60%, #ffffff);
  box-shadow:0 0 0 4px color-mix(in srgb, var(--color-accent) 18%, transparent)
}
.input-help{font-size:.75rem;line-height:1rem;color:rgb(107 114 128)}

/* Animations */
[data-animate]{will-change:transform,opacity}
.rotate-180{transform:rotate(180deg)}

/* Decorative elements */
.decor-grid-dots{
  background-image:radial-gradient(circle at 1px 1px, rgba(15,32,39,.18) 1px, transparent 0);
  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:26px 26px
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(0,245,160,.16) 0, rgba(0,245,160,.16) 1px, transparent 1px, transparent 12px)
}
.decor-mesh{
  background:
    radial-gradient(600px circle at 20% 10%, rgba(0,245,160,.22), transparent 45%),
    radial-gradient(520px circle at 80% 0%, rgba(26,58,64,.24), transparent 55%),
    radial-gradient(560px circle at 70% 90%, rgba(0,245,160,.16), transparent 55%),
    radial-gradient(560px circle at 15% 80%, rgba(15,32,39,.18), transparent 55%);
}

.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.2}

.decor-gradient-blur{
  filter:blur(38px);
  background:
    radial-gradient(circle at 30% 30%, rgba(0,245,160,.55), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(26,58,64,.55), transparent 55%);
}

.decor-corner-tr{
  position:relative;
}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px;
  right:-1px;
  width:90px;
  height:90px;
  background:linear-gradient(135deg, rgba(0,245,160,.24), transparent 60%);
  border-top-right-radius:1rem;
  pointer-events:none;
}
.decor-corner-bl{
  position:relative;
}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:-1px;
  width:90px;
  height:90px;
  background:linear-gradient(315deg, rgba(0,245,160,.24), transparent 60%);
  border-bottom-left-radius:1rem;
  pointer-events:none;
}

.decor-glow-element{
  box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 35px 80px rgba(0,245,160,.16);
}

/* Premium helpers */
.surface{
  border:1px solid rgb(229 231 235);
  border-radius:1rem;
  background:#fff;
  box-shadow:0 1px 2px rgba(0,0,0,.05)
}
.surface-dark{
  border:1px solid rgba(255,255,255,.10);
  border-radius:1rem;
  background:rgba(255,255,255,.05)
}
.hr-soft{
  height:1px;
  background:linear-gradient(to right, transparent, rgba(15,32,39,.18), transparent)
}

/* Cookie switches alignment (ensures knob is centered) */
.peer + div::after{
  box-shadow:0 6px 16px rgba(0,0,0,.12)
}

/* Reduce motion */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{transition:none !important;animation:none !important}
}