:root {
  --ink: #102c2a;
  --deep: #063f3b;
  --teal: #08756f;
  --teal-2: #0b8a82;
  --orange: #f58b52;
  --paper: #f4f5f1;
  --white: #fff;
  --mist: #e7eeeb;
  --muted: #61736f;
  --line: #cbd7d3;
  --line-dark: #ffffff25;
  --shadow: 0 28px 80px rgba(5, 49, 46, 0.12);
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.65 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.page-entering main,
body.page-entering footer {
  animation: pageIn 0.62s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.utility {
  height: 34px;
  background: var(--deep);
  color: #d4e3df;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.utility > div {
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.utility span {
  margin-right: auto;
}
.utility a:hover {
  color: white;
}
.utility .utility-special {
  color: var(--orange);
  font-weight: 850;
}
.site-header {
  height: 86px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f4f5f1f2;
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.015em;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}
.brand img[src$="beeonline-logo.png"],
.installer img[src$="beeonline-logo.png"],
.login img[src$="beeonline-logo.png"] {
  clip-path: circle(34%);
  transform: scale(1.48);
}
.brand small {
  display: block;
  color: var(--teal);
  font-size: 0.6rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}
.site-header nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 0.78rem;
  font-weight: 750;
}
.site-header nav > a:not(.nav-cta):not(.nav-quote) {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
.site-header nav > a:not(.nav-cta):not(.nav-quote):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: 0.25s;
}
.site-header nav > a:hover:after,
.site-header nav > a.active:after {
  transform: scaleX(1);
}
.specials-menu-item {
  color: #c75025;
  font-weight: 900;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
.specials-menu-item .specials-count {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--deep);
  border-radius: 50%;
  font-size: 0.56rem;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-1px);
}
.nav-quote {
  color: var(--teal);
  border-left: 1px solid var(--line);
  padding-left: 23px;
}
.nav-cta,
.btn {
  background: var(--orange);
  color: #172e2b;
  padding: 13px 19px;
  border-radius: 3px;
  border: 1px solid var(--orange);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.22s;
}
.nav-cta:hover,
.btn:hover {
  background: #e87942;
  border-color: #e87942;
  transform: translateY(-1px);
}
.menu {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 13px;
  border-radius: 3px;
  color: var(--ink);
  font-weight: 750;
}
.nav-group {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-group > a {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
.nav-group > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: 0.25s;
}
.nav-group:hover > a:after,
.nav-group:focus-within > a:after,
.nav-group > a.active:after {
  transform: scaleX(1);
}
.mega {
  position: absolute;
  display: none;
  grid-template-columns: 1fr 1fr;
  top: calc(100% - 1px);
  left: -28px;
  width: 570px;
  padding: 27px;
  gap: 28px;
  background: white;
  border-top: 3px solid var(--orange);
  box-shadow: 0 25px 65px rgba(5, 49, 46, 0.18);
  z-index: 80;
}
.mega.compact {
  width: 310px;
  grid-template-columns: 1fr;
}
.mega.services-mega {
  width: min(820px, calc(100vw - 40px));
  left: 50%;
  grid-template-columns: 0.88fr 1.3fr 0.9fr;
  transform: translateX(-45%);
}
.nav-group:hover .mega,
.nav-group:focus-within .mega {
  display: grid;
}
.mega div > span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  text-transform: uppercase;
  font-size: 0.61rem;
  letter-spacing: 0.13em;
}
.mega a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
}
.mega a:hover {
  color: var(--teal);
  padding-left: 4px;
}
.hero-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  font-size: 0.8rem;
  font-weight: 800;
}
.home-pathways,
.content-intro,
.detail-grid,
.pricing-section,
.comparison,
.process-section,
.api-section,
.journey,
.use-cases,
.client-grid {
  width: min(var(--max), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.home-pathways {
  padding-top: 105px;
  padding-bottom: 115px;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 0.52fr 1fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 45px;
}
.section-heading h2,
.content-intro h2,
.api-section h2 {
  font:
    400 clamp(2.35rem, 4vw, 4.6rem) / 1.04 Georgia,
    serif;
  letter-spacing: -0.035em;
  margin: 0;
}
.section-heading > p:last-child {
  color: var(--muted);
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pathway-grid > a {
  min-height: 250px;
  padding: 30px;
  background: #fafbf8;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}
.pathway-grid > a:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  z-index: 2;
}
.pathway-grid span,
.detail-grid article > span,
.client-grid article > span {
  color: var(--teal);
  font:
    700 0.62rem ui-monospace,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.pathway-grid h3 {
  font:
    400 1.55rem Georgia,
    serif;
  margin: 42px 0 8px;
}
.pathway-grid p {
  color: var(--muted);
  margin: 0 0 22px;
}
.pathway-grid b {
  color: var(--teal);
  font-size: 0.76rem;
  margin-top: auto;
}
.content-intro {
  padding-top: 105px;
  padding-bottom: 105px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.content-intro > div:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}
.content-intro > div:last-child p:first-child {
  margin-top: 0;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 115px;
}
.detail-grid article {
  background: white;
  padding: 44px;
  min-height: 330px;
}
.detail-grid h3,
.comparison-grid h3,
.journey h3,
.client-grid h3 {
  font:
    400 1.72rem Georgia,
    serif;
  margin: 45px 0 14px;
}
.detail-grid p,
.detail-grid li,
.comparison-grid p,
.journey p,
.client-grid p {
  color: var(--muted);
}
.detail-grid ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.detail-grid li,
.price-card li {
  padding: 7px 0 7px 19px;
  border-top: 1px solid var(--line);
  position: relative;
}
.detail-grid li:before,
.price-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}
.pricing-section {
  padding-top: 105px;
  padding-bottom: 115px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.price-card {
  background: white;
  border: 1px solid var(--line);
  padding: 31px;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--teal);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.price-card.enterprise {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}
.price-card > span {
  min-height: 34px;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.price-card.enterprise > span {
  color: var(--orange);
}
.price-card h3 {
  font:
    400 clamp(2.4rem, 3.2vw, 3.7rem) Georgia,
    serif;
  margin: 18px 0 20px;
}
.price-card h3 small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font:
    700 0.67rem Inter,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card.enterprise h3 small,
.price-card.enterprise p,
.price-card.enterprise li {
  color: #bcd0cc;
}
.price-card > p {
  color: var(--muted);
  min-height: 100px;
}
.price-card ul {
  margin-bottom: 30px;
}
.price-card li {
  font-size: 0.78rem;
}
.price-card .btn {
  margin-top: auto;
}
.comparison {
  padding-bottom: 115px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.comparison-grid article {
  padding: 30px;
  border-right: 1px solid var(--line);
}
.comparison-grid article:last-child {
  border-right: 0;
}
.comparison-grid h3 {
  margin-top: 30px;
}
.process-section {
  padding-top: 100px;
  padding-bottom: 115px;
}
.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}
.process-row.four {
  grid-template-columns: repeat(4, 1fr);
}
.process-row article {
  min-height: 275px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #fafbf8;
}
.process-row article:last-child {
  border-right: 0;
}
.process-row b {
  color: var(--orange);
  font:
    700 0.7rem ui-monospace,
    monospace;
}
.process-row h3 {
  margin-top: 55px;
  font:
    400 1.4rem Georgia,
    serif;
}
.process-row p {
  color: var(--muted);
  font-size: 0.85rem;
}
.api-section {
  margin-bottom: 115px;
  padding: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
  background: var(--deep);
  color: white;
  border-top: 5px solid var(--orange);
}
.api-section p {
  color: #bed2ce;
}
.api-section pre {
  margin: 0;
  padding: 28px;
  overflow: auto;
  background: #032d2a;
  border: 1px solid #ffffff2b;
  color: #b6dfd7;
  font:
    0.78rem/1.8 ui-monospace,
    monospace;
}
.api-section code span {
  color: var(--orange);
  font-weight: 800;
}
.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 80px;
  margin-bottom: 115px;
  border: 1px solid var(--line);
}
.journey article {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
}
.journey article:last-child {
  border-right: 0;
}
.journey b {
  color: var(--orange);
  font:
    700 0.7rem ui-monospace,
    monospace;
}
.use-cases {
  padding-bottom: 115px;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.use-case-grid span {
  padding: 25px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}
.client-grid {
  padding-bottom: 115px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.client-grid article {
  min-height: 310px;
  padding: 35px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.client-grid h3 {
  margin-top: 55px;
}
.hosting-hero,
.cloud-hero {
  overflow: hidden;
}
.hosting-hero h1,
.cloud-hero h1 {
  max-width: 950px;
}
.hero-brand-icon,
.cloud-brand-pair {
  position: absolute !important;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  background: #e2ece7;
  border: 1px solid var(--line);
  box-shadow: 28px 28px 0 rgba(6, 63, 59, 0.06);
}
.hero-brand-icon img {
  width: 130px;
  max-height: 110px;
}
.vps-hero .hero-brand-icon img {
  width: 120px;
  max-height: 120px;
}
.cloud-brand-pair {
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.cloud-brand-pair span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: #edf2ef;
}
.cloud-brand-pair img {
  width: 78px;
  max-height: 68px;
}
.service-switcher,
.platform-catalogue,
.managed-options,
.cloud-platforms {
  width: min(var(--max), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.service-switcher {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  transform: translateY(-1px);
}
.service-switcher a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  transition: 0.2s;
}
.service-switcher a:last-child {
  border-right: 0;
}
.service-switcher a:hover,
.service-switcher a.active {
  background: var(--deep);
  color: white;
}
.service-switcher img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.service-switcher a.active img,
.service-switcher a:hover img {
  filter: brightness(0) invert(1);
}
.plan-icon {
  width: 54px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 21px;
}
.price-card.enterprise .plan-icon {
  filter: brightness(0) invert(1);
}
.hosting-pricing .price-card {
  min-height: 670px;
}
.hosting-pricing .price-card > p {
  min-height: 112px;
}
.platform-catalogue,
.managed-options {
  padding-top: 100px;
  padding-bottom: 115px;
}
.icon-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}
.icon-service-grid article {
  min-height: 310px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 25px;
  padding: 38px;
  background: white;
}
.icon-service-grid article > img {
  width: 64px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}
.icon-service-grid span,
.managed-grid article > span,
.cloud-platforms header span {
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.icon-service-grid h3 {
  margin: 13px 0 12px;
  font:
    400 1.65rem Georgia,
    serif;
}
.icon-service-grid p {
  margin-bottom: 22px;
  color: var(--muted);
}
.icon-service-grid a {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
}
.managed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.managed-grid article {
  min-height: 430px;
  padding: 36px;
  background: white;
  border: 1px solid var(--line);
}
.managed-grid article.featured {
  background: #e1ece7;
  border: 2px solid var(--teal);
  box-shadow: var(--shadow);
}
.managed-grid h3 {
  margin: 48px 0 16px;
  font:
    400 2rem Georgia,
    serif;
}
.managed-grid p,
.managed-grid li {
  color: var(--muted);
}
.managed-grid ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.managed-grid li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}
.cloud-platforms {
  padding-bottom: 115px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cloud-platforms > article {
  padding: 48px;
  color: white;
  border-top: 5px solid var(--orange);
}
.aws-panel {
  background: #232f3e;
}
.azure-panel {
  background: #063f3b;
}
.cloud-platforms header {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid #ffffff29;
}
.cloud-platforms header img {
  width: 85px;
  height: 64px;
  object-fit: contain;
  padding: 12px;
  background: white;
}
.cloud-platforms header span {
  color: var(--orange);
}
.cloud-platforms h2 {
  margin: 5px 0 0;
  font:
    400 2.35rem Georgia,
    serif;
}
.cloud-platforms > article > p {
  max-width: 680px;
  margin: 28px 0;
  color: #c7d7d3;
}
.cloud-service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ffffff29;
  border-left: 1px solid #ffffff29;
}
.cloud-service-list div {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid #ffffff29;
  border-bottom: 1px solid #ffffff29;
}
.cloud-service-list h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
}
.cloud-service-list p {
  margin: 0;
  color: #b8cbc7;
  font-size: 0.78rem;
}
.cloud-pricing {
  border-top: 1px solid var(--line);
}
.compact-pricing .price-card {
  min-height: 470px;
}
.compact-pricing .price-card > p {
  min-height: auto;
}
.specials-home-banner {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 42px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--deep);
  color: white;
  border-top: 5px solid var(--orange);
}
.specials-home-banner span {
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.specials-home-banner h2 {
  margin: 8px 0 6px;
  font:
    400 clamp(2rem, 3vw, 3.25rem) / 1.05 Georgia,
    serif;
}
.specials-home-banner p {
  max-width: 700px;
  margin: 0;
  color: #c4d6d2;
}
.specials-home-banner .btn {
  flex: 0 0 auto;
}
.specials-hero {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--deep);
  color: white;
  border-bottom: 0;
  border-top: 5px solid var(--orange);
}
.specials-hero:before {
  width: 42%;
  right: max(24px, calc((100vw - var(--max)) / 2));
  border-color: #ffffff2a;
  background:
    linear-gradient(
      90deg,
      transparent 49.7%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 50.3%
    ),
    linear-gradient(
      transparent 49.7%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 50.3%
    );
  background-size: 70px 70px;
}
.specials-hero:after {
  color: #ffffff68;
  right: max(24px, calc((100vw - var(--max)) / 2));
  content: "BEEONLINE / SPECIALS";
}
.specials-hero .eyebrow {
  color: #ffc2a0;
}
.specials-hero > p:not(.eyebrow) {
  color: #c4d6d2;
}
.specials-hero .hero-links > a:not(.btn) {
  color: white;
}
.specials-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid #ffffff2d;
}
.specials-proof span {
  color: #aac3be;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.specials-proof b {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 1.05rem;
}
.website-specials {
  padding-top: 35px;
}
.specials-grid .price-card {
  border-top: 4px solid var(--teal);
}
.specials-grid .price-card.featured,
.specials-grid .price-card.enterprise {
  border-top-color: var(--orange);
}
.specials-grid .price-card h3 {
  letter-spacing: -0.05em;
}
.specials-included {
  padding-top: 25px;
}
.specials-terms {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 115px;
  padding: 65px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  background: var(--mist);
  border-top: 4px solid var(--teal);
}
.specials-terms h2 {
  margin: 0;
  font:
    400 clamp(2.2rem, 3.4vw, 3.8rem) / 1.05 Georgia,
    serif;
}
.specials-terms ul {
  margin: 0;
  padding-left: 20px;
}
.specials-terms li {
  padding: 8px 0;
  color: var(--muted);
}
.package-choice {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 24px;
  padding: 18px 20px;
  background: var(--mist);
  border-left: 4px solid var(--orange);
}
.package-choice span {
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.package-choice strong {
  grid-row: 2;
  font:
    400 1.3rem Georgia,
    serif;
}
.package-choice a {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
}
.footer-special {
  display: inline-block !important;
  margin-top: 14px !important;
  padding-bottom: 4px;
  color: var(--orange) !important;
  border-bottom: 1px solid var(--orange);
  font-weight: 800;
}
.admin-section-title {
  margin: 26px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font:
    400 1.8rem Georgia,
    serif;
}
main {
  min-height: 60vh;
  overflow: hidden;
}
main > section,
.request-form,
.tabs,
.tab,
.flash,
.table-wrap,
.request-detail {
  width: min(var(--max), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.hero {
  min-height: calc(100svh - 120px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 8%;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 86px;
}
.page-home .hero {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(38px, 5vw, 78px);
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, #dce9e3 0%, #e7efeb 52%, #d3e3dc 100%);
  box-shadow:
    inset 0 -8px 0 var(--deep),
    inset 0 -12px 0 var(--orange);
}
.page-home .hero-copy {
  width: 100%;
  max-width: 720px;
}
.page-home .hero h1 {
  max-width: 700px;
  font-size: clamp(3.8rem, 5.25vw, 6rem);
}
.page-home .hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: #49635e;
}
.page-home .assurance {
  max-width: 790px;
  border-color: #bdd0c9;
}
.clientflow-studio-visual {
  appearance: none;
  width: 100%;
  max-width: 610px;
  margin: 0;
  padding: 0;
  justify-self: end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 63, 59, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    -12px 26px 55px rgba(6, 63, 59, 0.2),
    18px 38px 0 rgba(6, 63, 59, 0.06);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg) rotateZ(0.35deg);
  transform-origin: right center;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease;
}
.clientflow-studio-visual:hover,
.clientflow-studio-visual:focus-visible {
  transform: perspective(1200px) rotateY(-2deg) rotateX(0deg) translateY(-6px);
  box-shadow:
    -8px 34px 75px rgba(6, 63, 59, 0.24),
    12px 28px 0 rgba(245, 139, 82, 0.12);
  outline: none;
}
.clientflow-studio-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0.17),
    transparent 24%,
    transparent 72%,
    rgba(6, 63, 59, 0.08)
  );
  box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.18);
}
.clientflow-studio-visual img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.96;
}
.studio-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 12px 15px;
  background: rgba(6, 63, 59, 0.94);
  color: white;
  border-left: 3px solid var(--orange);
  box-shadow: 0 10px 28px rgba(6, 63, 59, 0.16);
}
.studio-label span {
  display: block;
  font:
    700 0.79rem/1.1 ui-monospace,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.studio-label small {
  display: block;
  margin-top: 4px;
  color: #bed2ce;
  font-size: 0.6rem;
}
.studio-launch {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.94);
  color: #260829;
  border-left: 3px solid #ff5470;
  box-shadow: 0 12px 32px rgba(29, 4, 31, 0.25);
}
.studio-launch i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff5470;
  color: white;
  font-style: normal;
}
.studio-launch b,
.studio-launch small {
  display: block;
}
.studio-launch b {
  font-size: 0.67rem;
}
.studio-launch small {
  margin-top: 2px;
  color: #6f6070;
  font-size: 0.52rem;
}

