/*
Theme Name:  LTVera
Description: LTVera brand — Blocksy child theme
Template:    blocksy
Version:     1.0.0
Text Domain: ltvera
*/

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --navy:        #0A2E5C;
  --navy-deep:   #072245;
  --blue:        #1E5FD6;
  --cyan:        #5FD9F0;
  --green:       #00C088;
  --ink:         #13243D;
  --muted:       #56657E;
  --line:        #E7EDF5;
  --bg:          #FFFFFF;
  --bg-soft:     #F6F9FC;
  --grad:        linear-gradient(116deg, #0A2E5C 0%, #1E5FD6 54%, #5FD9F0 100%);
  --font-display: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --shadow:      0 1px 2px rgba(10,46,92,.04), 0 14px 44px -16px rgba(10,46,92,.16);
  --shadow-lg:   0 34px 78px -30px rgba(10,46,92,.34);
}

/* ─── Base (scoped to home canvas) ──────────────────────────── */
html { scroll-behavior: smooth }

body.ltvera-page,
body.ltvera-home {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 17px;
}

.ltvera-canvas { overflow-x: hidden }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ─── Utility ────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ltvera-page h1,
.ltvera-page h2,
.ltvera-page h3,
.ltvera-home h1,
.ltvera-home h2,
.ltvera-home h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -.005em;
}

/* ─── Logo ───────────────────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  user-select: none;
}
.logo img {
  height: 30px;
  width: auto;
  display: block;
}
.ltvera-footer .logo img,
.ct-ltvera-footer-logo img { height: 24px }
@media (max-width: 600px) { .logo img { height: 26px } }

/* ─── Header / Nav ───────────────────────────────────────────── */
.ltvera-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.84);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.admin-bar .ltvera-header { top: 32px }
.admin-bar .mobile-menu { top: calc(74px + 32px) }
@media screen and (max-width: 782px) {
  .admin-bar .ltvera-header { top: 46px }
  .admin-bar .mobile-menu { top: calc(74px + 46px) }
}

.ltvera-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-link-parent { padding-right: 2px }
.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .2s ease;
}
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret { transform: rotate(225deg) translateY(-1px) }
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--navy) }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px 16px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 120;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto 0;
  height: 14px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-link {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.nav-dropdown-link:last-child { border-bottom: none }
.nav-cta { display: flex; align-items: center; gap: 18px }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 25px;
  border-radius: 13px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .25s ease, background .25s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(30,95,214,.7);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(30,95,214,.75);
  color: #fff;
}
.btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-link {
  background: transparent;
  color: var(--navy);
  padding: 13px 4px;
}
.btn-link:hover { color: var(--blue) }
.btn .arw { transition: transform .2s }
.btn:hover .arw { transform: translateX(3px) }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 70px 0 58px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(86px);
  opacity: .5;
}
.glow-1 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(95,217,240,.55), transparent 70%);
  top: -200px; right: -140px;
}
.glow-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(30,95,214,.3), transparent 70%);
  top: 60px; left: -180px;
}
.grid-tex {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 58% at 48% 28%, #000 28%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 80% 58% at 48% 28%, #000 28%, transparent 74%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 910px;
}
.hero h1 {
  font-size: clamp(40px, 6.1vw, 74px);
  font-weight: 600;
  margin: 24px 0 0;
  line-height: 1.04;
}
.hero .sub {
  font-size: clamp(17px, 1.9vw, 20.5px);
  color: var(--muted);
  max-width: 680px;
  margin: 28px 0 0;
  font-weight: 500;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
  align-items: center;
}
.hero.centered {
  padding: 62px 0 12px;
  text-align: center;
}
.hero.centered .hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.hero.centered h1 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.hero.centered .sub {
  margin-left: auto;
  margin-right: auto;
}
.hero.centered .hero-cta { justify-content: center }
.glow-center {
  width: 680px;
  height: 420px;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(95,217,240,.24), transparent 70%);
  filter: blur(72px);
  opacity: .85;
}
.trust {
  margin-top: 34px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.trust .dot { display: inline-flex; align-items: center; gap: 9px }
.trust .dot::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0,192,136,.16);
}
.stack { margin-top: 66px; position: relative; z-index: 2 }
.stack-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 17px;
  font-weight: 700;
}
.stack-row { display: flex; gap: 13px; flex-wrap: wrap; align-items: center }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 17px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.chip .tri { width: 11px; height: 11px }
.chip.acc { background: var(--grad); color: #fff; border: none }
.stack-row .ar { color: var(--muted); font-weight: 800 }

/* ─── Section Shell ──────────────────────────────────────────── */
section.block { padding: 98px 0 }
.soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
section.block.compact { padding: 62px 0 }
.sec-head { max-width: 660px }
.sec-head.center {
  margin: 0 auto;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 600;
  margin: 20px 0 0;
  line-height: 1.08;
}
.sec-head p {
  color: var(--muted);
  font-size: 18.5px;
  margin-top: 20px;
  font-weight: 500;
}
section[id] { scroll-margin-top: 80px }
.admin-bar section[id] { scroll-margin-top: 112px }

/* ─── Problem ────────────────────────────────────────────────── */
.prob-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.prob-copy h2 {
  font-size: clamp(30px, 3.9vw, 46px);
  font-weight: 600;
  margin-top: 20px;
  line-height: 1.1;
}
.prob-copy p.body {
  color: var(--muted);
  font-size: 18.5px;
  margin-top: 22px;
  font-weight: 500;
}
.prob-copy .accent-line {
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 24px;
  line-height: 1.3;
}
.tool-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 17px 19px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}
.tool-card .nm { font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 12px }
.tool-card .tag { font-size: 12.5px; color: var(--muted); font-weight: 600 }
.tool-card .blob {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--blue);
  font-size: 13px;
}
.conn {
  height: 28px; width: 2px;
  background: linear-gradient(var(--line), var(--blue));
  margin: 0 auto;
}
.brain {
  background: var(--grad);
  border: none;
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  margin-top: 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.brain::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  right: -60px; top: -80px;
}
.brain .lbl {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .86;
  font-weight: 700;
}
.brain .big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-top: 8px;
  line-height: 1.25;
}

/* ─── Editorial / Split Copy ────────────────────────────────── */
.copy-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0;
}
.copy-narrow p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
  margin-top: 20px;
}
.copy-narrow strong {
  color: var(--navy);
  font-weight: 800;
}
.body-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 14px;
}
.body-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 16px;
  font-weight: 500;
}
.body-copy p.accent {
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
}
.chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.chart-card svg {
  width: 100%;
  height: auto;
  display: block;
}
.chart-cap {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* ─── Dark Stat Band ─────────────────────────────────────────── */
.band-dark {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  padding: 74px 0;
}
.band-glow {
  position: absolute;
  width: 600px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,95,214,.42), transparent 68%);
  left: 50%;
  top: -90px;
  transform: translateX(-50%);
  filter: blur(74px);
}
.band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 40px;
  align-items: center;
}
.band-stat {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 600;
  line-height: .9;
  color: #fff;
}
.band-stat span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(207,224,245,.78);
}
.band-copy h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}
.band-copy p {
  color: #cfe0f5;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.65;
  margin-top: 14px;
  opacity: .92;
}

/* ─── Archive Pages ─────────────────────────────────────────── */
.archive-hero {
  position: relative;
  padding: 80px 0 34px;
  text-align: center;
  overflow: hidden;
}
.archive-hero .glow {
  position: absolute;
  width: 680px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,217,240,.3), transparent 70%);
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  filter: blur(72px);
}
.archive-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.archive-hero .eyebrow { justify-content: center }
.archive-hero h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  font-weight: 600;
  margin: 20px 0 0;
  line-height: 1.04;
}
.archive-hero .sub {
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--muted);
  margin: 22px auto 0;
  font-weight: 500;
  max-width: 560px;
  line-height: 1.6;
}
.archive-listing { padding: 0 0 34px }
.archive-card-link {
  color: inherit;
  text-decoration: none;
}
.archive-featured-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: stretch;
  margin-top: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.archive-card-link.archive-featured-card:hover,
