* {
  box-sizing: border-box;
}

:root {
  --hc-yellow: #ffcc00;
  --hc-yellow-soft: #ffe98a;
  --hc-black: #0b0b0b;
  --hc-ink: #111111;
  --hc-gray: #686868;
  --hc-soft: #f7f7f5;
  --hc-line: #e9e9e5;
  --hc-white: #ffffff;
  --hc-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

html {
  scroll-behavior: smooth;
}

body.hc-frontpage,
.hc-frontpage {
  margin: 0;
  background: var(--hc-white);
  color: var(--hc-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.hc-frontpage a {
  color: inherit;
  text-decoration: none;
}

.hc-frontpage-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--hc-white);
}

.hc-frontpage-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 360px;
  align-items: center;
  min-height: 74px;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--hc-line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}

.hc-frontpage-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-weight: 800;
  color: #202020;
}

.hc-frontpage-header .hc-frontpage-brand img {
  display: block;
  width: 260px;
  height: auto;
}

.hc-frontpage-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--hc-black);
  color: var(--hc-yellow);
  font-size: 15px;
  font-weight: 900;
}

.hc-frontpage-brand-name {
  font-size: 17px;
  line-height: 1;
}

.hc-frontpage-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4.2vw, 56px);
}

.hc-frontpage-nav-item {
  position: static;
}

.hc-frontpage-nav a,
.hc-frontpage-nav-link,
.hc-frontpage-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #272727;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
}

.hc-frontpage-nav a span,
.hc-frontpage-nav-link span {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .72;
}

.hc-frontpage-nav-item > .hc-frontpage-nav-link {
  position: relative;
  min-height: 74px;
}

.hc-frontpage-nav-item > .hc-frontpage-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--hc-yellow);
  opacity: 0;
  transform: scaleX(.72);
  transition: opacity .16s ease, transform .16s ease;
}

.hc-frontpage-nav-item:hover > .hc-frontpage-nav-link::after,
.hc-frontpage-nav-item:focus-within > .hc-frontpage-nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.hc-frontpage-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: grid;
  gap: clamp(64px, 12vw, 190px);
  width: 100vw;
  padding: 36px max(24px, calc((100vw - 1240px) / 2)) 42px;
  border-top: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
  background: #fff;
  box-shadow: 0 16px 26px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.hc-frontpage-dropdown-products {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.hc-frontpage-dropdown-solutions {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.hc-frontpage-nav-item:hover .hc-frontpage-dropdown,
.hc-frontpage-nav-item:focus-within .hc-frontpage-dropdown,
.hc-frontpage-nav-item.is-open .hc-frontpage-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hc-frontpage-dropdown small {
  display: block;
  margin-bottom: 18px;
  color: #6a6a6a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.hc-frontpage-dropdown a {
  display: block;
  width: fit-content;
  padding: 0;
  margin: 0 0 24px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.hc-frontpage-dropdown a:last-child {
  margin-bottom: 0;
}

.hc-frontpage-dropdown a:hover {
  color: #000;
}

.hc-frontpage-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.hc-frontpage-join,
.hc-frontpage-start,
.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.hc-frontpage-join {
  border: 1px solid #101010;
  background: var(--hc-white);
}

.hc-frontpage-start,
.hc-btn-yellow {
  background: var(--hc-yellow);
  color: #080808;
  box-shadow: 0 12px 28px rgba(255, 204, 0, .28);
}

.hc-frontpage-mobile-link {
  display: none !important;
}

.hc-frontpage-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--hc-line);
  border-radius: 10px;
  background: var(--hc-white);
}

.hc-frontpage-menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--hc-black);
  transition: transform .18s ease, opacity .18s ease;
}

.hc-frontpage-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hc-frontpage-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.hc-frontpage-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(600px, 1.2fr);
  align-items: start;
  gap: clamp(42px, 5vw, 72px);
  min-height: 640px;
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding: 66px 0 48px;
}

.hc-pill,
.hc-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #121212;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hc-pill {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--hc-yellow);
}

.hc-pill svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hc-hero h1 {
  position: relative;
  width: fit-content;
  margin: 30px 0 28px;
  color: #050505;
  font-size: clamp(74px, 7vw, 112px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -0.055em;
}

.hc-hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 8px;
  background: var(--hc-yellow);
}

.hc-hero h1 span {
  color: #121212;
}

.hc-hero-text {
  max-width: 560px;
  margin: 0;
  color: #6a6a6a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.hc-hero-actions,
.hc-value-copy div,
.hc-people-head div div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hc-btn {
  min-width: 176px;
  min-height: 56px;
  border: 1px solid transparent;
}

.hc-btn-dark {
  background: var(--hc-black);
  color: var(--hc-white) !important;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .16);
}

.hc-btn-light,
.hc-btn-white {
  border-color: #111;
  background: var(--hc-white);
  color: #111 !important;
}

.hc-btn-white {
  border-color: transparent;
}

.hc-hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
  max-width: 640px;
}

.hc-hero-proof div {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 18px;
}

.hc-hero-proof span,
.hc-tools span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--hc-line);
  border-radius: 999px;
  color: #111;
}

.hc-hero-proof span {
  grid-row: 1 / 3;
}

