:root {
  --fk-navy: #14213d;
  --fk-navy-soft: #203154;
  --fk-blue: #2f6feb;
  --fk-blue-dark: #245cc4;
  --fk-blue-soft: #eef4ff;
  --fk-lime: #b7ed45;
  --fk-lime-soft: #effbd2;
  --fk-green: #0d8f76;
  --fk-purple: #7652c7;
  --fk-amber: #b76b12;
  --fk-text: #536176;
  --fk-muted: #8190a5;
  --fk-line: #dfe6f0;
  --fk-surface: #ffffff;
  --fk-bg: #f5f8fd;
  --fk-shadow: 0 26px 70px -38px rgba(35, 72, 145, 0.38);
}

.fk-public-site,
.fk-dashboard-app {
  color: var(--fk-navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.fk-public-site *,
.fk-public-site *::before,
.fk-public-site *::after,
.fk-dashboard-app *,
.fk-dashboard-app *::before,
.fk-dashboard-app *::after {
  box-sizing: border-box;
}

.fk-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
  width: 100%;
}

.fk-brand {
  align-items: center;
  color: var(--fk-navy) !important;
  display: inline-flex;
  gap: 10px;
  line-height: 1;
  text-decoration: none !important;
}

.fk-brand-mark {
  align-items: center;
  background: var(--fk-blue);
  border-radius: 13px;
  box-shadow: 0 11px 24px -13px rgba(47, 111, 235, 0.85);
  color: #fff;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
}

.fk-brand-mark > i {
  font-size: 19px;
}

.fk-brand-mark > span {
  background: var(--fk-lime);
  border: 3px solid #fff;
  border-radius: 999px;
  height: 13px;
  position: absolute;
  right: -4px;
  top: -4px;
  width: 13px;
}

.fk-brand strong {
  color: inherit;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -1.1px;
}

.fk-brand em {
  color: var(--fk-blue);
  font-style: normal;
}

.fk-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  line-height: 1.2;
  min-height: 44px;
  padding: 11px 19px;
  text-decoration: none !important;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

.fk-btn-primary {
  background: var(--fk-blue);
  box-shadow: 0 14px 30px -18px rgba(47, 111, 235, .95);
  color: #fff !important;
}

.fk-btn-primary:hover,
.fk-btn-primary:focus {
  background: var(--fk-blue-dark);
  color: #fff !important;
}

.fk-btn-secondary {
  background: #fff;
  border-color: #cfd8e6;
  color: var(--fk-navy) !important;
}

.fk-btn-secondary:hover,
.fk-btn-secondary:focus {
  border-color: #aabbd4;
  color: var(--fk-blue) !important;
}

.fk-btn-light {
  background: #fff;
  color: var(--fk-navy) !important;
}

.fk-btn-large {
  min-height: 52px;
  padding: 14px 23px;
}

/* Public website */
.fk-public-site {
  background: #fff;
  min-width: 320px;
}

.fk-public-site .wrap {
  min-height: 100%;
  overflow: visible;
}

.fk-public-site p,
.fk-public-site h1,
.fk-public-site h2,
.fk-public-site h3,
.fk-public-site ul {
  margin-bottom: 0;
  margin-top: 0;
}

.fk-public-site p {
  color: var(--fk-text);
}

.fk-public-site .animation {
  visibility: visible;
}

.fk-site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(214, 224, 237, .92);
  height: 76px !important;
  padding: 0 !important;
  position: sticky;
  top: 0;
  z-index: 1040;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.fk-site-header-inner {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: space-between;
}

.fk-site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 30px;
}

.fk-site-nav a,
.fk-login-link {
  color: #5f6d80 !important;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none !important;
}

.fk-site-nav a:hover,
.fk-login-link:hover {
  color: var(--fk-blue) !important;
}

.fk-site-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.fk-mobile-menu {
  display: none;
  position: relative;
}

.fk-mobile-menu summary {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 12px;
  color: var(--fk-navy);
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  list-style: none;
  width: 44px;
}

.fk-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.fk-mobile-menu > div {
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 16px;
  box-shadow: var(--fk-shadow);
  padding: 9px;
  position: absolute;
  right: 0;
  top: 53px;
  width: 250px;
}

.fk-mobile-menu > div a {
  border-radius: 10px;
  color: var(--fk-navy) !important;
  display: block;
  font-size: 14px;
  font-weight: 750;
  padding: 11px 13px;
}

.fk-mobile-menu > div a:hover {
  background: var(--fk-bg);
}

.fk-mobile-menu > div .fk-menu-cta {
  background: var(--fk-blue);
  color: #fff !important;
  margin-top: 6px;
  text-align: center;
}

.fk-public-main {
  overflow: hidden;
}

.fk-hero {
  background-color: #f7f9fd;
  background-image: linear-gradient(rgba(64, 115, 214, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(64, 115, 214, .055) 1px, transparent 1px), radial-gradient(circle at 50% 0, rgba(75, 132, 255, .15), transparent 48%);
  background-size: 34px 34px, 34px 34px, auto;
  border-bottom: 1px solid var(--fk-line);
  min-height: 690px;
  padding: 74px 0 82px !important;
}

.fk-hero-grid {
  align-items: center;
  display: grid;
  gap: 62px;
  grid-template-columns: 1.04fr .96fr;
}

.fk-eyebrow {
  align-items: center;
  background: var(--fk-blue-soft);
  border: 1px solid #cbdcff;
  border-radius: 999px;
  color: #2a61bf;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: .01em;
  padding: 7px 13px;
}

.fk-hero-copy h1 {
  color: var(--fk-navy);
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .96;
  margin-top: 24px;
  max-width: 700px;
}

.fk-hero-copy h1 strong {
  color: var(--fk-blue);
  display: block;
  font-weight: inherit;
  margin-top: 8px;
}

.fk-hero-copy > p {
  font-size: 19px;
  line-height: 1.7;
  margin-top: 26px;
  max-width: 610px;
}

.fk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.fk-check-list {
  list-style: none;
  padding: 0;
}

.fk-hero-checks {
  display: grid;
  gap: 11px 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: 31px !important;
}

.fk-hero-checks li {
  align-items: flex-start;
  color: #607088;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 9px;
  line-height: 1.5;
}

.fk-hero-checks li:last-child {
  grid-column: 1 / -1;
}

.fk-hero-checks i {
  align-items: center;
  background: var(--fk-lime-soft);
  border-radius: 999px;
  color: #578811;
  display: inline-flex;
  flex: 0 0 20px;
  font-size: 10px;
  height: 20px;
  justify-content: center;
}

.fk-hero-visual {
  align-items: center;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(96, 154, 255, .18), rgba(255,255,255,.72) 54%, transparent 72%);
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 550px;
  position: relative;
  width: 100%;
}

.fk-hero-visual::before,
.fk-hero-visual::after {
  border: 1px solid rgba(79, 135, 240, .22);
  border-radius: 999px;
  content: "";
  inset: 11%;
  pointer-events: none;
  position: absolute;
}

.fk-hero-visual::after {
  inset: 24%;
}

.fk-preview-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 28px;
  box-shadow: var(--fk-shadow);
  padding: 20px;
  position: relative;
  width: 88%;
  z-index: 2;
}

