/* ============================================================
   Cyflogic — Pixel-perfect static CSS
   Replicates the Figma design (Tailwind v4 + shadcn theme tokens)
   without depending on a Tailwind build.
   ============================================================ */

/* ---------- Theme tokens (light) ---------- */
:root{
  --font-sans:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --font-size:16px;

  --background:#ffffff;
  --foreground:oklch(.145 0 0);
  --card:#ffffff;
  --card-foreground:oklch(.145 0 0);
  --primary:#030213;
  --primary-foreground:oklch(1 0 0);
  --secondary:oklch(.95 .0058 264.53);
  --secondary-foreground:#030213;
  --muted:#ececf0;
  --muted-foreground:#717182;
  --accent:#e9ebef;
  --accent-foreground:#030213;
  --destructive:#d4183d;
  --destructive-foreground:#ffffff;
  --border:rgba(0,0,0,.1);
  --input:transparent;
  --input-background:#f3f3f5;
  --ring:oklch(.708 0 0);
  --radius:.625rem;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after{box-sizing:border-box;border:0 solid var(--border);}
html{font-size:var(--font-size);-webkit-text-size-adjust:100%;line-height:1.5;-webkit-font-smoothing:antialiased;}
body{margin:0;font-family:var(--font-sans);background:var(--background);color:var(--foreground);min-height:100vh;}
img,svg,video{display:block;max-width:100%;height:auto;}
a{color:inherit;text-decoration:none;}
button,input,select,textarea{font:inherit;color:inherit;background:transparent;}
button{cursor:pointer;border:0;padding:0;}
ul,ol{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4,h5,h6,p{margin:0;}
input,textarea,select{outline:none;}

/* Default heading typography (gets overridden by utility classes) */
h1{font-size:1.5rem;font-weight:500;line-height:1.5;}
h2{font-size:1.25rem;font-weight:500;line-height:1.5;}
h3{font-size:1.125rem;font-weight:500;line-height:1.5;}
h4{font-size:1rem;font-weight:500;line-height:1.5;}
label,button,input{font-size:1rem;font-weight:500;line-height:1.5;}
input{font-weight:400;}

/* ---------- Container ---------- */
.container{width:100%;margin-left:auto;margin-right:auto;}
@media (min-width:640px){.container{max-width:640px;}}
@media (min-width:768px){.container{max-width:768px;}}
@media (min-width:1024px){.container{max-width:1024px;}}
@media (min-width:1280px){.container{max-width:1280px;}}
@media (min-width:1536px){.container{max-width:1536px;}}

/* ---------- Layout ---------- */
.min-h-screen{min-height:100vh;}
.relative{position:relative;}
.absolute{position:absolute;}
.fixed{position:fixed;}
.sticky{position:sticky;}
.top-0{top:0;}
.top-1\/2{top:50%;}
.left-0{left:0;}
.left-3{left:.75rem;}
.left-4{left:1rem;}
.right-4{right:1rem;}
.bottom-0{bottom:0;}
.bottom-4{bottom:1rem;}
.inset-0{inset:0;}
.z-40{z-index:40;}
.z-50{z-index:50;}
.-translate-y-1\/2{transform:translateY(-50%);}

.block{display:block;}
.inline-block{display:inline-block;}
.inline-flex{display:inline-flex;}
.flex{display:flex;}
.grid{display:grid;}
.hidden{display:none;}

.flex-1{flex:1 1 0%;}
.flex-col{flex-direction:column;}
.flex-shrink-0{flex-shrink:0;}
.flex-wrap{flex-wrap:wrap;}
.items-start{align-items:flex-start;}
.items-center{align-items:center;}
.items-end{align-items:flex-end;}
.justify-start{justify-content:flex-start;}
.justify-center{justify-content:center;}
.justify-between{justify-content:space-between;}
.justify-end{justify-content:flex-end;}

.text-center{text-align:center;}
.text-left{text-align:left;}
.text-right{text-align:right;}

.mx-auto{margin-left:auto;margin-right:auto;}
.whitespace-nowrap{white-space:nowrap;}
.overflow-hidden{overflow:hidden;}
.overflow-x-auto{overflow-x:auto;}
.resize-none{resize:none;}
.line-clamp-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}

/* Gaps */
.gap-1{gap:.25rem;}
.gap-2{gap:.5rem;}
.gap-3{gap:.75rem;}
.gap-4{gap:1rem;}
.gap-6{gap:1.5rem;}
.gap-8{gap:2rem;}
.gap-x-8{column-gap:2rem;}
.gap-x-12{column-gap:3rem;}
.gap-y-2{row-gap:.5rem;}
.gap-y-8{row-gap:2rem;}

/* Space-y */
.space-y-2 > * + *{margin-top:.5rem;}
.space-y-3 > * + *{margin-top:.75rem;}
.space-y-4 > * + *{margin-top:1rem;}
.space-y-6 > * + *{margin-top:1.5rem;}

/* Grid */
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}
.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}