.archive-card-link.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.archive-media {
  background: var(--bg-soft);
  border-radius: 16px;
  overflow: hidden;
}
.archive-featured-card .archive-media {
  min-height: 300px;
  height: 100%;
}
.archive-card .archive-media { height: 168px }
.archive-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.archive-featured-body {
  padding: 22px 18px 22px 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.archive-featured-kicker {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.archive-featured-body h2 {
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  margin: 12px 0 0;
  line-height: 1.14;
}
.archive-featured-body p {
  color: var(--muted);
  font-size: 16.5px;
  margin-top: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.archive-read {
  margin-top: 22px;
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
}
.archive-read .arw { transition: transform .2s ease }
.archive-card-link:hover .archive-read .arw { transform: translateX(4px) }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}
.archive-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.archive-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.archive-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.archive-card-subtitle {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
.archive-card-body p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 12px;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
}
.archive-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
  color: var(--muted);
  box-shadow: var(--shadow);
}

/* ─── Archive Method Band ───────────────────────────────────── */
.measure-method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.measure-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.measure-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.measure-card h3 {
  font-size: 19px;
  font-weight: 600;
}
.measure-card p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 9px;
  font-weight: 500;
  line-height: 1.55;
}

/* ─── How It Works (Steps) ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px 26px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg) }
.step .ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: background .25s;
}
.step:hover .ico { background: var(--grad) }
.step:hover .ico svg * { stroke: #fff }
.step h3 { font-size: 20px; font-weight: 600 }
.step p { color: var(--muted); font-size: 15.5px; margin-top: 10px; font-weight: 500; line-height: 1.55 }
.step .edge {
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--grad);
  transition: width .35s ease;
}
.step:hover .edge { width: 100% }

/* ─── Why LTVera (Features) ──────────────────────────────────── */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px }
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg) }
.feat .fico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 12px 26px -12px rgba(30,95,214,.6);
}
.feat h3 { font-size: 22px; font-weight: 600 }
.feat p { color: var(--muted); font-size: 16px; margin-top: 12px; font-weight: 500; line-height: 1.58 }
.feat.green .fico { background: linear-gradient(120deg, #00A878, #00C088) }
.feat .badge {
  position: absolute;
  top: 30px; right: 30px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  border: 1px solid rgba(0,192,136,.32);
  border-radius: 20px;
  padding: 4px 11px;
}

/* ─── Agency Card ────────────────────────────────────────────── */
.agency-card {
  background: var(--navy);
  border-radius: 28px;
  padding: 66px 58px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
}
.agency-card .glowa {
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,217,240,.3), transparent 70%);
  right: -170px; top: -170px;
  filter: blur(30px);
}
.agency-card .ag-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 80% 20%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 80% 20%, #000, transparent 70%);
}
.ag-copy { position: relative; z-index: 2 }
.agency-card .eyebrow { color: var(--cyan) }
.agency-card .eyebrow::before { background: var(--cyan) }
.agency-card h2 { color: #fff; font-size: clamp(29px, 3.5vw, 44px); font-weight: 600; margin: 20px 0 0; line-height: 1.1 }
.agency-card p { color: rgba(235,242,252,.8); font-size: 17.5px; margin: 22px 0 32px; font-weight: 500; max-width: 450px; line-height: 1.6 }
.ag-panel {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 8px;
  backdrop-filter: blur(6px);
}
.ag-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 19px; border-radius: 13px }
.ag-row + .ag-row { border-top: 1px solid rgba(255,255,255,.08) }
.ag-row .bn { display: flex; align-items: center; gap: 13px; font-weight: 700; font-size: 15.5px }
.ag-row .bn .av {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}
.ag-row .lift { font-weight: 700; font-size: 14.5px; color: var(--cyan) }
.ag-row .lift.g { color: #3FE0A8 }

/* ─── Moat Band ──────────────────────────────────────────────── */
.moat { padding: 100px 0; text-align: center; position: relative; overflow: hidden }
.moat .glowm {
  position: absolute;
  width: 680px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,217,240,.26), transparent 70%);
  left: 50%; top: -30px;
  transform: translateX(-50%);
  filter: blur(70px);
}
.moat .sec-head { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; text-align: center }
.moat-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 54px; position: relative; z-index: 2 }
.mstat .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 5.2vw, 60px); line-height: 1 }
.mstat .l { color: var(--muted); font-weight: 600; font-size: 15.5px; margin-top: 13px }
.moat .mfoot { color: var(--muted); font-size: 18.5px; max-width: 660px; margin: 48px auto 0; font-weight: 500; position: relative; z-index: 2; line-height: 1.6 }

/* ─── Pay Band ───────────────────────────────────────────────── */
.payband { padding: 18px 0 100px }
.payband .inner {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.payband .inner::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,217,240,.22), transparent 70%);
  right: -80px; top: -110px;
  filter: blur(20px);
}
.payband .pb-copy { position: relative; z-index: 2; max-width: 560px }
.payband h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(25px, 3vw, 34px); color: var(--navy) }
.payband p { color: var(--muted); font-size: 17px; margin-top: 9px; font-weight: 500 }
.payband .btn { position: relative; z-index: 2 }

/* ─── Evolve / Always Learning ───────────────────────────────── */
.evolve { padding: 100px 0; position: relative; overflow: hidden }
.evolve .sec-head { max-width: 700px; margin: 0 auto; text-align: center }
.loop { display: flex; align-items: center; justify-content: center; gap: 13px; flex-wrap: wrap; margin-top: 50px }
.loop .node {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 21px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15.5px;
  box-shadow: var(--shadow);
}
.loop .node .d { width: 9px; height: 9px; border-radius: 50%; background: var(--grad) }
.loop .ar { color: var(--blue); font-weight: 800; font-size: 17px }
.loop .cyc {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  background: var(--grad);
  border-radius: 30px;
  padding: 13px 20px;
  box-shadow: 0 10px 24px -12px rgba(30,95,214,.6);
}
.loop .cyc svg { animation: spin 7s linear infinite }
@keyframes spin { to { transform: rotate(360deg) } }
.evolve .efoot {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(20px, 2.4vw, 26px);
  max-width: 660px;
  margin: 48px auto 0;
  line-height: 1.3;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.final { padding: 108px 0; text-align: center; position: relative; overflow: hidden }
.final .glowf {
  position: absolute;
  width: 720px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,217,240,.34), transparent 70%);
  left: 50%; top: -10px;
  transform: translateX(-50%);
  filter: blur(74px);
}
.final h2 { font-size: clamp(33px, 4.6vw, 56px); font-weight: 600; position: relative; z-index: 2; line-height: 1.08 }
.final p { color: var(--muted); font-size: 19.5px; margin: 22px auto 38px; max-width: 560px; font-weight: 500; position: relative; z-index: 2 }
.final .hero-cta { justify-content: center; position: relative; z-index: 2 }

/* ─── Footer ─────────────────────────────────────────────────── */
.ltvera-footer { background: var(--navy-deep); color: rgba(220,232,248,.7); padding: 56px 0 40px }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 34px }
.ltvera-footer .logo { color: #fff }
.foot-cols { display: flex; gap: 66px; flex-wrap: wrap }
.foot-col h4 { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(220,232,248,.5); margin-bottom: 15px; font-weight: 700 }
.foot-col a { display: block; color: rgba(220,232,248,.78); text-decoration: none; font-size: 15px; margin-bottom: 10px; font-weight: 500; transition: color .2s }
.foot-col a:hover { color: var(--cyan) }
.foot-bot { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: rgba(220,232,248,.5) }

/* ─── Animations ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none }

.h-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: rise .85s cubic-bezier(.16,1,.3,1) forwards;
}
.d1 { animation-delay: .05s }
.d2 { animation-delay: .18s }
.d3 { animation-delay: .31s }
.d4 { animation-delay: .44s }
.d5 { animation-delay: .57s }
.d6 { animation-delay: .70s }
@keyframes rise { to { opacity: 1; transform: none } }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 920px) {
  .nav-links { display: none }
  .prob-grid { grid-template-columns: 1fr; gap: 40px }
  .steps { grid-template-columns: repeat(2, 1fr) }
  .why { grid-template-columns: 1fr }
  .agency-card { grid-template-columns: 1fr; padding: 46px 34px; gap: 36px }
  .archive-grid { grid-template-columns: repeat(2, 1fr) }
  .archive-featured-card { grid-template-columns: 1fr }
  .archive-featured-card .archive-media { min-height: 210px }
  .measure-method { grid-template-columns: 1fr }
}
@media (max-width: 760px) {
  .moat-stats { grid-template-columns: 1fr; gap: 38px }
  .payband .inner { flex-direction: column; align-items: flex-start; text-align: left }
  .band-dark { padding: 54px 0 }
  .band-inner { grid-template-columns: 1fr; gap: 18px; text-align: center }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr }
  .hero { padding: 48px 0 44px }
  .hero.centered { padding: 48px 0 8px }
  .archive-hero { padding: 60px 0 24px }
  .archive-grid { grid-template-columns: 1fr }
  section.block { padding: 70px 0 }
  section.block.compact { padding: 52px 0 }
  .nav-cta .btn-link { display: none }
}

/* ─── Blocksy Header Overrides ───────────────────────────────── */
#header.ct-header {
  background: rgba(255,255,255,.84) !important;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line) !important;
}
.admin-bar #header.ct-header { top: 32px }
@media screen and (max-width: 782px) {
  .admin-bar #header.ct-header { top: 46px }
}

