html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #182033;
  background: #f7f9fc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.cb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, #07111f 0%, #101828 58%, #0f766e 100%);
  border-bottom: 1px solid rgba(94, 234, 212, 0.24);
  backdrop-filter: blur(12px);
  overflow: visible;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.28);
}

.cb-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: visible;
}

.cb-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  align-self: stretch;
  min-width: 300px;
  overflow: visible;
}

.cb-logo img {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1;
  width: 290px;
  height: 156px;
  display: block;
  object-fit: contain;
  object-position: left center;
  transform: translateX(var(--cb-logo-shift, 0px));
  filter:
    drop-shadow(0 10px 12px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 12px rgba(56, 189, 248, 0.36));
}

.cb-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
}

.cb-menu a:hover,
.cb-menu a.is-active {
  color: #5eead4;
}

.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cb-btn:hover {
  transform: translateY(-1px);
}

.cb-btn-primary {
  color: #fff;
  background: #0f766e;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.28);
}

.cb-btn-primary:hover {
  background: #115e59;
}

.cb-btn-light {
  color: #182033;
  background: #fff;
  border-color: #e5e7eb;
}

.cb-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.92), rgba(16, 24, 40, 0.56)),
    url("https://images.unsplash.com/photo-1722192148044-dbf55fd99c76?auto=format&fit=crop&w=1800&q=80") center center/cover;
}

.cb-hero-inner {
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 76px 0;
}

.cb-hero-copy {
  max-width: 780px;
}

.cb-eyebrow,
.cb-kicker {
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.cb-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.cb-hero h1,
.cb-page-hero h1,
.cb-section-title h2,
.cb-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

.cb-hero h1 {
  max-width: 820px;
  margin-top: 20px;
  font-size: clamp(42px, 6vw, 74px);
}

.cb-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.cb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.cb-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.cb-stat {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.cb-stat strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.cb-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.cb-page-hero {
  padding: 82px 0;
  color: #fff;
  background: linear-gradient(135deg, #101828 0%, #0f766e 100%);
}

.cb-page-hero h1 {
  max-width: 850px;
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 62px);
}

.cb-page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.cb-section {
  padding: 86px 0;
}

.cb-band {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.cb-dark {
  color: #fff;
  background: #101828;
}

.cb-dark .cb-kicker {
  color: #5eead4;
}

.cb-dark .cb-section-title p,
.cb-dark .cb-card p {
  color: rgba(255, 255, 255, 0.72);
}

.cb-section-title {
  max-width: 760px;
  margin-bottom: 38px;
}

.cb-section-title h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 46px);
}

.cb-section-title p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 17px;
}

.cb-grid-3,
.cb-grid-4,
.cb-grid-2 {
  display: grid;
  gap: 20px;
}

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

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

.cb-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cb-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.06);
}

.cb-dark .cb-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.cb-card small {
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cb-dark .cb-card small {
  color: #5eead4;
}

.cb-card h3 {
  margin: 14px 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.cb-card p {
  margin: 0;
  color: #667085;
  font-size: 15.5px;
}

.cb-blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 20px;
}

.cb-blog-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.06);
}

.cb-blog-card-featured {
  grid-row: span 2;
}

.cb-blog-media {
  min-height: 260px;
  background: #101828;
}