body:has(.cf-demo-dialog[open]) {
  overflow: hidden;
}
.cf-demo-dialog {
  width: min(1500px, calc(100vw - 34px));
  max-width: none;
  height: min(900px, calc(100svh - 34px));
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f6f8;
  color: #241426;
  box-shadow: 0 45px 120px rgba(16, 3, 19, 0.48);
}
.cf-demo-dialog::backdrop {
  background:
    radial-gradient(
      circle at 25% 15%,
      rgba(255, 84, 112, 0.16),
      transparent 32%
    ),
    rgba(8, 2, 10, 0.78);
  backdrop-filter: blur(13px);
}
.cf-demo-dialog[open] {
  animation: cfModalIn 0.42s cubic-bezier(0.18, 0.88, 0.24, 1);
}
@keyframes cfModalIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cf-demo-shell {
  height: 100%;
  display: grid;
  grid-template-rows: 66px 48px minmax(0, 1fr) 38px;
}
.cf-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px 0 22px;
  background: linear-gradient(105deg, #250527, #4a0b46 58%, #26072d);
  color: white;
}
.cf-demo-brand,
.cf-demo-state,
.cf-demo-toolbar,
.cf-demo-toolbar > div,
.cf-canvas-top,
.cf-demo-footer,
.cf-api-monitor > div {
  display: flex;
  align-items: center;
}
.cf-demo-brand {
  gap: 13px;
}
.cf-cube {
  width: 28px;
  height: 28px;
  display: block;
  border: 3px solid white;
  border-radius: 5px;
  transform: rotate(30deg) skew(-4deg, -4deg);
  box-shadow: inset 7px -7px 0 rgba(255, 84, 112, 0.3);
}
.cf-demo-brand strong,
.cf-demo-brand small {
  display: block;
}
.cf-demo-brand strong {
  font-size: 1.05rem;
}
.cf-demo-brand small {
  margin-top: 2px;
  color: #d7bed8;
  font-size: 0.62rem;
}
.cf-demo-state {
  gap: 9px;
}
.cf-demo-state > span {
  margin-right: 7px;
  color: #d8c3d9;
  font-size: 0.61rem;
}
.cf-demo-state > span i,
.cf-demo-footer p > span {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #39d88f;
  box-shadow: 0 0 0 5px rgba(57, 216, 143, 0.11);
}
.cf-demo-state button,
.cf-demo-toolbar button {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  padding: 8px 13px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
}
.cf-demo-state .cf-run {
  border-color: #ff6d7f;
  background: linear-gradient(135deg, #ff5275, #ff9f42);
  color: #270626;
}
.cf-demo-state .cf-close {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.35rem;
  line-height: 1;
}
.cf-demo-toolbar {
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid #e5dfe6;
  background: white;
}
.cf-demo-toolbar > div {
  height: 100%;
  gap: 5px;
}
.cf-demo-toolbar button {
  border: 0;
  background: transparent;
  color: #6b5d6d;
  padding: 7px 11px;
}
.cf-demo-toolbar button.active {
  color: #ed315c;
  box-shadow: inset 0 -2px 0 #ed315c;
}
.cf-demo-toolbar p {
  margin: 0;
  color: #675869;
  font-size: 0.62rem;
}
.cf-demo-toolbar p span {
  color: #2e1731;
  font-weight: 850;
}
.cf-demo-toolbar p b {
  margin-left: 12px;
  color: #159668;
  font-weight: 750;
}
.cf-demo-workspace {
  min-height: 0;
  display: grid;
  grid-template-columns: 250px minmax(440px, 1fr) 275px;
}
.cf-component-library,
.cf-inspector {
  min-height: 0;
  overflow-y: auto;
  padding: 20px 17px;
  background: #fcfbfc;
}
.cf-component-library {
  border-right: 1px solid #e4dfe5;
}
.cf-inspector {
  border-left: 1px solid #e4dfe5;
}
.cf-panel-heading > span {
  color: #ef3f67;
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cf-panel-heading h3 {
  margin: 3px 0 4px;
  font-size: 0.94rem;
}
.cf-panel-heading p {
  margin: 0 0 14px;
  color: #8b7f8c;
  font-size: 0.6rem;
}
.cf-palette {
  display: grid;
  gap: 7px;
}
.cf-palette button {
  width: 100%;
  display: grid;
  grid-template-columns: 35px 1fr 18px;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid #e3dce4;
  border-radius: 6px;
  background: white;
  color: #3d2c40;
  cursor: grab;
  text-align: left;
  transition: 0.18s;
}
.cf-palette button:hover,
.cf-palette button:focus-visible {
  border-color: #ef6686;
  box-shadow: 0 8px 22px rgba(66, 10, 65, 0.08);
  transform: translateX(2px);
}
.cf-palette i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #5a1b65;
  color: white;
  font-style: normal;
  font-size: 0.71rem;
  font-weight: 850;
}
.cf-palette i.blue {
  background: #2176e5;
}
.cf-palette i.violet {
  background: #814de0;
}
.cf-palette i.amber {
  background: #eea30c;
}
.cf-palette i.pink {
  background: #ee3d83;
}
.cf-palette i.green {
  background: #13a667;
}
.cf-palette b,
.cf-palette small {
  display: block;
}
.cf-palette b {
  font-size: 0.66rem;
}
.cf-palette small {
  margin-top: 1px;
  color: #918493;
  font-size: 0.52rem;
}
.cf-palette em {
  color: #baacbc;
  font-style: normal;
}
.api-heading {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #e8e2e9;
}
.cf-api-palette i {
  background: linear-gradient(135deg, #0d8f92, #42b9a6);
  font-size: 0.52rem;
}
.cf-canvas-panel {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  padding: 0 24px 30px;
  background-color: #f1eef3;
  background-image: radial-gradient(#d3cbd6 0.7px, transparent 0.7px);
  background-size: 18px 18px;
}
.cf-canvas-top {
  height: 43px;
  justify-content: space-between;
  color: #7a6d7c;
  font-size: 0.55rem;
}
.cf-canvas-top > div {
  display: flex;
  gap: 6px;
}
.cf-canvas-top > div span,
.cf-zoom {
  padding: 4px 7px;
  border: 1px solid #dcd5de;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
}
.cf-canvas-top p {
  margin: 0;
}
.cf-canvas-top p b {
  color: #ed315c;
}
.cf-form-frame {
  width: min(680px, 100%);
  min-height: 560px;
  margin: 0 auto;
  padding-bottom: 28px;
  background: white;
  border: 1px solid #ddd6df;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(48, 18, 51, 0.12);
  overflow: hidden;
}
.cf-form-brand {
  height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(110deg, #250527, #4a0b46);
  color: white;
}
.cf-form-brand strong {
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}
.cf-form-brand small {
  color: #d8c2d9;
  font-size: 0.45rem;
}
.cf-form-title {
  padding: 20px 30px 10px;
  text-align: center;
}
.cf-form-title span {
  color: #ed315c;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cf-form-title h2 {
  margin: 2px 0;
  font:
    400 2rem Georgia,
    serif;
}
.cf-form-title p {
  margin: 0;
  color: #877b88;
  font-size: 0.59rem;
}
.cf-dropzone {
  min-height: 295px;
  margin: 8px 30px 18px;
  padding: 12px;
  border: 1px dashed #cfc5d1;
  border-radius: 7px;
  transition: 0.2s;
}
.cf-dropzone.is-over {
  border-color: #ed315c;
  background: #fff4f7;
  box-shadow: inset 0 0 0 3px rgba(237, 49, 92, 0.08);
}
.cf-empty-state {
  min-height: 265px;
  display: grid;
  place-content: center;
  justify-items: center;
  color: #a396a5;
  text-align: center;
}
.cf-empty-state span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #f1ebf2;
  color: #7f6683;
  font-size: 1.2rem;
}
.cf-empty-state b,
.cf-empty-state small {
  display: block;
}
.cf-empty-state b {
  color: #6e5e71;
  font-size: 0.67rem;
}
.cf-empty-state small {
  font-size: 0.53rem;
}
.cf-canvas-block {
  position: relative;
  margin: 8px 0;
  padding: 11px 13px;
  border: 1px solid #ded7e0;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(49, 18, 52, 0.04);
  cursor: pointer;
  animation: cfBlockIn 0.28s ease both;
}
@keyframes cfBlockIn {
  from {
    opacity: 0;
    transform: translateY(7px) scale(0.985);
  }
}
.cf-canvas-block:hover,
.cf-canvas-block.selected {
  border-color: #5b86f4;
  box-shadow: 0 0 0 2px rgba(91, 134, 244, 0.12);
}
.cf-canvas-block > b {
  display: block;
  margin-bottom: 5px;
  font-size: 0.61rem;
}
.cf-canvas-block > small {
  color: #908393;
  font-size: 0.52rem;
}
.cf-canvas-block .cf-remove {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 21px;
  height: 21px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f4eff4;
  color: #8c7a8e;
  cursor: pointer;
  font-size: 0.72rem;
}
.cf-field-preview {
  height: 27px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid #ded8df;
  border-radius: 4px;
  color: #aaa0ac;
  font-size: 0.53rem;
}
.cf-rating-preview {
  color: #eca300;
  font-size: 1rem;
  letter-spacing: 0.12em;
}
.cf-consent-preview {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #756878;
  font-size: 0.54rem;
}
.cf-consent-preview i {
  width: 14px;
  height: 14px;
  border: 2px solid #20aa78;
  border-radius: 3px;
}
.cf-api-block {
  border-color: #80cbc5;
  background: linear-gradient(100deg, #f0fbfa, white);
}
.cf-api-block:before {
  content: "API";
  display: inline-block;
  margin-right: 7px;
  padding: 2px 5px;
  border-radius: 3px;
  background: #128d8f;
  color: white;
  font-size: 0.46rem;
  font-weight: 900;
}
.cf-api-block code {
  display: block;
  margin-top: 6px;
  color: #167d7c;
  font-size: 0.5rem;
}
.cf-form-submit {
  display: block;
  margin: auto;
  padding: 9px 24px;
  border: 0;
  border-radius: 4px;
  background: #3d083d;
  color: white;
  font-size: 0.62rem;
  font-weight: 850;
}
.cf-property-group {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #e5dfe6;
  border-radius: 7px;
  background: white;
}
.cf-property-group label,
.cf-property-group label span {
  display: block;
  color: #7a6c7c;
  font-size: 0.54rem;
}
.cf-property-group input,
.cf-property-group code {
  width: 100%;
  display: block;
  margin-top: 5px;
  padding: 8px;
  border: 1px solid #ded7df;
  border-radius: 4px;
  background: #faf8fa;
  color: #3b2b3e;
  font:
    0.56rem ui-monospace,
    monospace;
}
.cf-property-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0;
  color: #6f6172;
  font-size: 0.55rem;
}
.cf-toggle {
  width: 34px;
  height: 18px;
  padding: 2px;
  border: 0;
  border-radius: 20px;
  background: #c9c0cb;
  cursor: pointer;
}
.cf-toggle i {
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 50%;
  background: white;
  transition: 0.2s;
}
.cf-toggle.active {
  background: #ff5275;
}
.cf-toggle.active i {
  transform: translateX(16px);
}
.cf-property-group h4 {
  margin: 0 0 10px;
  font-size: 0.66rem;
}
.cf-rule {
  display: grid;
  gap: 4px;
  padding: 9px;
  border-left: 3px solid #8150db;
  background: #f6f2fa;
  font-size: 0.52rem;
}
.cf-rule span,
.cf-rule em {
  color: #887a8a;
  font-style: normal;
}
.cf-add-rule {
  margin-top: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ed315c;
  font-size: 0.53rem;
  font-weight: 800;
}
.cf-api-monitor {
  margin-top: 16px;
  border-radius: 7px;
  overflow: hidden;
  background: #251027;
  color: white;
}
.cf-api-monitor > div {
  justify-content: space-between;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.54rem;
}
.cf-api-monitor > div b {
  color: #51dab0;
}
.cf-api-monitor ol {
  max-height: 180px;
  margin: 0;
  padding: 8px 12px 11px;
  list-style: none;
  overflow: auto;
}
.cf-api-monitor li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #d8c8db;
  font:
    0.47rem ui-monospace,
    monospace;
}
.cf-api-monitor li b {
  color: #6ce2bc;
}
.cf-api-monitor li.error b {
  color: #ff8b9f;
}
.cf-api-monitor li.muted {
  display: block;
  color: #9c869f;
}
.cf-demo-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  border-top: 1px solid #dfd8e1;
  background: #fff;
  color: #786b7a;
  font-size: 0.52rem;
}
.cf-demo-footer p {
  margin: 0;
}
.cf-demo-footer div b {
  color: #3e2342;
}
.cf-demo-shell.is-preview .cf-component-library,
.cf-demo-shell.is-preview .cf-inspector {
  display: none;
}
.cf-demo-shell.is-preview .cf-demo-workspace {
  grid-template-columns: 1fr;
}
.cf-demo-shell.is-preview .cf-canvas-panel {
  padding-left: 10%;
  padding-right: 10%;
}
.cf-demo-shell.is-preview .cf-form-frame {
  width: min(780px, 100%);
}
.hero h1,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(3.8rem, 6.3vw, 6.9rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0.14em 0 0.28em;
}
.hero-copy > p:not(.eyebrow),
.page-hero > p {
  font-size: 1.12rem;
  max-width: 720px;
  color: var(--muted);
}
.eyebrow {
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.68rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 11px;
}
.eyebrow:before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--orange);
}
.actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}
.text-link {
  font-weight: 800;
  color: var(--deep);
  font-size: 0.88rem;
}
.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: 0.2s;
}
.text-link:hover span {
  transform: translateX(4px);
}
.assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.assurance span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.assurance b {
  display: block;
  color: var(--deep);
  font-size: 1rem;
  margin-bottom: 3px;
}
.map {
  height: 490px;
  background: var(--deep);
  color: white;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 5px solid var(--orange);
}
.map:before {
  content: "";
  position: absolute;
  inset: 90px 55px 70px;
  background:
    linear-gradient(90deg, transparent 49.7%, #ffffff15 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, #ffffff15 50%, transparent 50.3%);
  background-size: 62px 62px;
  border: 1px solid #ffffff18;
}
.map:after {
  content: "";
  position: absolute;
  left: 17%;
  top: 28%;
  width: 65%;
  height: 46%;
  border: 1px dashed #ffffff5c;
  clip-path: polygon(
    0 28%,
    25% 0,
    53% 65%,
    78% 30%,
    100% 75%,
    100% 100%,
    0 100%
  );
}
.map-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  border-bottom: 1px solid #ffffff1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.map-head b {
  color: #7ce0ce;
  font-size: 0.62rem;
}
.map-head b:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #55cf84;
  border-radius: 50%;
  margin-right: 7px;
}
.map > span,
.map > strong {
  position: absolute;
  z-index: 2;
  background: #0b514c;
  border: 1px solid #ffffff35;
  padding: 8px 11px;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.map > span:nth-of-type(1) {
  left: 9%;
  top: 29%;
}
.map > span:nth-of-type(2) {
  left: 55%;
  top: 22%;
}
.map > span:nth-of-type(3) {
  left: 30%;
  top: 54%;
}
.map > span:nth-of-type(4) {
  right: 8%;
  top: 61%;
}
.map > strong {
  left: 20%;
  bottom: 12%;
  background: var(--orange);
  color: var(--ink);
  border-color: var(--orange);
}
.map-code {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font:
    600 0.58rem ui-monospace,
    monospace;
  letter-spacing: 0.12em;
  color: #90aaa5;
}
.intro {
  padding-top: 115px;
  padding-bottom: 115px;
  display: grid;
  grid-template-columns: 0.52fr 1fr 1fr;
  gap: 54px;
  border-top: 1px solid var(--line);
}
.intro h2,
.feature h2,
.split h2 {
  font:
    400 clamp(2.45rem, 4.3vw, 4.8rem) / 1.04 Georgia,
    serif;
  letter-spacing: -0.035em;
  margin: 0;
}
.intro > p:last-child,
.split > p {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0;
}
.feature {
  margin-top: 25px;
  margin-bottom: 110px;
  padding: 74px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  background: var(--mist);
  border-top: 4px solid var(--teal);
}
.feature > div {
  max-width: 830px;
}
.feature p {
  color: var(--muted);
  max-width: 760px;
}
.feature.dark {
  background: var(--deep);
  color: white;
  border-top-color: var(--orange);
  position: relative;
}
.feature.dark:after {
  content: "RSL / CASE 01";
  position: absolute;
  right: 25px;
  top: 24px;
  color: #ffffff55;
  font:
    600 0.62rem ui-monospace,
    monospace;
  letter-spacing: 0.15em;
}
.feature.dark p {
  color: #c4d6d2;
}
.btn.light {
  background: white;
  border-color: white;
  color: var(--deep);
  white-space: nowrap;
}
.grid {
  display: grid;
}
.cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 28px;
  margin-bottom: 115px;
  padding: 0;
}
.cards article,
.solutions article {
  background: #fafbf8;
  padding: 38px;
  position: relative;
  transition: 0.25s;
}
.cards article:hover,
.solutions article:hover {
  background: white;
}
.cards article b {
  color: var(--orange);
  font:
    750 0.68rem ui-monospace,
    monospace;
}
.cards h3 {
  font:
    400 1.58rem/1.15 Georgia,
    serif;
  margin: 46px 0 12px;
}
.cards p {
  color: var(--muted);
  margin-bottom: 24px;
}
.cards a {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.82rem;
}
.service-grid article {
  min-height: 315px;
}
.service-grid article[hidden] {
  display: none;
}
.split {
  padding-top: 105px;
  padding-bottom: 105px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}
