:root {
  --bg: #080a0e;
  --bg-soft: #0f141c;
  --panel: rgba(16, 21, 31, 0.82);
  --panel-strong: rgba(17, 22, 32, 0.94);
  --panel-alt: rgba(27, 34, 48, 0.78);
  --text: #d5dde9;
  --muted: #94a3b8;
  --heading: #f8fbff;
  --accent: #3ce5c4;
  --accent-2: #5ac8ff;
  --accent-3: #9f7aea;
  --danger: #ff6b7a;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.22);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1240px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(90, 200, 255, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(159, 122, 234, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.92) 0%, rgba(12, 17, 24, 0.88) 48%, rgba(11, 15, 21, 0.94) 100%),
    var(--bg-image, none) center top / cover no-repeat fixed;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

iframe {
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  font-family: inherit;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

a:hover,
a:focus {
  color: var(--accent);
}

.c7afd11 {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.c7afd31,
.c7afd18 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c7afd31:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 0;
  clip: auto;
  background: #fff;
  color: #111;
  z-index: 10000;
  border-radius: 14px;
}

.c7afd29 {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 6, 11, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.34);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(4, 6, 11, 0.92);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.c7afd38 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.c7afd21 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  gap: 18px;
}

.c7afd36 {
  min-height: 1px;
}

.c7afd28 {
  text-align: center;
}

.c7afd46 {
  display: inline-block;
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.c7afd46:hover,
.c7afd46:focus {
  color: var(--accent);
}

.c7afd59 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.search-toggle,
.menu-toggle,
.c7afd12,
.hero-action,
.c7afd1,
.c7afd14,
.scroll-top,
.toast,
.c7afd43 button {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-toggle:hover,
.search-toggle:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.c7afd12:hover,
.c7afd12:focus-visible,
.hero-action:hover,
.hero-action:focus-visible,
.c7afd1:hover,
.c7afd1:focus-visible,
.c7afd43 button:hover,
.c7afd43 button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.search-toggle .c7afd49 {
  display: none;
}

.search-toggle.is-open {
  background: rgba(60, 229, 196, 0.14);
  border-color: rgba(60, 229, 196, 0.24);
}

.search-toggle.is-open .c7afd55 {
  display: none;
}

.search-toggle.is-open .c7afd49 {
  display: inline-block;
}

.search-panel {
  background: rgba(7, 11, 17, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.c7afd32 {
  padding: 18px 0 26px;
  display: flex;
  justify-content: flex-end;
}

.search-form {
  position: relative;
  width: min(100%, 440px);
}

.search-field,
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #eff5ff;
  border-radius: 18px;
  padding: 16px 20px 16px 62px;
}

.search-field::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search-field:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(60, 229, 196, 0.45);
  box-shadow: 0 0 0 4px rgba(60, 229, 196, 0.12);
}

.c7afd14 {
  position: absolute;
  inset: 6px auto 6px 6px;
  width: 48px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(60, 229, 196, 0.14), rgba(90, 200, 255, 0.14));
  color: #fff;
  cursor: pointer;
}

.c7afd14:hover,
.c7afd14:focus-visible {
  background: linear-gradient(135deg, rgba(60, 229, 196, 0.22), rgba(90, 200, 255, 0.22));
}

.c7afd56 {
  border-top: 2px solid rgba(60, 229, 196, 0.8);
  background: rgba(4, 6, 11, 0.96);
}

.c7afd41 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  font-weight: 600;
}

.menu-toggle i {
  font-size: 1.05rem;
}

.main-nav ul {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 10px 18px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ebf0f8;
  border-radius: 999px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.main-nav a.c7afd61,
.main-nav a:hover,
.main-nav a:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.main-nav a.c7afd61::after,
.main-nav a:hover::after,
.main-nav a:focus::after {
  transform: scaleX(1);
}

.c7afd54 {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: #121721 var(--hero-image, url('https://nmccesi.com/wp-content/uploads/2026/01/cropped-abstract-pink-background-blurred-bokeh-spring-blos-2025-10-14-03-20-29-utc-scaled-1.jpg')) center/cover no-repeat;
}

.c7afd54::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(60, 229, 196, 0.12), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(159, 122, 234, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(5, 8, 13, 0.8), rgba(7, 11, 17, 0.46));
}

.c7afd17 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.2), rgba(5, 9, 16, 0.62));
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 88px 0;
}

