/* -------------------
   CSS RESET & NORMALIZE
------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  line-height: 1.5;
  font-size: 16px;
  background: #181E20;
  color: #F8F8F8;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol {list-style: none;}
button { font-family: inherit; cursor: pointer; background: none; border: none; outline: none; }

/* -------------------
   BRAND FONTS & VARIABLES
------------------- */
:root {
  --primary: #267453;
  --secondary: #F8F8F8;
  --text-dark: #191d1c;
  --text-light: #F8F8F8;
  --accent: #B38A58;
  --accent-2: #B57A33;
  --bg-main: #181E20; /* Futuristic dark background */
  --surface: #22272A;
  --input-bg: #292f32;
  --shadow: 0 2px 24px 0 rgba(30,180,130,0.08), 0 1.5px 6px rgba(60,216,190,0.07);
  --neon-green: #07FFB0;
  --neon-blue: #38B9FF;
  --border-radius: 18px;
  --fs-xs: 0.875rem;
  --fs-s: 1rem;
  --fs-m: 1.125rem;
  --fs-l: 1.35rem;
  --fs-xl: 1.75rem;
  --fs-xxl: 2.5rem;
  --gap-main: 24px;
  --container-width: 1200px;
}

@media (max-width: 1200px) {
  :root { --container-width: 98vw; }
}

/* -------------------
   GENERAL LAYOUT
------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

main {
  min-height: 60vh;
  background: var(--bg-main);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* -------------------
   TYPOGRAPHY
------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.13;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: var(--fs-xxl);
  background: linear-gradient(90deg, var(--accent-2), var(--primary), var(--neon-blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 16px rgba(56,185,255,0.5);
  margin-bottom: 8px;
}
h2 {
  font-size: var(--fs-xl);
  margin-bottom: 6px;
}
h3 {
  font-size: var(--fs-l);
}
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--accent-2);
  font-size: var(--fs-m);
  margin-bottom: 20px;
}
p, li, label, input, select, button, ul {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  font-size: var(--fs-s);
}
li { margin-bottom: 8px; }
strong { color: var(--neon-green); font-weight: 600; }

/* -------------------
   HEADER & NAVIGATION
------------------- */
header {
  width: 100%;
  background: rgba(26,26,34, 0.93);
  box-shadow: 0 2px 22px 0 rgba(30,216,190,0.07);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 0;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: var(--fs-m);
  font-weight: 600;
  color: var(--secondary);
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--accent-2);
  background: rgba(56,185,255,0.07);
  outline: none;
}
header img {
  height: 40px;
  margin-right: 14px;
}
.cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: var(--fs-m);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 10px;
  color: var(--text-dark);
  background: linear-gradient(90deg, var(--neon-green) 60%, var(--accent-2));
  box-shadow: 0 2px 12px 0 rgba(7,255,176,.15);
  border: none;
  text-shadow: 0 1px 6px rgba(39,116,83,0.11);
  transition: filter 0.17s, box-shadow 0.22s, transform 0.15s;
  position: relative;
  outline: none;
  margin-left: 16px;
}
.cta-button:hover, .cta-button:focus {
  filter: brightness(1.18);
  box-shadow: 0 6px 24px 0 rgba(56,185,255,0.18);
  transform: translateY(-1.5px) scale(1.025);
}

/* -------------------
   MOBILE NAVIGATION
------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 22px;
  top: 22px;
  z-index: 1002;
  background: var(--input-bg);
  color: var(--neon-green);
  font-size: 2.2rem;
  border-radius: 50%;
  padding: 10px 14px;
  border: 2px solid var(--surface);
  box-shadow: 0 2px 18px rgba(7,255,176,0.15);
  transition: background 0.13s, color 0.11s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent-2);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: linear-gradient(130deg, #181E20 75%, #1b6150);
  color: var(--secondary);
  position: fixed;
  z-index: 1001;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  padding: 40px 28px;
  transform: translateX(-110%);
  transition: transform 0.42s cubic-bezier(.71,1.72,.24,1.08);
  box-shadow: 0 2px 26px 0 rgba(56,185,255,0.26);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.7rem;
  color: var(--neon-blue);
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 6px;
  border-radius: 50%;
  line-height: 1;
  padding: 4px 13px 2px 13px;
  transition: background 0.2s, color 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--primary);
  color: var(--neon-green);
}
.mobile-nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  padding: 15px 8px;
  color: var(--neon-green);
  border-radius: 7px;
  transition: background 0.19s, color 0.22s;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--surface);
  color: var(--neon-blue);
}
@media (max-width: 968px) {
  header nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}
/* Hide mobile menu on desktop */
@media (min-width: 969px) {
 .mobile-menu, .mobile-menu-toggle {
   display: none !important;
 }
 header nav, .cta-button {
   display: flex;
 }
}