.hc-hero-proof b {
  display: block;
  grid-column: 2;
  font-size: 10px;
  line-height: 1.05;
  white-space: nowrap;
}

.hc-hero-proof small {
  display: block;
  grid-column: 2;
  color: #8a8a8a;
  font-size: 9px;
  line-height: 1.1;
}

.hc-hero-visual {
  position: relative;
  width: min(720px, 100%);
  min-height: 575px;
  margin-top: 0;
  margin-left: auto;
  overflow: visible;
  isolation: isolate;
}

.hc-browser {
  position: absolute;
  top: 16px;
  left: 92px;
  right: auto;
  width: 560px;
  border: 9px solid #2a2a2a;
  border-radius: 18px;
  background: var(--hc-white);
  box-shadow: 0 30px 78px rgba(0, 0, 0, .18);
}

.hc-browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 12px;
  border-bottom: 1px solid #eee;
}

.hc-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hc-browser-bar i:nth-child(1) { background: #ff5f56; }
.hc-browser-bar i:nth-child(2) { background: #ffbd2e; }
.hc-browser-bar i:nth-child(3) { background: #27c93f; }

.hc-browser-bar span {
  margin-left: 12px;
  color: #9a9a9a;
  font-size: 9px;
  font-weight: 700;
  border: 1px solid #dedede;
  border-radius: 3px;
  flex: 1;
  padding: 3px 10px;
}

.hc-app {
  padding: 16px;
}

.hc-app-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.hc-app-head strong,
.hc-app-head small,
.hc-float b,
.hc-float small {
  display: block;
}

.hc-app-head strong {
  font-size: 10px;
  font-weight: 900;
}

.hc-app-head small {
  color: #777;
  font-size: 8px;
}

.hc-app-head button {
  height: 26px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: var(--hc-yellow);
  font-size: 9px;
  font-weight: 900;
}

.hc-tabs {
  display: flex;
  gap: 15px;
  overflow: hidden;
  padding: 9px 0 11px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #606060;
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.hc-app-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 16px;
  align-items: start;
}

.hc-compose {
  margin: 14px 0;
  border-radius: 999px;
  padding: 11px 16px;
  background: #f6f6f4;
  color: #a0a0a0;
  font-size: 10px;
}

.hc-post {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  border: 1px solid #efefef;
  border-radius: 11px;
  padding: 13px;
}

.hc-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd2a0, #f48a6a);
  flex: 0 0 auto;
}

.hc-post strong {
  display: block;
  font-size: 10px;
}

.hc-post small {
  display: block;
  max-width: 300px;
  color: #747474;
  font-size: 9px;
  line-height: 1.35;
}

.hc-post small span {
  color: var(--hc-yellow);
}

.hc-black-card {
  min-height: 128px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #0b0b0b;
  color: var(--hc-white);
  text-align: center;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.04;
  text-transform: uppercase;
}

.hc-black-card span {
  color: var(--hc-yellow);
}

.hc-post-foot {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 2px 0;
  color: #858585;
  font-size: 8px;
  font-weight: 700;
}

.hc-post-foot b {
  margin-left: auto;
  color: #696969;
  font-size: 8px;
}

.hc-event-card,
.hc-stats-card {
  border: 1px solid #eee;
  border-radius: 9px;
  padding: 14px;
  background: #fff;
}

.hc-event-card {
  margin-bottom: 14px;
}

.hc-event-card b,
.hc-stats-card b {
  display: block;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 900;
}

.hc-event-card strong {
  display: block;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
}

.hc-event-card small {
  display: block;
  margin: 8px 0 10px;
  color: #858585;
  font-size: 8px;
  font-weight: 700;
}

.hc-event-card button {
  width: 100%;
  height: 30px;
  border: 0;
  border-radius: 5px;
  background: #080808;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

.hc-stats-card span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #7c7c7c;
  font-size: 9px;
  line-height: 1.9;
}

.hc-stats-card strong {
  color: #111;
  font-weight: 900;
}

.hc-float {
  position: absolute;
  z-index: 2;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: var(--hc-white);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .1);
  animation-duration: 7.5s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-delay: var(--hc-float-delay, 0s);
  will-change: top;
}

.hc-float-course {
  top: 58px;
  left: 28px;
  width: 158px;
  padding: 12px;
  --hc-float-delay: 0s;
  --hc-float-lift: -13px;
  --hc-float-drift: 6px;
  animation-name: hcFloatCourse !important;
}

.hc-float-course b {
  font-size: 10px;
  line-height: 1.2;
}

.hc-float-course div {
  height: 82px;
  border-radius: 7px;
  background: #efe8d6;
  display: grid;
  place-items: center;
}

.hc-float-course div i,
.hc-float-course div span {
  grid-area: 1 / 1;
}

.hc-float-course div i {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
}

.hc-float-course div span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #333;
  z-index: 1;
}

