:root {
  color-scheme: light;
  --blue: #1929c4;
  --blue-dark: #101c8f;
  --sky: #00c4ff;
  --green: #00ffae;
  --ink: #19212b;
  --muted: #596170;
  --soft: #f3f7fb;
  --line: #dfe6f0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Montserrat, "Red Hat Display", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(25, 41, 196, 0.08);
  backdrop-filter: blur(16px);
}

.logo img {
  width: 210px;
  height: auto;
}

.main-nav,
.header-actions,
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav {
  justify-content: center;
}

.main-nav a,
.header-actions a,
.footer-links a,
.footer-bottom a,
.text-link {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.header-actions a:hover,
.footer-links a:hover,
.footer-bottom a:hover,
.text-link:hover {
  color: var(--blue);
}

.demo-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white) !important;
  box-shadow: 0 14px 30px rgba(25, 41, 196, 0.24);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    radial-gradient(circle at 18% 8%, rgba(219, 241, 255, 0.95), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(0, 196, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eff7ff 100%);
}

.hero-bg {
  position: absolute;
  inset: -20% -12% auto auto;
  width: min(56vw, 720px);
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(25, 41, 196, 0.92), rgba(0, 196, 255, 0.78)),
    url("https://brandscope.com/wp-content/uploads/2025/05/B2B-Wholesale-Platform.png") center / contain no-repeat;
  border-radius: 50%;
  filter: saturate(1.08);
  opacity: 0.96;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.74fr);
  gap: 56px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 118px 24px 86px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 12.5ch;
  margin: 0;
  color: var(--blue);
  font-size: clamp(3.2rem, 6.4vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  color: var(--ink);
}

.hero-copy h2 {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  gap: 11px;
  max-width: 720px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #263241;
  font-size: 0.96rem;
  font-weight: 650;
}

.feature-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list li::before {
  content: "✓";
  flex: 0 0 20px;
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-top: 0.16em;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.demo-card {
  margin-top: 38px;
  padding: 34px;
  border: 1px solid rgba(25, 41, 196, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 90px rgba(16, 28, 143, 0.16);
}

.demo-card h3,
.solution-copy h3,
.help-grid h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.42rem;
  line-height: 1.2;
}

.demo-card p,
.solution-copy p,
.help-grid p,
.footer-brand p {
  color: var(--muted);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
  margin: 24px -18px -18px;
  overflow: hidden;
  border-radius: 18px;
}

.button {
  width: 100%;
  min-height: 52px;
  font-weight: 900;
  text-decoration: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: -18px auto 0;
  border-radius: 24px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(25, 41, 196, 0.22);
  overflow: visible;
}

.metrics div {
  min-height: 188px;
  padding: 34px 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.metrics div:first-child {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.metrics div:last-child {
  border-right: 0;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.metrics strong {
  display: block;
  color: var(--green);
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
  line-height: 1.05;
}

.metrics span {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-strip {
  padding: 90px 24px 48px;
}

.logo-strip p {
  margin: 0 auto 24px;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(90px, 1fr));
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.brand-logos img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
}

.solution {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 24px;
}

.solution-media {
  border-radius: 36px;
  background: var(--soft);
  overflow: hidden;
}

.solution-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.solution-copy h3 {
  margin-top: 24px;
}

.solution-copy p {
  max-width: 660px;
  margin: 18px 0 28px;
  font-size: 1.06rem;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto 96px;
  padding: 0 24px;
}

.help-grid article {
  min-height: 310px;
  padding: 30px;
  background: var(--soft);
}

.help-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--sky);
  font-size: 0.86rem;
  font-weight: 900;
}

.help-grid a {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.footer {
  background: #0d1320;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 54px;
}

.footer-brand img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 380px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px;
}

.footer-links h4 {
  margin: 0 0 15px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.35;
}

.footer-bottom {
  justify-content: center;
  padding: 22px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(25, 41, 196, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.legal-logo img {
  width: 210px;
  height: auto;
}

.nav,
.site-footer .footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover,
.nav a[aria-current="page"] {
  color: var(--blue);
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 84px 24px 104px;
}

.page h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--blue);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.policy-section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.policy-section h2,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.2;
}

.policy-section p,
.contact-card p,
.site-footer p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-page {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 64px;
  align-items: start;
  max-width: 1120px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  padding: 30px;
}

.contact-email {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 24px 44px;
  border-top: 1px solid rgba(25, 41, 196, 0.1);
}

.site-footer strong {
  display: block;
  color: var(--ink);
}

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

  .main-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .hero-inner,
  .solution,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    width: 620px;
    opacity: 0.36;
  }

  .metrics,
  .help-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 18px;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    display: none;
  }

  .logo img {
    width: 184px;
  }

  .hero-inner {
    padding: 72px 18px 62px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.35rem);
  }

  .hero-copy h2,
  .solution-copy h2 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .demo-card {
    padding: 24px;
    border-radius: 22px;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .metrics,
  .brand-logos,
  .help-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .calendly-inline-widget {
    min-width: 0;
    height: 760px;
    margin-right: -10px;
    margin-left: -10px;
  }

  .metrics {
    margin: 0 18px;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .solution,
  .logo-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .help-grid {
    padding: 0 18px;
  }
}