/* -------------------
   HERO SECTIONS
------------------- */
.hero {
  width: 100%;
  padding: 60px 0 40px 0;
  background: linear-gradient(120deg, #267453 0%, #181E20 60%);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  max-width: 700px;
}
.hero .cta-button {
  margin-top: 24px;
  align-self: flex-start;
}

/* CTA Section */
.cta {
  background: linear-gradient(93deg, var(--neon-green), var(--primary) 80%);
  color: var(--text-dark);
}
.cta h2, .cta h1 {
  color: var(--text-dark);
  text-shadow: none;
}
.cta .cta-button {
  background: linear-gradient(90deg, var(--primary) 60%, var(--accent-2));
  color: var(--secondary);
  margin-top: 13px;
}

/* -------------------
   FLEXBOX PATTERNS
------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 265px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.13s, border 0.13s;
  border: 1.8px solid rgba(56,185,255,0.08);
}
.card:hover, .card:focus {
  box-shadow: 0 8.5px 32px 0 rgba(7,255,176,0.15);
  transform: translateY(-2.5px) scale(1.022);
  border: 1.8px solid var(--neon-green);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin: 17px 0 22px 0;
  color: #191d1c;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(39,116,83,0.10);
  border-left: 4px solid var(--primary);
  font-size: 1rem;
  position: relative;
  min-width: 260px;
  max-width: 570px;
  word-break: break-word;
  transition: box-shadow 0.14s, border 0.14s;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px 0 rgba(39,116,83,0.16);
  border-left: 4px solid var(--accent-2);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: var(--surface);
  padding: 24px 18px 20px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  flex: 1 1 275px;
  min-width: 250px;
  max-width: 340px;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.4px solid rgba(56,185,255,0.07);
  transition: box-shadow 0.18s, border 0.14s, transform 0.16s;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 30px 0 rgba(56,185,255,0.17);
  border: 1.7px solid var(--accent-2);
  transform: translateY(-2.5px) scale(1.014);
}
.feature-grid img {
  height: 46px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 10px var(--neon-blue));
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Blog entries */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 13px;
}
.blog-list li {
  background: var(--surface);
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 2px 12px 0 rgba(56,185,255,0.08);
  transition: box-shadow 0.17s, border 0.14s;
  border-left: 3px solid var(--neon-green);
  margin-bottom: 10px;
}
.blog-list li:hover {
  box-shadow: 0 7.5px 32px 0 rgba(56,185,255,0.13);
  border-left: 3px solid var(--neon-blue);
}
.blog-list a {
  color: var(--neon-blue);
}
.featured-articles {
  background: var(--input-bg);
  border-radius: 8px;
  padding: 15px 14px;
  margin-top: 25px;
  box-shadow: 0 1px 4px 0 rgba(7,255,176,0.11);
  color: var(--neon-green);
}

