:root{
  --color-primary:#2E2440;
  --color-secondary:#453660;
  --color-accent:#A78BFA;
  --bg-light:#FAF5FF;
  --bg-alt:#F3E8FF;
}

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Urbanist',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,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%}

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

/* Premium helpers */
.text-gradient{
  background:linear-gradient(90deg,var(--color-primary),var(--color-accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.card-glass{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
  border:1px solid rgba(167,139,250,.18);
}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(46,36,64,.18) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(46,36,64,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(46,36,64,.10) 1px, transparent 1px);
  background-size:28px 28px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(167,139,250,.14), rgba(167,139,250,.14) 1px, transparent 1px, transparent 12px);
}
.decor-mesh{
  background:
    radial-gradient(700px 400px at 15% 10%, rgba(167,139,250,.28), transparent 55%),
    radial-gradient(700px 400px at 85% 0%, rgba(69,54,96,.25), transparent 60%),
    radial-gradient(800px 500px at 55% 110%, rgba(167,139,250,.18), transparent 55%);
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:460px;
  height:460px;
  border-radius:999px;
  filter:blur(44px);
  opacity:.55;
  pointer-events:none;
}
.decor-gradient-blur::before{
  top:-220px;
  left:-180px;
  background:radial-gradient(circle at 30% 30%, rgba(167,139,250,.55), transparent 60%);
}
.decor-gradient-blur::after{
  bottom:-240px;
  right:-220px;
  background:radial-gradient(circle at 50% 50%, rgba(69,54,96,.45), transparent 60%);
}
.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:220px;
  height:220px;
  background:linear-gradient(135deg, rgba(167,139,250,.25), transparent 70%);
  border-bottom-left-radius:48px;
  pointer-events:none;
}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:240px;
  height:240px;
  background:linear-gradient(315deg, rgba(167,139,250,.22), transparent 70%);
  border-top-right-radius:56px;
  pointer-events:none;
}
.decor-glow-element{
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  border-radius:999px;
  background:radial-gradient(circle at 50% 50%, rgba(167,139,250,.35), transparent 60%);
  filter:blur(26px);
  opacity:.8;
  pointer-events:none;
}

/* Intensity modifiers */
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.2}

/* Inputs */
input:focus, textarea:focus, select:focus{outline:none}
input::placeholder, textarea::placeholder{opacity:1}

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