/* Header height */
#header.ct-header [data-row] > .ct-container { min-height: 74px }

/* Logo */
#header.ct-header .site-title a,
#header.ct-header .site-title a:visited {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -.01em;
  color: var(--navy);
  text-decoration: none;
}
#header.ct-header .site-title a:hover { color: var(--blue) }

/* Desktop nav links */
#header.ct-header .ct-menu-link {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  text-transform: none !important;
  letter-spacing: normal;
  transition: color .2s;
}
#header.ct-header .ct-menu-link:hover,
#header.ct-header .current-menu-item > .ct-menu-link { color: var(--navy) }

/* ─── Blocksy Mobile Nav ─────────────────────────────────────── */
#header.ct-header [data-id="mobile-trigger"] svg,
#header.ct-header .ct-toggle-dropdown-mobile { color: var(--navy) }

.ct-drawer, .ct-panel {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
}
.ct-drawer .ct-menu-link,
.ct-panel .ct-menu-link {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
}
.ct-drawer .ct-menu-link:hover,
.ct-panel .ct-menu-link:hover { color: var(--blue) }

/* ─── Mobile Hamburger ───────────────────────────────────────── */
.hamburger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 13px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; transition: border-color .2s }
.hamburger:hover { border-color: var(--blue) }
.hamburger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
body.menu-open .hamburger span:nth-child(2) { opacity: 0 }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }
body.menu-open { overflow: hidden }

/* ─── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu { position: fixed; left: 0; right: 0; top: 74px; bottom: 0; background: #fff; z-index: 90; display: flex; flex-direction: column; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .26s ease, transform .26s ease }
body.menu-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto }
.mobile-menu .mm-scroll { flex: 1; overflow-y: auto; padding: 26px 30px 16px }
.mobile-menu .mm-acc { border-bottom: 1px solid var(--line) }
.mobile-menu .mm-head { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: 0; cursor: pointer; padding: 17px 2px; font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--navy); text-align: left }
.mobile-menu .mm-head .chev { color: var(--muted); transition: transform .26s cubic-bezier(.16,1,.3,1); flex: 0 0 auto }
.mobile-menu .mm-acc.open .mm-head .chev { transform: rotate(180deg) }
.mobile-menu .mm-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease }
.mobile-menu .mm-acc.open .mm-panel { max-height: 520px; padding-bottom: 8px }
.mobile-menu .mm-row { display: block; padding: 10px 0 10px 4px; text-decoration: none; border-bottom: 1px solid var(--line); color: var(--navy) }
.mobile-menu .mm-row:last-child { border-bottom: none }
.mobile-menu .mm-tt { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--navy) }
.mobile-menu .mm-ds { font-size: 13px; color: var(--muted); margin-top: 2px; font-weight: 500 }
.mobile-menu .mm-direct { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding: 17px 2px; font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--navy); text-decoration: none }
.mobile-menu .mm-audit { display: flex; align-items: center; gap: 11px; background: var(--navy); color: #fff; border-radius: 14px; padding: 15px 16px; margin-top: 22px; font-weight: 700; font-size: 16px; text-decoration: none }
.mobile-menu .mm-audit span { color: #fff }
.mobile-menu .mm-foot2 { display: flex; gap: 1px; background: var(--line); border-top: 1px solid var(--line); flex-shrink: 0 }
.mobile-menu .mm-half { flex: 1; display: flex; align-items: center; justify-content: center; padding: 16px; border-radius: 0; font-family: var(--font-display); font-weight: 700; font-size: 15px; text-decoration: none; color: var(--navy); background: #fff; border: none; transition: color .2s }
.mobile-menu .mm-half:hover { color: var(--blue) }
.mobile-menu .mm-half.primary { background: var(--grad); color: #fff }
.mobile-menu .mm-half.primary:hover { opacity: .92 }

@media (max-width: 980px) {
  .nav-links { display: none }
  .nav-cta { display: none }
  .hamburger { display: flex }
  .ltvera-nav { position: relative; justify-content: flex-start }
  .ltvera-nav .logo { position: absolute; left: 50%; transform: translateX(-50%) }
}

/* ═══════════════════════════════════════════════════════════════
   PRICING PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Pricing Hero ───────────────────────────────────────────── */
.phero { position: relative; padding: 96px 0 26px; overflow: hidden; text-align: center }
.phero .glow { position: absolute; width: 700px; height: 420px; border-radius: 50%; background: radial-gradient(circle,rgba(95,217,240,.32),transparent 70%); left: 50%; top: -40px; transform: translateX(-50%); filter: blur(72px) }
.phero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto }
.phero h1 { font-size: clamp(38px, 5.4vw, 64px); font-weight: 600; margin: 22px 0 0; line-height: 1.05 }
.phero .sub { font-size: clamp(17px, 1.9vw, 20px); color: var(--muted); margin: 24px auto 0; font-weight: 500; max-width: 620px; line-height: 1.6 }

/* ─── Billing Toggle ─────────────────────────────────────────── */
.bill-switch { display: flex; justify-content: center; margin-bottom: 4px }
.bs-inner { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 30px; padding: 5px }
.bt { border: none; background: transparent; font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--muted); padding: 11px 24px; border-radius: 24px; cursor: pointer; display: inline-flex; align-items: center; gap: 9px; transition: background .2s, color .2s, box-shadow .2s }
.bt.active { background: #fff; color: var(--navy); box-shadow: var(--shadow) }
.bt .sv { font-size: 11.5px; font-weight: 700; color: #fff; background: linear-gradient(120deg,#00A878,#00C088); padding: 3px 9px; border-radius: 20px }
.bill-cap { text-align: center; color: var(--muted); font-size: 13.5px; font-weight: 600; margin-top: 13px; margin-bottom: 8px }
.price .a, .pnote .a { display: none }
body.annual .price .m, body.annual .pnote .m { display: none }
body.annual .price .a, body.annual .pnote .a { display: inline }

/* ─── Tier Grid ──────────────────────────────────────────────── */
.ptiers { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 46px 0 12px }
.tier { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px 25px; box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column }
.tier.pop { border: 1.5px solid var(--blue); box-shadow: var(--shadow-lg) }
.tier .pop-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 15px; border-radius: 20px; white-space: nowrap }
.tier .tname { font-family: var(--font-display); font-weight: 600; font-size: 23px; color: var(--navy) }
.tier .ttag { color: var(--muted); font-size: 14px; margin-top: 6px; font-weight: 500; min-height: 40px }
.tier .price { margin: 18px 0 6px; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 42px; line-height: 1 }
.tier .price small { font-size: 16px; color: var(--muted); font-weight: 600; font-family: var(--font-body) }
.tier .pnote { color: var(--muted); font-size: 14px; font-weight: 500; min-height: 74px; line-height: 1.5 }
.tier ul { list-style: none; padding-left: 0; margin: 20px 0 24px; display: flex; flex-direction: column; gap: 12px }
.tier li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink); font-weight: 500; align-items: flex-start; line-height: 1.4 }
.tier li svg { flex: 0 0 auto; margin-top: 3px }
.tier .best { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 16px; line-height: 1.45 }
.tier .btn { width: 100%; justify-content: center; margin-top: auto; padding: 12px 18px; font-size: 15px }

/* ─── Included Band ──────────────────────────────────────────── */
.incl { margin: 46px 0 0; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 22px; padding: 38px 40px; text-align: center }
.incl h3 { font-family: var(--font-display); font-weight: 600; font-size: 23px; color: var(--navy) }
.incl-row { display: flex; flex-wrap: wrap; gap: 16px 34px; justify-content: center; margin-top: 22px }
.incl-row span { display: inline-flex; gap: 9px; align-items: center; font-weight: 600; color: var(--navy); font-size: 15px }

/* ─── See Your Return Cards ──────────────────────────────────── */
.pw { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 54px }
.pwc { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; box-shadow: var(--shadow) }
.pwc .pico { width: 44px; height: 44px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; margin-bottom: 16px }
.pwc h3 { font-size: 19px; font-weight: 600 }
.pwc p { color: var(--muted); font-size: 15px; margin-top: 9px; font-weight: 500; line-height: 1.55 }