@media (min-width:768px){
  .md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}
  .md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}
  .md\:col-span-2{grid-column:span 2 / span 2;}
  .md\:flex-row{flex-direction:row;}
}
@media (min-width:1024px){
  .lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}
  .lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}
  .lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr));}
  .lg\:col-span-2{grid-column:span 2 / span 2;}
  .lg\:flex{display:flex;}
  .lg\:hidden{display:none;}
  .lg\:block{display:block;}
  .lg\:text-5xl{font-size:3rem;line-height:1;}
}
@media (min-width:640px){
  .sm\:flex-row{flex-direction:row;}
}

/* Padding */
.p-2{padding:.5rem;}
.p-6{padding:1.5rem;}
.p-8{padding:2rem;}
.p-12{padding:3rem;}
.px-2\.5{padding-left:.625rem;padding-right:.625rem;}
.px-3{padding-left:.75rem;padding-right:.75rem;}
.px-4{padding-left:1rem;padding-right:1rem;}
.px-6{padding-left:1.5rem;padding-right:1.5rem;}
.py-1{padding-top:.25rem;padding-bottom:.25rem;}
.py-2{padding-top:.5rem;padding-bottom:.5rem;}
.py-3{padding-top:.75rem;padding-bottom:.75rem;}
.py-4{padding-top:1rem;padding-bottom:1rem;}
.py-6{padding-top:1.5rem;padding-bottom:1.5rem;}
.py-8{padding-top:2rem;padding-bottom:2rem;}
.py-12{padding-top:3rem;padding-bottom:3rem;}
.py-16{padding-top:4rem;padding-bottom:4rem;}
.pl-10{padding-left:2.5rem;}
.pl-1\.625em{padding-left:1.625em;}
.pr-4{padding-right:1rem;}
.pb-1{padding-bottom:.25rem;}
.pb-2{padding-bottom:.5rem;}
.pb-8{padding-bottom:2rem;}
.pt-2{padding-top:.5rem;}
.pt-8{padding-top:2rem;}

/* Margin */
.mb-1{margin-bottom:.25rem;}
.mb-2{margin-bottom:.5rem;}
.mb-3{margin-bottom:.75rem;}
.mb-4{margin-bottom:1rem;}
.mb-6{margin-bottom:1.5rem;}
.mb-8{margin-bottom:2rem;}
.mb-12{margin-bottom:3rem;}
.mb-16{margin-bottom:4rem;}
.mt-2{margin-top:.5rem;}
.mt-4{margin-top:1rem;}
.mt-12{margin-top:3rem;}

/* Width / Height / Sizing */
.w-0{width:0;}
.w-full{width:100%;}
.h-0\.5{height:.125rem;}
.h-full{height:100%;}
.size-3{width:.75rem;height:.75rem;}
.size-4{width:1rem;height:1rem;}
.size-5{width:1.25rem;height:1.25rem;}
.size-6{width:1.5rem;height:1.5rem;}
.size-8{width:2rem;height:2rem;}
.size-10{width:2.5rem;height:2.5rem;}
.size-12{width:3rem;height:3rem;}
.size-16{width:4rem;height:4rem;}
.max-w-md{max-width:28rem;}
.max-w-2xl{max-width:42rem;}
.max-w-3xl{max-width:48rem;}
.max-w-4xl{max-width:56rem;}
.max-w-5xl{max-width:64rem;}
.max-w-none{max-width:none;}

/* Aspect ratio */
.aspect-\[16\/9\]{aspect-ratio:16/9;}
.aspect-\[16\/10\]{aspect-ratio:16/10;}

/* Typography sizes */
.text-xs{font-size:.75rem;line-height:1rem;}
.text-sm{font-size:.875rem;line-height:1.25rem;}
.text-base{font-size:1rem;line-height:1.5rem;}
.text-lg{font-size:1.125rem;line-height:1.75rem;}
.text-xl{font-size:1.25rem;line-height:1.75rem;}
.text-2xl{font-size:1.5rem;line-height:2rem;}
.text-3xl{font-size:1.875rem;line-height:2.25rem;}
.text-4xl{font-size:2.25rem;line-height:2.5rem;}
.text-5xl{font-size:3rem;line-height:1;}