.cb-blog-media-vending {
  background:
    linear-gradient(180deg, rgba(16, 24, 40, 0.08), rgba(16, 24, 40, 0.18)),
    url("https://images.unsplash.com/photo-1722192148044-dbf55fd99c76?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.cb-blog-body {
  padding: 28px;
}

.cb-blog-body small {
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cb-blog-body h3 {
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.cb-blog-body p {
  margin: 12px 0 0;
  color: #667085;
}

.cb-text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #0f766e;
  font-weight: 900;
}

.cb-article {
  max-width: 900px;
}

.cb-article h2 {
  margin: 10px 0 18px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.cb-article h3 {
  margin: 30px 0 8px;
  font-size: 24px;
}

.cb-article p {
  margin: 14px 0 0;
  color: #475467;
  font-size: 18px;
}

.cb-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.cb-photo {
  min-height: 440px;
  border-radius: 8px;
  background: url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.13);
}

.cb-list {
  display: grid;
  gap: 16px;
}

.cb-list-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.cb-check {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0f766e;
  color: #fff;
  font-weight: 900;
}

.cb-list-item strong {
  display: block;
  margin-bottom: 4px;
}

.cb-list-item span {
  color: #667085;
  font-size: 15px;
}

.cb-flow {
  counter-reset: flow;
}

.cb-flow .cb-card::before {
  counter-increment: flow;
  content: "0" counter(flow);
  display: block;
  margin-bottom: 38px;
  color: rgba(15, 118, 110, 0.18);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.cb-cta {
  padding: 72px 0;
  color: #fff;
  background: #101828;
}

.cb-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cb-cta h2 {
  max-width: 730px;
  font-size: clamp(30px, 4vw, 46px);
}

.cb-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.cb-contact-box {
  padding: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.cb-contact-box h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.cb-contact-line {
  padding: 14px 0;
  border-top: 1px solid #e5e7eb;
  color: #667085;
}

.cb-contact-line strong {
  display: block;
  color: #182033;
}

.cb-form {
  display: grid;
  gap: 14px;
}

.cb-form input,
.cb-form textarea,
.cb-form select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #182033;
  background: #fff;
  font: inherit;
}

.cb-form textarea {
  min-height: 140px;
  resize: vertical;
}

.cb-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #101828;
  font-size: 14px;
}

.cb-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cb-footer strong {
  color: #fff;
}

.cb-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(0, 188, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #020617 0%, #071923 48%, #020617 100%);
  color: #fff;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.cb-loader::before,
.cb-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cb-loader::before {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(94, 234, 212, 0.16) 49% 51%, transparent 52%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 9px);
  animation: cbScan 2.8s ease-in-out infinite;
}

.cb-loader::after {
  background: radial-gradient(circle at center, transparent 0 42%, rgba(2, 6, 23, 0.86) 76%);
}

.cb-loader-inner {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 40px));
  text-align: center;
}

.cb-loader-logo {
  width: min(460px, 100%);
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  opacity: 0;
  transform: scale(0.78) translateY(18px);
  filter: drop-shadow(0 0 28px rgba(56, 189, 248, 0.55));
  animation: cbLogoReveal 2.35s cubic-bezier(.2,.8,.2,1) forwards;
}

.cb-loader-title {
  margin-top: 24px;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: cbFadeUp 0.8s ease 1.05s forwards;
}

.cb-loader-bar {
  width: min(360px, 80%);
  height: 4px;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.cb-loader-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5eead4, #38bdf8, #f59e0b);
  animation: cbLoadBar 2.55s ease forwards;
}

.cb-ready .cb-loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes cbLogoReveal {
  0% { opacity: 0; transform: scale(0.78) translateY(18px); filter: blur(8px) drop-shadow(0 0 0 rgba(56, 189, 248, 0)); }
  45% { opacity: 1; transform: scale(1.03) translateY(0); filter: blur(0) drop-shadow(0 0 34px rgba(56, 189, 248, 0.72)); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0) drop-shadow(0 0 20px rgba(56, 189, 248, 0.46)); }
}

@keyframes cbFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cbLoadBar {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes cbScan {
  0%, 100% { transform: translateX(-18px); opacity: 0.42; }
  50% { transform: translateX(18px); opacity: 0.82; }
}

@media (max-width: 920px) {
  .cb-menu {
    display: none;
  }

  .cb-grid-2,
  .cb-grid-3,
  .cb-grid-4,
  .cb-blog-grid,
  .cb-split,
  .cb-contact {
    grid-template-columns: 1fr;
  }

  .cb-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cb-photo {
    min-height: 340px;
  }

  .cb-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .cb-wrap {
    width: min(100% - 28px, 1160px);
  }

  .cb-nav {
    min-height: 66px;
  }

  .cb-logo {
    min-width: 210px;
  }

  .cb-logo img {
    top: 8px;
    width: 204px;
    height: 114px;
  }

  .cb-nav .cb-btn {
    display: none;
  }

  .cb-hero-inner {
    min-height: 620px;
    padding: 56px 0;
  }

  .cb-hero p,
  .cb-page-hero p {
    font-size: 17px;
  }

  .cb-actions,
  .cb-stats,
  .cb-grid-4 {
    grid-template-columns: 1fr;
  }

  .cb-actions {
    flex-direction: column;
  }

  .cb-btn {
    width: 100%;
  }

  .cb-stats {
    display: grid;
  }

  .cb-section {
    padding: 64px 0;
  }

  .cb-card,
  .cb-contact-box {
    padding: 22px;
  }

  .cb-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cb-loader,
  .cb-loader-logo,
  .cb-loader-title,
  .cb-loader-bar span,
  .cb-loader::before {
    animation: none;
    transition: none;
  }

  .cb-loader {
    display: none;
  }
}