/* ─── Agency Strip ───────────────────────────────────────────── */
.agstrip { background: var(--navy); border-radius: 26px; padding: 54px 56px; color: #fff; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap }
.agstrip .glowa { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle,rgba(95,217,240,.3),transparent 70%); right: -170px; top: -170px; filter: blur(30px) }
.agstrip .ag-c { position: relative; z-index: 2; max-width: 560px }
.agstrip .eyebrow { color: var(--cyan) }
.agstrip .eyebrow::before { background: var(--cyan) }
.agstrip h2 { color: #fff; font-size: clamp(26px,3vw,38px); font-weight: 600; margin: 16px 0 0 }
.agstrip p { color: rgba(235,242,252,.8); font-size: 17px; margin: 16px 0 0; font-weight: 500; line-height: 1.6 }
.agstrip .btn { position: relative; z-index: 2 }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 54px auto 0 }
.qa { border-top: 1px solid var(--line); padding: 26px 0 }
.qa:last-child { border-bottom: 1px solid var(--line) }
.qa h3 { font-size: 19px; font-weight: 600; color: var(--navy) }
.qa p { color: var(--muted); font-size: 16px; margin-top: 9px; font-weight: 500; line-height: 1.6 }

/* ─── Pricing Responsive ─────────────────────────────────────── */
@media (max-width: 1080px) { .ptiers { grid-template-columns: repeat(2,1fr); max-width: 720px; margin-left: auto; margin-right: auto } }
@media (max-width: 920px) {
  .pw { grid-template-columns: 1fr }
  .agstrip { flex-direction: column; align-items: flex-start; padding: 42px 32px }
}
@media (max-width: 600px) {
  .ptiers { grid-template-columns: 1fr; max-width: 420px }
  .phero { padding: 70px 0 18px }
  .tier .ttag, .tier .pnote { min-height: 0 }
}

/* ═══════════════════════════════════════════════════════════════
   DEMO / SIGN-UP PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Demo Hero ──────────────────────────────────────────────── */
.dhero {
  position: relative;
  padding: 48px 0 6px;
  overflow: hidden;
  text-align: center;
}
.dhero .glow {
  position: absolute;
  width: 680px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,217,240,.26), transparent 70%);
  left: 50%; top: -120px;
  transform: translateX(-50%);
  filter: blur(72px);
}
.dhero h1 {
  position: relative;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 600;
  line-height: 1.06;
  max-width: 16ch;
  margin: 14px auto 0;
}
.dhero .sub {
  position: relative;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18.5px);
  font-weight: 500;
  max-width: 560px;
  margin: 18px auto 0;
  line-height: 1.55;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* ─── Gap Chart Card ─────────────────────────────────────────── */
.gcard {
  position: relative;
  max-width: 940px;
  margin: 24px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 14px 16px 12px;
}
.gcard .gtop {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2px;
}
.gaptag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(95,217,240,.14);
  color: var(--navy);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 15px;
  font-weight: 700;
}
.gaptag b { color: var(--blue) }
.gcard svg.chart { width: 100%; height: auto; display: block; margin-top: 2px }
.glegend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 2px;
  flex-wrap: wrap;
}
.glegend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--muted);
}
.glegend i { width: 22px; height: 4px; border-radius: 2px; display: inline-block }

/* ─── Demo Form Section ──────────────────────────────────────── */
.fwrap {
  max-width: 560px;
  margin: 40px auto 0;
}
.fcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 32px 30px;
}
.fcard h3 { font-size: 21px; font-weight: 600 }
.fcard .fsub { color: var(--muted); font-size: 14.5px; font-weight: 500; margin-top: 6px }

/* ─── Custom form fields ─────────────────────────────────────── */
.field { margin-top: 16px }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  font-family: var(--font-body);
}
.field input,
.field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  background: #fff;
  transition: border-color .2s;
  box-sizing: border-box;
}
.field input:focus,
.field select:focus { outline: none; border-color: var(--blue) }
.field input::placeholder { color: #9aa6b8 }

/* Native select with custom chevron — no Chosen, no GF JS */
.field select {
  appearance: none;
  -webkit-appearance: none;
  /* Override Blocksy's compiled height: 40px which clips text at our padding */
  height: auto !important;
  min-height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2356657E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.field select option { color: var(--ink) }

/* Submit button — full-width with top spacing */
.fbtn {
  width: 100% !important;
  justify-content: center;
  margin-top: 20px !important;
  padding: 15px 25px !important;
  font-size: 16px !important;
}

.ferr { color: #D8453B; font-size: 14px; font-weight: 600; margin-top: 10px; text-align: center }

/* Success state */
.fdone { text-align: center; padding: 20px 4px }
.fdone .ok { width: 58px; height: 58px; border-radius: 50%; background: rgba(0,192,136,.12); display: grid; place-items: center; margin: 0 auto 16px }
.fdone strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 8px }
.fdone p { color: var(--muted); font-size: 15px; font-weight: 500; line-height: 1.55; margin-top: 0 }

/* Footer note */
.fnote {
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 13px;
}

/* ─── FOMO Closer ────────────────────────────────────────────── */
.fomo {
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 78px 0 84px;
  position: relative;
  overflow: hidden;
}
.fomo .g {
  position: absolute;
  width: 640px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,95,214,.42), transparent 68%);
  left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}