.fk-preview-head {
  align-items: center;
  border-bottom: 1px solid #edf1f6;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}

.fk-preview-head div,
.fk-preview-next div {
  display: flex;
  flex-direction: column;
}

.fk-preview-head small {
  color: #95a0b2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fk-preview-head strong {
  color: var(--fk-navy);
  font-size: 17px;
  margin-top: 4px;
}

.fk-preview-head > span {
  align-items: center;
  background: var(--fk-blue-soft);
  border-radius: 999px;
  color: var(--fk-blue);
  display: flex;
  height: 41px;
  justify-content: center;
  width: 41px;
}

.fk-preview-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 15px;
}

.fk-preview-dark,
.fk-preview-light {
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 142px;
  padding: 17px;
}

.fk-preview-dark {
  background: var(--fk-navy);
  color: #fff;
}

.fk-preview-light {
  background: var(--fk-blue-soft);
  color: var(--fk-navy);
}

.fk-preview-dark small,
.fk-preview-light small {
  font-size: 11px;
  font-weight: 750;
  opacity: .7;
}

.fk-preview-dark strong,
.fk-preview-light strong {
  font-size: 20px;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-top: 25px;
}

.fk-preview-dark > span {
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  height: 6px;
  margin-top: 14px;
  overflow: hidden;
}

.fk-preview-dark > span i {
  background: var(--fk-lime);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 62%;
}

.fk-preview-light > span {
  color: #7b8aa0;
  font-size: 11px;
  font-weight: 700;
  margin-top: 13px;
}

.fk-preview-next {
  align-items: center;
  border: 1px solid var(--fk-line);
  border-radius: 18px;
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding: 15px;
}

.fk-preview-next > span {
  align-items: center;
  background: var(--fk-lime-soft);
  border-radius: 12px;
  color: #5e8c16;
  display: flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
}

.fk-preview-next strong {
  color: var(--fk-navy);
  font-size: 13px;
}

.fk-preview-next small {
  color: #8995a6;
  font-size: 11px;
  margin-top: 2px;
}

.fk-preview-next > i {
  color: var(--fk-blue);
  margin-left: auto;
}

.fk-float-label {
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 999px;
  box-shadow: 0 10px 28px -16px rgba(20,33,61,.65);
  color: var(--fk-navy);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 13px;
  position: absolute;
  z-index: 3;
}

.fk-float-label-one { left: 1%; top: 18%; }
.fk-float-label-two { background: var(--fk-navy); border-color: var(--fk-navy); bottom: 13%; color: #fff; right: 0; }

.fk-benefit-strip {
  border-bottom: 1px solid var(--fk-line);
  padding: 24px 0 !important;
}

.fk-benefit-strip .fk-shell {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.fk-benefit-strip p {
  align-items: center;
  color: #7a8799;
  display: flex;
  font-size: 14px;
  gap: 10px;
  justify-content: center;
}

.fk-benefit-strip p i {
  background: var(--fk-lime);
  border-radius: 999px;
  box-shadow: 0 0 0 4px var(--fk-lime-soft);
  height: 9px;
  width: 9px;
}

.fk-benefit-strip p strong {
  color: var(--fk-navy);
}

.fk-public-main .fk-section {
  background: #fff;
  padding: 94px 0 !important;
}

.fk-public-main .fk-section-muted {
  background: var(--fk-bg);
}

.fk-section-heading {
  max-width: 720px;
}

.fk-section-heading > span,
.fk-section-heading-wide > div > span,
.fk-dashboard-kicker,
.fk-dashboard-section-title small,
.fk-account-head small,
.fk-bonus-heading small,
.fk-referral-card small {
  color: var(--fk-blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fk-section-heading h2,
.fk-section-heading-wide h2,
.fk-trust-panel h2,
.fk-final-cta h2 {
  color: var(--fk-navy);
  font-size: clamp(36px, 4.2vw, 50px);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1.06;
  margin-top: 13px;
}

.fk-section-heading > p {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 18px;
}

.fk-section-heading-wide {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

.fk-section-heading-wide > div {
  max-width: 690px;
}

.fk-section-heading-wide > p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 410px;
  padding-bottom: 4px;
}

.fk-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

.fk-step-card,
.fk-channel-card,
.fk-plan-card {
  border: 1px solid var(--fk-line);
  border-radius: 25px;
  padding: 28px;
}

.fk-step-card {
  background: #f8faff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.fk-step-card:hover {
  box-shadow: var(--fk-shadow);
  transform: translateY(-4px);
}

.fk-step-card > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.fk-step-card > div span,
.fk-icon {
  align-items: center;
  border-radius: 15px;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.fk-step-card > div span {
  background: #fff;
  border: 1px solid var(--fk-line);
  color: var(--fk-blue);
}

.fk-step-card > div b {
  color: #dce3ed;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -.06em;
}

.fk-step-card h3,
.fk-channel-card h3,
.fk-plan-card h3 {
  color: var(--fk-navy);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-top: 34px;
}

.fk-step-card p,
.fk-channel-card p,
.fk-plan-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
}

.fk-channel-card {
  background: #fff;
  box-shadow: var(--fk-shadow);
}

.fk-icon-blue { background: var(--fk-blue-soft); color: var(--fk-blue); }
.fk-icon-green { background: #e9fbf7; color: var(--fk-green); }
.fk-icon-purple { background: #f3efff; color: var(--fk-purple); }
.fk-icon-lime { background: var(--fk-lime-soft); color: #5c8a12; }
.fk-icon-amber { background: #fff4e5; color: var(--fk-amber); }

.fk-channel-card h3 {
  margin-top: 27px;
}

.fk-channel-card > a {
  color: var(--fk-blue) !important;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  gap: 7px;
  margin-top: 24px;
  text-decoration: none !important;
}

.fk-trust-panel {
  align-items: center;
  background: var(--fk-navy);
  border-radius: 32px;
  display: grid;
  gap: 70px;
  grid-template-columns: .92fr 1.08fr;
  overflow: hidden;
  padding: 58px;
  position: relative;
}

.fk-trust-panel::before,
.fk-trust-panel::after {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  content: "";
  height: 300px;
  position: absolute;
  right: -120px;
  top: -140px;
  width: 300px;
}

.fk-trust-panel::after {
  height: 190px;
  right: -44px;
  top: -62px;
  width: 190px;
}

.fk-trust-heading,
.fk-trust-list {
  position: relative;
  z-index: 1;
}

.fk-trust-heading > .fk-icon {
  background: rgba(255,255,255,.1);
  color: var(--fk-lime);
}

.fk-trust-heading small {
  color: #8db5ff;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  margin-top: 27px;
  text-transform: uppercase;
}

.fk-trust-panel h2 {
  color: #fff;
}

.fk-trust-list {
  display: grid;
  gap: 12px;
}

.fk-trust-list article {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 17px;
  display: flex;
  gap: 14px;
  padding: 18px;
}

.fk-trust-list article > i {
  align-items: center;
  background: var(--fk-lime);
  border-radius: 999px;
  color: #35550b;
  display: flex;
  flex: 0 0 23px;
  font-size: 10px;
  height: 23px;
  justify-content: center;
  margin-top: 1px;
}

.fk-trust-list h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  margin: 0;
}

.fk-trust-list p {
  color: #b8c3d4;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 4px;
}

.fk-membership-grid {
  align-items: center;
  display: grid;
  gap: 65px;
  grid-template-columns: .82fr 1.18fr;
}

.fk-plan-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.fk-plan-card {
  background: #fff;
}

.fk-plan-card .fk-pill {
  background: #eef2f7;
  border-radius: 999px;
  color: #5e6b7e;
  display: inline-flex;
  font-size: 11px;
  font-weight: 850;
  padding: 6px 11px;
}

.fk-plan-card h3 {
  font-size: 27px;
  margin-top: 23px;
}

.fk-plan-card p {
  min-height: 77px;
}

.fk-plan-card .fk-btn {
  margin-top: 23px;
  width: 100%;
}

.fk-plan-card-featured {
  background: var(--fk-blue);
  border-color: var(--fk-blue);
  box-shadow: 0 26px 60px -30px rgba(47,111,235,.75);
  color: #fff;
}

.fk-plan-card-featured .fk-pill {
  background: var(--fk-lime);
  color: #35550b;
}

.fk-plan-card-featured h3,
.fk-plan-card-featured p {
  color: #fff;
}

.fk-final-cta {
  background: var(--fk-blue);
  padding: 48px 0 !important;
}

.fk-final-cta .fk-shell {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
}

.fk-final-cta .fk-shell > span {
  align-items: center;
  background: rgba(255,255,255,.13);
  border-radius: 18px;
  color: var(--fk-lime);
  display: flex;
  font-size: 22px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.fk-final-cta small {
  color: #d9e5ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.fk-final-cta h2 {
  color: #fff;
  font-size: 30px;
  margin-top: 4px;
}

.fk-site-footer {
  background: #0f1a30;
  color: #fff;
  padding: 70px 0 0;
}

.fk-footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.65fr repeat(3, 1fr);
  padding-bottom: 56px;
}

.fk-site-footer .fk-brand {
  color: #fff !important;
}

.fk-footer-brand > p {
  color: #9eabc0;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 330px;
}

.fk-site-footer h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  margin: 4px 0 18px;
}

.fk-site-footer ul {
  list-style: none;
  padding: 0;
}

.fk-site-footer li + li {
  margin-top: 10px;
}

.fk-site-footer li a {
  color: #9eabc0 !important;
  font-size: 13px;
  text-decoration: none !important;
}

.fk-site-footer li a:hover {
  color: #fff !important;
}

.fk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
}

.fk-footer-bottom .fk-shell {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 70px;
}

.fk-footer-bottom p {
  color: #7f8ba0;
  font-size: 12px;
  margin: 0;
}

/* Logged-in application */
.fk-dashboard-app {
  background: var(--fk-bg) !important;
}

.fk-dashboard-app .wrap {
  background: var(--fk-bg);
}

.fk-dashboard-app .page-header {
  align-items: center;
  background: rgba(255,255,255,.95) !important;
  border-bottom: 1px solid var(--fk-line) !important;
  box-shadow: none !important;
  display: flex;
  height: 68px !important;
  position: fixed;
  text-shadow: none !important;
  z-index: 1050;
}

.fk-dashboard-app .page-header .leftside-header {
  background: var(--fk-navy);
  height: 68px;
  width: 272px;
}

.fk-dashboard-app .page-header .leftside-header .logo {
  align-items: center;
  display: flex;
  height: 68px;
  padding-left: 20px;
  width: 272px;
}

.fk-dashboard-app .fk-dashboard-brand {
  color: #fff !important;
}

.fk-dashboard-app .fk-dashboard-brand em {
  color: #80aaff;
}

.fk-dashboard-app .page-header .rightside-header {
  align-items: center;
  display: flex;
  height: 68px;
  margin-left: auto;
  margin-right: 14px;
}

.fk-dashboard-app .page-header #user-headerbox {
  border: 0;
  height: 68px;
  padding: 0 12px;
}

.fk-dashboard-app .page-header #user-headerbox .user-header-wrap {
  align-items: center;
  display: flex;
  height: 68px;
}

.fk-dashboard-app .page-header #user-headerbox .user-header-wrap .user-photo {
  border: 0;
  height: 38px;
  margin: 0 10px 0 0;
  width: 38px;
}

.fk-dashboard-app .page-header #user-headerbox .user-header-wrap .user-photo img {
  border: 2px solid #e7edf6;
  border-radius: 12px;
  height: 38px;
  width: 38px;
}

.fk-dashboard-app .page-header #user-headerbox .user-header-wrap .user-photo .user-initial {
  align-items: center;
  background: var(--fk-blue);
  border: 2px solid #dce7fb;
  border-radius: 12px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.fk-dashboard-app .page-header #user-headerbox .user-header-wrap .user-info span.user-name {
  color: var(--fk-navy);
  font-size: 13px;
  font-weight: 800;
  text-shadow: none;
}

