:root{
  --brand-500:#3b82f6;
  --brand-600:#2563eb;
  --bg-contrast:#ffffff;
}
html,body{
  height:100%;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
body{
  min-height:100vh;
  line-height:1.5;
  background-color:transparent;
}
a{
  color:var(--brand-600);
  text-decoration:underline;
  text-underline-offset:3px;
}
img{
  max-width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}
.iconify{
  display:inline-block;
  vertical-align:middle;
  line-height:0;
}
:focus{
  outline:0;
}
:focus-visible{
  box-shadow:0 0 0 4px rgba(37,99,235,0.12);
  border-radius:0.5rem;
}
button:disabled,
[disabled]{
  opacity:0.6;
  cursor:not-allowed;
}
.lock-scroll{
  overflow:hidden;
  height:100vh;
}
#mobile-menu{
  display:none;
}
#mobile-menu[data-open="true"]{
  display:block;
}
#mobile-backdrop{
  transition:opacity 220ms ease;
}
#mobile-backdrop[aria-hidden="true"]{
  opacity:0;
  pointer-events:none;
}
#mobile-backdrop[aria-hidden="false"]{
  opacity:1;
  pointer-events:auto;
}
#cookie{
  min-width:280px;
  max-width:380px;
  width:100%;
  box-shadow:0 10px 30px rgba(2,6,23,0.12);
  transition:transform 240ms cubic-bezier(.2,.9,.2,1),opacity 200ms ease;
}
#cookie.hidden{
  transform:translateY(12px) scale(.98);
  opacity:0;
  pointer-events:none;
}
input[type="email"],
input,
textarea{
  min-height:44px;
  font-size:1rem;
}
.container{
  max-width:1200px;
}
.card-image{
  border-radius:1rem;
  overflow:hidden;
}
.btn-focus{
  box-shadow:0 6px 18px rgba(59,130,246,0.15);
}
@media (prefers-reduced-motion:reduce){
  *{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
    scroll-behavior:auto !important;
  }
}