.fomo h2 {
  position: relative;
  color: #fff;
  font-size: clamp(27px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  max-width: 17ch;
  margin: 0 auto;
}
.fomo .grad-text {
  background: linear-gradient(116deg, #9fe9ff, #5FD9F0 55%, #1E5FD6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.fomo p {
  position: relative;
  color: #cfe0f5;
  font-size: 17px;
  font-weight: 500;
  margin: 16px auto 28px;
  max-width: 460px;
  line-height: 1.55;
}
.fomo .btn { position: relative }

/* ═══════════════════════════════════════════════════════════════
   USE CASE PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Use Case Hero ──────────────────────────────────────────── */
.uhero {
  position: relative;
  padding: 70px 0 30px;
  overflow: hidden;
}
.uhero .glow {
  position: absolute;
  width: 680px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,217,240,.28), transparent 70%);
  right: -120px; top: -60px;
  filter: blur(72px);
}
.uhero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.uhero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  margin: 20px 0 0;
  line-height: 1.04;
}
.uhero .sub {
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--muted);
  margin: 22px 0 0;
  font-weight: 500;
  line-height: 1.6;
  max-width: 520px;
}
.uhero .cta {
  display: flex;
  gap: 13px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ─── Curve / Hero Visual Card ───────────────────────────────── */
.curve {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 26px;
}
.curve .ch {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.curve .ch .t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
}
.curve .ch .s {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.curve svg { width: 100%; height: auto; display: block }
.curve .legend {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  flex-wrap: wrap;
}
.curve .legend i {
  width: 11px; height: 11px;
  border-radius: 3px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: -1px;
}

/* ─── Use Case Section Shell (slightly tighter than home) ────── */
section.uc-block { padding: 84px 0 }
.uc-block.soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ─── Problem Section ────────────────────────────────────────── */
.prob {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.pc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 32px;
  box-shadow: var(--shadow);
}
.pc .row {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.pc .row:last-child { border-bottom: none }
.pc .x {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: #FDECEC;
  color: #D8453B;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 14px;
}
.pc .row p {
  font-size: 15.5px;
  color: #243a57;
  font-weight: 500;
  line-height: 1.5;
}
.pc .row p strong { color: var(--navy); font-weight: 700 }

/* ─── Steps (3-col, numbered badge) ─────────────────────────── */
.uc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.stp {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.stp .n {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}
.stp h3 { font-size: 19px; font-weight: 600 }
.stp p { color: var(--muted); font-size: 15px; margin-top: 9px; font-weight: 500; line-height: 1.55 }

/* ─── Stat Band ──────────────────────────────────────────────── */
.statband {
  background: var(--navy);
  border-radius: 26px;
  padding: 50px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.statband .glowa {
  position: absolute;
  width: 520px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,217,240,.3), transparent 70%);
  left: 50%; top: -70px;
  transform: translateX(-50%);
  filter: blur(40px);
}
.statband .sc { position: relative; z-index: 2 }
.statband .big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  background: linear-gradient(100deg, #fff, #5FD9F0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.statband .cap {
  color: rgba(235,242,252,.82);
  font-size: 17px;
  margin-top: 14px;
  font-weight: 500;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── More Use Cases Grid ────────────────────────────────────── */
.uc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.uc {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s, border-color .2s;
}
.uc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue) }
.uc .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.uc .ico svg { width: 20px; height: 20px }
.uc h3 { font-size: 18px; font-weight: 600; color: var(--navy) }
.uc p { color: var(--muted); font-size: 14.5px; margin-top: 5px; font-weight: 500; line-height: 1.5 }

/* ─── Use Case Tabs + Lift Stat (home page) ─────────────────── */
.lift-stat { text-align: center; margin-bottom: 26px }
.ls-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(46px, 8vw, 74px);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ls-lbl {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.uc-head { text-align: center; max-width: 660px; margin: 0 auto }
.uc-head .eyebrow { display: inline-block }
.uc-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.uc-tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, color .2s, border-color .2s;
}
.uc-tab:hover { color: var(--navy) }
.uc-tab.active { background: var(--navy); color: #fff; border-color: var(--navy) }
.uc-panels { margin-top: 24px }
.uc-panel { display: none }
.uc-panel.active { display: block }
.uc-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
}
.uc-graph {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.uc-graph svg { width: 100%; height: auto; display: block }
.uc-card h3 { font-size: 24px; font-weight: 600 }
.uc-card p { color: var(--muted); font-size: 16px; line-height: 1.6; margin-top: 10px; font-weight: 500 }
.uc-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
}
.uc-link:hover { text-decoration: underline }
@media (max-width: 780px) {
  .uc-card { grid-template-columns: 1fr; gap: 22px; padding: 22px }
  .uc-tab { font-size: 13px; padding: 9px 14px }
}

/* ─── Layout direction swap (add .reverse to any 2-col grid) ─── */
.uhero-grid.reverse,
.prob.reverse { direction: rtl }
.uhero-grid.reverse > *,
.prob.reverse > * { direction: ltr; text-align: left }

/* ─── Use Case Responsive ────────────────────────────────────── */
@media (max-width: 920px) {
  .uhero-grid,
  .uhero-grid.reverse { grid-template-columns: 1fr; gap: 38px; direction: ltr }
  .prob,
  .prob.reverse { grid-template-columns: 1fr; gap: 34px; direction: ltr }
  .uc-steps { grid-template-columns: 1fr }
  .uc-list { grid-template-columns: 1fr }
}
@media (max-width: 560px) {
  section.uc-block { padding: 62px 0 }
  .uhero { padding: 48px 0 20px }
  .statband { padding: 40px 26px }
}

/* ─── Main Content — reset Blocksy constraints ───────────────── */
.ltvera-home #main,
.ltvera-home main { padding: 0; margin: 0 }
/* margin-block (top/bottom only) — never zero margin-left/right so margin:auto centering works */
.ltvera-page .wp-block-group,
.ltvera-home .wp-block-group { margin-block: 0 }

/* Restore intentional component margin-tops blocked by the margin-block reset above.
   These wp:group blocks have custom margin-top as part of the design system. */
.moat .moat-stats,
.block .steps,
.block .why,
.block .pw { margin-top: 54px }
.moat .moat-stats { margin-top: 54px }
.sec-head + .steps { margin-top: 56px }
.sec-head + .why  { margin-top: 56px }

/* Prevent wp:paragraph default bottom margin from adding space between
   the large stat number (.n) and its label (.l) inside each .mstat cell */
.mstat .n.wp-block-paragraph { margin-bottom: 0 }

/* ─── Native Button Block Styles ─────────────────────────────── */
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.wp-block-button.is-style-ltvera-primary .wp-block-button__link {
  background: var(--grad) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px -12px rgba(30,95,214,.7);
  border-radius: 13px !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 25px;
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .18s ease, box-shadow .25s ease;
  text-decoration: none;
}
.wp-block-button.is-style-ltvera-primary .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(30,95,214,.75);
  color: #fff !important;
}
.wp-block-button.is-style-ltvera-ghost .wp-block-button__link {
  background: #fff !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 13px !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 25px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .18s ease, border-color .2s, color .2s;
  text-decoration: none;
}
.wp-block-button.is-style-ltvera-ghost .wp-block-button__link:hover {
  border-color: var(--blue) !important;
  color: var(--blue) !important;
  transform: translateY(-2px);
}

/* ─── Blocksy System Footer ──────────────────────────────────── */
#footer.ct-footer {
  background: var(--navy-deep) !important;
  color: rgba(220,232,248,.7);
  padding: 0;
}

/* Middle row — logo + 4 nav columns */
#footer.ct-footer [data-row="middle"] > .ct-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 56px 30px 40px;
}

/* Force single-column stacked items inside each footer nav */
#footer.ct-footer .footer-menu-inline .menu {
  display: flex;
  flex-direction: column;
}
#footer.ct-footer .footer-menu-inline .menu li {
  width: 100%;
}

/* Bottom bar */
#footer.ct-footer [data-row="bottom"] > .ct-container {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 30px 32px;
}

/* Hide empty top row */
#footer.ct-footer [data-row="top"] { display: none }

/* Footer logo widget */
.ct-ltvera-footer-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 14px;
}
.ct-ltvera-footer-logo svg {
  width: 20px; height: 20px;
  margin: 0 1px;
  transform: translateY(2px);
}
#footer.ct-footer .widget-area-1 p {
  font-size: 14.5px;
  color: rgba(220,232,248,.78);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* Footer nav column headings (from aria-label) */
#footer.ct-footer .footer-menu-inline::before {
  content: attr(aria-label);
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(220,232,248,.5);
  font-weight: 700;
  margin-bottom: 15px;
}

/* Footer nav links */
#footer.ct-footer .footer-menu-inline .menu a,
#footer.ct-footer .footer-menu-inline a {
  color: rgba(220,232,248,.78) !important;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  transition: color .2s;
}
#footer.ct-footer .footer-menu-inline .menu a:hover,
#footer.ct-footer .footer-menu-inline a:hover { color: var(--cyan) !important }

/* Copyright bar */
#footer.ct-footer .ct-footer-copyright {
  font-size: 13.5px;
  color: rgba(220,232,248,.5);
  font-family: var(--font-body);
}

@media (max-width: 920px) {
  #footer.ct-footer [data-row="middle"] > .ct-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  #footer.ct-footer [data-row="middle"] > .ct-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 30px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   404 ERROR PAGE
   ═══════════════════════════════════════════════════════════════ */
body.error404 { background: var(--bg-soft); min-height: 100vh; display: flex; flex-direction: column }
.error-header { padding: 22px 0; border-bottom: 1px solid var(--line); background: #fff }
.error-stage { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 26px; position: relative; overflow: hidden }
.error-glow { position: absolute; width: 680px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(95,217,240,.26), transparent 70%); left: 50%; top: 34%; transform: translate(-50%, -50%); filter: blur(74px) }
.error-inner { position: relative; max-width: 600px }
.error-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(120px, 26vw, 230px); line-height: .86; color: var(--navy); letter-spacing: -.03em; display: inline-flex; align-items: center }
.error-zero { position: relative; width: .78em; height: .78em; margin: 0 .02em; display: inline-flex }
.error-zero svg { width: 100%; height: 100%; animation: error-float 5s ease-in-out infinite }
@keyframes error-float { 0%, 100% { transform: translateY(0) rotate(0deg) } 50% { transform: translateY(-12px) rotate(8deg) } }
.error-stage h1 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 18px }
.error-sub { color: var(--muted); font-weight: 500; font-size: 17px; margin: 14px auto 0; max-width: 440px; line-height: 1.55 }
.error-search { display: flex; align-items: center; margin: 24px auto 0; max-width: 420px; width: 100%; background: #fff; border: 1.5px solid var(--line); border-radius: 13px; overflow: hidden; transition: border-color .2s; box-shadow: var(--shadow) }
.error-search:focus-within { border-color: var(--blue) }
.error-search-input { flex: 1; border: none; outline: none; padding: 13px 16px; font-family: var(--font-body); font-size: 15.5px; color: var(--ink); background: transparent }
.error-search-input::placeholder { color: var(--muted) }
.error-search-btn { display: flex; align-items: center; justify-content: center; background: none; border: none; border-left: 1px solid var(--line); padding: 0 16px; cursor: pointer; color: var(--muted); transition: color .2s; align-self: stretch }
.error-search-btn:hover { color: var(--blue) }
.error-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px }
.error-footer { padding: 24px 0; text-align: center; color: var(--muted); font-size: 13px; font-weight: 600 }