.hc-float-course strong,
.hc-float-course small {
  margin-top: 9px;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.hc-float-course small {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 8px;
  font-weight: 700;
}

.hc-float-course p {
  height: 5px;
  margin: 7px 0 0;
  border-radius: 999px;
  background: #eee;
  overflow: hidden;
}

.hc-float-course p span {
  display: block;
  height: 100%;
  background: var(--hc-yellow);
}

.hc-float-earn {
  top: 320px;
  left: 14px;
  width: 144px;
  padding: 14px;
  --hc-float-delay: -1.25s;
  --hc-float-lift: -11px;
  --hc-float-drift: -5px;
  animation-name: hcFloatEarn !important;
}

.hc-float-earn b {
  font-size: 10px;
  line-height: 1.2;
}

.hc-float-earn strong,
.hc-float-audience strong,
.hc-float-affiliate strong {
  display: block;
  margin-top: 4px;
  font-size: 21px;
  font-weight: 900;
}

.hc-float-earn em,
.hc-float-audience em {
  color: #14a856;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.hc-float-spot {
  top: 76px;
  right: 22px;
  width: 164px;
  padding: 13px;
  --hc-float-delay: -.55s;
  --hc-float-lift: -14px;
  --hc-float-drift: -7px;
  animation-name: hcFloatSpot !important;
}

.hc-float-spot b {
  font-size: 10px;
  line-height: 1.2;
}

.hc-float-spot div {
  min-height: 82px;
  margin-top: 8px;
  border-radius: 7px;
  background: #070707;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
  text-align: left;
  font-size: 10px;
  font-weight: 900;
}

.hc-float-spot button {
  margin: 10px 0 0;
  align-self: flex-start;
  border: 0;
  border-radius: 999px;
  background: var(--hc-yellow);
  padding: 8px 12px;
  font-size: 8px;
  font-weight: 900;
}

.hc-float-audience {
  right: 4px;
  top: 272px;
  width: 166px;
  padding: 15px;
  --hc-float-delay: -2.15s;
  --hc-float-lift: -12px;
  --hc-float-drift: 5px;
  animation-name: hcFloatAudience !important;
}

.hc-float-audience b {
  font-size: 10px;
  line-height: 1.2;
}

.hc-float-audience small {
  font-size: 9px;
  line-height: 1.2;
}

.hc-float-audience strong {
  font-size: 19px;
  line-height: 1.15;
}

.hc-bubbles {
  display: flex;
  margin: 12px 0 8px;
}

.hc-bubbles i {
  width: 28px;
  height: 28px;
  margin-left: -6px;
  border-radius: 50%;
  background: #e9aaa5;
}

.hc-bubbles i:first-child { margin-left: 0; }
.hc-bubbles i:nth-child(2) { background: #f6c6c0; }
.hc-bubbles i:nth-child(3) { background: #d7b49a; }
.hc-bubbles i:nth-child(4) { background: #8aa4ff; }
.hc-bubbles i:nth-child(5) { background: #a7b5ff; }

.hc-float-affiliate {
  right: 14px;
  top: 440px;
  bottom: auto;
  width: 164px;
  padding: 13px 42px 13px 13px;
  --hc-float-delay: -3.05s;
  --hc-float-lift: -10px;
  --hc-float-drift: -4px;
  animation-name: hcFloatAffiliate !important;
}

.hc-float-affiliate b {
  font-size: 10px;
  line-height: 1.2;
}

.hc-float-affiliate small {
  font-size: 9px;
  line-height: 1.2;
}

.hc-float-affiliate strong {
  font-size: 19px;
  line-height: 1.15;
}

.hc-float-affiliate em {
  display: block;
  margin-top: 7px;
  color: #888;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.hc-float-affiliate > span {
  position: absolute;
  right: 12px;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #c9f7de;
  color: #19b461;
  transform: translateY(-50%);
}

@keyframes hcFloatCourse {
  0%, 100% { top: 58px; }
  50% { top: 42px; }
}

@keyframes hcFloatEarn {
  0%, 100% { top: 320px; }
  50% { top: 304px; }
}

@keyframes hcFloatSpot {
  0%, 100% { top: 76px; }
  50% { top: 58px; }
}

@keyframes hcFloatAudience {
  0%, 100% { top: 272px; }
  50% { top: 254px; }
}

@keyframes hcFloatAffiliate {
  0%, 100% { top: 440px; }
  50% { top: 424px; }
}

@media (prefers-reduced-motion: reduce) {
  .hc-float {
    animation: none !important;
  }
}

.hc-tools {
  border-top: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
  background: #fff;
}

.hc-tools-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 20px;
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding: 62px 0;
}

.hc-tools article {
  text-align: center;
}

.hc-tools span {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  background: #fafafa;
}

.hc-tools h3 {
  margin: 0 0 7px;
  font-size: 12px;
  font-weight: 700;
}

.hc-tools p {
  max-width: 112px;
  margin: 0 auto;
  color: #7d7d7d;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.hc-value {
  background: var(--hc-yellow);
}

.hc-value-inner {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(46px, 7vw, 96px);
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding: 64px 0;
}

.hc-value-copy h2,
.hc-section-head h2,
.hc-people h2,
.hc-final h2 {
  margin: 16px 0 0;
  color: #080808;
  font-size: clamp(42px, 5.4vw, 62px);
  font-weight: 950;
  line-height: .94;
  letter-spacing: -0.055em;
}

.hc-value-copy > p:not(.hc-section-kicker) {
  max-width: 590px;
  margin: 30px 0 0;
  color: #3a3300;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.hc-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hc-value-grid article {
  min-height: 128px;
  border-radius: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, .52);
}

.hc-value-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #080808;
  color: var(--hc-yellow);
}

.hc-step-grid span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #080808;
  color: var(--hc-yellow);
}

.hc-value-grid h3,
.hc-step-grid h3 {
  margin: 20px 0 7px;
  font-size: 15px;
  font-weight: 950;
}

.hc-value-grid p,
.hc-step-grid p {
  margin: 0;
  color: #5a5105;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.hc-steps {
  background: #f8f8f6;
  padding: 104px 0 94px;
}

.hc-section-head {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto 60px;
  text-align: center;
}

.hc-section-head .hc-section-kicker,
.hc-final .hc-section-kicker {
  justify-content: center;
  color: #8a8a8a;
}

.hc-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
}

