html {
  font-size: 18px;
}

html, body {
  margin: 0;
  padding: 0;
  background: #070b1f;
  scroll-behavior: smooth;
}

.cvd-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(7, 11, 31, 0.97), rgba(11, 17, 42, 0.93));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.18);
  font-family: "Poppins", sans-serif;
}

.cvd-site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cvd-site-header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cvd-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.cvd-nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #e6e8f4;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.cvd-nav-toggle.is-open .cvd-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cvd-nav-toggle.is-open .cvd-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.cvd-nav-toggle.is-open .cvd-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.cvd-site-nav-panel {
  flex: 1 1 100%;
  order: 3;
}

.cvd-site-header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.cvd-site-lang-wrap {
  flex-shrink: 0;
}

.cvd-site-lang {
  position: relative;
  font-family: "Poppins", sans-serif;
}

.cvd-site-lang summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b8c0dc;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.cvd-site-lang summary::-webkit-details-marker {
  display: none;
}

.cvd-site-lang-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.cvd-site-lang[open] summary {
  border-color: rgba(45, 212, 191, 0.4);
  color: #2dd4bf;
  background: rgba(45, 212, 191, 0.08);
}

.cvd-site-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 156px;
  background: #0f1428;
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 1001;
}

.cvd-site-lang-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: #b8c0dc;
  text-decoration: none;
  border-radius: 8px;
}

.cvd-site-lang-menu a:hover,
.cvd-site-lang-menu a[aria-current="page"] {
  background: rgba(45, 212, 191, 0.12);
  color: #2dd4bf;
}

.cvd-home-values-title {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 600;
  color: #2dd4bf;
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

.cvd-site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.cvd-site-logo img {
  height: 92px;
  width: auto;
  max-width: min(340px, 64vw);
  object-fit: contain;
  display: block;
  background: transparent !important;
  border: none;
  box-shadow: none;
}

.cvd-site-header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cvd-site-padi-badge {
  line-height: 0;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.cvd-site-padi-badge img {
  height: 52px;
  width: auto;
  display: block;
  background: transparent;
  border-radius: 4px;
}

.cvd-site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 14px;
}

.cvd-site-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: #b8c0dc;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.cvd-site-nav a:hover,
.cvd-site-nav a.is-active {
  color: #2dd4bf;
}

.cvd-site-nav-cta {
  padding: 8px 14px !important;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.45);
  color: #2dd4bf !important;
  background: rgba(45, 212, 191, 0.08);
}