.font-medium{font-weight:500;}
.font-semibold{font-weight:600;}
.font-bold{font-weight:700;}
.leading-tight{line-height:1.25;}
.leading-snug{line-height:1.375;}

/* Colors */
.bg-background{background-color:var(--background);}
.bg-card{background-color:var(--card);}
.bg-primary{background-color:var(--primary);}
.bg-muted{background-color:var(--muted);}
.bg-accent{background-color:var(--accent);}
.bg-muted\/30{background-color:rgba(236,236,240,.3);}
.bg-muted\/50{background-color:rgba(236,236,240,.5);}
.bg-primary\/10{background-color:rgba(3,2,19,.1);}
.bg-primary-foreground\/10{background-color:rgba(255,255,255,.1);}
.bg-black\/50{background-color:rgba(0,0,0,.5);}
.bg-white{background-color:#fff;}

.text-primary{color:var(--primary);}
.text-primary-foreground{color:var(--primary-foreground);}
.text-foreground{color:var(--foreground);}
.text-muted-foreground{color:var(--muted-foreground);}
.text-accent-foreground{color:var(--accent-foreground);}

/* Category badge colors (replicating Tailwind palette) */
.bg-red-100{background-color:#fee2e2;}
.text-red-700{color:#b91c1c;}
.bg-purple-100{background-color:#f3e8ff;}
.text-purple-700{color:#7e22ce;}
.bg-blue-100{background-color:#dbeafe;}
.text-blue-700{color:#1d4ed8;}
.bg-green-100{background-color:#dcfce7;}
.text-green-700{color:#15803d;}
.bg-orange-100{background-color:#ffedd5;}
.text-orange-700{color:#c2410c;}
.bg-gray-100{background-color:#f3f4f6;}
.text-gray-700{color:#374151;}
.bg-yellow-100{background-color:#fef9c3;}
.text-yellow-700{color:#a16207;}
.bg-indigo-100{background-color:#e0e7ff;}
.text-indigo-700{color:#4338ca;}
.bg-pink-100{background-color:#fce7f3;}
.text-pink-700{color:#be185d;}
.bg-cyan-100{background-color:#cffafe;}
.text-cyan-700{color:#0e7490;}

/* Borders */
.border{border-width:1px;}
.border-t{border-top-width:1px;}
.border-b{border-bottom-width:1px;}
.border-y{border-top-width:1px;border-bottom-width:1px;}
.border-l-4{border-left-width:4px;}
.border-border{border-color:var(--border);}
.border-primary{border-color:var(--primary);}

.rounded{border-radius:.25rem;}
.rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem;}
.rounded-lg{border-radius:.5rem;}
.rounded-xl{border-radius:.75rem;}
.rounded-2xl{border-radius:1rem;}
.rounded-full{border-radius:9999px;}

/* Opacity */
.opacity-0{opacity:0;}
.opacity-90{opacity:.9;}

/* Transitions */
.transition-all{transition-property:all;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1);}
.transition-colors{transition-property:color,background-color,border-color;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1);}
.transition-opacity{transition-property:opacity;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1);}
.transition-transform{transition-property:transform;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1);}
.duration-300{transition-duration:.3s;}

/* Object fit */
.object-cover{object-fit:cover;}

/* Hover states */
.hover\:opacity-90:hover{opacity:.9;}
.hover\:text-primary:hover{color:var(--primary);}
.hover\:text-foreground:hover{color:var(--foreground);}
.hover\:underline:hover{text-decoration:underline;}
.hover\:bg-accent:hover{background-color:var(--accent);}
.hover\:border-primary:hover{border-color:var(--primary);}
.hover\:scale-105:hover{transform:scale(1.05);}

/* Group hover */
.group:hover .group-hover\:opacity-100{opacity:1;}
.group:hover .group-hover\:scale-105{transform:scale(1.05);}
.group:hover .group-hover\:text-primary{color:var(--primary);}
.group:hover .group-hover\:translate-x-1{transform:translateX(.25rem);}
.group:hover .group-hover\:-translate-x-1{transform:translateX(-.25rem);}

/* Focus */
.focus\:outline-none:focus{outline:none;}
.focus\:ring-2:focus{box-shadow:0 0 0 2px var(--ring);}
.focus\:ring-ring:focus{--tw-ring-color:var(--ring);}

/* After pseudo (underline animation for nav) */
.relative.after\:absolute{position:relative;}
[class*="after\:absolute"]::after{content:"";position:absolute;}
[class*="after\:bottom-0"]::after{bottom:0;}
[class*="after\:left-0"]::after{left:0;}
[class*="after\:h-0\.5"]::after{height:.125rem;}
[class*="after\:w-0"]::after{width:0;}
[class*="after\:bg-primary"]::after{background-color:var(--primary);}
[class*="after\:transition-all"]::after{transition-property:all;transition-duration:.15s;}
.hover\:after\:w-full:hover::after{width:100%;}

/* Gradient */
.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops));}
.from-black\/60{--tw-gradient-stops:rgba(0,0,0,.6),transparent;}
.to-transparent{}

/* Scrollbar hide */
.scrollbar-hide{-ms-overflow-style:none;scrollbar-width:none;}
.scrollbar-hide::-webkit-scrollbar{display:none;}

/* Prose */
.prose{color:var(--foreground);max-width:65ch;}
.prose-lg{font-size:1.125rem;line-height:1.7;}
.prose h2{font-size:1.5rem;font-weight:600;line-height:1.3;margin-top:2em;margin-bottom:1em;}
.prose h3{font-size:1.25rem;font-weight:600;line-height:1.4;margin-top:1.6em;margin-bottom:.6em;}
.prose p{margin-top:1.25em;margin-bottom:1.25em;line-height:1.75;}
.prose ul{margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em;list-style:disc;}
.prose li{margin-top:.5em;margin-bottom:.5em;}
.prose strong{font-weight:600;}
.prose a{color:var(--primary);text-decoration:underline;}

/* Form inputs */
.bg-background.border.border-border{}
input[type=text],input[type=email],textarea,select{
  width:100%;
}
input[type=text].px-4.py-3,input[type=email].px-4.py-3,textarea.px-4.py-3{
  padding:.75rem 1rem;
  background:var(--background);
  border:1px solid var(--border);
  border-radius:.5rem;
}
textarea.resize-none{resize:none;}
select{padding:.5rem 1rem;background:var(--background);border:1px solid var(--border);border-radius:.5rem;font-size:.875rem;}

/* Misc */
.cursor-pointer{cursor:pointer;}
.uppercase{text-transform:uppercase;}

/* ============================================================
   Contact Form 7 — match the Cyflogic input/button design.
   `body` prefix raises specificity to beat CF7's own
   stylesheet, which uses bare class selectors.
   ============================================================ */
body .wpcf7{margin:0;}
body .wpcf7-form{margin:0;}
body .wpcf7-form p{margin:0 0 1.25rem 0 !important;}
body .wpcf7-form p:last-of-type{margin-bottom:0 !important;}
body .wpcf7-form label{
  display:block !important;
  font-size:.875rem !important;
  font-weight:500 !important;
  line-height:1.5 !important;
  margin-bottom:0 !important;
  color:var(--foreground) !important;
}
body .wpcf7-form label br{display:none !important;}
body .wpcf7-form .wpcf7-form-control-wrap{display:block !important;margin-top:.5rem !important;}
body .wpcf7-form input.wpcf7-form-control,
body .wpcf7-form textarea.wpcf7-form-control,
body .wpcf7-form select.wpcf7-form-control,
body .wpcf7-form input.wpcf7-text,
body .wpcf7-form input.wpcf7-email,
body .wpcf7-form textarea.wpcf7-textarea{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:.75rem 1rem !important;
  background:#ffffff !important;
  border:1px solid #d1d5db !important;
  border-radius:.5rem !important;
  font-family:inherit !important;
  font-size:1rem !important;
  font-weight:400 !important;
  line-height:1.5 !important;
  color:var(--foreground) !important;
  height:auto !important;
  min-height:auto !important;
  box-shadow:none !important;
  outline:none !important;
  -webkit-appearance:none !important;
  -moz-appearance:none !important;
  appearance:none !important;
  box-sizing:border-box !important;
  transition:box-shadow .15s ease, border-color .15s ease;
}
body .wpcf7-form input.wpcf7-form-control:focus,
body .wpcf7-form textarea.wpcf7-form-control:focus,
body .wpcf7-form select.wpcf7-form-control:focus{
  outline:none !important;
  box-shadow:0 0 0 2px var(--ring) !important;
  border-color:#9ca3af !important;
}
body .wpcf7-form textarea.wpcf7-form-control,
body .wpcf7-form textarea.wpcf7-textarea{
  resize:vertical !important;
  min-height:9rem !important;
  height:9rem !important;
}
body .wpcf7-form input.wpcf7-submit,
body .wpcf7-form .wpcf7-submit{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:.5rem !important;
  width:100% !important;
  height:auto !important;
  min-height:auto !important;
  margin:0 !important;
  padding:.75rem 1.5rem !important;
  background:#030213 !important;
  background-color:#030213 !important;
  color:#ffffff !important;
  border:0 !important;
  border-radius:.5rem !important;
  font-family:inherit !important;
  font-weight:500 !important;
  font-size:1rem !important;
  line-height:1.5 !important;
  text-transform:none !important;
  letter-spacing:normal !important;
  cursor:pointer !important;
  box-shadow:none !important;
  text-shadow:none !important;
  -webkit-appearance:none !important;
  -moz-appearance:none !important;
  appearance:none !important;
  transition:opacity .15s ease;
}
body .wpcf7-form input.wpcf7-submit:hover,
body .wpcf7-form .wpcf7-submit:hover{opacity:.9 !important;background:#030213 !important;color:#ffffff !important;}
body .wpcf7-form .wpcf7-spinner{margin-left:.5rem;}
body .wpcf7-form .wpcf7-not-valid-tip{
  display:block !important;
  margin-top:.375rem !important;
  font-size:.75rem !important;
  color:var(--destructive) !important;
}
body .wpcf7-form .wpcf7-response-output{
  margin-top:1.25rem !important;
  padding:.75rem 1rem !important;
  border:1px solid #d1d5db !important;
  border-radius:.5rem !important;
  font-size:.875rem !important;
}
body .wpcf7-form.invalid .wpcf7-response-output,
body .wpcf7-form.unaccepted .wpcf7-response-output{
  border-color:var(--destructive) !important;
  background:#fee2e2 !important;
  color:#b91c1c !important;
}
body .wpcf7-form.sent .wpcf7-response-output{
  border-color:#86efac !important;
  background:#dcfce7 !important;
  color:#15803d !important;
}

/* The wpcf7 wrapper sometimes carries a default white background and
   shadow from Contact Form 7. Inside our card we don't want that. */
.cyflogic-contact-card .wpcf7{background:transparent;box-shadow:none;}

/* ============================================================
   MailerLite plugin form — official-mailerlite-sign-up-forms
   Only the MailerLite block renders the title + description now,
   so style them here to match the Cyflogic newsletter design.
   ============================================================ */
.cyflogic-newsletter-form{width:100%;max-width:42rem;margin-left:auto;margin-right:auto;text-align:center;}
.cyflogic-newsletter-form .mailerlite-form{background:transparent !important;border:0 !important;box-shadow:none !important;padding:0 !important;margin:0 !important;}
.cyflogic-newsletter-form form{margin:0 !important;padding:0 !important;display:flex;flex-direction:column;gap:1.5rem;}

/* Title — matches design's h2 styling */
.cyflogic-newsletter-form .mailerlite-form-title{margin:0 !important;}
.cyflogic-newsletter-form .mailerlite-form-title h1,
.cyflogic-newsletter-form .mailerlite-form-title h2,
.cyflogic-newsletter-form .mailerlite-form-title h3,
.cyflogic-newsletter-form .mailerlite-form-title h4{
  font-size:1.875rem !important;
  line-height:2.25rem !important;
  font-weight:700 !important;
  margin:0 !important;
  color:var(--foreground) !important;
}

/* Description — matches design's muted paragraph */
.cyflogic-newsletter-form .mailerlite-form-description{margin:0 !important;}
.cyflogic-newsletter-form .mailerlite-form-description p{
  margin:0 !important;
  font-size:1rem !important;
  line-height:1.5rem !important;
  color:var(--muted-foreground) !important;
}

/* Row layout: email input + subscribe button side by side on >= sm.
   Constrained to 28rem so the form row stays centered and tight
   even though the title/description above it are wider. */
body .cyflogic-newsletter-form .mailerlite-form-inputs{
  display:flex !important;
  flex-direction:column !important;
  gap:.75rem !important;
  align-items:stretch !important;
  margin:0 auto !important;
  padding:0 !important;
  width:100% !important;
  max-width:28rem !important;
}
@media (min-width:640px){
  body .cyflogic-newsletter-form .mailerlite-form-inputs{flex-direction:row !important;}
}
body .cyflogic-newsletter-form .mailerlite-form-field{flex:1 1 0% !important;margin:0 !important;padding:0 !important;}
body .cyflogic-newsletter-form .mailerlite-form-field label{display:none !important;}

/* Email input — body prefix raises specificity to beat the plugin */
body .cyflogic-newsletter-form input[type=email],
body .cyflogic-newsletter-form input[type=text]{
  display:block !important;
  width:100% !important;
  margin:0 !important;
  padding:.75rem 1rem !important;
  background:#ffffff !important;
  border:1px solid #d1d5db !important;
  border-radius:.5rem !important;
  font-family:inherit !important;
  font-size:1rem !important;
  font-weight:400 !important;
  line-height:1.5 !important;
  color:var(--foreground) !important;
  height:auto !important;
  min-height:auto !important;
  max-width:none !important;
  box-shadow:none !important;
  box-sizing:border-box !important;
  outline:none;
  -webkit-appearance:none !important;
  -moz-appearance:none !important;
  appearance:none !important;
  transition:box-shadow .15s ease, border-color .15s ease;
}
body .cyflogic-newsletter-form input[type=email]:focus,
body .cyflogic-newsletter-form input[type=text]:focus{
  outline:none !important;
  box-shadow:0 0 0 2px var(--ring) !important;
  border-color:#9ca3af !important;
}
body .cyflogic-newsletter-form input[type=email]::placeholder,
body .cyflogic-newsletter-form input[type=text]::placeholder{color:var(--muted-foreground) !important;opacity:1;}

/* Subscribe button — body prefix raises specificity */
body .cyflogic-newsletter-form .mailerlite-subscribe-button-container{margin:0 !important;padding:0 !important;flex-shrink:0;}
body .cyflogic-newsletter-form button.mailerlite-subscribe-submit,
body .cyflogic-newsletter-form .mailerlite-subscribe-submit{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  height:auto !important;
  min-height:auto !important;
  margin:0 !important;
  padding:.75rem 1.5rem !important;
  background:#030213 !important;
  background-color:#030213 !important;
  color:#ffffff !important;
  border:0 !important;
  border-radius:.5rem !important;
  font-family:inherit !important;
  font-size:1rem !important;
  font-weight:500 !important;
  line-height:1.5 !important;
  text-transform:none !important;
  letter-spacing:normal !important;
  white-space:nowrap !important;
  cursor:pointer !important;
  box-shadow:none !important;
  text-shadow:none !important;
  -webkit-appearance:none !important;
  -moz-appearance:none !important;
  appearance:none !important;
  transition:opacity .15s ease;
}
@media (min-width:640px){
  body .cyflogic-newsletter-form button.mailerlite-subscribe-submit,
  body .cyflogic-newsletter-form .mailerlite-subscribe-submit{width:auto !important;}
}
body .cyflogic-newsletter-form button.mailerlite-subscribe-submit:hover,
body .cyflogic-newsletter-form .mailerlite-subscribe-submit:hover{opacity:.9 !important;background:#030213 !important;color:#ffffff !important;}
body .cyflogic-newsletter-form button.mailerlite-subscribe-submit:disabled,
body .cyflogic-newsletter-form .mailerlite-subscribe-submit:disabled{opacity:.5 !important;cursor:not-allowed !important;}

/* "Please wait..." loader (shown while submitting) */
.cyflogic-newsletter-form .mailerlite-form-loader{
  display:none;
  text-align:center;
  font-size:.875rem;
  color:var(--muted-foreground);
}

/* Inline validation error injected by plugin's JS */
.cyflogic-newsletter-form .mailerlite-form-error{
  display:block;
  margin-top:.375rem;
  font-size:.75rem;
  color:var(--destructive);
  text-align:left;
}

/* Success response panel (revealed after submit) */
.cyflogic-newsletter-form .mailerlite-form-response{
  display:none;
  margin-top:.5rem;
  padding:.875rem 1rem;
  background:#dcfce7;
  border:1px solid #86efac;
  border-radius:.5rem;
  color:#15803d;
  font-size:.875rem;
  text-align:center;
}
.cyflogic-newsletter-form .mailerlite-form-response h4{margin:0;font-size:.875rem;font-weight:500;line-height:1.5;}
.cyflogic-newsletter-form .mailerlite-form-response p{margin:0;}
.cyflogic-newsletter-form .mailerlite-form-response span{color:inherit !important;}