/* CARD PATTERNS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

/* -------------------
   SERVICES, FAQ, etc.
------------------- */
.services, .faq, .contact, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  background: var(--surface);
  color: var(--secondary);
  border-radius: 13px;
  padding: 22px 18px;
  box-shadow: 0 2px 10px rgba(56,185,255,0.09);
  margin-bottom: 22px;
}
.text-section h3 {
  color: var(--neon-green);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.infographic {
  margin: 22px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.infographic img {
  max-height: 104px;
}

/* -------------------
   FORMS AND SEARCHES
------------------- */
.search-bar,
.newsletter-signup {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 10px;
  width: 100%;
}
.search-bar input,
.newsletter-signup input {
  background: var(--input-bg);
  border: 1.4px solid var(--neon-blue);
  border-radius: 8px 0 0 8px;
  padding: 13px 16px;
  font-size: var(--fs-m);
  color: var(--neon-blue);
  width: 100%;
}
.newsletter-signup button,
.search-bar button {
  background: var(--accent-2);
  color: var(--text-light);
  border-radius: 0 8px 8px 0;
  padding: 13px 18px;
  font-size: var(--fs-m);
  border: none;
  font-weight: 700;
  transition: background 0.18s;
}
.newsletter-signup button:hover,
.newsletter-signup button:focus {
  background: var(--primary);
  color: var(--neon-green);
}
.search-bar input:disabled,
.newsletter-signup input:disabled,
.newsletter-signup button:disabled {
  background: #343D40;
  color: #666;
  opacity: 0.49;
  cursor: not-allowed;
}

/* -------------------
   FOOTER
------------------- */
footer {
  width: 100%;
  background: #101314;
  color: var(--secondary);
  padding: 42px 0 24px 0;
  margin-top: 60px;
  border-top: 3.3px solid var(--primary);
  box-shadow: 0 -2px 18px 0 rgba(56,185,255,0.11);
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 8px 0;
  font-size: 1.1rem;
  color: var(--accent-2);
}
footer nav a {
  color: var(--neon-blue);
  font-weight: 600;
  font-size: 1rem;
}
footer nav a:hover {
  color: var(--neon-green);
}
.footer-contact {
  font-size: 0.99rem;
  color: var(--neon-blue);
  word-break: break-all;
  margin: 10px 0;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 6px;
  height: 19px;
  filter: grayscale(35%) drop-shadow(0 1.5px 3px var(--neon-blue));
}
.footer-copy {
  font-size: 0.92rem;
  color: #6B7075;
  margin-top: 10px;
}

/* -------------------
   COOKIE CONSENT BANNER
------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#101314 60%, #267453);
  color: var(--secondary);
  box-shadow: 0 -3.5px 24px 0 rgba(7,255,176,0.17);
  padding: 24px 22px 16px 22px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-top-right-radius: 19px;
}
.cookie-banner p {
  color: var(--secondary);
  font-size: var(--fs-s);
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 4px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-s);
  padding: 11px 20px;
  border-radius: 7px;
  font-weight: 700;
  border: none;
  margin-right: 2px;
  background: var(--neon-blue);
  color: var(--bg-main);
  box-shadow: 0 2px 8px rgba(56,185,255,0.12);
  transition: background 0.13s, color 0.14s;
}
.cookie-banner .cookie-btn:focus,
.cookie-banner .cookie-btn:hover {
  background: var(--neon-green);
  color: var(--text-dark);
}
.cookie-banner .cookie-btn.settings {
  background: var(--surface);
  color: var(--neon-blue);
  border: 1.2px solid var(--neon-blue);
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: var(--neon-blue);
  color: var(--bg-main);
}
/* Cookie Modal (hidden by default) */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,32,28,0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #171C18;
  color: var(--secondary);
  border-radius: 16px;
  box-shadow: 0 6px 35px 0 rgba(7,255,176,0.2);
  padding: 32px 22px;
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: fadeInUp 0.32s ease-out 1;
}
@keyframes fadeInUp { from { opacity:0; transform: translateY(50px);} to { opacity:1; transform:translateY(0);} }

.cookie-modal h3 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--neon-blue);
  margin-bottom: 7px;
  font-size: 1.2rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 17px;
}
.cookie-category {
  background: var(--input-bg);
  border-radius: 7px;
  padding: 12px 11px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
  font-size: var(--fs-s);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--neon-green);
  width: 18px; height: 18px;
}
.cookie-category.essential {
  opacity: 0.72;
  cursor: not-allowed;
}
.cookie-modal .modal-btn-row {
  margin-top: 14px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  right: 15px;
  top: 14px;
  color: var(--neon-blue);
  background: none;
  font-size: 2rem;
  border: none;
}
.cookie-modal .close-modal-btn:focus,
.cookie-modal .close-modal-btn:hover {
  color: var(--neon-green);
  background: var(--surface);
  border-radius: 50%;
}