/* ═══════════════════════════════════════════════════════════════
   SINGLE POST — article template (single.php)
   ═══════════════════════════════════════════════════════════════ */
body.single-post .col { max-width: 740px; margin: 0 auto; padding: 0 32px }
body.single-post .progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 200; transition: width .1s }

/* Back link */
body.single-post .back { color: var(--muted); text-decoration: none; font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; transition: color .2s }
body.single-post .back:hover { color: var(--blue) }

/* Article header */
body.single-post .a-top { padding-top: 50px }
body.single-post .a-cat { font-size: 12.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-top: 30px; display: block }
body.single-post .a-title { font-size: clamp(31px,4.6vw,50px); font-weight: 600; margin-top: 14px; line-height: 1.08; color: var(--navy) }
body.single-post .a-deck { font-size: clamp(18px,2.1vw,21px); color: var(--muted); margin-top: 20px; font-weight: 500; line-height: 1.55 }
body.single-post .a-meta { display: flex; align-items: center; gap: 13px; margin-top: 28px }
body.single-post .a-meta .av { width: 44px; height: 44px; font-size: 17px }
body.single-post .who { font-weight: 700; color: var(--navy); font-size: 15px; line-height: 1.3 }
body.single-post .a-meta .sub { color: var(--muted); font-size: 13.5px; font-weight: 600 }

/* Shared avatar circle */
body.single-post .av { border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 600; flex: 0 0 auto }
body.single-post .av--lg { width: 54px; height: 54px; font-size: 20px }

/* Decorative cover */
body.single-post .a-cover { max-width: 740px; margin: 40px auto 0; padding: 0 32px }
body.single-post .a-cover .inner { position: relative; height: clamp(240px,40vw,400px); border-radius: 22px; overflow: hidden; background: linear-gradient(125deg,#0A2E5C,#1E5FD6 68%,#5FD9F0); box-shadow: var(--shadow-lg) }
body.single-post .a-cover .pat { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.7) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.7) 1px,transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse 80% 80% at 72% 18%,#000,transparent 76%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 72% 18%,#000,transparent 76%) }
body.single-post .a-cover .tri { position: absolute; right: -20px; bottom: -30px; opacity: .2 }

/* Prose — article body */
body.single-post .prose { padding-top: 52px; padding-bottom: 20px }
body.single-post .prose p { font-size: 19px; line-height: 1.8; color: var(--body); margin-bottom: 24px; font-weight: 500 }
body.single-post .prose h2 { font-size: clamp(25px,3vw,32px); font-weight: 600; margin: 46px 0 0; line-height: 1.18; color: var(--navy) }
body.single-post .prose h2 + p { margin-top: 18px }
body.single-post .prose ul { margin: 8px 0 26px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px }
body.single-post .prose ul li { position: relative; padding-left: 30px; font-size: 18px; line-height: 1.65; color: var(--body); font-weight: 500 }
body.single-post .prose ul li strong { color: var(--navy); font-weight: 700 }
body.single-post .prose ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 11px; height: 11px; clip-path: polygon(0 0,100% 0,50% 100%); background: var(--blue) }
body.single-post .prose blockquote { margin: 40px 0; padding: 6px 0 6px 28px; border-left: 3px solid transparent; border-image: var(--grad) 1; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(22px,2.6vw,28px); line-height: 1.4; color: var(--navy) }
/* Gutenberg wraps blockquote content in <p>; override prose p styles inside quote */
body.single-post .prose blockquote p { font-size: inherit; line-height: inherit; color: inherit; font-weight: inherit; margin-bottom: 0 }

/* Callout box (wp:html block with .callout class) */
body.single-post .callout { margin: 36px 0; background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 14px; padding: 26px 28px }
body.single-post .callout .lbl { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); font-weight: 700 }
body.single-post .callout p { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--navy); margin: 8px 0 0; line-height: 1.4 }

/* Takeaways box (wp:html block with .takeaways class) */
body.single-post .takeaways { margin: 46px 0 10px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 32px; box-shadow: var(--shadow) }
body.single-post .takeaways h3 { font-size: 20px; font-weight: 600; color: var(--navy) }
body.single-post .takeaways ul { list-style: none; margin: 18px 0 0; display: flex; flex-direction: column; gap: 13px }
body.single-post .takeaways li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; color: var(--body); font-weight: 500; line-height: 1.5; padding-left: 0 }
body.single-post .takeaways li::before { display: none }
body.single-post .takeaways li svg { flex: 0 0 auto; margin-top: 3px }

/* Author bio block */
body.single-post .author { margin: 46px 0 0; display: flex; gap: 18px; align-items: center; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line) }
body.single-post .author .nm { font-weight: 700; color: var(--navy); font-size: 16px }
body.single-post .author .bi { color: var(--muted); font-size: 14.5px; font-weight: 500; margin-top: 3px }

/* Article inline CTA */
body.single-post .acta { margin: 64px auto 0; max-width: 740px; padding: 0 32px }
body.single-post .acta .inner { background: var(--navy); border-radius: 24px; padding: 50px 48px; color: #fff; position: relative; overflow: hidden; text-align: center }
body.single-post .acta .glow { position: absolute; width: 520px; height: 340px; border-radius: 50%; background: radial-gradient(circle,rgba(95,217,240,.3),transparent 70%); left: 50%; top: -50px; transform: translateX(-50%); filter: blur(40px) }
body.single-post .acta .ic { position: relative; z-index: 2 }
body.single-post .acta h2 { color: #fff; font-size: clamp(26px,3.2vw,36px); font-weight: 600 }
body.single-post .acta p { color: rgba(235,242,252,.8); font-size: 17px; margin: 14px auto 26px; font-weight: 500; max-width: 460px }
body.single-post .acta .btn { background: #fff; color: var(--navy) }
body.single-post .acta .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(255,255,255,.3) }

/* Related posts */
body.single-post .related { padding: 80px 0 0 }
body.single-post .rh { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 24px }
body.single-post .rgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px }
body.single-post .rcard { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform .25s,box-shadow .25s; cursor: pointer; text-decoration: none; display: flex; flex-direction: column }
body.single-post .rcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg) }
body.single-post .rc { height: 120px; position: relative }
body.single-post .rc .pat { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.7) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.7) 1px,transparent 1px); background-size: 30px 30px }
body.single-post .rb { padding: 18px 20px 22px }
body.single-post .rl { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 700 }
body.single-post .rcard h3 { font-size: 17.5px; font-weight: 600; margin-top: 8px; line-height: 1.25; color: var(--navy) }

/* Responsive */
@media (max-width: 980px) { body.single-post .rgrid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto } }
@media (max-width: 600px) { body.single-post .a-top { padding: 34px 0 0 } body.single-post .col,body.single-post .a-cover,body.single-post .acta { padding-left: 22px; padding-right: 22px } }

/* ── FAQ PAGE ──────────────────────────────────────────────────── */
.qhero { position: relative; padding: 58px 0 8px; overflow: hidden; text-align: center }
.qhero .glow { position: absolute; width: 660px; height: 380px; border-radius: 50%; background: radial-gradient(circle,rgba(95,217,240,.24),transparent 70%); left: 50%; top: -110px; transform: translateX(-50%); filter: blur(72px) }
.qhero h1 { position: relative; font-size: clamp(32px,4.6vw,52px); font-weight: 600; line-height: 1.05; margin: 12px auto 0 }
.qhero .sub { position: relative; color: var(--muted); font-size: 17px; font-weight: 500; max-width: 520px; margin: 16px auto 0 }
.faq-block { padding: 60px 0 84px }
.qwrap { max-width: 780px; margin: 0 auto }
.qgroup { margin-top: 34px }
.qgroup > .gl { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; padding-bottom: 6px }
.q { border-bottom: 1px solid var(--line) }
.q button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: 0; cursor: pointer; text-align: left; padding: 22px 2px; font-family: var(--font-display); font-weight: 600; font-size: 18.5px; color: var(--navy) }
.q .pl { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .26s }
.q .pl::before, .q .pl::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px }
.q .pl::before { left: 0; right: 0; top: 10px; height: 2px }
.q .pl::after { top: 0; bottom: 0; left: 10px; width: 2px; transition: opacity .2s }
.q.open .pl { transform: rotate(180deg) }
.q.open .pl::after { opacity: 0 }
.q .ans { max-height: 0; overflow: hidden; transition: max-height .32s ease }
.q.open .ans { max-height: 600px }
.q .ans p { color: var(--muted); font-size: 16px; font-weight: 500; line-height: 1.65; padding: 0 2px 22px }
.qcta { background: var(--bg-soft); text-align: center; padding: 60px 0; margin-top: 14px }
.qcta h2 { font-size: clamp(24px,3vw,34px) }
.qcta p { color: var(--muted); font-weight: 500; margin: 12px auto 22px; max-width: 440px }
@media (max-width: 600px) { .qhero { padding: 46px 0 6px } .faq-block { padding: 40px 0 60px } }