@media (max-width: 768px) {
  .cvd-site-header-inner {
    flex-wrap: nowrap;
    padding: 10px 14px;
    gap: 10px;
  }

  .cvd-site-header-brand {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .cvd-site-logo {
    flex-shrink: 0;
  }

  .cvd-site-logo img {
    height: 76px;
    max-width: min(240px, 52vw);
  }

  .cvd-site-padi-badge img {
    height: 58px;
  }

  .cvd-site-header-tools {
    flex-shrink: 0;
  }

  .cvd-nav-toggle {
    display: flex;
  }

  .cvd-site-nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(7, 11, 31, 0.98);
    border-bottom: 1px solid rgba(45, 212, 191, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    padding: 12px 16px 16px;
    z-index: 1002;
  }

  .cvd-site-nav-panel.is-open {
    display: block;
  }

  .cvd-site-nav {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .cvd-site-nav a {
    font-size: 0.95rem;
    text-align: left;
    padding: 14px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .cvd-site-nav a:hover,
  .cvd-site-nav a.is-active {
    background: rgba(45, 212, 191, 0.1);
    border-color: rgba(45, 212, 191, 0.28);
  }

  .cvd-site-nav-cta {
    font-weight: 600;
    border-color: rgba(45, 212, 191, 0.45) !important;
    background: rgba(45, 212, 191, 0.12) !important;
    color: #2dd4bf !important;
  }

  body.cvd-nav-open {
    overflow: hidden;
  }
}

@media (min-width: 769px) {
  .cvd-site-header-inner {
    flex-wrap: nowrap;
  }

  .cvd-site-nav-panel {
    display: block;
    flex: 1 1 auto;
    order: 1;
  }

  .cvd-site-header-tools {
    order: 2;
  }

  .cvd-site-header-brand {
    order: 0;
  }
}

@media (max-width: 380px) {
  .cvd-site-logo img {
    height: 88px;
    max-width: 92vw;
  }

  .cvd-site-nav a {
    font-size: 0.74rem;
    padding: 9px 4px;
  }
}

.cvd-blog-page {
  font-family: "Poppins", sans-serif;
  background: #070b1f;
  color: #f0f2ff;
  padding: 40px 0 48px;
}

.cvd-blog-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.cvd-blog-page h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.cvd-blog-intro {
  text-align: center;
  color: #b8c0dc;
  font-size: 0.95rem;
  max-width: 38em;
  margin: 0 auto 28px;
}

.cvd-blog-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .cvd-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cvd-blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(160deg, #0f1640, #141c52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.cvd-blog-card:hover {
  border-color: rgba(184, 132, 245, 0.45);
  transform: translateY(-2px);
}

.cvd-blog-card h2 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.cvd-blog-card span {
  font-size: 0.82rem;
  color: #2dd4bf;
  margin-top: auto;
}

.cvd-wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 0 4px rgba(37, 211, 102, 0.25),
    0 8px 28px rgba(37, 211, 102, 0.45),
    0 12px 32px rgba(0, 0, 0, 0.35);
  animation: cvd-wa-pulse 2.5s ease-in-out infinite;
}

.cvd-wa-float::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.cvd-wa-float:hover {
  background: #20bd5a;
  filter: brightness(1.03);
  animation: none;
}

@keyframes cvd-wa-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2), 0 8px 28px rgba(37, 211, 102, 0.4), 0 12px 32px rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.12), 0 8px 32px rgba(37, 211, 102, 0.55), 0 12px 32px rgba(0, 0, 0, 0.35); }
}

@media (max-width: 640px) {
  .cvd-wa-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px 12px 14px;
    font-size: 0.88rem;
  }
}

.cvd-post,
.cvd-legal {
  font-family: "Poppins", sans-serif;
  background: #070b1f;
  color: #f0f2ff;
  padding: 32px 0 48px;
}

.cvd-post-wrap,
.cvd-legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

.cvd-post-back {
  margin: 0 0 20px;
}

.cvd-post-back--bottom {
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cvd-post-back a {
  color: #2dd4bf;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.cvd-post-back a:hover {
  color: #e6b8ff;
}

.cvd-post-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cvd-post-header h1,
.cvd-legal-wrap > h1 {
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 700;
  color: #e6b8ff;
  line-height: 1.25;
  margin: 0 0 10px;
}

.cvd-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin: 0;
  font-size: 0.82rem;
  color: #a8b0d4;
}

.cvd-post-author:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: rgba(168, 176, 212, 0.5);
}

.cvd-post-meta .cvd-post-date::before {
  content: none;
}

.cvd-post-date {
  font-size: inherit;
  color: inherit;
}

.cvd-post-figure {
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.cvd-post-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.cvd-post-body,
.cvd-legal-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #d8dcf0;
}

.cvd-post-body h2,
.cvd-legal-body h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2dd4bf;
  margin: 28px 0 12px;
}

.cvd-post-body h3,
.cvd-legal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #b884f5;
  margin: 20px 0 10px;
}

.cvd-post-body p,
.cvd-legal-body p {
  margin: 0 0 14px;
}

.cvd-post-body ul,
.cvd-legal-body ul {
  margin: 0 0 16px 1.2em;
  padding: 0;
}

.cvd-post-body li,
.cvd-legal-body li {
  margin-bottom: 8px;
}

/* Standalone site: content visible without Wix iframe scripts */
.cvd-founder,
.cvd-founders-quote,
.cvd-team-card,
.cvd-team-quote,
.cvd-team-join,
.cvd-about-main,
.cvd-about-quote {
  opacity: 1 !important;
  transform: none !important;
}