/* -------------------
   RESPONSIVE DESIGN
------------------- */
@media (max-width: 1200px) {
  .feature-grid { flex-wrap: wrap; gap: 18px; }
  .feature-grid > div { max-width: 99vw; min-width: 170px; }
}
@media (max-width: 980px) {
  .hero .content-wrapper {max-width:100vw;}
  .feature-grid, .content-grid { flex-direction: column; gap: 22px; align-items: stretch; }
  .feature-grid > div, .card {max-width: 100%;}
  .testimonial-card {max-width:100vw;}
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.23rem;}
  .section, .services, .faq, .contact, .legal { padding: 22px 0 22px 0; }
  .content-wrapper { gap: 18px; }
  .hero {
    padding: 38px 0 18px 0;
    background: linear-gradient(115deg, #267453 38%, #181E20 85%);
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .card-container, .content-grid,
  .feature-grid, .blog-list {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .footer-contact, .footer-copy {
    font-size: 0.91rem;
  }
}
@media (max-width:500px) {
  .section, .services, .faq, .contact, .legal { padding: 13px 0 13px 0; }
  .container {padding: 0 4px;}
  .footer-copy, .footer-contact {font-size: 0.86rem;}
  .cookie-modal {padding:12vw 3vw;min-width:150px;}
}

/* -------------------
   MICROINTERACTIONS & DECOR
------------------- */
.card, .feature-grid > div, .testimonial-card, .blog-list li, .cta-button,
footer nav a, .mobile-nav a {
  transition: box-shadow 0.18s, filter 0.13s, border 0.14s, color 0.14s, transform 0.13s;
}
.cta-button:focus-visible, .mobile-menu-toggle:focus-visible, .cookie-btn:focus-visible {
  outline: 2.5px solid var(--neon-blue);
  outline-offset: 3px;
}

/* Neon accent underlines for tech-futuristic headlines */
h2, h3 {
  position: relative;
}
h2::after, h3::after {
  content: '';
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 8px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  opacity: 0.13;
}
h2 strong, h3 strong {
  color: var(--neon-green) !important;
}

/* Subtle moving neon light on .card on hover */
.card:hover::before, .feature-grid > div:hover::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(90deg,rgba(7,255,176,0.08),rgba(56,185,255,0.13));
  animation: neon-move 1.2s linear infinite alternate;
}
@keyframes neon-move {
  0% { opacity:0.11; }
  100% { opacity:0.24; }
}

/* Fancy glowing border on .cta-button on hover */
.cta-button:hover::before {
  content: '';
  position: absolute;
  left: -3px; top: -3px; right: -3px; bottom: -3px;
  border-radius: 13px;
  background: linear-gradient(90deg, #07FFB0 53%, #38B9FF 98%);
  filter: blur(3.2px) opacity(0.43);
  z-index: 0;
  pointer-events: none;
}
.cta-button { position: relative; z-index: 1; }

/* -------------------
   OTHER UTILITY
------------------- */
.hide { display:none!important; }
.visible { display:block!important; }

/* Ensures all links/buttons are touch accessible */
a, button, .cta-button, .mobile-nav a {
  min-height: 44px;
  min-width: 44px;
}

/* Avoid content overlapping at all times */
.card, .feature-grid > div, .testimonial-card { margin-bottom: 20px; }

/* Ensure adequate vertical rhythm */
h1, h2, h3, h4, .subheadline, p, ul, ol { margin-bottom: 14px; }

/* Make sure .feature-item is spaced */
.feature-item { margin-bottom: 20px; }

/* Thank you page message */
.thank-you-message {
  font-size: 1.17rem;
  color: var(--neon-green);
  margin-bottom: 14px;
}

/* Custom scrollbar for modern feel */
::-webkit-scrollbar {
  width: 8px;
  background: #181E20;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(160deg, var(--neon-blue) 15%, var(--accent-2) 85%);
  border-radius: 10px;
}
