.cbp-full-template {
  margin: 0 !important;
  background: #ffffff;
  color: var(--cbp-dark, #1f1f1f);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cbp-full-template * {
  box-sizing: border-box;
}

.cbp-full-template a {
  color: inherit;
  text-decoration: none;
}

.cbp-site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 99, 30, 0.13), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(255, 99, 30, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fffaf7 42%, #ffffff 100%);
}

body.admin-bar .cbp-site-header {
  top: 32px;
}

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

.cbp-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}

.cbp-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cbp-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cbp-brand-img {
  width: 250px;
  max-width: 45vw;
  height: auto;
  object-fit: contain;
  display: block;
}

.cbp-brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--cbp-primary, #ff631e);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 33px;
  font-weight: 800;
  letter-spacing: -5px;
}

.cbp-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cbp-brand-img + .cbp-brand-copy {
  display: none;
}

.cbp-brand-copy strong {
  font-size: 18px;
  font-weight: 900;
  color: #171717;
}

.cbp-brand-copy small {
  margin-top: 5px;
  color: #707070;
  font-size: 12px;
  font-weight: 650;
}

.cbp-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #303030;
  font-size: 15px;
  font-weight: 800;
}

.cbp-nav a {
  position: relative;
  padding: 8px 0;
}

.cbp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cbp-primary, #ff631e);
  transition: transform .2s ease;
}

.cbp-nav a:hover::after {
  transform: scaleX(1);
}

.cbp-page {
  overflow: hidden;
}

.cbp-hero {
  padding: 96px 0 76px;
}

.cbp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 64px;
}

.cbp-kicker,
.cbp-section-label,
.cbp-section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cbp-primary-deep, #c94812);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
}

.cbp-kicker::before,
.cbp-section-label::before,
.cbp-section-heading span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cbp-primary, #ff631e);
  box-shadow: 0 0 0 6px rgba(255, 99, 30, .14);
}

.cbp-hero h1,
.cbp-page-hero h1 {
  margin: 18px 0 18px;
  color: #151515;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .96;
  letter-spacing: -0.065em;
  max-width: 880px;
}

.cbp-hero p,
.cbp-page-hero p {
  margin: 0;
  max-width: 710px;
  color: #5e5e5e;
  font-size: 19px;
  line-height: 1.72;
}

.cbp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cbp-hero-meta span,
.cbp-tag-row span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 99, 30, .22);
  background: #fff;
  color: #333;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(40, 40, 40, .06);
}

.cbp-hero-card-wrap {
  position: relative;
}

.cbp-hero-card-wrap::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 0;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 99, 30, .14), rgba(255, 99, 30, .04));
  transform: rotate(-4deg);
}

.cbp-credential-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(31, 31, 31, .08);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(31, 31, 31, .12);
}

.cbp-credential-card-large {
  padding: 34px;
}

.cbp-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
  color: #777;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.cbp-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #18663a;
  background: #e8f8ef;
  border: 1px solid #b8e9ca;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.cbp-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #25b560;
}

.cbp-card-main {
  display: flex;
  gap: 22px;
  align-items: center;
}

.cbp-badge-visual {
  flex: 0 0 auto;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff 0 17%, rgba(255, 99, 30, .13) 18% 100%);
}