/* ── JOURNAL BLOG ARCHIVE ──────────────────────────────────────── */

/* Hero */
.is-journal .bhero { position: relative; padding: 84px 0 40px; overflow: hidden; text-align: center }
.is-journal .bhero .glow { position: absolute; width: 680px; height: 380px; border-radius: 50%; background: radial-gradient(circle,rgba(95,217,240,.3),transparent 70%); left: 50%; top: -30px; transform: translateX(-50%); filter: blur(72px) }
.is-journal .bhero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto }
.is-journal .bhero h1 { font-size: clamp(38px,5.4vw,62px); font-weight: 600; margin: 20px 0 0; line-height: 1.04 }
.is-journal .bhero .sub { font-size: clamp(17px,1.9vw,20px); color: var(--muted); margin: 22px auto 0; font-weight: 500; max-width: 560px; line-height: 1.6 }

/* Category filter pills */
.is-journal .cats { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 38px; position: relative; z-index: 2 }
.is-journal .cat { border: 1px solid var(--line); background: #fff; color: var(--muted); font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 30px; cursor: pointer; transition: all .2s; user-select: none }
.is-journal .cat:hover { color: var(--navy); border-color: var(--blue) }
.is-journal .cat.active { background: var(--navy); color: #fff; border-color: var(--navy) }

/* Gradient cover placeholders */
.is-journal .cover { position: relative; overflow: hidden; border-radius: 16px }
.is-journal .cover .pat { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.7) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.7) 1px,transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(ellipse 80% 80% at 75% 20%,#000,transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 75% 20%,#000,transparent 75%) }
.is-journal .cover .tri { position: absolute; right: -10px; bottom: -14px; opacity: .22 }
.is-journal .cover .tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px }
.is-journal .c1 { background: linear-gradient(125deg,#0A2E5C,#1E5FD6 70%,#5FD9F0) }
.is-journal .c2 { background: linear-gradient(135deg,#1E5FD6,#5FD9F0) }
.is-journal .c3 { background: linear-gradient(135deg,#0A2E5C,#143b78) }
.is-journal .c4 { background: linear-gradient(135deg,#0E4178,#00C088) }
.is-journal .c5 { background: linear-gradient(135deg,#2348a8,#5FD9F0) }
.is-journal .c6 { background: linear-gradient(135deg,#072245,#1E5FD6) }

/* Featured card */
.is-journal .featured { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: stretch; margin-top: 18px; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 20px; box-shadow: var(--shadow); transition: transform .25s,box-shadow .25s; text-decoration: none; color: inherit }
.is-journal .featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg) }
.is-journal .featured .cover { min-height: 300px; border-radius: 14px }
.is-journal .featured .fbody { padding: 22px 20px 22px 4px; display: flex; flex-direction: column; justify-content: center }
.is-journal .featured .flabel { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); font-weight: 700 }
.is-journal .featured h2 { font-size: clamp(26px,3vw,38px); font-weight: 600; margin: 14px 0 0; line-height: 1.12; color: var(--navy) }
.is-journal .featured p { color: var(--muted); font-size: 17px; margin-top: 16px; font-weight: 500; line-height: 1.6 }
.is-journal .featured .meta { margin-top: 22px; color: var(--muted); font-size: 14px; font-weight: 600; display: flex; gap: 14px; align-items: center }
.is-journal .featured .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line) }
.is-journal .featured .read { margin-top: 22px; color: var(--navy); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; font-size: 15.5px }
.is-journal .featured .read .arw { transition: transform .2s }
.is-journal .featured:hover .read .arw { transform: translateX(4px) }

/* Post grid */
.is-journal .posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 30px; padding-bottom: 10px }
.is-journal .card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: transform .25s,box-shadow .25s; display: flex; flex-direction: column; text-decoration: none; color: inherit }
.is-journal .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg) }
.is-journal .card .cover { border-radius: 0; height: 172px }
.is-journal .card .cbody { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1 }
.is-journal .card .clabel { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); font-weight: 700 }
.is-journal .card h3 { font-size: 20px; font-weight: 600; margin: 11px 0 0; line-height: 1.2; color: var(--navy) }
.is-journal .card p { color: var(--muted); font-size: 15px; margin-top: 10px; font-weight: 500; line-height: 1.55; flex: 1 }
.is-journal .card .meta { margin-top: 18px; color: var(--muted); font-size: 13.5px; font-weight: 600; display: flex; gap: 12px; align-items: center }
.is-journal .card .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line) }

/* Subscribe CTA */
.is-journal .subscribe { margin: 90px 0 84px }
.is-journal .sub-inner { background: var(--navy); border-radius: 26px; padding: 56px; color: #fff; position: relative; overflow: hidden; text-align: center }
.is-journal .sub-inner .glowa { position: absolute; width: 520px; height: 380px; border-radius: 50%; background: radial-gradient(circle,rgba(95,217,240,.32),transparent 70%); left: 50%; top: -60px; transform: translateX(-50%); filter: blur(40px) }
.is-journal .sub-inner .sg { position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.6) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.6) 1px,transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(ellipse 60% 80% at 50% 0%,#000,transparent 70%); -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 0%,#000,transparent 70%) }
.is-journal .sub-inner .sc { position: relative; z-index: 2; max-width: 540px; margin: 0 auto }
.is-journal .sub-inner .eyebrow { color: var(--cyan); justify-content: center }
.is-journal .sub-inner .eyebrow::before { background: var(--cyan) }
.is-journal .sub-inner h2 { color: #fff; font-size: clamp(28px,3.4vw,42px); font-weight: 600; margin-top: 16px }
.is-journal .sub-inner p { color: rgba(220,232,248,.8); font-size: 17px; margin-top: 16px; font-weight: 500; line-height: 1.6 }
.is-journal .sub-form { display: flex; gap: 10px; margin: 28px auto 0; max-width: 420px }
.is-journal .sub-form input { flex: 1; padding: 14px 18px; border-radius: 13px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: #fff; font-size: 15px; font-family: var(--font-body); outline: none }
.is-journal .sub-form input::placeholder { color: rgba(220,232,248,.5) }
.is-journal .sub-form input:focus { border-color: var(--cyan) }
.is-journal .sub-form .btn { background: #fff; color: var(--navy); flex-shrink: 0 }
.is-journal .sub-form .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(255,255,255,.3) }
.is-journal .sub-note { color: rgba(220,232,248,.5); font-size: 13px; margin-top: 14px }

/* Search refinement form */
.is-search .search-refine { display: flex; gap: 10px; margin: 28px auto 0; max-width: 480px; justify-content: center }
.is-search .search-refine input[type="search"] { flex: 1; padding: 13px 18px; border-radius: 13px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 15px; font-family: var(--font-body); outline: none }
.is-search .search-refine input[type="search"]:focus { border-color: var(--blue) }
.is-search .search-refine .btn { flex-shrink: 0 }
.is-search.archive-page { padding-bottom: 84px }
@media (max-width: 600px) { .is-search .search-refine { flex-direction: column } }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Contact Hero ───────────────────────────────────────────── */
.chero { position: relative; padding: 60px 0 6px; overflow: hidden; text-align: center }
.chero .glow { position: absolute; width: 660px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(95,217,240,.24), transparent 70%); left: 50%; top: -120px; transform: translateX(-50%); filter: blur(72px) }
.chero h1 { position: relative; font-size: clamp(32px, 4.6vw, 52px); font-weight: 600; line-height: 1.05; max-width: 15ch; margin: 14px auto 0 }
.chero .sub { position: relative; color: var(--muted); font-size: clamp(16px, 1.8vw, 19px); font-weight: 500; max-width: 540px; margin: 18px auto 0; line-height: 1.55 }

/* ─── Contact Grid ───────────────────────────────────────────── */
.cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; margin-top: 14px }
.ccard { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); padding: 32px 30px }
.ccard h2 { font-size: 22px }
.ccard .fsub { color: var(--muted); font-size: 14.5px; font-weight: 500; margin-top: 6px }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
.cbtn { width: 100%; justify-content: center; margin-top: 18px !important; padding: 14px 25px !important }
.cdone { display: none; text-align: center; padding: 24px 6px }
.cdone .ok { width: 58px; height: 58px; border-radius: 50%; background: rgba(0,192,136,.12); display: grid; place-items: center; margin: 0 auto 16px }
.cdone strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 8px }
.cdone p { color: var(--muted); font-size: 15px; font-weight: 500; line-height: 1.55; margin-top: 0 }
.contact-sent .ccard form { display: none }
.contact-sent .ccard .cdone { display: block }