.fk-dashboard-app .page-header #user-headerbox .user-header-wrap > i,
.fk-dashboard-app .page-header .rightside-header .header-section .log-out {
  color: #66758a;
  text-shadow: none;
}

.fk-dashboard-app .page-header .dropdown-box {
  border: 1px solid var(--fk-line);
  border-radius: 14px;
  box-shadow: var(--fk-shadow);
  overflow: hidden;
  top: 64px;
}

.fk-dashboard-app .page-body {
  background: var(--fk-bg);
  min-height: 100vh;
  overflow: visible;
  padding-top: 68px;
}

.fk-dashboard-app .left-sidebar {
  background: var(--fk-navy) !important;
  bottom: 0;
  color: #fff;
  height: auto;
  position: fixed;
  top: 68px;
  width: 272px;
}

.fk-dashboard-app .left-sidebar .left-sidebar-header,
.fk-dashboard-app .left-sidebar .nano {
  background: var(--fk-navy) !important;
}

.fk-dashboard-app .left-sidebar .left-sidebar-header {
  border-bottom: 1px solid rgba(255,255,255,.08);
  height: 62px;
}

.fk-dashboard-app .left-sidebar .left-sidebar-header .left-sidebar-title {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  height: 62px;
  letter-spacing: .05em;
  padding: 17px 16px;
}

.fk-dashboard-app .left-sidebar .left-sidebar-header .left-sidebar-title img {
  height: 28px;
  width: auto;
}

.fk-dashboard-app .left-sidebar .nano-content {
  padding: 10px 0 30px;
}

.fk-dashboard-app .left-sidebar .nav-left-lines > li > a,
.fk-dashboard-app .left-sidebar .child-nav li > a {
  border: 0 !important;
  border-radius: 11px;
  color: rgba(255,255,255,.68) !important;
  font-size: 13px;
  font-weight: 650;
  margin: 3px 10px;
  min-height: 42px;
  padding: 11px 13px;
  text-shadow: none;
}

.fk-dashboard-app .left-sidebar .nav-left-lines > li > a i {
  color: rgba(255,255,255,.52);
  margin-right: 9px;
  width: 18px;
}

.fk-dashboard-app .left-sidebar .nav-left-lines li {
  border: 0 !important;
}