.hc-step-grid article {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--hc-line);
  border-radius: 14px;
  padding: 30px;
  background: #fff;
  box-shadow: var(--hc-shadow);
}

.hc-step-grid article:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -16px;
  top: 50%;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: #070707;
  color: var(--hc-yellow);
  font-size: 15px;
  font-weight: 900;
  transform: translateY(-50%);
  z-index: 2;
}

.hc-step-grid small {
  display: block;
  margin-bottom: 26px;
  color: #888;
  font-size: 11px;
  font-weight: 900;
}

.hc-step-grid span {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--hc-yellow);
  color: #080808;
}

.hc-step-grid .svg-container {
  width: 19px !important;
  height: 19px !important;
  color: #080808 !important;
  fill: #080808 !important;
  stroke: #080808 !important;
}

.hc-step-grid .svg-container svg,
.hc-step-grid .svg-container svg * {
  color: #080808 !important;
  fill: none !important;
  stroke: #080808 !important;
}

.hc-step-grid p {
  color: #777;
  font-size: 15px;
}

.hc-people {
  padding: 92px 0 100px;
  background: #fff;
}

.hc-people-head {
  display: grid;
  grid-template-columns: minmax(560px, 610px) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto 44px;
}

.hc-people h2 {
  font-size: clamp(50px, 4.7vw, 70px);
  line-height: .96;
}

.hc-people h2,
.hc-people h2 span {
  white-space: nowrap;
}

.hc-people h2 span,
.hc-final h2 span {
  color: var(--hc-yellow);
}

.hc-people p {
  max-width: 560px;
  margin: 20px 0 0;
  color: #707070;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.hc-filters {
  display: flex;
  justify-content: flex-start;
  justify-self: stretch;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  white-space: nowrap;
  max-width: 100%;
  padding: 2px 0;
}

.hc-filters::-webkit-scrollbar {
  display: none;
}

.hc-filters button {
  min-height: 32px;
  border: 1px solid var(--hc-line);
  border-radius: 999px;
  background: #fff;
  padding: 0 16px;
  color: #282828;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}

.hc-filters .is-active {
  border-color: #070707;
  background: #070707;
  color: #fff;
}

.hc-community-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
}

.hc-community-grid article {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--img) center / cover no-repeat;
}

.hc-community-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03) 0%, rgba(0, 0, 0, .24) 48%, rgba(0, 0, 0, .82) 100%);
}

.hc-community-grid div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
}

.hc-community-grid h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.hc-community-grid p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.hc-community-grid b {
  color: var(--hc-yellow);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hc-final {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 100px 24px;
  background: #070707;
  color: #fff;
  text-align: center;
}

.hc-final h2 {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(50px, 6.5vw, 82px);
}

.hc-final p:not(.hc-section-kicker) {
  max-width: 670px;
  margin: 26px auto 34px;
  color: rgba(255, 255, 255, .64);
  font-size: 17px;
  font-weight: 600;
}

.hc-final .hc-btn-yellow,
.hc-final .hc-btn-yellow span {
  color: #000 !important;
}

.hc-frontpage-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 0 clamp(20px, 4vw, 36px);
  background: #fff;
  color: #767676;
}

.hc-frontpage-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.hc-frontpage-footer nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
}

body.hc-frontpage .el-legal-footer {
  display: none;
}

.svg-container,
.svg-container svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hc-hero-proof .svg-container {
  width: 14px !important;
  height: 14px !important;
  color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
}

.hc-hero-proof .svg-container svg,
.hc-hero-proof .svg-container svg * {
  color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
}

.hc-tools .svg-container {
  width: 18px !important;
  height: 18px !important;
}

.hc-value-grid .svg-container {
  width: 15px !important;
  height: 15px !important;
  color: var(--hc-yellow) !important;
  fill: var(--hc-yellow) !important;
  stroke: var(--hc-yellow) !important;
}

.hc-value-grid .svg-container svg,
.hc-value-grid .svg-container svg * {
  color: var(--hc-yellow) !important;
  fill: none !important;
  stroke: var(--hc-yellow) !important;
}

.hc-float-affiliate > span .svg-container {
  width: 15px !important;
  height: 15px !important;
}