.cbp-badge-ring {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  padding: 8px;
  background: linear-gradient(135deg, var(--cbp-primary, #ff631e), var(--cbp-primary-deep, #c94812));
  box-shadow: 0 16px 32px rgba(255, 99, 30, .28);
}

.cbp-badge-inner {
  height: 100%;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cbp-primary-deep, #c94812);
}

.cbp-badge-inner span {
  display: block;
  font-size: 31px;
  line-height: .8;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.cbp-badge-inner small {
  display: block;
  margin-top: -12px;
  font-size: 10px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.cbp-card-main h3 {
  margin: 0 0 12px;
  color: #151515;
  font-size: clamp(28px, 4vw, 42px);
  line-height: .98;
  letter-spacing: -0.055em;
}

.cbp-card-main p {
  margin: 8px 0 0;
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

.cbp-card-main strong {
  color: #232323;
}

.cbp-card-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.cbp-card-details div {
  background: #fafafa;
  border: 1px solid rgba(31, 31, 31, .06);
  border-radius: 18px;
  padding: 14px;
}

.cbp-card-details dt {
  margin: 0 0 6px;
  color: #8a8a8a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
}

.cbp-card-details dd {
  margin: 0;
  color: #222;
  font-size: 14px;
  font-weight: 850;
}

.cbp-sample-note {
  margin: 20px 0 0;
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 700;
}

.cbp-section {
  padding: 78px 0;
}

.cbp-soft-section {
  background: var(--cbp-soft, #fff3ec);
  border-top: 1px solid rgba(255, 99, 30, .13);
  border-bottom: 1px solid rgba(255, 99, 30, .13);
}

.cbp-section-heading {
  max-width: 800px;
  margin: 0 auto 38px;
  text-align: center;
}

.cbp-left-heading {
  text-align: left;
  margin: 0;
}

.cbp-section-heading h2,
.cbp-verification-preview h2,
.cbp-process-grid h2,
.cbp-content-panel h2 {
  margin: 14px 0 0;
  color: #161616;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.cbp-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cbp-three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cbp-feature-card,
.cbp-content-panel,
.cbp-feature-menu-card,
.cbp-resource-list {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(31, 31, 31, .08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(31, 31, 31, .07);
}

.cbp-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--cbp-primary, #ff631e), var(--cbp-primary-deep, #c94812));
  margin-bottom: 18px;
}

.cbp-feature-card h3,
.cbp-content-panel h3 {
  margin: 0 0 10px;
  color: #181818;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.cbp-feature-card p,
.cbp-verification-preview p,
.cbp-process-item p,
.cbp-content-panel p,
.cbp-footer p {
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.cbp-verification-preview {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 44px;
}

.cbp-verification-preview p {
  margin-top: 18px;
  font-size: 17px;
}

.cbp-feature-menu-card {
  padding: 14px;
  display: grid;
  gap: 6px;
}

.cbp-feature-menu-card div {
  padding: 18px 20px;
  border-radius: 14px;
  color: #565656;
  font-size: 15px;
  font-weight: 700;
}

.cbp-feature-menu-card div:nth-child(5),
.cbp-feature-menu-card div:hover {
  color: var(--cbp-primary-deep, #c94812);
  background: rgba(255, 99, 30, .08);
}

.cbp-process-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.cbp-process-list {
  display: grid;
  gap: 14px;
}

.cbp-process-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(31, 31, 31, .08);
  box-shadow: 0 14px 34px rgba(31, 31, 31, .06);
}

.cbp-process-item span {
  color: var(--cbp-primary, #ff631e);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.cbp-resources-grid,
.cbp-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: 24px;
  align-items: stretch;
}

.cbp-resource-list {
  display: grid;
  gap: 12px;
}

.cbp-resource-list div {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  color: #555;
  font-weight: 800;
  border: 1px solid rgba(31,31,31,.08);
}

.cbp-resource-list div:first-child {
  color: var(--cbp-primary-deep, #c94812);
  background: rgba(255, 99, 30, .08);
}

.cbp-page-hero {
  padding: 82px 0 48px;
  background: linear-gradient(180deg, rgba(255, 99, 30, .09), transparent);
  border-bottom: 1px solid rgba(31,31,31,.06);
}

.cbp-page-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.cbp-content-panel p + p {
  margin-top: 16px;
}

.cbp-check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.cbp-check-list li {
  position: relative;
  padding-left: 30px;
  color: #444;
  font-weight: 750;
  line-height: 1.45;
}

.cbp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--cbp-soft, #fff3ec);
  color: var(--cbp-primary, #ff631e);
  font-size: 12px;
  font-weight: 950;
}

.cbp-soft-card {
  background: var(--cbp-soft, #fff3ec);
}

.cbp-footer {
  padding: 56px 0;
  background: #151515;
  color: #fff;
}

.cbp-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(140px, .5fr));
  gap: 34px;
}

.cbp-footer .cbp-brand-copy strong,
.cbp-footer .cbp-brand-copy small {
  color: #fff;
}

.cbp-footer p {
  margin-top: 18px;
  color: #bfbfbf;
  max-width: 380px;
}

.cbp-footer h4 {
  margin: 8px 0 18px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.cbp-footer a,
.cbp-footer span {
  display: block;
  color: #bfbfbf;
  margin: 12px 0;
  font-size: 14px;
  font-weight: 650;
}

.cbp-footer a:hover {
  color: #fff;
}

.cbp-qr {
  width: 130px;
  height: 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(31,31,31,.08), 0 14px 28px rgba(0,0,0,.08);
}

.cbp-qr span {
  border-radius: 5px;
  background: #1f1f1f;
}

.cbp-qr span:nth-child(2),
.cbp-qr span:nth-child(5),
.cbp-qr span:nth-child(8),
.cbp-qr span:nth-child(10),
.cbp-qr span:nth-child(13),
.cbp-qr span:nth-child(15) {
  background: var(--cbp-primary, #ff631e);
}

@media (max-width: 980px) {
  .cbp-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .cbp-nav {
    width: 100%;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 4px;
  }

  .cbp-brand-img {
    width: 220px;
    max-width: 80vw;
  }

  .cbp-hero-grid,
  .cbp-verification-preview,
  .cbp-process-grid,
  .cbp-resources-grid,
  .cbp-about-grid,
  .cbp-footer-grid {
    grid-template-columns: 1fr;
  }

  .cbp-feature-grid,
  .cbp-three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.admin-bar .cbp-site-header {
    top: 46px;
  }

  .cbp-container {
    width: min(100% - 24px, 1160px);
  }

  .cbp-brand-img {
    width: 190px;
  }

  .cbp-brand-mark {
    width: 50px;
    height: 50px;
  }

  .cbp-brand-copy strong {
    font-size: 16px;
  }

  .cbp-hero {
    padding: 58px 0 54px;
  }

  .cbp-hero h1,
  .cbp-page-hero h1 {
    font-size: 42px;
  }

  .cbp-hero p,
  .cbp-page-hero p {
    font-size: 16px;
  }

  .cbp-feature-grid,
  .cbp-three-grid,
  .cbp-card-details {
    grid-template-columns: 1fr;
  }

  .cbp-card-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .cbp-credential-card,
  .cbp-credential-card-large,
  .cbp-feature-card,
  .cbp-content-panel,
  .cbp-feature-menu-card,
  .cbp-resource-list {
    border-radius: 22px;
    padding: 22px;
  }

  .cbp-feature-menu-card {
    padding: 10px;
  }

  .cbp-section {
    padding: 54px 0;
  }

  .cbp-process-item {
    grid-template-columns: 52px 1fr;
  }
}

/* Version 1.2 menu dropdowns and clickable content pages */
.cbp-nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cbp-nav-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: #303030;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cbp-nav-trigger span {
  color: var(--cbp-primary-deep, #c94812);
  font-size: 11px;
  transform: translateY(1px);
}

.cbp-dropdown {
  position: absolute;
  left: -22px;
  top: calc(100% + 16px);
  z-index: 60;
  min-width: 330px;
  display: none;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(31, 31, 31, .08);
  box-shadow: 0 24px 70px rgba(31, 31, 31, .16);
}

.cbp-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.cbp-nav-group:hover .cbp-dropdown,
.cbp-nav-group:focus-within .cbp-dropdown {
  display: grid;
}

.cbp-dropdown a {
  display: block;
  position: static;
  padding: 14px 16px;
  border-radius: 13px;
  color: #565656;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
  white-space: nowrap;
}

.cbp-dropdown a::after {
  display: none !important;
}

.cbp-dropdown a:hover,
.cbp-dropdown a:focus-visible {
  color: var(--cbp-primary-deep, #c94812);
  background: rgba(255, 99, 30, .08);
  outline: none;
}

.cbp-feature-menu-card a {
  display: block;
  padding: 18px 20px;
  border-radius: 14px;
  color: #565656;
  font-size: 15px;
  font-weight: 800;
}

.cbp-feature-menu-card a:nth-child(5),
.cbp-feature-menu-card a:hover {
  color: var(--cbp-primary-deep, #c94812);
  background: rgba(255, 99, 30, .08);
}

.cbp-resource-list a {
  display: block;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  color: #555;
  font-weight: 850;
  border: 1px solid rgba(31,31,31,.08);
}

.cbp-resource-list a:first-child,
.cbp-resource-list a:hover {
  color: var(--cbp-primary-deep, #c94812);
  background: rgba(255, 99, 30, .08);
}

.cbp-detail-grid,
.cbp-related-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 28px;
  align-items: start;
}

.cbp-related-grid {
  align-items: center;
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1fr);
}

.cbp-detail-list {
  margin-top: 24px;
}

.cbp-detail-page .cbp-tag-row {
  margin-top: 20px;
}

@media (max-width: 980px) {
  .cbp-nav {
    overflow: visible;
    flex-wrap: wrap;
  }

  .cbp-dropdown {
    left: 0;
    min-width: min(340px, calc(100vw - 40px));
  }

  .cbp-detail-grid,
  .cbp-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cbp-nav {
    gap: 14px;
    align-items: flex-start;
  }

  .cbp-nav-trigger,
  .cbp-nav-link {
    font-size: 14px;
  }

  .cbp-dropdown {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 134px;
    min-width: 0;
    max-height: 58vh;
    overflow-y: auto;
  }
}

.cbp-blockchain-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.cbp-blockchain-card {
  background: #181818;
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(31, 31, 31, .16);
  border: 1px solid rgba(255,255,255,.08);
}

.cbp-blockchain-card h3 {
  margin: 18px 0 20px;
  font-size: 26px;
  letter-spacing: -.04em;
  color: #fff;
}

.cbp-blockchain-card dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.cbp-blockchain-card dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.cbp-blockchain-card dt {
  color: rgba(255,255,255,.56);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 850;
}

.cbp-blockchain-card dd {
  margin: 0;
  font-weight: 850;
  color: #fff;
  word-break: break-word;
}

.cbp-blockchain-card p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .cbp-blockchain-grid {
    grid-template-columns: 1fr;
  }
}

/* CertificateBadge one-page anchor behavior */
html { scroll-behavior: smooth; }
.cbp-full-template [id] { scroll-margin-top: 112px; }
.cbp-hero-meta a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 99, 30, .22);
  background: #fff;
  color: #333;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(40, 40, 40, .06);
}
.cbp-hero-meta a:hover { color: var(--cbp-primary-deep, #c94812); }
.cbp-anchor-card {
  scroll-margin-top: 126px;
}
.cbp-anchor-card:target,
.cbp-content-panel:target {
  border-color: rgba(255, 99, 30, .45);
  box-shadow: 0 28px 70px rgba(255, 99, 30, .16);
}
.cbp-nav-trigger {
  cursor: pointer;
}
.cbp-nav-trigger:focus-visible,
.cbp-nav-link:focus-visible,
.cbp-dropdown a:focus-visible {
  outline: 3px solid rgba(255, 99, 30, .35);
  outline-offset: 4px;
}

/* v1.6 credential badge icon update */
.cbp-badge-icon {
  width: 54px;
  height: 54px;
  color: var(--cbp-primary, #ff631e);
  display: block;
}

.cbp-badge-label {
  margin-top: 2px !important;
  color: var(--cbp-primary-deep, #c94812) !important;
  font-size: 9px !important;
  letter-spacing: .12em !important;
}

.cbp-badge-inner {
  align-content: center;
  gap: 2px;
}