/* ─── Contact Ways ───────────────────────────────────────────── */
.ways { display: flex; flex-direction: column; gap: 14px }
.way { display: flex; gap: 15px; align-items: flex-start; border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; background: #fff; box-shadow: var(--shadow); text-decoration: none; transition: transform .2s, box-shadow .2s }
.way:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) }
.way .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center }
.way .ic svg { width: 21px; height: 21px; stroke: var(--blue); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round }
.way h3 { font-size: 16.5px; font-weight: 600; color: var(--navy) }
.way p { color: var(--muted); font-size: 14.5px; font-weight: 500; margin-top: 4px; line-height: 1.5 }
.way a { color: var(--blue); font-weight: 700; text-decoration: none }
.wcal { background: var(--navy); border: none }
.wcal h3, .wcal p { color: #fff }
.wcal .ic { background: rgba(255,255,255,.1); border: none }
.wcal .ic svg { stroke: var(--cyan) }
.wcal .lk { color: var(--cyan); font-weight: 800; display: inline-flex; gap: 6px; align-items: center; margin-top: 8px; font-size: 14px }

/* ─── Contact Responsive ─────────────────────────────────────── */
@media (max-width: 820px) { .cgrid { grid-template-columns: 1fr } }
@media (max-width: 600px) { .chero { padding: 48px 0 6px } .frow { grid-template-columns: 1fr } }

/* ─── Loading Paint Overlay ──────────────────────────────────── */
#lt-paint {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lt-glow {
  position: absolute;
  width: 560px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,95,214,.45), transparent 64%);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  filter: blur(84px);
  animation: lt-breathe 4s ease-in-out infinite;
}
@keyframes lt-breathe {
  0%,100% { opacity:.55; transform:translate(-50%,-50%) scale(.92) }
  45%     { opacity:1;   transform:translate(-50%,-50%) scale(1.05) }
}
.lt-ico {
  position: relative;
  z-index: 2;
  width: 100px; height: 100px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.3));
}
.lt-stroke {
  fill: none;
  stroke: url(#ltpg);
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 100 100;
  animation: lt-paint 4s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes lt-paint {
  0%          { stroke-dashoffset: 100 }
  42%,55%     { stroke-dashoffset: 0   }
  97%,100%    { stroke-dashoffset: 100 }
}
.lt-fill {
  fill: url(#ltpg);
  animation: lt-fillfade 4s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes lt-fillfade {
  0%,16%    { opacity: 0 }
  42%,58%   { opacity: 1 }
  82%,100%  { opacity: 0 }
}

/* ═══════════════════════════════════════════════════════════════
   FOR AGENCIES PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Agencies Hero ──────────────────────────────────────────── */
.ahero { position: relative; padding: 80px 0 12px; overflow: hidden; text-align: center }
.ahero .glow { position: absolute; width: 680px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(95,217,240,.24), transparent 70%); left: 50%; top: -80px; transform: translateX(-50%); filter: blur(72px) }
.ahero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto }
.ahero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 600; margin: 20px 0 0; line-height: 1.04 }
.ahero .sub { font-size: clamp(17px, 1.9vw, 20px); color: var(--muted); margin: 22px auto 0; font-weight: 500; max-width: 580px; line-height: 1.6 }
.ahero .hero-cta { justify-content: center; margin-top: 30px }

/* ─── Agencies Feature Grid ──────────────────────────────────── */
.ag-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px }
.ag-feat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; box-shadow: var(--shadow) }
.ag-feat .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; margin-bottom: 16px }
.ag-feat .ic svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round }
.ag-feat h3 { font-size: 19px; font-weight: 600 }
.ag-feat p { color: var(--muted); font-size: 15px; margin-top: 9px; font-weight: 500; line-height: 1.55 }

/* ─── Agencies Why Grid ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center }

/* ─── Agency Chart Card (light bg variant of ag-row) ─────────── */
.chart-card .ag-row { padding: 13px 16px; border-bottom: 1px solid var(--line); border-radius: 0; display: flex; align-items: center; justify-content: space-between }
.chart-card .ag-row + .ag-row { border-top: none }
.chart-card .ag-row:last-of-type { border-bottom: none }
.chart-card .nm { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 15px; color: var(--navy) }
.chart-card .av { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: 11px; font-weight: 800; color: #fff; flex: 0 0 auto }
.chart-card .lf { font-weight: 700; font-size: 14px; color: var(--green) }

/* ─── Coming Soon Banner ─────────────────────────────────────── */
.coming-soon-bar { background: var(--bg-soft); border-bottom: 1px solid var(--line); text-align: center; padding: 12px 24px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--muted) }
.coming-soon-bar .cs-tag { background: var(--grad); color: #fff; border-radius: 20px; padding: 4px 13px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap }
.coming-soon-bar--bottom { border-top: 1px solid var(--line); border-bottom: none }

/* ─── Agencies Responsive ────────────────────────────────────── */
@media (max-width: 920px) {
  .ag-feats { grid-template-columns: 1fr }
  .why-grid { grid-template-columns: 1fr; gap: 32px }
}
@media (max-width: 600px) {
  .ahero { padding: 60px 0 8px }
}

/* Category filter hide state */
.is-journal .card.cat-hidden,
.is-journal .featured.cat-hidden { display: none }

/* Responsive */
@media (max-width: 980px) {
  .is-journal .posts { grid-template-columns: repeat(2,1fr) }
  .is-journal .featured { grid-template-columns: 1fr }
  .is-journal .featured .cover { min-height: 210px }
}
@media (max-width: 600px) {
  .is-journal .posts { grid-template-columns: 1fr }
  .is-journal .bhero { padding: 62px 0 30px }
  .is-journal .sub-inner { padding: 40px 26px }
  .is-journal .sub-form { flex-direction: column }
}

/* ─── Simple Page (Template: LTVera Simple Page) ───────────────── */
.page-hero { padding: 54px 0 6px; text-align: center; position: relative; overflow: hidden }
.page-hero .glow { position: absolute; width: 560px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(95,217,240,.2), transparent 70%); left: 50%; top: -90px; transform: translateX(-50%); filter: blur(70px) }
.page-hero .eyebrow { justify-content: center }
.page-hero h1 { position: relative; font-size: clamp(32px,4.4vw,46px); font-weight: 600; margin-top: 16px }
.page-hero .upd { position: relative; color: var(--muted); font-weight: 600; font-size: 14px; margin-top: 10px }

.ltvera-prose { max-width: 760px; margin: 0 auto; padding: 6px 0 }
.ltvera-prose h2 { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 21px; margin: 30px 0 10px }
.ltvera-prose h3 { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 16.5px; margin: 20px 0 6px }
.ltvera-prose p { color: var(--ink); font-weight: 500; font-size: 16px; line-height: 1.7; margin-top: 10px }
.ltvera-prose strong { color: var(--navy) }
.ltvera-prose a { color: var(--blue); font-weight: 700; text-decoration: none }
.ltvera-prose a:hover { text-decoration: underline }
.ltvera-prose ul { margin: 10px 0 0 2px; padding: 0; list-style: none }
.ltvera-prose li { position: relative; padding-left: 22px; color: var(--ink); font-weight: 500; font-size: 15.5px; line-height: 1.6; margin-top: 8px }
.ltvera-prose li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; background: var(--grad); clip-path: polygon(0 0,100% 0,50% 100%) }
.ltvera-prose .toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 26px }
.ltvera-prose .toc a { font-size: 13px; font-weight: 700; color: var(--blue); background: rgba(30,95,214,.08); padding: 7px 13px; border-radius: 999px; text-decoration: none }
.ltvera-prose .toc a:hover { text-decoration: none; background: rgba(30,95,214,.16) }
.ltvera-prose .notice { background: #FFF8EC; border: 1px solid #F3E2BD; color: #8a6a1e; border-radius: 12px; padding: 14px 18px; font-size: 13.5px; font-weight: 600; margin-bottom: 30px }
.ltvera-prose .cap { text-transform: uppercase; font-size: 13.5px; letter-spacing: .01em; color: #4a5a72; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; font-weight: 600; line-height: 1.6; margin-top: 14px }