@media (max-width: 1360px) {
  .hc-hero {
    grid-template-columns: minmax(0, .95fr) minmax(560px, 1.05fr);
    width: min(1180px, calc(100% - 64px));
    gap: 44px;
  }

  .hc-browser {
    left: 82px;
    right: auto;
    width: 520px;
  }

  .hc-float-course {
    left: 18px;
  }

  .hc-float-earn {
    left: 6px;
  }

  .hc-float-spot {
    right: 16px;
  }

  .hc-float-audience {
    right: 2px;
    top: 270px;
  }

  .hc-float-affiliate {
    right: 12px;
    top: 438px;
  }

  @keyframes hcFloatCourse {
    0%, 100% { top: 58px; }
    50% { top: 42px; }
  }

  @keyframes hcFloatEarn {
    0%, 100% { top: 320px; }
    50% { top: 304px; }
  }

  @keyframes hcFloatSpot {
    0%, 100% { top: 76px; }
    50% { top: 58px; }
  }

  @keyframes hcFloatAudience {
    0%, 100% { top: 270px; }
    50% { top: 252px; }
  }

  @keyframes hcFloatAffiliate {
    0%, 100% { top: 438px; }
    50% { top: 422px; }
  }
}

@media (max-width: 1180px) {
  .hc-frontpage-header {
    grid-template-columns: 150px minmax(0, 1fr) 300px;
  }

  .hc-frontpage-nav {
    gap: 20px;
  }

  .hc-hero {
    grid-template-columns: minmax(0, .85fr) minmax(520px, 1fr);
    gap: 34px;
  }

  .hc-browser {
    left: 70px;
    right: auto;
    width: 500px;
  }

  .hc-float-spot {
    right: 10px;
  }

  .hc-float-audience {
    right: -4px;
    top: 264px;
  }

  .hc-float-affiliate {
    right: 8px;
    top: 426px;
  }

  @keyframes hcFloatSpot {
    0%, 100% { top: 76px; }
    50% { top: 58px; }
  }

  @keyframes hcFloatAudience {
    0%, 100% { top: 264px; }
    50% { top: 246px; }
  }

  @keyframes hcFloatAffiliate {
    0%, 100% { top: 426px; }
    50% { top: 410px; }
  }

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

  .hc-tools-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hc-value-inner,
  .hc-people-head {
    grid-template-columns: 1fr;
  }

  .hc-people h2,
  .hc-people h2 span {
    white-space: normal;
  }

  .hc-filters {
    justify-content: flex-start;
  }

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

@media (max-width: 900px) {
  .hc-frontpage-header {
    position: relative;
    grid-template-columns: 1fr auto auto;
    min-height: 54px;
    padding: 0 10px;
  }

  .hc-frontpage-header .hc-frontpage-brand img {
    width: min(190px, 44vw);
  }

  .hc-frontpage-mark {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .hc-frontpage-brand-name {
    font-size: 10px;
  }

  .hc-frontpage-actions {
    gap: 6px;
  }

  .hc-frontpage-login {
    font-size: 10px;
  }

  .hc-frontpage-join {
    display: none;
  }

  .hc-frontpage-start {
    min-height: 28px;
    border-radius: 4px;
    padding: 0 8px;
    font-size: 9px;
  }

  .hc-frontpage-menu-btn {
    display: flex;
    width: 30px;
    height: 30px;
    border: 0;
  }

  .hc-frontpage-menu-btn span {
    width: 16px;
  }

  .hc-frontpage-nav {
    position: absolute;
    top: 100%;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--hc-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--hc-shadow);
    overflow: hidden;
  }

  .hc-frontpage-nav.is-open {
    display: flex;
  }

  .hc-frontpage-nav-item {
    border-bottom: 1px solid var(--hc-line);
  }

  .hc-frontpage-nav-item > .hc-frontpage-nav-link {
    min-height: 0;
  }

  .hc-frontpage-nav-item > .hc-frontpage-nav-link::after {
    display: none;
  }

  .hc-frontpage-nav a,
  .hc-frontpage-nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 15px 16px;
    border-bottom: 1px solid var(--hc-line);
    font-size: 13px;
    text-align: left;
  }

  .hc-frontpage-nav-item > .hc-frontpage-nav-link {
    border-bottom: 0;
  }

  .hc-frontpage-dropdown {
    position: static;
    display: none;
    width: 100%;
    padding: 2px 16px 15px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    gap: 18px;
  }

  .hc-frontpage-dropdown-products,
  .hc-frontpage-dropdown-solutions {
    grid-template-columns: 1fr;
  }

  .hc-frontpage-nav-item.is-open .hc-frontpage-dropdown {
    display: grid;
  }

  .hc-frontpage-dropdown small {
    margin: 12px 0 10px;
    font-size: 8px;
  }

  .hc-frontpage-dropdown a {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    border-bottom: 0;
    font-size: 12px;
  }

  .hc-frontpage-mobile-link {
    display: flex !important;
  }

  .hc-frontpage-mobile-link.is-primary {
    background: var(--hc-yellow);
  }

  .hc-hero {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 30px 10px 0;
  }

  .hc-pill {
    min-height: 22px;
    font-size: 7px;
    border-radius: 3px;
    padding: 0 7px;
  }

  .hc-pill svg {
    width: 10px;
    height: 10px;
  }

  .hc-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(42px, 16vw, 64px);
    letter-spacing: -0.06em;
  }

  .hc-hero h1::after {
    height: 5px;
    bottom: -6px;
  }

  .hc-hero-text {
    font-size: 13px;
    line-height: 1.45;
  }

  .hc-hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .hc-btn {
    min-width: 0;
    min-height: 38px;
    border-radius: 5px;
    padding: 0 13px;
    font-size: 10px;
  }

  .hc-hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 20px;
  }

  .hc-hero-proof div {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .hc-hero-proof span {
    width: 22px;
    height: 22px;
  }

  .hc-hero-proof b,
  .hc-hero-proof small {
    font-size: 8px;
  }

  .hc-hero-visual {
    height: 338px;
    min-height: 0;
    margin: 20px -10px 0;
    overflow: hidden;
  }

  .hc-browser {
    top: 10px;
    left: 10px;
    right: auto;
    width: 535px;
    border-width: 6px;
    border-radius: 10px;
    transform-origin: top left;
    transform: scale(.64);
  }

  .hc-app-body {
    grid-template-columns: minmax(0, 1fr) 168px;
  }

  .hc-float {
    display: none;
  }

  .hc-tools-grid {
    width: calc(100% - 20px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 8px;
    padding: 42px 0;
  }

  .hc-tools span {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

  .hc-tools h3 {
    font-size: 10px;
  }

  .hc-tools p {
    font-size: 8px;
  }

  .hc-value-inner {
    width: calc(100% - 20px);
    gap: 24px;
    padding: 38px 0;
  }

  .hc-section-kicker {
    font-size: 8px;
  }

  .hc-value-copy h2,
  .hc-section-head h2,
  .hc-people h2 {
    font-size: 30px;
    line-height: .96;
  }

  .hc-value-copy > p:not(.hc-section-kicker),
  .hc-people p {
    margin-top: 13px;
    font-size: 11px;
  }

  .hc-value-copy div,
  .hc-people-head div div {
    margin-top: 20px;
  }

  .hc-value-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hc-value-grid article {
    min-height: 86px;
    padding: 15px;
  }

  .hc-value-grid span {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .hc-value-grid .svg-container {
    width: 14px !important;
    height: 14px !important;
  }

  .hc-value-grid h3 {
    margin-top: 12px;
    font-size: 12px;
  }

  .hc-value-grid p {
    font-size: 9px;
  }

  .hc-steps {
    padding: 56px 0;
  }

  .hc-section-head {
    width: calc(100% - 40px);
    margin-bottom: 30px;
  }

  .hc-step-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    gap: 18px;
  }

  .hc-step-grid article {
    min-height: 150px;
    padding: 20px;
  }

  .hc-step-grid article::after {
    display: none !important;
  }

  .hc-step-grid small {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hc-step-grid span {
    width: 46px;
    height: 46px;
  }

  .hc-step-grid .svg-container {
    width: 18px !important;
    height: 18px !important;
  }

  .hc-step-grid h3 {
    margin-top: 16px;
    font-size: 15px;
  }

  .hc-step-grid p {
    font-size: 11px;
  }

  .hc-people {
    padding: 54px 0;
  }

  .hc-people-head {
    width: calc(100% - 28px);
    gap: 24px;
    margin-bottom: 24px;
  }

  .hc-filters {
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hc-filters button {
    min-height: 24px;
    padding: 0 10px;
    font-size: 7px;
    font-weight: 500;
  }

  .hc-community-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    gap: 14px;
  }

  .hc-community-grid article {
    min-height: 280px;
  }

  .hc-community-grid h3 {
    font-size: 18px;
  }

  .hc-community-grid p {
    font-size: 10px;
  }

  .hc-final {
    min-height: 330px;
    padding: 54px 18px;
  }

  .hc-final h2 {
    font-size: 34px;
  }

  .hc-final p:not(.hc-section-kicker) {
    margin: 16px auto 22px;
    font-size: 11px;
  }

  .hc-frontpage-footer {
    min-height: 58px;
    padding: 0 10px;
    gap: 8px;
  }

  .hc-frontpage-footer p {
    font-size: 8px;
  }

  .hc-frontpage-footer nav {
    display: none;
  }
}

@media (max-width: 430px) {
  .hc-browser {
    transform: scale(.57);
  }

  .hc-hero-visual {
    height: 306px;
  }

  .hc-hero-actions .hc-btn {
    min-width: 126px;
  }
}

/* Mobile hero refinement */
@media (max-width: 900px) {
  .hc-hero {
    padding: 30px 20px 0;
  }

  .hc-hero-copy {
    max-width: 390px;
  }

  .hc-pill {
    min-height: 28px;
    padding: 0 11px;
    border-radius: 6px;
    font-size: 9px;
    letter-spacing: .16em;
  }

  .hc-pill svg {
    width: 12px;
    height: 12px;
  }

  .hc-hero h1 {
    margin: 24px 0 22px;
    font-size: clamp(46px, 12.4vw, 54px);
    line-height: .92;
    letter-spacing: -0.06em;
  }

  .hc-hero h1::after {
    height: 7px;
    bottom: -7px;
  }

  .hc-hero-text {
    max-width: 360px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hc-hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
    gap: 10px;
    width: min(100%, 342px);
    margin-top: 30px;
  }

  .hc-hero-actions .hc-btn {
    min-width: 0;
    min-height: 45px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 13px;
    gap: 8px;
  }

  .hc-hero-proof {
    width: min(100%, 366px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-top: 28px;
  }

  .hc-hero-proof div {
    min-width: 0;
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 8px;
  }

  .hc-hero-proof span {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

  .hc-hero-proof b {
    min-width: 0;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.12;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hc-hero-proof small {
    min-width: 0;
    overflow: hidden;
    font-size: 8px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hc-hero-visual {
    height: 388px;
    margin: 34px -20px 0;
    overflow: hidden;
  }

  .hc-browser {
    top: 0;
    left: 20px;
    width: 560px;
    border-width: 8px;
    border-radius: 16px;
    transform: scale(.71);
    transform-origin: top left;
  }
}

@media (max-width: 430px) {
  .hc-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hc-hero-visual {
    height: 384px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .hc-browser {
    left: 20px;
    transform: scale(.70);
  }

  .hc-hero-actions .hc-btn {
    min-width: 0;
  }
}

@media (max-width: 370px) {
  .hc-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hc-pill {
    font-size: 8px;
    letter-spacing: .13em;
  }

  .hc-hero h1 {
    font-size: 43px;
  }

  .hc-hero-text {
    font-size: 14px;
  }

  .hc-hero-actions {
    gap: 8px;
  }

  .hc-hero-actions .hc-btn {
    min-height: 42px;
    padding: 0 9px;
    font-size: 11px;
  }

  .hc-hero-proof {
    gap: 10px;
  }

  .hc-hero-visual {
    height: 344px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .hc-browser {
    left: 16px;
    transform: scale(.62);
  }
}

:root[data-theme="dark"] body.hc-frontpage,
:root[data-theme="dark"] .hc-frontpage,
body.night-mode.hc-frontpage,
body.night-mode .hc-frontpage {
  background: #11161f !important;
  color: #f8fafc !important;
}

:root[data-theme="dark"] .hc-frontpage-shell,
body.night-mode .hc-frontpage-shell,
:root[data-theme="dark"] .hc-frontpage-main,
body.night-mode .hc-frontpage-main {
  background: #11161f !important;
  color: #f8fafc !important;
}

:root[data-theme="dark"] .hc-frontpage-header,
body.night-mode .hc-frontpage-header {
  background: rgba(17, 22, 31, .96) !important;
  border-color: #2d3442 !important;
}

:root[data-theme="dark"] .hc-frontpage-nav a,
:root[data-theme="dark"] .hc-frontpage-nav-link,
:root[data-theme="dark"] .hc-frontpage-login,
body.night-mode .hc-frontpage-nav a,
body.night-mode .hc-frontpage-nav-link,
body.night-mode .hc-frontpage-login {
  color: #e2e8f0 !important;
}

:root[data-theme="dark"] .hc-frontpage-dropdown,
body.night-mode .hc-frontpage-dropdown {
  background: #151a22 !important;
  border-color: #2d3442 !important;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .32) !important;
}

:root[data-theme="dark"] .hc-frontpage-dropdown small,
body.night-mode .hc-frontpage-dropdown small {
  color: #94a3b8 !important;
}

:root[data-theme="dark"] .hc-frontpage-dropdown a,
body.night-mode .hc-frontpage-dropdown a {
  color: #f8fafc !important;
}

:root[data-theme="dark"] .hc-frontpage-join,
:root[data-theme="dark"] .hc-btn-light,
:root[data-theme="dark"] .hc-btn-white,
body.night-mode .hc-frontpage-join,
body.night-mode .hc-btn-light,
body.night-mode .hc-btn-white {
  background: #151a22 !important;
  border-color: #475467 !important;
  color: #f8fafc !important;
}

:root[data-theme="dark"] .hc-frontpage-menu-btn,
body.night-mode .hc-frontpage-menu-btn {
  background: #151a22 !important;
  border-color: #475467 !important;
}

:root[data-theme="dark"] .hc-frontpage-menu-btn span,
body.night-mode .hc-frontpage-menu-btn span {
  background: #f8fafc !important;
}

:root[data-theme="dark"] .hc-pill,
body.night-mode .hc-pill {
  color: #0b0b0b !important;
}

:root[data-theme="dark"] .hc-hero h1,
:root[data-theme="dark"] .hc-hero h1 span,
:root[data-theme="dark"] .hc-value-copy h2,
:root[data-theme="dark"] .hc-section-head h2,
:root[data-theme="dark"] .hc-people h2,
body.night-mode .hc-hero h1,
body.night-mode .hc-hero h1 span,
body.night-mode .hc-value-copy h2,
body.night-mode .hc-section-head h2,
body.night-mode .hc-people h2 {
  color: #f8fafc !important;
}

:root[data-theme="dark"] .hc-hero-text,
:root[data-theme="dark"] .hc-value-copy > p:not(.hc-section-kicker),
:root[data-theme="dark"] .hc-section-head p,
:root[data-theme="dark"] .hc-people p,
body.night-mode .hc-hero-text,
body.night-mode .hc-value-copy > p:not(.hc-section-kicker),
body.night-mode .hc-section-head p,
body.night-mode .hc-people p {
  color: #cbd5e1 !important;
}

:root[data-theme="dark"] .hc-hero-proof span,
:root[data-theme="dark"] .hc-tools span,
body.night-mode .hc-hero-proof span,
body.night-mode .hc-tools span {
  background: #151a22 !important;
  border-color: #343c4b !important;
  color: #f8fafc !important;
}

:root[data-theme="dark"] .hc-hero-proof b,
:root[data-theme="dark"] .hc-tools h3,
body.night-mode .hc-hero-proof b,
body.night-mode .hc-tools h3 {
  color: #f8fafc !important;
}

:root[data-theme="dark"] .hc-hero-proof small,
:root[data-theme="dark"] .hc-tools p,
body.night-mode .hc-hero-proof small,
body.night-mode .hc-tools p {
  color: #94a3b8 !important;
}

:root[data-theme="dark"] .hc-browser,
:root[data-theme="dark"] .hc-float,
:root[data-theme="dark"] .hc-event-card,
:root[data-theme="dark"] .hc-stats-card,
body.night-mode .hc-browser,
body.night-mode .hc-float,
body.night-mode .hc-event-card,
body.night-mode .hc-stats-card {
  background: #151a22 !important;
  border-color: #343c4b !important;
  color: #f8fafc !important;
  box-shadow: 0 30px 78px rgba(0, 0, 0, .35) !important;
}

:root[data-theme="dark"] .hc-browser-bar,
:root[data-theme="dark"] .hc-tabs,
body.night-mode .hc-browser-bar,
body.night-mode .hc-tabs {
  border-color: #2d3442 !important;
  color: #94a3b8 !important;
}

:root[data-theme="dark"] .hc-browser-bar span,
body.night-mode .hc-browser-bar span {
  border-color: #343c4b !important;
  color: #94a3b8 !important;
}

:root[data-theme="dark"] .hc-compose,
body.night-mode .hc-compose {
  background: #202936 !important;
  color: #94a3b8 !important;
}

:root[data-theme="dark"] .hc-post,
body.night-mode .hc-post {
  border-color: #343c4b !important;
  background: #171d26 !important;
}

:root[data-theme="dark"] .hc-app-head strong,
:root[data-theme="dark"] .hc-post strong,
:root[data-theme="dark"] .hc-event-card strong,
:root[data-theme="dark"] .hc-stats-card strong,
body.night-mode .hc-app-head strong,
body.night-mode .hc-post strong,
body.night-mode .hc-event-card strong,
body.night-mode .hc-stats-card strong {
  color: #f8fafc !important;
}

:root[data-theme="dark"] .hc-app-head small,
:root[data-theme="dark"] .hc-post small,
:root[data-theme="dark"] .hc-event-card small,
:root[data-theme="dark"] .hc-stats-card span,
:root[data-theme="dark"] .hc-post-foot,
:root[data-theme="dark"] .hc-post-foot b,
body.night-mode .hc-app-head small,
body.night-mode .hc-post small,
body.night-mode .hc-event-card small,
body.night-mode .hc-stats-card span,
body.night-mode .hc-post-foot,
body.night-mode .hc-post-foot b {
  color: #94a3b8 !important;
}

:root[data-theme="dark"] .hc-tools,
:root[data-theme="dark"] .hc-steps,
:root[data-theme="dark"] .hc-people,
:root[data-theme="dark"] .hc-frontpage-footer,
body.night-mode .hc-tools,
body.night-mode .hc-steps,
body.night-mode .hc-people,
body.night-mode .hc-frontpage-footer {
  background: #11161f !important;
  border-color: #2d3442 !important;
  color: #cbd5e1 !important;
}

:root[data-theme="dark"] .hc-value,
body.night-mode .hc-value {
  background: #1b1f14 !important;
}

:root[data-theme="dark"] .hc-value .hc-section-kicker,
body.night-mode .hc-value .hc-section-kicker {
  color: #ffcc00 !important;
}

:root[data-theme="dark"] .hc-value-grid article,
:root[data-theme="dark"] .hc-step-grid article,
body.night-mode .hc-value-grid article,
body.night-mode .hc-step-grid article {
  background: #171d26 !important;
  border-color: #343c4b !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22) !important;
}

:root[data-theme="dark"] .hc-value-grid h3,
:root[data-theme="dark"] .hc-step-grid h3,
body.night-mode .hc-value-grid h3,
body.night-mode .hc-step-grid h3 {
  color: #f8fafc !important;
}

:root[data-theme="dark"] .hc-value-grid p,
:root[data-theme="dark"] .hc-step-grid p,
body.night-mode .hc-value-grid p,
body.night-mode .hc-step-grid p {
  color: #cbd5e1 !important;
}

:root[data-theme="dark"] .hc-filters button,
body.night-mode .hc-filters button {
  background: #151a22 !important;
  border-color: #343c4b !important;
  color: #e2e8f0 !important;
}

:root[data-theme="dark"] .hc-filters .is-active,
body.night-mode .hc-filters .is-active {
  background: #ffcc00 !important;
  border-color: #ffcc00 !important;
  color: #080808 !important;
}

:root[data-theme="dark"] .hc-frontpage-footer a,
body.night-mode .hc-frontpage-footer a {
  color: #e2e8f0 !important;
}
