/*
Theme Name: FiveHits 2026
Theme URI: http://thetrafficexchangescript.com/
Description: A sidebar theme for LFMTE traffic exchanges.
Version: 3.0
Author: Josh Abbott
*/
@charset "utf-8";

:root {
  --lfm-navy: #081b32;
  --lfm-blue: #123a60;
  --lfm-cyan: #35d6ed;
  --lfm-ice: #d9f6fb;
  --lfm-text: #17334f;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--lfm-text);
  background: #f5f9fc;
}
a { color: #086493; }
a:hover { color: #064e79; }
a:focus-visible, button:focus-visible { outline: 3px solid #19b5d8; outline-offset: 3px; }

/* The identity lives above the application shell, not inside the navigation. */
.lfm_brand_scene {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 390px 140px at 4% 15%, rgba(53,214,237,.3), transparent 75%),
    radial-gradient(ellipse 360px 190px at 94% 110%, rgba(16,122,181,.17), transparent 78%),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(18,58,96,.045) 60px, transparent 61px),
    linear-gradient(115deg, #f1fcff, #d8f4fa 54%, #e9f8fc);
  border-bottom: 1px solid #a8dfeb;
}
.lfm_brand_scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 20%, rgba(22,151,191,.12) 20.1% 20.2%, transparent 20.3% 74%, rgba(22,151,191,.12) 74.1% 74.2%, transparent 74.3%),
    linear-gradient(0deg, transparent 19%, rgba(22,151,191,.1) 19.5% 20%, transparent 20.5% 79%, rgba(22,151,191,.1) 79.5% 80%, transparent 80.5%);
}
.lfm_brand_inner {
  max-width: 1600px;
  min-height: 172px;
  margin: 0 auto;
  padding: 12px 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lfm_brand_link { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; }
.lfm_menu_logo { display: block; width: auto; max-width: min(525px, 63vw); max-height: 160px; object-fit: contain; }
.lfm_brand_descriptor {
  position: absolute;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #245574;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .17em;
  pointer-events: none;
}
.lfm_brand_descriptor_line { flex: 0 0 24px; height: 1px; background: #168aac; box-shadow: 0 0 9px rgba(25,181,216,.35); }

/* Sidebar placement and the original toggled state are retained. */
.lfm_outerdiv { display: flex; width: 100%; align-items: stretch; }
.main { min-width: 0; flex: 1 1 0%; background: #f5f9fc; }
.lfm_slidebar {
  flex: 0 0 230px;
  width: 230px;
  min-width: 230px;
  min-height: calc(100vh - 172px);
  position: relative;
  z-index: 5;
  color: #e9f7fc;
  background:
    radial-gradient(circle at 0 0, rgba(53,214,237,.12), transparent 270px),
    linear-gradient(175deg, #0c2947 0%, #081b32 70%);
  border-right: 1px solid #1d5271;
  transition: margin-left .28s ease;
}
.lfm_sidebar_heading {
  min-height: 65px;
  padding: 25px 20px 12px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #86afc4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.lfm_sidebar_close { display: none; }
.lfm_slidebar_mainmenu { list-style: none; padding: 0 11px 24px; margin: 0; }
.lfm_slidebar_mainmenu li { list-style: none; }
.lfm_slidebar_mainmenu li > a {
  display: block;
  position: relative;
  padding: 10px 12px 10px 16px;
  color: #d6e8f2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.lfm_slidebar_mainmenu li > a:hover,
.lfm_slidebar_mainmenu li > a:focus-visible,
.lfm_slidebar_mainmenu li > a.active {
  color: #fff;
  background: rgba(53,214,237,.105);
  border-left-color: var(--lfm-cyan);
}
.lfm_slidebar_mainmenu ul { list-style: none; margin: 1px 0 7px 12px; padding: 0 0 0 9px; border-left: 1px solid #28506c; }
.lfm_slidebar_mainmenu ul li > a { padding: 8px 10px 8px 12px; font-size: 13px; color: #b7d1df; }
@media (min-width: 890px) {
  .lfm_slidebar { margin-left: 0; }
  .lfm_slidebar.toggled { margin-left: -230px; visibility: hidden; }
}
@media (max-width: 889px) {
  .lfm_slidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    min-height: 0;
    margin-left: -230px;
    z-index: 1050;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: 15px 0 40px rgba(3,19,40,.22);
    transition: margin-left .28s ease, visibility .28s ease;
  }
  .lfm_slidebar.toggled { margin-left: 0; visibility: visible; }
  .lfm_sidebar_close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #4b7792;
    border-radius: 7px;
    background: #153a58;
    color: #fff;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
  }
  .lfm_sidebar_heading { min-height: 68px; padding-top: 14px; padding-bottom: 10px; }
}
.lfm_topbar {
  min-height: 63px;
  padding: 10px 24px;
  margin-bottom: 0;
  color: #d9f6fb;
  background: linear-gradient(90deg, #0b253f, #123a60);
  border-bottom: 1px solid rgba(53,214,237,.25);
}
.lfm_slidebar_toggleswitch {
  display: inline-flex;
  width: 39px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #45728b;
  border-radius: 7px;
  background: rgba(255,255,255,.045);
  color: #d9f6fb;
  cursor: pointer;
  font-size: 16px;
  transition: background-color .18s ease, border-color .18s ease;
}
.lfm_slidebar_toggleswitch i { margin: 0; }
.lfm_slidebar_toggleswitch:hover { color: #fff; border-color: #35d6ed; background: rgba(53,214,237,.14); }
.lfm_topbar .btn-success, .buttonlink {
  background: #35d6ed;
  border: 1px solid #35d6ed;
  color: #082039;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
}
.lfm_topbar .btn-success { padding: .47rem 1.1rem; font-size: 13px; letter-spacing: .03em; }
.lfm_topbar .btn-success:hover, .buttonlink:hover { background: #a5f4fb; border-color: #a5f4fb; color: #082039; text-decoration: none; }
.content { min-width: 0; padding: 28px 24px 60px; }
.lfm_footer { background: #081b32; color: #d9f6fb; }
.lfm_footer a { color: #d9f6fb; }
.far, .fas { margin-right: 3px; }
.feedicon { color: #148aad; font-size: 20px; margin-right: 5px; }
.profilepic_small { width: 40px; height: 40px; }
.profilepic_med { width: 75px; height: 75px; }
.profilepic_large { width: 200px; height: 200px; }
.buttonlink { display: inline-block; cursor: pointer; font-size: 16px; padding: 7px 12px; margin: 2px 1px; }
.infobar { width: 100%; padding-top: 15px; padding-bottom: 15px; color: #fff; background: #123a60; }
.infobar h2 { color: #fff; }
.vcenter { display: flex; align-items: center; }
.lfm_title { font-family: inherit; color: #102e4c; font-size: 32px; font-weight: 700; }
.lfm_descr { font-family: inherit; color: #17334f; font-size: 16px; }
.lfm_descr_bold { font-family: inherit; color: #102e4c; font-size: 16px; font-weight: 700; }

/* Front-page design: all fragment-specific rules are scoped to its root. */
.lfm-salespage { max-width: 1390px; margin: 0 auto; color: #17334f; }
.lfm-salespage .lfm-salespage-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 458px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 18px;
  align-items: center;
  padding: clamp(32px, 4vw, 62px);
  border: 1px solid #1e5675;
  border-radius: 16px;
  background:
    radial-gradient(circle at 89% 48%, rgba(53,214,237,.16), transparent 28%),
    radial-gradient(circle at 53% 115%, rgba(30,110,164,.27), transparent 53%),
    linear-gradient(123deg, #081b32 12%, #103556 100%);
  box-shadow: 0 23px 50px rgba(11,43,74,.13);
  color: #f5f9fc;
}
.lfm-salespage .lfm-salespage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .62;
  background:
    linear-gradient(90deg, transparent 0 75%, rgba(53,214,237,.16) 75.06% 75.13%, transparent 75.2%),
    repeating-linear-gradient(90deg, transparent 0 45px, rgba(113,212,236,.046) 46px, transparent 47px),
    repeating-linear-gradient(0deg, transparent 0 45px, rgba(113,212,236,.045) 46px, transparent 47px);
  mask-image: linear-gradient(90deg, transparent, #000 55%);
}
.lfm-salespage .lfm-salespage-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 3px;
  background: linear-gradient(90deg, #35d6ed, transparent);
  pointer-events: none;
}
.lfm-salespage .lfm-salespage-hero-copy { position: relative; z-index: 1; max-width: 760px; }
.lfm-salespage .lfm-salespage-eyebrow {
  margin: 0 0 21px;
  color: #83e9f4;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.lfm-salespage .lfm-salespage-eyebrow::before { content: ""; display: inline-block; width: 23px; height: 1px; margin: 0 11px 3px 0; background: #35d6ed; }
.lfm-salespage .lfm-salespage-hero h1 {
  max-width: 730px;
  margin: 0 0 23px;
  color: #fff;
  font-size: clamp(32px, 3.35vw, 52px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.lfm-salespage .lfm-salespage-hero-copy > p:not(.lfm-salespage-eyebrow) { max-width: 650px; margin: 0; color: #d1e8f2; line-height: 1.7; font-size: 16px; }
.lfm-salespage .lfm-salespage-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-top: 27px; }
.lfm-salespage .lfm-salespage-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 11px 24px;
  border-radius: 6px;
  background: #35d6ed;
  color: #082039;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(53,214,237,.18);
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.lfm-salespage .lfm-salespage-primary:hover { color: #082039; background: #a5f4fb; text-decoration: none; transform: translateY(-2px); box-shadow: 0 9px 22px rgba(53,214,237,.24); }
.lfm-salespage .lfm-salespage-secondary { color: #d9f6fb; text-decoration: underline; text-underline-offset: 4px; font-weight: 600; font-size: 14px; }
.lfm-salespage .lfm-salespage-secondary:hover { color: #fff; }
.lfm-salespage .lfm-salespage-signal { position: relative; width: 282px; height: 282px; justify-self: center; pointer-events: none; }
.lfm-salespage .lfm-salespage-signal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(115,226,241,.29);
  box-shadow: 0 0 0 39px rgba(53,214,237,.035), inset 0 0 45px rgba(53,214,237,.045);
}
.lfm-salespage .lfm-salespage-signal::after {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  border: 1px dashed rgba(115,226,241,.38);
}
.lfm-salespage .lfm-salespage-signal-core {
  position: absolute;
  inset: 95px;
  border-radius: 19px;
  border: 1px solid #73e2f1;
  transform: rotate(45deg);
  background: linear-gradient(130deg, rgba(53,214,237,.23), rgba(53,214,237,.035));
  box-shadow: 0 0 43px rgba(53,214,237,.24), inset 0 0 24px rgba(53,214,237,.14);
}
.lfm-salespage .lfm-salespage-signal-path { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, #51d9ed, transparent); opacity: .75; }
.lfm-salespage .lfm-salespage-signal-path-a { top: 51px; left: -10px; width: 225px; transform: rotate(-29deg); }
.lfm-salespage .lfm-salespage-signal-path-b { top: 228px; left: 70px; width: 240px; transform: rotate(-29deg); }
.lfm-salespage .lfm-salespage-signal-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #8beef5; box-shadow: 0 0 0 6px rgba(53,214,237,.12), 0 0 18px #35d6ed; }
.lfm-salespage .lfm-salespage-signal-dot-a { top: 9px; left: 171px; }
.lfm-salespage .lfm-salespage-signal-dot-b { top: 112px; left: 13px; }
.lfm-salespage .lfm-salespage-signal-dot-c { bottom: 24px; right: 45px; }

.lfm-salespage .lfm-salespage-story {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  padding: 62px clamp(4px, 2vw, 28px) 56px;
}
.lfm-salespage .lfm-salespage-sectionlabel { margin: 0 0 12px; color: #087a9c; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.lfm-salespage .lfm-salespage-story h2 { max-width: 470px; margin: 0 0 26px; color: #102e4c; font-size: clamp(27px, 2.3vw, 35px); line-height: 1.2; letter-spacing: -.035em; font-weight: 750; }
.lfm-salespage .lfm-salespage-story-copy p:not(.lfm-salespage-sectionlabel) { max-width: 555px; margin: 0 0 19px; color: #3a5267; line-height: 1.75; }
.lfm-salespage .lfm-salespage-benefits {
  padding: 31px clamp(22px, 3vw, 39px) 22px;
  background: #fff;
  border: 1px solid #dceaf1;
  border-top: 3px solid #35d6ed;
  border-radius: 4px 4px 11px 11px;
  box-shadow: 0 13px 35px rgba(18,58,96,.055);
}
.lfm-salespage .lfm-salespage-benefits h3 { margin: 0 0 6px; color: #102e4c; font-size: 19px; font-weight: 750; }
.lfm-salespage .lfm-salespage-benefits-list { list-style: none; margin: 0; padding: 0; counter-reset: fivehits; }
.lfm-salespage .lfm-salespage-benefits-list li {
  position: relative;
  counter-increment: fivehits;
  display: grid;
  grid-template-columns: 43px minmax(0,1fr);
  gap: 14px;
  padding: 20px 0;
  color: #304d64;
  line-height: 1.55;
  border-bottom: 1px solid #e4eef3;
}
.lfm-salespage .lfm-salespage-benefits-list li:last-child { border-bottom: 0; padding-bottom: 4px; }
.lfm-salespage .lfm-salespage-benefits-list li::before { content: "0" counter(fivehits); color: #087a9c; font-size: 13px; font-weight: 800; letter-spacing: .07em; padding-top: 2px; }
.lfm-salespage .lfm-salespage-next {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 27px clamp(24px, 3vw, 42px);
  margin-bottom: 10px;
  border-radius: 10px;
  background: #e4f4f9;
  border: 1px solid #c8e6ed;
}
.lfm-salespage .lfm-salespage-next h2 { margin: 0 0 4px; color: #102e4c; font-size: 22px; line-height: 1.3; }
.lfm-salespage .lfm-salespage-next p { margin: 0; color: #46647a; font-size: 14px; }
.lfm-salespage .lfm-salespage-next-links { display: flex; flex-wrap: wrap; align-items: center; gap: 13px 22px; }
.lfm-salespage .lfm-salespage-next-links > a:not(.lfm-salespage-primary) { color: #075778; font-weight: 650; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1199px) {
  .lfm_brand_descriptor { display: none; }
  .lfm-salespage .lfm-salespage-hero { grid-template-columns: minmax(0,1fr); min-height: 0; }
  .lfm-salespage .lfm-salespage-signal { display: none; }
}
@media (max-width: 889px) {
  .lfm_brand_inner { min-height: 142px; padding: 10px 18px; }
  .lfm_menu_logo { max-width: min(410px, calc(100vw - 36px)); max-height: 128px; }
  .lfm_topbar { padding: 9px 18px; }
  .content { padding: 20px 16px 48px; }
}
@media (max-width: 600px) {
  .lfm_brand_inner { min-height: 134px; }
  .lfm_menu_logo { max-height: 118px; }
  .lfm_topbar { min-height: 58px; padding: 8px 16px; }
  .content { padding: 16px 9px 44px; }
  .lfm-salespage .lfm-salespage-hero { padding: 32px 25px 35px; border-radius: 10px; }
  .lfm-salespage .lfm-salespage-hero h1 { font-size: clamp(29px, 7.4vw, 38px); letter-spacing: -.035em; }
  .lfm-salespage .lfm-salespage-hero-copy > p:not(.lfm-salespage-eyebrow) { font-size: 15px; line-height: 1.65; }
  .lfm-salespage .lfm-salespage-eyebrow { font-size: 10px; letter-spacing: .15em; margin-bottom: 18px; }
  .lfm-salespage .lfm-salespage-story { display: block; padding: 39px 5px 35px; }
  .lfm-salespage .lfm-salespage-story h2 { font-size: 28px; }
  .lfm-salespage .lfm-salespage-benefits { margin-top: 31px; }
  .lfm-salespage .lfm-salespage-next { padding: 25px; }
}
@media (prefers-reduced-motion: reduce) {
  .lfm_slidebar, .lfm_slidebar_mainmenu li > a, .lfm_slidebar_toggleswitch,
  .lfm-salespage .lfm-salespage-primary { transition: none; }
  .lfm-salespage .lfm-salespage-primary:hover { transform: none; }
}