.c7afd54 h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.9rem, 4.8vw, 5.75rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.045em;
  max-width: 980px;
  margin-inline: auto;
  text-wrap: balance;
}

.hero-meta,
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  margin-top: 24px;
}

.hero-chip,
.c7afd1,
.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #edf4fd;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-actions {
  margin-top: 20px;
}

.hero-action {
  min-width: 178px;
  background: linear-gradient(135deg, rgba(60, 229, 196, 0.92), rgba(90, 200, 255, 0.95));
  color: #051017;
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(60, 229, 196, 0.22);
}

.hero-action.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.c7afd33 {
  padding: 90px 0 110px;
}

.c7afd51 {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(290px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.article-card,
.contact-card,
.sidebar .widget {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.article-card,
.contact-card {
  padding: 40px;
}

.entry-content,
.c7afd30 {
  color: var(--text);
}

.entry-content > *:first-child,
.c7afd30 > *:first-child {
  margin-top: 0;
}

.entry-content p,
.c7afd30 p {
  margin: 0 0 20px;
  color: rgba(221, 229, 240, 0.9);
}

.entry-content strong,
.c7afd30 strong {
  color: #fff;
  font-weight: 700;
}

.entry-content h2,
.c7afd30 h2 {
  position: relative;
  margin: 42px 0 18px;
  color: var(--heading);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.entry-content h2::before,
.c7afd30 h2::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.entry-image {
  margin: 30px 0;
}

.entry-image img {
  width: 100%;
  border-radius: 30px;
  aspect-ratio: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
}

.sidebar {
  width: 100%;
  display: grid;
  gap: 24px;
}

.sidebar .widget {
  padding: 28px;
  margin: 0;
}

.c7afd60 {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 14px 17px;
  color: var(--heading);
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.c7afd60::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 5px;
  height: 1em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.widget p,
.widget-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
}

.sidebar ul,
.c7afd23,
.c7afd39 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li,
.c7afd23 li,
.c7afd39 li {
  position: relative;
  padding: 7px 0 7px 18px;
}

.sidebar li::before,
.c7afd23 li::before,
.c7afd39 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.sidebar a,
.c7afd23 a,
.c7afd39 a {
  color: #c8d3e2;
}

.sidebar a:hover,
.sidebar a:focus,
.c7afd23 a:hover,
.c7afd23 a:focus,
.c7afd39 a:hover,
.c7afd39 a:focus {
  color: var(--accent);
}

.c7afd43 {
  display: grid;
  gap: 12px;
}

.c7afd43 button,
.c7afd1 {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f3f7ff;
  border-radius: 16px;
  min-height: 50px;
  padding: 0 16px;
  cursor: pointer;
  justify-content: center;
}

.c7afd43 button:hover,
.c7afd43 button:focus-visible,
.c7afd1:hover,
.c7afd1:focus-visible {
  background: rgba(60, 229, 196, 0.12);
  color: #fff;
}

.c7afd16 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 22px;
}

.c7afd16 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.site-footer {
  background: rgba(1, 3, 7, 0.92);
  color: rgba(231, 237, 247, 0.82);
  text-align: center;
  padding: 42px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(60, 229, 196, 0.96), rgba(90, 200, 255, 0.96));
  color: #071019;
  box-shadow: 0 18px 32px rgba(60, 229, 196, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 999;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus {
  color: #071019;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1200;
}

.toast-stack {
  position: fixed;
  right: 22px;
  bottom: 90px;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100% - 30px));
  z-index: 1200;
}

.toast {
  background: rgba(9, 14, 21, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 4px solid var(--accent);
  color: #fff;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.toast strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.toast span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.c7afd34 {
  border-left-color: var(--danger);
}

.c7afd5 {
  border-left-color: var(--accent);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.c7afd35 .c7afd42 {
  min-height: 340px;
}

.c7afd35 .hero__inner {
  padding: 70px 0;
}

.c7afd35 .c7afd7 {
  padding-top: 84px;
}

.contact-form {
  width: 100%;
}

.contact-form .c7afd40 {
  margin: 0 0 18px;
}

.contact-form label {
  display: block;
  margin: 0 0 8px;
  color: #d9e4f2;
  font-size: 0.98rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding-left: 18px;
}

.contact-form input {
  min-height: 56px;
}

.contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.c7afd12 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(60, 229, 196, 0.96), rgba(90, 200, 255, 0.96));
  color: #051017;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .c7afd51 {
    grid-template-columns: 1fr;
  }

  .sidebar {
    max-width: 720px;
  }
}

@media (max-width: 909px) {
  .c7afd21 {
    grid-template-columns: 1fr auto auto;
    min-height: 82px;
  }

  .c7afd36 {
    display: none;
  }

  .c7afd28 {
    order: 1;
    text-align: left;
  }

  .c7afd59 {
    order: 2;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .c7afd41 {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0;
  }

  .main-nav {
    flex: 0 0 100%;
    order: 4;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.34s ease, opacity var(--transition), transform var(--transition);
  }

  .site-header.menu-open .main-nav {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav ul {
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 22px;
    background: rgba(16, 21, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .main-nav a {
    padding: 13px 16px;
    border-radius: 14px;
  }

  .main-nav a::after {
    left: 16px;
    right: 16px;
    bottom: 8px;
  }

  .c7afd54 {
    min-height: 460px;
  }

  .hero__inner {
    padding: 74px 0;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .c7afd11 {
    width: min(calc(100% - 28px), var(--container));
  }

  .c7afd21 {
    gap: 10px;
    min-height: 74px;
  }

  .c7afd46 {
    font-size: 1.55rem;
  }

  .search-toggle,
  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }

  .menu-toggle span {
    display: none;
  }

  .c7afd32 {
    padding: 14px 0 18px;
  }

  .search-form {
    width: 100%;
  }

  .c7afd54 {
    min-height: 380px;
    align-items: flex-end;
  }

  .hero__inner {
    padding: 60px 0 44px;
  }

  .c7afd54 h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-chip,
  .hero-action,
  .c7afd1 {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .c7afd33 {
    padding: 52px 0 70px;
  }

  .article-card,
  .contact-card,
  .sidebar .widget {
    border-radius: 22px;
  }

  .article-card,
  .contact-card {
    padding: 22px 18px;
  }

  .sidebar .widget {
    padding: 22px 18px;
  }

  .entry-content h2,
.c7afd30 h2 {
    font-size: 1.55rem;
  }

  .c7afd60 {
    font-size: 1.35rem;
  }

  .c7afd35 .c7afd42 {
    min-height: 250px;
  }

  .c7afd35 .c7afd7 {
    padding-top: 58px;
  }

  .c7afd12,
  .c7afd43 button,
  .c7afd1 {
    width: 100%;
  }

  .toast-stack {
    right: 14px;
    bottom: 80px;
    width: min(340px, calc(100% - 28px));
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
  }
}


/* Generated theme override */
:root{
  --accent:#2d696d;
  --text:#344447;
  --title:#16272a;
  --muted:#899394;
  --border:#e4ecec;
  --surface:#ffffff;
  --surface-2:#fafcfc;
  --footer:#1b4042;
  --button:#245356;
  --button-text:#ffffff;
  --hero-overlay:rgba(45,105,109,0.09);
  --wf-accent:#2d696d;
  --wf-panel-bg:linear-gradient(145deg,rgba(17,39,46,0.9),rgba(11,28,36,0.96));
  --wf-panel-border:rgba(83,132,135,0.32);
  --wf-panel-shadow:0 20px 56px rgba(5,11,11,0.34);
  --wf-site-title-bg:rgba(11,26,27,0.44);
  --wf-site-title-border:rgba(83,132,135,0.28);
  --wf-search-bg:rgba(14,34,35,0.42);
  --wf-scroll-start:rgba(45,105,109,0.96);
  --wf-scroll-end:rgba(79,129,132,0.58);
}
.c7afd50{background:var(--surface) !important;}
.c7afd48,.widget{background:var(--surface);border:1px solid rgba(45,105,109,0.1);box-shadow:0 18px 42px rgba(45,105,109,0.12);}
.c7afd45,.c7afd20,#top-bar,#main-nav,.c7afd25{border-color:rgba(45,105,109,0.1);}
a:hover{color:#26585c;}
.c7afd57 img{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:1024 / 683;object-fit:cover;border-radius:18px;}
.c7afd3{display:block;width:100%;max-width:100%;aspect-ratio:560 / 315;height:auto;min-height:240px;border:0;border-radius:18px;background:#000;}
.widget .c7afd3{margin:0 auto;}
.c7afd22{margin:12px 0 0;font-size:14px;}
.c7afd22 a{font-weight:700;text-decoration:underline;}