.page-hero {
  min-height: calc(100svh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--line);
  position: relative;
  isolation: isolate;
}
.page-hero > * {
  position: relative;
  z-index: 2;
}
.page-hero:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 9%;
  right: 0;
  bottom: 9%;
  width: 39%;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(
      90deg,
      transparent 49.7%,
      rgba(8, 117, 111, 0.12) 50%,
      transparent 50.3%
    ),
    linear-gradient(
      transparent 49.7%,
      rgba(8, 117, 111, 0.12) 50%,
      transparent 50.3%
    );
  background-size: 70px 70px;
  opacity: 0.82;
}
.page-hero:after {
  content: "BEEONLINE / ";
  position: absolute;
  right: 0;
  top: 45px;
  color: #9fadaa;
  font:
    650 0.62rem ui-monospace,
    monospace;
  letter-spacing: 0.17em;
}
.page-hero h1 {
  font-size: clamp(3.6rem, 6vw, 6.6rem);
  max-width: 1060px;
}
.filters,
.tabs {
  display: flex;
  gap: 0;
  margin-top: 46px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.filters button,
.tabs button {
  border: 0;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 13px 19px;
  font-weight: 750;
  cursor: pointer;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.filters button:first-child,
.tabs button:first-child {
  border-left: 1px solid var(--line);
}
.filters button.active,
.tabs button.active {
  background: var(--deep);
  color: white;
}
.tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 3px;
}
.solutions {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 115px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.solutions article {
  min-height: 320px;
}
.solutions article:before {
  content: "PLATFORM";
  font:
    650 0.61rem ui-monospace,
    monospace;
  letter-spacing: 0.15em;
  color: var(--teal);
}
.solutions h2 {
  font:
    400 2.5rem Georgia,
    serif;
  margin: 55px 0 18px;
}
.solutions p {
  color: var(--muted);
}
.solutions a {
  display: inline-block;
  margin-top: 15px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
}
.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 28px;
  background: white;
  padding: 52px;
  margin-top: 55px;
  margin-bottom: 110px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--teal);
}
.form-heading,
.request-form h1,
.request-form h2,
.request-form .wide,
.request-form .btn,
.request-form .fine {
  grid-column: 1/-1;
}
.form-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
  margin-bottom: 8px;
}
.form-heading span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-weight: 800;
}
.form-heading h2 {
  font:
    400 2.6rem Georgia,
    serif;
  margin: 8px 0;
}
.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.request-form label {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.request-form input,
.request-form select,
.request-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f9faf7;
  color: var(--ink);
  outline: none;
  transition: 0.2s;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px #08756f15;
  background: white;
}
.request-form textarea {
  resize: vertical;
}
.request-form .btn {
  justify-self: start;
  min-width: 210px;
}
.fine {
  color: var(--muted);
  font-size: 0.76rem;
}
.trap {
  position: absolute !important;
  left: -9999px !important;
}
.tab {
  display: none;
  width: min(var(--max), calc(100% - 48px));
  padding: 0;
}
.tab.active {
  display: block;
}
.tab .request-form {
  width: 100%;
}
.flash {
  margin-top: 26px;
  padding: 15px 20px;
  border-left: 4px solid;
}
.flash.success {
  background: #dcefe5;
  border-color: #36925c;
}
.flash.error {
  background: #f9ded7;
  border-color: #c65d43;
}
.faqs {
  padding-top: 70px;
  padding-bottom: 115px;
}
.faqs details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faqs details:last-child {
  border-bottom: 1px solid var(--line);
}
.faqs summary {
  font:
    400 1.4rem Georgia,
    serif;
  cursor: pointer;
  list-style: none;
}
.faqs summary:after {
  content: "+";
  float: right;
  color: var(--teal);
}
.faqs details[open] summary:after {
  content: "−";
}
.faqs p {
  color: var(--muted);
  max-width: 800px;
}
footer {
  background: var(--deep);
  color: white;
  padding: 78px max(24px, calc((100vw - var(--max)) / 2)) 35px;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 55px;
  border-top: 5px solid var(--orange);
}
footer .brand img {
  width: 62px;
  height: 62px;
}
footer h3 {
  color: var(--orange);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 0;
}
footer > div > a:not(.brand) {
  display: block;
  color: #c8d8d4;
  margin: 9px 0;
  font-size: 0.86rem;
}
footer > div > a:hover {
  color: white;
}
footer > div > p {
  color: #a9c0bb;
  max-width: 330px;
}
.copyright {
  grid-column: 1/-1;
  border-top: 1px solid var(--line-dark);
  padding-top: 25px;
  margin-top: 20px;
  color: #8faca6;
  font-size: 0.72rem;
}
.install main {
  padding: 55px 24px;
}
.installer {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-bottom: 40px;
}
.installer img {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  object-fit: cover;
}
.install-form {
  margin-bottom: 45px;
}
.install-form h2 {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.login {
  max-width: 520px !important;
  margin-top: 7vh !important;
  display: block;
}
.login > * {
  margin-bottom: 18px;
}
.login img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}
.admin .site-header,
.admin header {
  position: static;
}
.admin .page-hero {
  min-height: auto;
  display: block;
}
.stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stats a {
  background: white;
  border: 1px solid var(--line);
  padding: 16px 25px;
}
.stats b,
.stats span {
  display: block;
}
.stats b {
  font-size: 1.5rem;
}
.stats span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.table-wrap {
  padding-top: 50px;
  padding-bottom: 90px;
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
th,
td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}
th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--deep);
  color: white;
}
td small {
  display: block;
  color: var(--muted);
}
.request-detail {
  padding-top: 55px;
  padding-bottom: 90px;
}
.request-detail dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  background: white;
  padding: 32px;
  border-top: 4px solid var(--teal);
}
.request-detail dt {
  font-weight: 800;
}
.request-detail dd {
  margin-bottom: 16px;
}
#page-transition {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}
.transition-title {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  color: white;
  pointer-events: none;
  opacity: 0;
  text-transform: uppercase;
  font:
    650 clamp(1.2rem, 3vw, 2.4rem) ui-monospace,
    monospace;
  letter-spacing: 0.18em;
}
.transition-title.show {
  animation: transitionLabel 0.76s ease;
}
@keyframes transitionLabel {
  0%,
  100% {
    opacity: 0;
  }
  35%,
  65% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  #page-transition,
  .transition-title {
    display: none;
  }
}
@media (max-width: 1040px) {
  .site-header nav {
    gap: 14px;
  }
  .specials-menu-item .specials-count {
    display: none;
  }
  .nav-quote {
    display: none;
  }
  .hero {
    gap: 5%;
  }
  .page-home .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  }
  .page-home .hero h1 {
    font-size: clamp(3.7rem, 6vw, 5.2rem);
  }
  .cloud-platforms {
    grid-template-columns: 1fr;
  }
  .intro {
    grid-template-columns: 0.5fr 1fr;
  }
  .intro > p:last-child {
    grid-column: 2;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .comparison-grid,
  .client-grid {
    grid-template-columns: 1fr 1fr;
  }
  .comparison-grid article:nth-child(2) {
    border-right: 0;
  }
  .comparison-grid article {
    border-bottom: 1px solid var(--line);
  }
  .process-row,
  .journey {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-row article,
  .journey article {
    border-bottom: 1px solid var(--line);
  }
  footer {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .copyright {
    grid-column: 1/-1;
  }
  footer > div:nth-child(4) {
    grid-column: 2;
  }
}
@media (max-width: 820px) {
  .utility {
    display: none;
  }
  .site-header {
    height: 74px;
    top: 0;
  }
  .menu {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    height: auto;
    background: var(--paper);
    padding: 22px 24px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 35px #052e2b18;
  }
  .site-header nav.open {
    display: flex;
    max-height: calc(100svh - 74px);
    overflow-y: auto;
  }
  .site-header nav > a:not(.nav-cta):not(.nav-quote) {
    height: auto;
    display: block;
    padding: 10px 0;
  }
  .site-header nav > a:after {
    display: none;
  }
  .nav-quote {
    display: block;
    border: 0;
    padding: 10px 0;
  }
  .nav-cta {
    margin-top: 5px;
  }
  .specials-menu-item {
    color: #b9451c;
  }
  .specials-menu-item .specials-count {
    display: inline-flex;
  }
  .nav-group {
    height: auto;
    display: block;
  }
  .nav-group > a {
    height: auto;
    display: block;
    padding: 10px 0;
    font-size: 0.86rem;
  }
  .nav-group > a:after {
    display: none;
  }
  .site-header nav.open .mega {
    position: static;
    display: grid;
    width: 100%;
    padding: 12px 0 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }
  .mega a {
    font-size: 0.74rem;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }
  .page-home .hero {
    grid-template-columns: 1fr;
    background: linear-gradient(145deg, #dce9e3, #e7efeb 72%, #d3e3dc);
  }
  .page-home .hero-copy {
    max-width: 720px;
  }
  .clientflow-studio-visual {
    width: min(100%, 680px);
    max-width: none;
    justify-self: start;
    margin-top: 12px;
  }
  .hero-brand-icon,
  .cloud-brand-pair {
    width: 170px;
    height: 170px;
    right: 2%;
    opacity: 0.34;
    box-shadow: none;
  }
  .hero-brand-icon img {
    width: 90px;
  }
  .cloud-brand-pair img {
    width: 48px;
  }
  .service-switcher {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-switcher a:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
  .icon-service-grid,
  .cloud-platforms {
    grid-template-columns: 1fr;
  }
  .managed-grid {
    grid-template-columns: 1fr;
  }
  .hero,
  .page-hero {
    min-height: calc(100svh - 74px);
  }
  .map {
    height: 405px;
  }
  .intro,
  .split,
  .content-intro,
  .api-section,
  .specials-terms {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .specials-home-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .intro > p:last-child {
    grid-column: auto;
  }
  .feature {
    align-items: flex-start;
    flex-direction: column;
    padding: 50px;
  }
  .solutions {
    grid-template-columns: 1fr;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  .pathway-grid,
  .use-case-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .api-section {
    padding: 45px;
  }
  .assurance {
    max-width: 640px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  .copyright {
    grid-column: 1/-1;
  }
  footer > div:nth-child(4) {
    grid-column: auto;
  }
}
@media (max-width: 590px) {
  main > section,
  .request-form,
  .tabs,
  .tab,
  .flash,
  .table-wrap,
  .request-detail {
    width: min(100% - 32px, var(--max));
  }
  .site-header {
    padding: 0 16px;
  }
  .brand img {
    width: 45px;
    height: 45px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 3.45rem;
  }
  .page-home .hero h1 {
    font-size: 3.25rem;
  }
  .clientflow-studio-visual {
    margin-top: 5px;
  }
  .studio-label {
    top: 11px;
    left: 11px;
    padding: 9px 11px;
  }
  .studio-label small {
    display: none;
  }
  .service-switcher {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    border-left: 0;
    border-right: 0;
  }
  .service-switcher a {
    justify-content: flex-start;
    padding: 14px 16px;
    text-align: left;
  }
  .service-switcher a:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .hero-brand-icon,
  .cloud-brand-pair {
    display: none;
  }
  .platform-catalogue,
  .managed-options,
  .cloud-platforms {
    width: min(100% - 32px, var(--max));
    padding-top: 75px;
    padding-bottom: 80px;
  }
  .icon-service-grid article {
    min-height: auto;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 28px 20px;
  }
  .icon-service-grid article > img {
    width: 46px;
    height: 42px;
  }
  .managed-grid article {
    min-height: auto;
    padding: 30px 22px;
  }
  .cloud-platforms > article {
    padding: 34px 20px;
  }
  .cloud-platforms header {
    align-items: flex-start;
    flex-direction: column;
  }
  .cloud-service-list {
    grid-template-columns: 1fr;
  }
  .cloud-service-list div {
    min-height: auto;
  }
  .hosting-pricing .price-card {
    min-height: auto;
  }
  .hero-links {
    align-items: flex-start;
    flex-direction: column;
  }
  .specials-home-banner {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 36px 20px;
  }
  .specials-proof {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .specials-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    min-height: calc(100svh - 74px);
    padding-top: 54px;
  }
  .hero-copy > p:not(.eyebrow),
  .page-hero > p {
    font-size: 1rem;
  }
  .map {
    height: 340px;
  }
  .map:before {
    inset: 80px 25px 60px;
  }
  .map > span,
  .map > strong {
    font-size: 0.54rem;
  }
  .assurance {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .assurance span {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .assurance b {
    display: inline;
    margin: 0;
  }
  .intro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .home-pathways,
  .content-intro,
  .pricing-section,
  .comparison,
  .process-section,
  .use-cases {
    padding-top: 75px;
    padding-bottom: 80px;
  }
  .pathway-grid,
  .pricing-grid,
  .comparison-grid,
  .process-row,
  .process-row.four,
  .journey,
  .use-case-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    min-height: auto;
  }
  .price-card > p {
    min-height: auto;
  }
  .comparison-grid article,
  .process-row article,
  .journey article,
  .client-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .detail-grid article {
    padding: 32px 22px;
    min-height: auto;
  }
  .api-section {
    width: 100%;
    padding: 38px 20px;
  }
  .specials-terms {
    width: 100%;
    margin-bottom: 80px;
    padding: 38px 20px;
  }
  .package-choice {
    grid-template-columns: 1fr;
  }
  .package-choice strong,
  .package-choice a {
    grid-column: 1;
    grid-row: auto;
  }
  .feature {
    padding: 38px 24px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .split {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .request-form {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    width: 100%;
    border-radius: 0;
  }
  .request-form > * {
    grid-column: 1 !important;
  }
  .tab .request-form {
    width: 100%;
  }
  .page-hero {
    padding-top: 75px;
    padding-bottom: 70px;
  }
  .page-hero:after {
    display: none;
  }
  .page-hero:before {
    width: 56%;
    opacity: 0.38;
  }
  .solutions {
    width: 100%;
    padding-top: 30px;
  }
  .filters,
  .tabs {
    width: calc(100% - 32px);
  }
  .installer {
    align-items: flex-start;
  }
  .installer img {
    width: 75px;
    height: 75px;
  }
  .request-detail dl {
    grid-template-columns: 1fr;
  }
  .request-detail dd {
    margin-left: 0;
  }
  footer {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }
  .copyright {
    grid-column: 1/-1;
  }
  footer > div:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 1180px) {
  .cf-demo-workspace {
    grid-template-columns: 215px minmax(400px, 1fr) 235px;
  }
  .cf-component-library,
  .cf-inspector {
    padding-left: 13px;
    padding-right: 13px;
  }
}

@media (max-width: 900px) {
  .clientflow-studio-visual {
    transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
  }
  .cf-demo-dialog {
    width: calc(100vw - 16px);
    height: calc(100svh - 16px);
  }
  .cf-demo-workspace {
    grid-template-columns: 205px minmax(380px, 1fr);
  }
  .cf-inspector {
    display: none;
  }
  .cf-demo-state > span,
  .cf-demo-toolbar p b {
    display: none;
  }
  .cf-form-frame {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .clientflow-studio-visual,
  .clientflow-studio-visual:hover,
  .clientflow-studio-visual:focus-visible {
    transform: none;
  }
  .studio-launch {
    right: 9px;
    bottom: 9px;
    padding: 8px 9px;
  }
  .studio-launch small {
    display: none;
  }
  .cf-demo-dialog {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
  }
  .cf-demo-shell {
    grid-template-rows: 58px 43px minmax(0, 1fr) 34px;
  }
  .cf-demo-header {
    padding: 0 9px 0 14px;
  }
  .cf-demo-brand small,
  .cf-demo-state > span,
  .cf-demo-state > button:not(.cf-run):not(.cf-close),
  .cf-demo-toolbar > p,
  .cf-demo-toolbar > div:first-child button:not(.active) {
    display: none;
  }
  .cf-demo-brand strong {
    font-size: 0.83rem;
  }
  .cf-cube {
    width: 22px;
    height: 22px;
  }
  .cf-demo-state .cf-run {
    padding: 7px 9px;
  }
  .cf-demo-toolbar {
    padding: 0 12px;
  }
  .cf-demo-workspace,
  .cf-demo-shell.is-preview .cf-demo-workspace {
    display: block;
    overflow-y: auto;
  }
  .cf-component-library {
    padding: 13px;
    border-right: 0;
    border-bottom: 1px solid #e4dfe5;
    overflow: visible;
  }
  .cf-component-library .cf-panel-heading p,
  .cf-component-library .cf-panel-heading > span {
    display: none;
  }
  .cf-component-library .cf-panel-heading h3 {
    margin-bottom: 8px;
  }
  .cf-palette {
    grid-template-columns: 1fr 1fr;
  }
  .cf-palette button {
    grid-template-columns: 30px 1fr;
  }
  .cf-palette i {
    width: 29px;
    height: 29px;
  }
  .cf-palette em,
  .cf-palette small {
    display: none;
  }
  .api-heading {
    margin-top: 12px;
    padding-top: 10px;
  }
  .cf-api-palette {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cf-api-palette button {
    display: flex;
    padding: 6px;
  }
  .cf-api-palette span {
    min-width: 0;
  }
  .cf-api-palette b {
    overflow: hidden;
    font-size: 0.53rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .cf-canvas-panel,
  .cf-demo-shell.is-preview .cf-canvas-panel {
    min-height: 610px;
    padding: 0 10px 25px;
  }
  .cf-form-frame {
    min-height: 520px;
  }
  .cf-form-title {
    padding-left: 18px;
    padding-right: 18px;
  }
  .cf-dropzone {
    margin-left: 14px;
    margin-right: 14px;
  }
  .cf-demo-footer p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .cf-demo-footer div {
    white-space: nowrap;
  }
}