.fk-dashboard-app .left-sidebar .nav-left-lines > li > a:hover,
.fk-dashboard-app .left-sidebar .nav-left-lines > li.active-item > a,
.fk-dashboard-app .left-sidebar .nav-left-lines > li.open-item > a {
  background: rgba(255,255,255,.09) !important;
  color: #fff !important;
}

.fk-dashboard-app .left-sidebar .child-nav {
  background: rgba(0,0,0,.12);
  padding: 5px 0;
}

.fk-dashboard-app .content {
  background: var(--fk-bg);
  margin-left: 272px;
  min-height: calc(100vh - 68px);
  padding: 0;
}

.fk-dashboard-app .content:not(.fk-dashboard-content) {
  padding: 28px;
}

.fk-dashboard-app .content-header {
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.fk-dashboard-app .content .content-header ul.breadcrumbs li a {
  color: var(--fk-navy) !important;
}

.fk-dashboard-app .fk-dashboard-breadcrumb {
  align-items: center;
  background: rgba(255,255,255,.9) !important;
  border-bottom: 1px solid var(--fk-line);
  display: flex;
  height: 56px;
  padding: 0 28px;
}

.fk-dashboard-app .fk-dashboard-breadcrumb .leftside-content-header {
  height: auto;
  padding: 0;
}

.fk-dashboard-app .fk-dashboard-breadcrumb ul.breadcrumbs {
  line-height: 1;
  padding: 0;
}

.fk-dashboard-app .fk-dashboard-breadcrumb ul.breadcrumbs li {
  font-size: 13px;
  line-height: 1;
}

.fk-dashboard-app .fk-dashboard-inner {
  margin: 0 auto;
  max-width: 1480px;
  padding: 32px 30px 48px;
}

.fk-dashboard-app .fk-dashboard-inner section {
  padding: 0;
}

.fk-dashboard-app .fk-dashboard-breadcrumb .breadcrumbs li {
  background: transparent !important;
  color: var(--fk-text) !important;
}

.fk-notice {
  align-items: flex-start;
  border: 1px solid;
  border-radius: 14px;
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 10px;
  margin-bottom: 14px;
  padding: 13px 15px;
  text-decoration: none !important;
}

.fk-notice-danger { background: #fff0f1; border-color: #ffcdd2; color: #a42835 !important; }
.fk-notice-info { background: var(--fk-blue-soft); border-color: #cbdcff; color: #285eb8 !important; }
.fk-notice-warning { background: #fff6e6; border-color: #ffe0a6; color: #8c5a08 !important; }

.fk-dashboard-welcome {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 4px 0 26px;
}

.fk-dashboard-welcome h1 {
  color: var(--fk-navy);
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 950;
  letter-spacing: -.045em;
  margin: 7px 0 0;
}

.fk-dashboard-welcome p {
  color: var(--fk-text);
  font-size: 15px;
  margin: 7px 0 0;
}

.fk-dashboard-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.fk-dashboard-card {
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 23px;
  box-shadow: var(--fk-shadow);
  padding: 24px;
}

.fk-card-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.fk-card-top small {
  background: var(--fk-blue-soft);
  border-radius: 999px;
  color: #2d65c4;
  font-size: 10px;
  font-weight: 850;
  padding: 5px 9px;
  text-transform: uppercase;
}

.fk-dashboard-card > p {
  color: var(--fk-text);
  font-size: 13px;
  font-weight: 700;
  margin: 22px 0 0;
}

.fk-dashboard-card > strong {
  color: var(--fk-navy);
  display: block;
  font-size: 31px;
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.2;
  margin-top: 3px;
}

.fk-dashboard-card > a {
  color: var(--fk-blue) !important;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  gap: 7px;
  margin-top: 13px;
  text-decoration: none !important;
}

.fk-dashboard-card-dark {
  background: var(--fk-navy);
  border-color: var(--fk-navy);
  color: #fff;
}

.fk-dashboard-card-dark .fk-icon {
  background: rgba(255,255,255,.1);
  color: var(--fk-lime);
}

.fk-dashboard-card-dark .fk-card-top small {
  background: var(--fk-lime);
  color: #35550b;
}

.fk-dashboard-card-dark > p { color: rgba(255,255,255,.56); }
.fk-dashboard-card-dark > strong { color: #fff; }
.fk-dashboard-card-dark > a { color: #93b8ff !important; }

.fk-dashboard-main-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.32fr .68fr;
  margin-top: 16px;
}

.fk-bonus-heading {
  align-items: flex-start;
  display: grid;
  gap: 15px;
  grid-template-columns: auto 1fr auto;
}

.fk-bonus-heading h2,
.fk-account-head h2,
.fk-dashboard-section-title h2,
.fk-referral-card h2 {
  color: var(--fk-navy);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.035em;
  margin: 4px 0 0;
}

.fk-bonus-heading p,
.fk-dashboard-section-title p {
  color: var(--fk-text);
  font-size: 13px;
  line-height: 1.6;
  margin: 6px 0 0;
}

.fk-bonus-heading > b {
  background: #f1f4f8;
  border-radius: 10px;
  color: var(--fk-navy);
  font-size: 12px;
  padding: 8px 10px;
}

.fk-progress {
  background: #edf1f6;
  border-radius: 999px;
  height: 10px;
  margin-top: 24px;
  overflow: hidden;
}

.fk-progress span {
  background: var(--fk-lime);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.fk-bonus-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
}

.fk-bonus-footer > span {
  color: var(--fk-text);
  font-size: 12px;
  font-weight: 700;
}

.fk-account-head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.fk-account-balance {
  background: var(--fk-bg);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  padding: 13px 14px;
}

.fk-account-balance span {
  color: var(--fk-text);
  font-size: 11px;
  font-weight: 750;
}

.fk-account-balance strong {
  color: var(--fk-navy);
  font-size: 19px;
  margin-top: 3px;
}

.fk-account-card ul {
  list-style: none;
  margin: 11px 0 0;
  padding: 0;
}

.fk-account-card li + li {
  border-top: 1px solid #edf1f6;
}

.fk-account-card li a {
  align-items: center;
  color: var(--fk-navy) !important;
  display: flex;
  font-size: 12px;
  font-weight: 750;
  justify-content: space-between;
  padding: 11px 2px;
  text-decoration: none !important;
}

.fk-account-card li a span i {
  color: var(--fk-blue);
  margin-right: 7px;
  width: 14px;
}

.fk-dashboard-actions {
  margin-top: 27px;
}

.fk-dashboard-section-title {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

.fk-dashboard-section-title > a {
  color: var(--fk-blue) !important;
  font-size: 12px;
  font-weight: 800;
}

.fk-quick-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
}

.fk-quick-grid > a {
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 19px;
  box-shadow: var(--fk-shadow);
  color: var(--fk-navy) !important;
  display: flex;
  flex-direction: column;
  min-height: 176px;
  padding: 19px;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease;
}

.fk-quick-grid > a:hover {
  border-color: #b9cae2;
  transform: translateY(-3px);
}

.fk-quick-grid > a .fk-icon {
  height: 41px;
  width: 41px;
}

.fk-quick-grid > a strong {
  font-size: 14px;
  font-weight: 850;
  margin-top: 25px;
}

.fk-quick-grid > a small {
  color: var(--fk-text);
  font-size: 12px;
  margin-top: 4px;
}

.fk-referral-card,
.fk-earn-card,
.fk-ad-card,
.fk-banner-card {
  margin-top: 16px;
}

.fk-referral-card > div:first-child {
  align-items: center;
  display: flex;
  gap: 14px;
}

.fk-copy-field {
  margin-top: 18px;
}

.fk-copy-field input {
  background: var(--fk-bg);
  border: 1px solid var(--fk-line);
  border-radius: 12px;
  color: #5c6a7e;
  font-size: 13px;
  height: 45px;
  padding: 0 14px;
  width: 100%;
}

.fk-legacy-hook {
  margin-top: 20px;
}

.fk-legacy-hook::after {
  clear: both;
  content: "";
  display: table;
}

.fk-legacy-hook a,
.fk-legacy-hook .btn {
  border-radius: 11px !important;
}

.fk-ad-card,
.fk-banner-card {
  overflow: hidden;
  text-align: center;
}

html.left-sidebar-collapsed .fk-dashboard-app .content,
.fk-dashboard-app.left-sidebar-collapsed .content {
  margin-left: 72px;
}

html.left-sidebar-collapsed .fk-dashboard-app .left-sidebar,
.fk-dashboard-app.left-sidebar-collapsed .left-sidebar {
  width: 72px;
}

.fk-dashboard-app .panel {
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 18px;
  box-shadow: var(--fk-shadow);
  overflow: hidden;
}

.fk-dashboard-app .panel-header {
  border-bottom: 1px solid var(--fk-line);
  padding: 16px 19px;
}

.fk-dashboard-app .panel-content {
  padding: 19px;
}

.fk-dashboard-app .btn {
  border-radius: 10px;
}

.fk-dashboard-app .form-control,
.fk-dashboard-app select.form-control {
  border-color: #ced8e6;
  border-radius: 10px;
  min-height: 42px;
}

@media (max-width: 1100px) {
  .fk-site-nav { display: none; }
  .fk-mobile-menu { display: block; }
  .fk-login-link { display: none; }
  .fk-hero-grid { gap: 35px; }
  .fk-section-heading-wide { align-items: flex-start; flex-direction: column; gap: 20px; }
  .fk-trust-panel { gap: 38px; padding: 45px; }
  .fk-membership-grid { gap: 38px; }
  .fk-dashboard-app .page-header .leftside-header,
  .fk-dashboard-app .page-header .leftside-header .logo,
  .fk-dashboard-app .left-sidebar { width: 235px; }
  .fk-dashboard-app .content { margin-left: 235px; }
  .fk-dashboard-main-grid { grid-template-columns: 1fr; }
  .fk-quick-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .fk-shell { padding-left: 20px; padding-right: 20px; }
  .fk-hero { padding: 58px 0 70px !important; }
  .fk-hero-grid { grid-template-columns: 1fr; }
  .fk-hero-copy { text-align: center; }
  .fk-hero-copy > p { margin-left: auto; margin-right: auto; }
  .fk-hero-actions { justify-content: center; }
  .fk-hero-checks { margin-left: auto !important; margin-right: auto !important; max-width: 620px; text-align: left; }
  .fk-hero-visual { max-width: 530px; }
  .fk-card-grid { grid-template-columns: 1fr; }
  .fk-channel-grid { grid-template-columns: repeat(3, 1fr); }
  .fk-trust-panel { grid-template-columns: 1fr; }
  .fk-membership-grid { grid-template-columns: 1fr; }
  .fk-final-cta .fk-shell { grid-template-columns: auto 1fr; }
  .fk-final-cta .fk-btn { grid-column: 1 / -1; justify-self: flex-start; }
  .fk-footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .fk-footer-grid > div:last-child { grid-column: 2; }
  .fk-dashboard-stats { grid-template-columns: 1fr 1fr; }
  .fk-dashboard-stats .fk-dashboard-card-dark { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .fk-site-actions > .fk-btn { display: none; }
  .fk-hero-copy h1 { font-size: clamp(43px, 13vw, 62px); }
  .fk-hero-copy > p { font-size: 17px; }
  .fk-benefit-strip .fk-shell { grid-template-columns: 1fr; }
  .fk-benefit-strip p { justify-content: flex-start; }
  .fk-public-main .fk-section { padding: 70px 0 !important; }
  .fk-channel-grid { grid-template-columns: 1fr; }
  .fk-trust-panel { border-radius: 25px; padding: 32px 24px; }
  .fk-plan-grid { grid-template-columns: 1fr; }
  .fk-plan-card p { min-height: 0; }
  .fk-footer-grid { grid-template-columns: 1fr 1fr; }
  .fk-footer-brand { grid-column: 1 / -1; }
  .fk-footer-grid > div:last-child { grid-column: auto; }
  .fk-footer-bottom .fk-shell { align-items: flex-start; flex-direction: column; gap: 8px; justify-content: center; padding-bottom: 18px; padding-top: 18px; }
  .fk-dashboard-app .page-header {
    background: #fff !important;
    display: flex;
    height: 68px !important;
    left: 0;
    position: fixed !important;
    right: 0;
    top: 0;
    width: 100%;
  }
  .fk-dashboard-app .page-header .leftside-header {
    flex: 0 0 72px;
    left: auto;
    position: relative;
    right: auto;
    top: auto;
    width: 72px;
  }
  .fk-dashboard-app .page-header .leftside-header .logo { display: none; }
  .fk-dashboard-app .page-header .leftside-header .toggle-left-sidebar {
    align-items: center;
    display: flex !important;
    font-size: 20px;
    height: 68px;
    justify-content: center;
    line-height: 1;
    position: static;
    width: 72px;
  }
  .fk-dashboard-app .page-header .rightside-header {
    background: #fff !important;
    display: flex;
    flex: 1 1 auto;
    float: none !important;
    height: 68px;
    justify-content: flex-end;
    margin: 0 8px 0 auto;
    min-width: 0;
    text-align: right;
    width: auto;
  }
  .fk-dashboard-app .page-header .rightside-header .header-middle { display: none; }
  .fk-dashboard-app .left-sidebar { margin-left: -272px; max-width: 272px; min-width: 272px; width: 272px; }
  html.left-sidebar-open .fk-dashboard-app .left-sidebar,
  .fk-dashboard-app.left-sidebar-open .left-sidebar { margin-left: 0; }
  .fk-dashboard-app .content { margin-left: 0 !important; }
  .fk-dashboard-app .fk-dashboard-inner { padding: 26px 18px 40px; }
  .fk-dashboard-welcome { align-items: flex-start; flex-direction: column; gap: 18px; }
  .fk-bonus-heading { grid-template-columns: auto 1fr; }
  .fk-bonus-heading > b { grid-column: 2; justify-self: start; }
}

@media (max-width: 480px) {
  .fk-dashboard-app .page-header #user-headerbox { padding: 0 5px; }
  .fk-dashboard-app .page-header #user-headerbox .user-header-wrap .user-info { display: none; }
  .fk-dashboard-app .page-header .rightside-header .header-separator { margin: 0 2px; }
}

@media (max-width: 560px) {
  .fk-shell { padding-left: 16px; padding-right: 16px; }
  .fk-brand strong { font-size: 20px; }
  .fk-brand-mark { border-radius: 12px; height: 38px; width: 38px; }
  .fk-hero { padding-top: 46px !important; }
  .fk-hero-copy { text-align: left; }
  .fk-hero-actions { flex-direction: column; }
  .fk-hero-actions .fk-btn { width: 100%; }
  .fk-hero-checks { grid-template-columns: 1fr; }
  .fk-hero-checks li:last-child { grid-column: auto; }
  .fk-preview-card { padding: 14px; width: 96%; }
  .fk-preview-grid { grid-template-columns: 1fr; }
  .fk-float-label { display: none; }
  .fk-benefit-strip { padding: 18px 0 !important; }
  .fk-section-heading h2,
  .fk-section-heading-wide h2,
  .fk-trust-panel h2 { font-size: 35px; }
  .fk-card-grid { margin-top: 35px; }
  .fk-final-cta .fk-shell { grid-template-columns: 1fr; }
  .fk-final-cta .fk-shell > span { height: 50px; width: 50px; }
  .fk-final-cta .fk-btn { width: 100%; }
  .fk-footer-grid { grid-template-columns: 1fr; }
  .fk-footer-brand,
  .fk-footer-grid > div:last-child { grid-column: auto; }
  .fk-dashboard-stats { grid-template-columns: 1fr; }
  .fk-dashboard-stats .fk-dashboard-card-dark { grid-column: auto; }
  .fk-quick-grid { grid-template-columns: 1fr; }
  .fk-quick-grid > a { min-height: 150px; }
  .fk-bonus-footer { align-items: flex-start; flex-direction: column; gap: 14px; }
  .fk-bonus-footer .fk-btn { width: 100%; }
}

.fk-live-stats {
  background: var(--fk-navy);
  padding: 30px 0 !important;
}

.fk-live-stats .fk-shell {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.fk-live-stats article {
  border-right: 1px solid rgba(255, 255, 255, .12);
  min-width: 0;
  padding: 6px 24px;
  text-align: center;
}

.fk-live-stats article:last-child {
  border-right: 0;
}

.fk-live-stats span,
.fk-live-stats small {
  display: block;
}

.fk-live-stats span {
  color: #fff;
  font-size: clamp(23px, 2.7vw, 34px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.15;
}

.fk-live-stats small {
  color: #aebbd0;
  font-size: 12px;
  font-weight: 750;
  margin-top: 6px;
}

.fk-public-banner {
  background: var(--fk-bg) !important;
  border-top: 1px solid var(--fk-line);
  padding: 28px 0 !important;
}

.fk-dashboard-email {
  color: var(--fk-muted);
  display: block;
  font-size: 12px;
  margin-top: 7px;
}

.fk-dashboard-welcome-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.fk-dashboard-welcome-actions #google_translate_element {
  min-height: 34px;
}

.fk-dashboard-welcome-actions .goog-te-gadget {
  color: var(--fk-muted);
  font-size: 0;
}

.fk-dashboard-welcome-actions .goog-te-gadget > span {
  display: none;
}

.fk-dashboard-welcome-actions .goog-te-combo {
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 10px;
  color: var(--fk-navy);
  font-size: 12px;
  margin: 0;
  min-height: 38px;
  padding: 7px 30px 7px 10px;
}

.fk-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.fk-share-actions a {
  align-items: center;
  background: var(--fk-blue-soft);
  border: 1px solid #d5e2ff;
  border-radius: 10px;
  color: var(--fk-blue) !important;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  text-decoration: none !important;
}

.fk-video-card {
  margin-top: 16px;
}

.fk-video-card .myvideo {
  border-radius: 14px;
  margin-top: 18px;
  max-width: 720px;
  overflow: hidden;
}

.fk-video-card iframe {
  border: 0;
  display: block;
  max-width: 100%;
}

.fk-footer-social {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.fk-footer-social a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  color: #b6c2d5 !important;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  text-decoration: none !important;
  width: 38px;
}

.fk-footer-social a:hover {
  border-color: rgba(255, 255, 255, .35);
  color: #fff !important;
}

.fk-footer-bottom .fk-shell {
  align-items: stretch;
  display: block;
  padding-bottom: 24px;
  padding-top: 24px;
}

.fk-footer-meta {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.fk-footer-conduct {
  border-top: 1px solid rgba(255, 255, 255, .07);
  line-height: 1.65;
  margin-top: 18px !important;
  padding-top: 18px;
}

@media (max-width: 760px) {
  .fk-live-stats .fk-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .fk-live-stats article:nth-child(2) {
    border-right: 0;
  }

  .fk-live-stats article:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 14px;
    padding-top: 20px;
  }

  .fk-dashboard-welcome-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .fk-footer-meta {
    display: block;
  }

  .fk-footer-meta p + p {
    margin-top: 6px;
  }
}

@media (max-width: 430px) {
  .fk-live-stats article {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fk-public-site *,
  .fk-dashboard-app * {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Refreshed authenticated workspace -------------------------------------- */
.fk-dashboard-app .content.fk-workspace-content {
  padding: 0;
}

.fk-dashboard-app .fk-workspace-inner {
  margin: 0 auto;
  max-width: 1480px;
  padding: 32px 30px 56px;
}

.fk-workspace-hero {
  align-items: flex-end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 2px 0 24px;
}

.fk-workspace-hero h1 {
  color: var(--fk-navy);
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.1;
  margin: 7px 0 0;
}

.fk-workspace-hero p {
  color: var(--fk-text);
  font-size: 14px;
  line-height: 1.65;
  margin: 8px 0 0;
  max-width: 680px;
}

.fk-reward-chip {
  align-items: flex-end;
  background: var(--fk-navy);
  border-radius: 17px;
  box-shadow: var(--fk-shadow);
  color: #fff;
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: auto auto;
  min-width: 215px;
  padding: 14px 17px;
}

.fk-reward-chip span,
.fk-reward-chip small {
  color: #aebbd0;
  font-size: 10px;
  font-weight: 750;
}

.fk-reward-chip span { grid-column: 1 / -1; }
.fk-reward-chip strong { color: var(--fk-lime); font-size: 20px; font-weight: 950; margin-top: 2px; }
.fk-reward-chip small { align-self: center; margin-left: 8px; }

.fk-channel-switcher {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 18px;
}

.fk-channel-switcher a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 13px;
  color: var(--fk-text) !important;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 9px 11px;
  text-align: center;
  text-decoration: none !important;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.fk-channel-switcher a:hover {
  border-color: #b9cae2;
  transform: translateY(-2px);
}

.fk-channel-switcher a.is-active {
  background: var(--fk-blue);
  border-color: var(--fk-blue);
  box-shadow: 0 14px 30px -19px rgba(47,111,235,.9);
  color: #fff !important;
}

.fk-channel-switcher a i { font-size: 15px; }

.fk-exchange-panel,
.fk-owned-campaigns-panel,
.fk-form-card {
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 22px;
  box-shadow: var(--fk-shadow);
  overflow: hidden;
}

.fk-exchange-panel-head,
.fk-owned-campaigns-head {
  align-items: center;
  border-bottom: 1px solid var(--fk-line);
  display: flex;
  justify-content: space-between;
  padding: 21px 23px;
}

.fk-exchange-panel-head small,
.fk-owned-campaigns-head small {
  color: var(--fk-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fk-exchange-panel-head h2,
.fk-owned-campaigns-head h2 {
  color: var(--fk-navy);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 4px 0 0;
}

.fk-exchange-panel-head > p {
  color: var(--fk-muted);
  font-size: 11px;
  font-weight: 650;
  margin: 0;
}

.fk-exchange-panel-head > p i { color: var(--fk-green); margin-right: 5px; }

.fk-exchange-content {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 22px;
}

.fk-exchange-content > .field,
.fk-exchange-content > #Hint,
.fk-exchange-content > #txtHint,
.fk-exchange-content > .infobox,
.fk-exchange-content > .title,
.fk-exchange-content > .mx-3,
.fk-exchange-content > .alert {
  grid-column: 1 / -1;
}

.fk-exchange-content > .field > .row:first-child,
.fk-exchange-content .panel-banner {
  display: none !important;
}

.fk-exchange-content > .field .alert {
  border-radius: 12px;
  font-size: 12px;
  margin: 0 0 3px;
}

.fk-exchange-content > .clearfix { display: none; }

.fk-dashboard-app .fk-exchange-content .website_block {
  background: #fff;
  border: 1px solid var(--fk-line);
  border-radius: 17px;
  box-shadow: 0 16px 40px -31px rgba(31,60,112,.75);
  color: var(--fk-navy);
  display: flex;
  float: none;
  height: 100%;
  margin: 0;
  max-width: none;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.fk-dashboard-app .fk-exchange-content .website_block:hover {
  border-color: #becde2;
  box-shadow: 0 23px 50px -31px rgba(31,60,112,.9);
  transform: translateY(-3px);
}

.fk-dashboard-app .fk-exchange-content .website_block > img {
  background: linear-gradient(135deg, #edf3ff, #f7faff);
  border: 0;
  display: block;
  height: 154px;
  margin: 0;
  max-height: none;
  min-width: 100%;
  object-fit: cover;
  padding: 0;
  width: 100%;
}

.fk-dashboard-app .fk-exchange-content .website_block > img.fk-platform-placeholder {
    object-fit: contain;
    padding: 32px;
    background: linear-gradient(145deg, #f4f7fb, #e8eef7);
}

.fk-dashboard-app .fk-exchange-content .website_block .website_title {
  background: transparent;
  color: var(--fk-navy);
  display: block;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  margin: 0;
  min-height: 46px;
  overflow: hidden;
  padding: 13px 14px 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fk-dashboard-app .fk-exchange-content .website_block .coins {
  align-items: center;
  background: var(--fk-lime-soft);
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 850;
  margin: 7px 14px 11px;
  min-height: 28px;
  padding: 5px 10px;
  width: max-content;
}

.fk-dashboard-app .fk-exchange-content .website_block .coins span { color: #4d7019; }

.fk-dashboard-app .fk-exchange-content .visit_button {
  align-items: center;
  background: var(--fk-blue);
  border: 1px solid var(--fk-blue);
  border-radius: 10px;
  box-shadow: none;
  color: #fff !important;
  display: flex;
  font-size: 12px;
  font-weight: 850;
  justify-content: center;
  margin: auto 14px 0;
  min-height: 39px;
  padding: 9px 12px;
  text-shadow: none;
  width: auto;
}

.fk-dashboard-app .fk-exchange-content .visit_button:hover { background: var(--fk-blue-dark); }

.fk-dashboard-app .fk-exchange-content .website_bottom {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr 1fr;
  padding: 9px 14px 14px;
}

.fk-dashboard-app .fk-exchange-content .skip_button {
  align-items: center;
  background: #f3f6fa !important;
  border: 1px solid #e0e7f0;
  border-radius: 9px;
  color: #65758b !important;
  display: flex;
  font-size: 10px;
  font-weight: 750;
  justify-content: center;
  margin: 0;
  min-height: 33px;
  padding: 7px 8px;
}

.fk-dashboard-app .fk-exchange-content .skip_button.btn-danger { background: #fff4f4 !important; border-color: #f6d4d4; color: #b74a4a !important; }
.fk-dashboard-app .fk-exchange-content .x-small-circle-or { display: none; }

/* New campaign form */
.fk-form-layout {
  align-items: start;
  display: grid;
  gap: 17px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.fk-form-card { padding: 24px; }

.fk-form-section {
  align-items: flex-start;
  border-bottom: 1px solid #edf1f6;
  display: grid;
  gap: 15px;
  grid-template-columns: 36px minmax(0, 1fr);
  padding: 5px 0 22px;
}

.fk-form-section + .fk-form-section { padding-top: 22px; }

.fk-step-number {
  align-items: center;
  background: var(--fk-blue-soft);
  border-radius: 11px;
  color: var(--fk-blue);
  display: flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.fk-form-section-body { min-width: 0; }
.fk-form-section-body > label,
.fk-form-section-body > h2 { color: var(--fk-navy); display: block; font-size: 15px; font-weight: 850; margin: 0 0 8px; }
.fk-form-section-body p { margin: 0 0 15px; }
.fk-form-section-body p:last-child { margin-bottom: 0; }
.fk-form-section-body label { color: var(--fk-navy); font-size: 12px; font-weight: 800; }
.fk-form-section-body small { color: var(--fk-muted); font-size: 10px; }
.fk-form-section-body .form-control,
.fk-form-section-body .custom-select,
.fk-form-card .form-control,
.fk-form-card .custom-select { background: #fff; border: 1px solid #ccd7e5; border-radius: 11px; box-shadow: none; min-height: 44px; padding: 9px 12px; width: 100%; }

.fk-field-help { color: var(--fk-muted); font-size: 11px; margin-top: 7px; }
.fk-inline-loader { color: var(--fk-blue); display: inline-flex; font-size: 11px; gap: 7px; margin-top: 10px; }
.fk-form-placeholder { align-items: center; background: var(--fk-bg); border: 1px dashed #cbd7e7; border-radius: 14px; color: var(--fk-muted); display: flex; font-size: 12px; gap: 9px; margin-top: 18px; padding: 17px; }

.fk-fixed-reward {
  background: linear-gradient(135deg, #f0fbd7, #f8ffeb);
  border: 1px solid #dcefab;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
}

.fk-fixed-reward span { color: #527719; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.fk-fixed-reward strong { color: var(--fk-navy); font-size: 15px; margin-top: 3px; }
.fk-fixed-reward small { color: #738150; font-size: 10px; margin-top: 3px; }

.fk-advanced-options { background: var(--fk-bg); border: 1px solid var(--fk-line); border-radius: 15px; margin-top: 18px; overflow: hidden; }
.fk-advanced-options summary { align-items: center; color: var(--fk-navy); cursor: pointer; display: flex; font-size: 12px; font-weight: 850; justify-content: space-between; list-style: none; padding: 14px 16px; }
.fk-advanced-options summary::-webkit-details-marker { display: none; }
.fk-advanced-options summary small { background: #fff; border: 1px solid var(--fk-line); border-radius: 999px; color: var(--fk-muted); font-size: 9px; padding: 4px 7px; }
.fk-advanced-options summary i { color: var(--fk-blue); margin-right: 7px; }

.fk-advanced-grid { border-top: 1px solid var(--fk-line); display: grid; gap: 14px; grid-template-columns: 1fr 1fr; padding: 17px; }
.fk-limit-control label,
.fk-form-control label { color: var(--fk-navy); display: block; font-size: 11px; font-weight: 800; margin-bottom: 6px; }
.fk-limit-control .form-control + .form-control { margin-top: 7px; }
.fk-submit-campaign { margin-top: 19px; }
.fk-btn-danger { background: #fff0f1 !important; border: 1px solid #ffd2d7 !important; color: #b63445 !important; }

.fk-form-aside {
  background: var(--fk-navy);
  border-radius: 20px;
  box-shadow: var(--fk-shadow);
  color: #fff;
  padding: 23px;
}

.fk-form-aside h2 { color: #fff; font-size: 20px; font-weight: 900; margin: 17px 0 0; }
.fk-form-aside ul { list-style: none; margin: 17px 0 0; padding: 0; }
.fk-form-aside li { color: #b7c2d3; font-size: 12px; line-height: 1.55; padding-left: 20px; position: relative; }
.fk-form-aside li + li { margin-top: 12px; }
.fk-form-aside li::before { color: var(--fk-lime); content: "\f00c"; font-family: FontAwesome; left: 0; position: absolute; top: 1px; }
.fk-form-aside > a { color: #92b7ff !important; display: inline-flex; font-size: 11px; font-weight: 800; gap: 6px; margin-top: 21px; text-decoration: none !important; }

/* Campaign management */
.fk-owned-campaigns-head > span { background: var(--fk-blue-soft); border-radius: 999px; color: var(--fk-blue); font-size: 10px; font-weight: 850; padding: 7px 10px; }
.fk-owned-campaign-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 22px; }
.fk-owned-campaign-card { background: #fff; border: 1px solid var(--fk-line); border-radius: 17px; display: flex; flex-direction: column; min-width: 0; padding: 17px; }
.fk-owned-card-top { align-items: center; display: flex; justify-content: space-between; }
.fk-platform-icon { align-items: center; background: var(--fk-blue-soft); border-radius: 12px; color: var(--fk-blue); display: inline-flex; flex: 0 0 auto; height: 39px; justify-content: center; width: 39px; }
.fk-platform-icon i { font-size: 17px; }
.fk-status { align-items: center; border-radius: 999px; display: inline-flex; font-size: 9px; font-weight: 850; gap: 5px; padding: 5px 8px; }
.fk-status i { border-radius: 999px; height: 6px; width: 6px; }
.fk-status.is-active { background: #e9faf5; color: #247660; }
.fk-status.is-active i { background: #24a983; }
.fk-status.is-paused { background: #fff5e6; color: #94610d; }
.fk-status.is-paused i { background: #daa13e; }
.fk-status.is-reported { background: #fff0f1; color: #a23b48; }
.fk-status.is-reported i { background: #d35363; }
.fk-owned-campaign-card h3 { color: var(--fk-navy); font-size: 16px; font-weight: 900; margin: 16px 0 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fk-campaign-url { color: var(--fk-muted); font-size: 10px; margin: 4px 0 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fk-owned-campaign-card dl { background: var(--fk-bg); border-radius: 12px; margin: 15px 0; padding: 4px 12px; }
.fk-owned-campaign-card dl > div { align-items: center; display: flex; justify-content: space-between; padding: 9px 0; }
.fk-owned-campaign-card dl > div + div { border-top: 1px solid #e4eaf2; }
.fk-owned-campaign-card dt { color: var(--fk-muted); font-size: 9px; font-weight: 750; }
.fk-owned-campaign-card dd { color: var(--fk-navy); font-size: 11px; font-weight: 900; margin: 0; }
.fk-owned-card-actions { margin-top: auto; }
.fk-owned-card-actions .fk-btn { min-height: 38px; width: 100%; }

.fk-empty-state { align-items: center; display: flex; flex-direction: column; padding: 58px 24px; text-align: center; }
.fk-empty-state h2 { color: var(--fk-navy); font-size: 21px; font-weight: 900; margin: 16px 0 0; }
.fk-empty-state p { color: var(--fk-muted); font-size: 12px; margin: 6px 0 18px; }

.fk-edit-card { padding: 23px; }
.fk-edit-grid { display: grid; gap: 15px; grid-template-columns: 1fr 1fr; }
.fk-edit-reward { justify-content: center; }
.fk-edit-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 19px; }

/* Dashboard curated categories */
.fk-dashboard-channel-grid { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 17px; }
.fk-dashboard-channel-grid > a { align-items: center; border: 1px solid var(--fk-line); border-radius: 14px; color: var(--fk-navy) !important; display: grid; gap: 11px; grid-template-columns: auto 1fr auto; padding: 12px; text-decoration: none !important; }
.fk-dashboard-channel-grid > a:hover { border-color: #b8c9df; }
.fk-dashboard-channel-grid strong { display: block; font-size: 12px; font-weight: 850; }
.fk-dashboard-channel-grid small { color: var(--fk-muted); display: block; font-size: 9px; line-height: 1.45; margin-top: 2px; }
.fk-dashboard-channel-grid > a > i { color: var(--fk-blue); }
.fk-share-actions button { align-items: center; background: var(--fk-blue-soft); border: 1px solid #d5e2ff; border-radius: 10px; color: var(--fk-blue); display: inline-flex; font-size: 12px; font-weight: 800; gap: 7px; min-height: 38px; padding: 8px 12px; }

.fk-sidebar-divider { color: rgba(255,255,255,.35); font-size: 9px; font-weight: 850; letter-spacing: .1em; margin: 19px 23px 5px; text-transform: uppercase; }
.fk-dashboard-app .left-sidebar .fk-sidebar-divider span { display: block; }

@media (max-width: 1250px) {
  .fk-exchange-content { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fk-channel-switcher { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .fk-form-layout { grid-template-columns: 1fr; }
  .fk-form-aside { order: -1; }
  .fk-owned-campaign-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fk-exchange-content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .fk-dashboard-app .fk-workspace-inner { padding: 25px 17px 42px; }
  .fk-workspace-hero { align-items: flex-start; flex-direction: column; }
  .fk-reward-chip { width: 100%; }
  .fk-channel-switcher { display: flex; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .fk-channel-switcher::-webkit-scrollbar { display: none; }
  .fk-channel-switcher a { flex: 0 0 auto; min-width: 132px; }
  .fk-owned-campaign-grid,
  .fk-exchange-content,
  .fk-dashboard-channel-grid { grid-template-columns: 1fr; }
  .fk-edit-grid,
  .fk-advanced-grid { grid-template-columns: 1fr; }
  .fk-exchange-panel-head,
  .fk-owned-campaigns-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .fk-exchange-panel-head > p { line-height: 1.5; }
}

@media (max-width: 480px) {
  .fk-form-card,
  .fk-exchange-content,
  .fk-owned-campaign-grid { padding: 15px; }
  .fk-form-section { grid-template-columns: 1fr; }
  .fk-edit-actions .fk-btn { width: 100%; }
}
/* The legacy shortcut bar duplicated the sidebar and still exposed disabled
   payment links on many old pages. Keep it out of the refreshed workspace. */
.middle-nav {
  display: none !important;
}
