/***
 * TRU Funding — main.css
 * Compiled: base + layout + utilities + components + dev-header + dev-strip + dev-stats + dev-blog-contact
 * Single source of truth. Do not edit individual dev-*.css files after merging.
 ***/


/* ================================================================
   1. BASE — Variables, reset, typography, forms
   ================================================================ */

:root {
  --tf-primary:     #38bdf8;
  --tf-secondary:   #8b5cf6;
  --tf-text:        #0e2938;
  --tf-text-muted:  #5b5b5b;
  --tf-link:        #8b5cf6;
  --tf-border:      #0e2938;
  --tf-grad: linear-gradient(162deg, #38bdf8 31.72%, #8b5cf6 80.47%);
  --tru-puprle-blue: linear-gradient(116deg, #38bdf8 31.85%, #8b5cf6 61.03%);
  --tf-font-heading: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tf-font-body:    "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tf-font-base: 16px;
  --tf-line-base: 1.4;
  --tf-container-max: 1440px;
  --tf-spacing-outer: 1.25rem;
}
@media (min-width: 480px)  { :root { --tf-spacing-outer: 1.5rem; } }
@media (min-width: 768px)  { :root { --tf-spacing-outer: 2rem; } }
@media (min-width: 1024px) { :root { --tf-spacing-outer: 3rem; } }
@media (min-width: 1536px) { :root { --tf-spacing-outer: 4rem; } }

html { font-size: 16px; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--tf-text);
  font-family: var(--tf-font-body);
  font-size: var(--tf-font-base);
  line-height: var(--tf-line-base);
}

a {
  color: var(--tf-link);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

a:focus-visible { outline: 2px solid #6d28d9; outline-offset: 2px; }

p {
  margin: 0 0 1rem;
  color: var(--tf-text-muted);
  font-family: var(--tf-font-body);
  font-size: 1rem;
  line-height: 1.4;
}
p:last-child { margin: 0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.75em;
  font-family: var(--tf-font-heading);
  font-weight: 600;
  line-height: 1.1;
  color: #000000;
}

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

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}
@media (min-width: 1680px) {
  h1 { font-size: 4rem; }
}

ul, ol { margin: 0 0 1rem 1.5rem; padding: 0; }
li > ul, li > ol { margin-bottom: 0; }

img { max-width: 100%; height: auto; display: block; }
embed, iframe, object { max-width: 100%; }

table { border-collapse: collapse; width: 100%; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border-radius: 0; border: none; background: none;
  color: inherit; padding: 0; font: inherit; cursor: pointer;
}

input[type="text"], input[type="email"], input[type="url"],
input[type="password"], input[type="search"], input[type="number"],
input[type="tel"], input[type="range"], input[type="date"],
input[type="month"], input[type="week"], input[type="time"],
input[type="datetime"], input[type="datetime-local"], input[type="color"],
textarea, select {
  color: #111;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-family: var(--tf-font-body);
  font-size: 1rem;
  line-height: 1.4;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--tf-secondary);
  box-shadow: 0 0 0 1px var(--tf-secondary);
}
textarea { width: 100%; }


/* ================================================================
   2. LAYOUT
   ================================================================ */

.tf-header { position: relative; z-index: 50; }

.tf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.tf-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.tf-header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1 1 auto;
}

.tf-header__outer {
  margin: 0 auto;
  padding: 2rem 4rem 0;
}
@media (max-width: 1679px) and (min-width: 1024px) { .tf-header__outer { padding: 2rem 3rem 0; } }
@media (max-width: 1023px) and (min-width: 768px)  { .tf-header__outer { padding: 1.5rem 2rem 0; } }
@media (max-width: 767px)                          { .tf-header__outer { padding: 1rem 1rem 0; } }

.tf-section { width: 100%; margin: 0; }

.tf-section__outer {
  margin: 0 auto;
  padding: 3rem 1rem;
}
.tf-section__inner {
  width: 100%;
  max-width: var(--tf-container-max);
  margin-inline: auto;
}

@media (min-width: 768px)  { .tf-section__outer { padding: 4rem 2rem; } }
@media (min-width: 1024px) { .tf-section__outer { padding: 5rem 3rem; } }
@media (min-width: 1680px) { .tf-section__outer { padding: 6rem 4rem; } }


/* ================================================================
   3. UTILITIES
   ================================================================ */

.tf-animate-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  will-change: opacity, transform;
}
.tf-animate-title.is-visible { opacity: 1; transform: translateY(0); }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute !important;
  width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1; border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
  clip: auto !important; clip-path: none; color: #21759b;
  display: block; font-size: 0.875rem; font-weight: 600;
  height: auto; left: 5px; line-height: normal;
  padding: 15px 23px 14px; text-decoration: none;
  top: 5px; width: auto; z-index: 100000;
}
#primary[tabindex="-1"]:focus { outline: 0; }

.alignleft  { float: left;  margin-right: 1.5em; margin-bottom: 1.5em; }
.alignright { float: right; margin-left: 1.5em;  margin-bottom: 1.5em; }
.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; margin-bottom: 1.5em; }

.drag-proxy { visibility: hidden; position: absolute; }

@media (min-width: 768px) { .actions { display: none; } }

.entry-footer { display: none; }


/* ================================================================
   4. COMPONENTS — Header logo, menu, portal, buttons
   ================================================================ */

.tf-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0.75rem 2rem;
  border-radius: 70px;
  background: rgba(75, 147, 179, 0.1);
  height: 48px;
  box-sizing: border-box;
}
.tf-header__menu a {
  color: #000000;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 14px; font-weight: 600; line-height: 1;
  text-decoration: none; padding: 0; white-space: nowrap;
  transition: color 0.2s ease, transform 0.15s ease;
}
.tf-header__menu a:hover,
.tf-header__menu a:focus-visible { color: var(--tf-link); transform: translateY(-1px); }

.tf-header__portal { position: relative; display: inline-block; }

.tf-btn--portal {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 2.5rem;
  border-radius: 70px 70px 0 0;
  background: #ffffff; color: #000000;
  font-family: var(--tf-font-heading); font-size: 16px; font-weight: 600; line-height: 1;
  width: 100%; min-width: 176px; position: relative; z-index: 0; height: 48px;
	
}
.tf-btn--portal::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--tf-grad, linear-gradient(162deg, #38bdf8 31.72%, #8b5cf6 80.47%));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; z-index: -1;
}
.tf-btn--portal:hover,
.tf-btn--portal:focus-visible { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(0,0,0,0.12); }

.tf-btn__chevron {
  width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(0); transition: transform 0.25s ease;
}

.tf-portal-dropdown {
  position: absolute; top: 100%; right: 0; width: 100%; padding: 0.75rem 0; display: none;
}
.tf-portal-dropdown__item {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 0.75rem 1.5rem;
  background: transparent; border: none; border-radius: 0;
  font-family: var(--tf-font-heading); font-size: 16px; font-weight: 600; color: #000000;
  cursor: pointer; transition: background 0.2s ease, color 0.2s ease;
}
.tf-portal-dropdown__item:first-child { border-radius: 20px 20px 0 0; }
.tf-portal-dropdown__item:last-child  { border-radius: 0 0 20px 20px; }
.tf-portal-dropdown__item:hover,
.tf-portal-dropdown__item:focus-visible { background: rgba(75,147,179,0.08); color: var(--tf-link); }

.tf-header__portal.is-open .tf-portal-dropdown { display: block; }
.tf-header__portal:hover .tf-btn__chevron,
.tf-header__portal.is-open .tf-btn__chevron { transform: rotate(225deg) translateX(-3px); }

@media (hover: hover) and (pointer: fine) {
  .tf-header__portal:hover .tf-portal-dropdown { display: block; }
  .tf-header__portal:hover .tf-btn__chevron,
  .tf-header__portal.is-open .tf-btn__chevron { transform: rotate(225deg) translateX(-3px); }
}

/* Buttons */
.tf-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 3rem; border-radius: 70px; border: none;
  font-family: var(--tf-font-heading); font-size: 1rem; font-weight: 600;
  line-height: 1; cursor: pointer; white-space: nowrap;
  text-decoration: none; text-transform: uppercase;
  position: relative; z-index: 0; height: 48px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease, color 0.2s ease;
}
.tf-btn--primary {
  color: #ffffff; background: var(--tf-grad);
  box-shadow: 0 10px 10px 0 rgba(0,0,0,0.15);
}
.tf-btn--primary:hover,
.tf-btn--primary:focus-visible { transform: translateY(-1px); box-shadow: 0 14px 18px rgba(0,0,0,0.18); }

.tf-btn--outline {
  color: var(--tf-text); background: #ffffff;
  border: 1px solid var(--tf-border); box-shadow: none;
}
.tf-btn--outline:hover,
.tf-btn--outline:focus-visible { background: rgba(14,41,56,0.04); }

@media (max-width: 767px) {
  .tf-header__inner { flex-wrap: wrap; row-gap: 1rem; }
  .tf-header__nav-wrap { width: 100%; justify-content: space-between; }
  .tf-header__nav { flex: 1 1 auto; justify-content: center; }
  .tf-header__menu { flex: 1; padding: 0.5rem 1rem; gap: 1rem; }
  .tf-btn--portal { min-width: 176px; width: 100%; border-radius: 70px 70px 0 0; }
}


/* ================================================================
   5. HERO
   ================================================================ */

.tf-hero {
  position: relative; overflow: hidden;
  max-height: 1200px;
  height: calc(100vh - 80px);
  height: calc(100svh - 80px);
}
.tf-header + .tf-hero { margin-top: -80px; padding-top: 80px; box-sizing: border-box; }

.tf-hero__video-wrap { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.tf-hero__video { display: block; width: 100%; height: 100%; object-fit: cover; }

.tf-hero__content {
  position: relative; max-width: 55rem; margin: 0 auto;
  padding: 80px 0 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  min-height: 100%;
}
.tf-hero__eyebrow {
  font-family: var(--tf-font-heading); font-size: 61px; font-weight: 600; line-height: 1; margin: 0;
  background: var(--tf-grad, linear-gradient(162deg, #38bdf8 31.72%, #8b5cf6 80.47%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tf-hero__title {
  margin: 0; margin-top: 0.1em; color: #000;
  font-family: "Sora", system-ui, sans-serif; font-weight: 600; line-height: 1.1; font-size: 36px;
}
.tf-hero__text {
  max-width: 621px; width: 100%; margin: 1.5rem auto 2.5rem;
  color: #5b5b5b; font-size: 20px; line-height: 1.5; font-weight: 400;
}
.tf-hero__cta { padding: 0.75rem 3rem; min-height: 48px; min-width: 227px; }


/* ================================================================
   6. STRIP
   ================================================================ */

.tf-strip { background: #fefefe; padding-bottom: 40px; padding-inline: var(--tf-spacing-outer); }

.tf-strip__inner {
  max-width: 1440px; margin: -120px auto 80px auto;
  border-radius: 30px; background: #fff;
  box-shadow: 5px 5px 15px 0 rgba(56,189,248,0.3);
  padding: 32px 48px 48px;
}
.tf-strip__features { display: flex; gap: 2rem; margin-bottom: 2rem; }

.tf-strip__feature {
  flex: 1 1 0; display: flex; align-items: center; gap: 1.25rem;
  padding: 1rem 2.5rem; border-radius: 50px; background: #fff;
  box-shadow: -5px -5px 15px 0 rgba(138,91,245,0.3), 5px 5px 15px 0 rgba(56,189,248,0.3);
  justify-content: center;
}
.tf-strip__feature-icon { flex: 0 0 auto; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
.tf-strip__feature-icon svg { width: 100%; height: 100%; }
.tf-strip__feature-text { font-family: "Inter Tight", system-ui, sans-serif; font-size: 22px; font-weight: 500; color: #000; }

.tf-strip__title { margin: 0 0 24px; text-align: center; color: #000; font-family: "Sora", system-ui, sans-serif; font-size: 36px; font-weight: 600; line-height: normal; }

.tf-strip__bottom { display: flex; align-items: center; font-weight: 400; justify-content: space-between; margin: 0 auto; max-width: 1066px; gap: 32px; }

@media screen and (max-width: 1023px) {
  .tf-strip__bottom { flex-direction: column; }
  .tf-strip__copy { text-align: center; }
}

.tf-strip__copy { margin: 0; max-width: 826px; color: #5b5b5b; font-family: "Inter Tight", system-ui, sans-serif; font-size: 16px; line-height: 1.6; }
.tf-strip__btn { white-space: nowrap; padding: 0.75rem 2.5rem; min-height: 48px; min-width: 165px; font-family: "Sora", system-ui, sans-serif; font-size: 16px; font-weight: 600; color: #0e2938; border-color: #0e2938; }


/* ================================================================
   7. STATS
   ================================================================ */

.tf-stats { background-color: #fefefe; padding-top: 20px; padding-inline: var(--tf-spacing-outer); }
.tf-stats__inner { max-width: 1440px; margin: 0 auto; padding: 0 0 6.4375rem 0; }
.tf-stats__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr); column-gap: 2rem; align-items: center; }
.tf-stats__left { position: relative; }
.tf-stats__body { margin-left: 5.625rem; }
.tf-stats__number-wrap { display: flex; align-items: flex-end; gap: 0.25rem; margin-bottom: -0.75rem; }
.tf-stats__number { font-family: "Sora", system-ui, sans-serif; font-size: 8.4375rem; font-weight: 600; line-height: 0.67; color: #000; opacity: 0.15; }
.tf-stats__number-suffix { font-family: "Sora", system-ui, sans-serif; font-size: 135px; font-weight: 600; line-height: 0.67; color: #000; opacity: 0.15; }
.tf-stats__label { max-width: 19.4375rem; margin: 0 0 0.75rem; font-family: "Sora", system-ui, sans-serif; font-size: 1.5rem; font-weight: 600; line-height: 1.1667; color: #000; }
.tf-stats__headline { max-width: 30.375rem; margin: 0 0 0.5rem; font-family: "Sora", system-ui, sans-serif; font-size: 2.25rem; font-weight: 600; line-height: 1.1111; background: var(--tru-puprle-blue, linear-gradient(116deg, #38bdf8 31.85%, #8b5cf6 61.03%)); background-clip: text; -webkit-background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.tf-stats__text { max-width: 28.625rem; margin: 0; font-family: "Inter Tight", system-ui, sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.25; color: #5b5b5b; }
.tf-stats__right { display: flex; justify-content: flex-end; }
.tf-stats__image-wrap { max-width: 39.25rem; border-radius: 1.25rem; overflow: hidden; background-color: #e6f1ff; filter: drop-shadow(5px 5px 15px rgba(56,189,248,0.3)); }
.tf-stats__image { display: block; width: 100%; height: auto; }

/* Stats mobile */
@media (max-width: 767px) {
  .tf-stats__grid { grid-template-columns: 1fr; row-gap: 2rem; }
  .tf-stats__body { margin-left: 0; }
  .tf-stats__number { font-size: 5rem; }
  .tf-stats__number-suffix { font-size: 5rem; }
  .tf-stats__right { justify-content: center; }
}


/* ================================================================
   8. AI SECTION
   ================================================================ */

.tf-ai {
  background: linear-gradient(to bottom, rgba(246,248,251,0) 0, rgba(246,248,251,0) 30px, #f6f8fb 30px, #f6f8fb 100%);
  padding: 80px 0; padding-inline: var(--tf-spacing-outer);
}
.tf-ai__inner { max-width: 1440px; margin: 0 auto; padding: 0; }
.tf-ai__grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr); column-gap: 5rem; align-items: center; }
.tf-ai__left { display: flex; justify-content: flex-start; }
.tf-ai__image-wrap { width: 100%; }
.tf-ai__image { display: block; width: 100%; height: auto; }
.tf-ai__right { display: flex; flex-direction: column; align-items: flex-start; }
.tf-ai__badge { display: inline-flex; align-items: center; justify-content: center; width: 71.569px; height: 27.797px; border-radius: 70px; border: 1px solid #000; background: #000; color: #fff; text-align: center; font-family: "Sora", system-ui, sans-serif; font-size: 14px; font-weight: 600; line-height: normal; text-transform: uppercase; padding: 0; margin: 0 0 16px; }
.tf-ai__headline { margin: 0; font-family: "Sora", system-ui, sans-serif; font-size: 36px; font-weight: 600; line-height: 45px; background: var(--tru-puprle-blue, linear-gradient(116deg, #38bdf8 31.85%, #8b5cf6 61.03%)); background-clip: text; -webkit-background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.tf-ai__subheadline { margin: 0; margin-top: 4px; color: #000; font-family: "Sora", system-ui, sans-serif; font-size: 24px; font-weight: 600; line-height: 40px; }
.tf-ai__text { margin: 16px 0 24px; max-width: 28.625rem; font-family: "Inter Tight", system-ui, sans-serif; font-size: 16px; font-weight: 400; line-height: 1.5; color: #5b5b5b; }

@media (max-width: 767px) {
  .tf-ai__grid { grid-template-columns: 1fr; row-gap: 2rem; }
  .tf-ai__left { order: 1; }
  .tf-ai__right { order: 2; }
}


/* ================================================================
   9. CARD STACK
   ================================================================ */

.tf-card-stack { background: #000; width: 100%; }
.tf-card-stack__trigger { background: #000; width: 100%; }
.tf-card-stack__inner { min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; padding: 5rem 4rem; background: #000; box-sizing: border-box; }
.tf-card-stack__content { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 4rem; width: 100%; max-width: 1400px; margin: 0 auto; }
.tf-card-stack__inner-text { flex: 0 0 420px; display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.tf-card-stack__headline { color: #fff; font-size: clamp(1.75rem, 2.4vw, 2.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
.tf-card-stack__subheadline { color: #38BDF8; font-size: clamp(0.875rem, 1vw, 1.125rem); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin: 0; }
.tf-card-stack__text { color: rgba(255,255,255,0.55); font-size: 0.9375rem; line-height: 1.75; max-width: 44ch; margin: 0; }
.tf-card-stack__btn { display: inline-block; margin-top: 0.5rem; padding: 0.75rem 2rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.5); color: #fff; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; transition: background 0.2s ease, border-color 0.2s ease; }
.tf-card-stack__btn:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }
.tf-card-stack__scope { flex: 1; display: flex; align-items: center; justify-content: flex-end; }

.tf-card-stage { display: grid; grid-template-columns: repeat(4, 150px); grid-template-rows: repeat(2, 95px); gap: 14px; }
.tf-card3d { width: 150px; height: 95px; border-radius: 12px; position: relative; overflow: hidden; opacity: 0; }
.tf-card3d--dark { background: linear-gradient(145deg, #0d1b3e 0%, #132347 40%, #1a3060 100%); border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.tf-card3d--light { background: linear-gradient(145deg, #e0e0e0 0%, #f0f0f0 50%, #ffffff 100%); border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.tf-card3d::before { content: ''; position: absolute; top: 16px; left: 16px; width: 30px; height: 22px; border-radius: 4px; background: linear-gradient(135deg, #c8930a, #f0c040, #c8930a); }
.tf-card3d--1 { grid-column: 1; grid-row: 1; }
.tf-card3d--2 { grid-column: 2; grid-row: 1; }
.tf-card3d--3 { grid-column: 1; grid-row: 2; }
.tf-card3d--4 { grid-column: 2; grid-row: 2; }
.tf-card3d--5 { grid-column: 3; grid-row: 1; }
.tf-card3d--6 { grid-column: 4; grid-row: 1; }
.tf-card3d--7 { grid-column: 3; grid-row: 2; }
.tf-card3d--8 { grid-column: 4; grid-row: 2; }

@media (max-width: 1200px) {
  .tf-card-stack__inner { padding: 4rem 2.5rem; }
  .tf-card-stage { grid-template-columns: repeat(4, 120px); grid-template-rows: repeat(2, 76px); gap: 10px; }
  .tf-card3d { width: 120px; height: 76px; }
  .tf-card-stack__inner-text { flex: 0 0 360px; }
}
@media (max-width: 900px) {
  .tf-card-stack__content { flex-direction: column; align-items: center; gap: 3rem; }
  .tf-card-stack__inner-text { flex: none; width: 100%; max-width: 500px; align-items: center; text-align: center; }
  .tf-card-stack__text { max-width: 52ch; }
  .tf-card-stack__scope { justify-content: center; }
}
@media (max-width: 560px) {
  .tf-card-stack__inner { padding: 3rem 1.5rem; }
  .tf-card-stage { grid-template-columns: repeat(2, 130px); grid-template-rows: repeat(4, 82px); gap: 10px; }
  .tf-card3d { width: 130px; height: 82px; }
  .tf-card3d--1 { grid-column: 1; grid-row: 1; }
  .tf-card3d--2 { grid-column: 2; grid-row: 1; }
  .tf-card3d--3 { grid-column: 1; grid-row: 2; }
  .tf-card3d--4 { grid-column: 2; grid-row: 2; }
  .tf-card3d--5 { grid-column: 1; grid-row: 3; }
  .tf-card3d--6 { grid-column: 2; grid-row: 3; }
  .tf-card3d--7 { grid-column: 1; grid-row: 4; }
  .tf-card3d--8 { grid-column: 2; grid-row: 4; }
}


/* ================================================================
   10. TESTIMONIALS
   ================================================================ */

.tf-testimonials {
  position: relative;
  background-image: url("https://wpmarketing.lioneight.dev/wp-content/uploads/2026/03/testimonials-bg.webp");
  background-size: cover; background-position: center;
  padding: 3rem 1.5rem; min-height: 490px;
}
.tf-testimonials__inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.tf-testimonials__eyebrow { margin: 0; font-family: "Sora", system-ui, sans-serif; font-size: 28px; font-weight: 600; line-height: normal; background: var(--tru-puprle-blue, linear-gradient(116deg, #38bdf8 31.85%, #8b5cf6 61.03%)); background-clip: text; -webkit-background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.tf-testimonials__stars { margin-top: 24px; display: inline-flex; gap: 2px; }
.tf-testimonials__star { width: 20px; height: 20px; fill: url(#tf-testimonials-star-grad); }
.tf-testimonials__quote { margin: 0 auto 40px auto; max-width: 600px; color: #fff; font-family: "Inter Tight", system-ui, sans-serif; font-size: 18px; font-weight: 400; line-height: 28px; }
.tf-testimonials__footer { display: inline-flex; align-items: center; gap: 16px; justify-content: center; opacity: 0.5; }
.tf-testimonials__logo { width: 48px; height: 30px; object-fit: contain; }
.tf-testimonials__client-name { color: #fff; font-family: "Inter Tight", system-ui, sans-serif; font-size: 16px; font-weight: 800; line-height: 22px; text-align: left; }
.tf-testimonials__client-meta { color: #fff; font-family: "Inter Tight", system-ui, sans-serif; font-size: 16px; font-weight: 400; line-height: 22px; text-align: left; }
.tf-testimonials__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border: none; color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; background: transparent; }
.tf-testimonials__arrow--prev { left: 0; }
.tf-testimonials__arrow--next { right: 0; }

@media (min-width: 768px) {
  .tf-testimonials { padding: 4rem 2rem; }
  .tf-testimonials__eyebrow { font-size: 32px; }
  .tf-testimonials__quote { font-size: 20px; line-height: 30px; }
  .tf-testimonials__logo { width: 58px; height: 37px; }
}
@media (min-width: 1024px) {
  .tf-testimonials { padding: 5rem 3rem; }
  .tf-testimonials__eyebrow { font-size: 40px; }
  .tf-testimonials__quote { font-size: 24px; line-height: 32px; }
}
@media (min-width: 1681px) {
  .tf-testimonials { padding: 6rem 4rem; }
}
@media screen and (max-width: 768px) {
  .tf-testimonials {
    display: flex; align-items: center; min-height: 385px;
    background-image: url("https://wpmarketing.lioneight.dev/wp-content/uploads/2026/04/testimonials-bg-mobile.webp");
    background-color: #000;
  }
}


/* ================================================================
   11. FOOTER
   ================================================================ */

.footer { background-color: #000; padding: 7.5rem 4rem; }
.footer__inner { max-width: 1440px; margin: 0 auto; }
.footer__grid { display: flex; align-items: flex-start; flex-wrap: nowrap; }
.footer__col { display: flex; flex-direction: column; }

.footer__col--brand { width: 361px; flex-shrink: 0; gap: 3rem; margin-right: 16rem; }
.footer__logo-link { display: block; line-height: 0; }
.footer__brand-row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.footer__socials { display: flex; align-items: center; gap: 0.75rem; }
.footer__social-link { display: block; line-height: 0; transition: opacity 0.2s ease; }
.footer__social-link:hover { opacity: 0.6; }

.footer__login-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 3.5rem; border-radius: 70px; border: 1px solid transparent;
  background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #38BDF8 0%, #8B5CF6 100%) border-box;
  color: #38BDF8; font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 600;
  height: 48px; text-align: center; text-decoration: none; white-space: nowrap;
  z-index: 0; transition: color 0.3s ease;
}
.footer__login-btn::before { content: ''; position: absolute; inset: 0; border-radius: 70px; background: linear-gradient(90deg, #38BDF8 0%, #8B5CF6 100%); opacity: 0; transition: opacity 0.3s ease; z-index: -1; }
.footer__login-btn:hover { color: #fff; }
.footer__login-btn:hover::before { opacity: 1; }

.footer__col--nav { flex-shrink: 0; gap: 1rem; margin-right: 10rem; }
.footer__col-heading { color: rgba(255,255,255,0.8); font-family: "Inter Tight", sans-serif; font-size: 1.125rem; font-weight: 500; line-height: normal; margin: 0; }
.footer__nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.footer__nav-link { color: rgba(255,255,255,0.8); font-family: "Inter Tight", sans-serif; font-size: 1.125rem; font-weight: 500; line-height: normal; text-decoration: none; transition: color 0.2s ease; }
.footer__nav-link:hover { color: #fff; }

.footer__col--legal { flex-shrink: 0; margin-right: 8rem; justify-content: center; }
.footer__col--legal .footer__nav-list { gap: 1rem; }
.footer__col--legal .footer__nav-link { color: rgba(255,255,255,0.4); }
.footer__col--legal .footer__nav-link:hover { color: rgba(255,255,255,0.8); }

.footer__col--ifa { align-items: center; text-align: center; gap: 1.5rem; }
.footer__ifa-text--logo { color: rgba(255,255,255,0.8); font-family: "Inter Tight", sans-serif; font-size: 1.125rem; font-weight: 500; line-height: 1.5; margin: 0; }
.footer__ifa-text { color: rgba(255,255,255,0.8); font-family: "Inter Tight", sans-serif; font-size: 1.125rem; font-weight: 600; line-height: normal; margin: 0; }
.footer__ifa-img { width: 158px; height: 165px; aspect-ratio: 158 / 165; object-fit: contain; display: block; }

@media (max-width: 1680px) {
  .footer__col--brand { margin-right: 8rem; }
  .footer__col--nav   { margin-right: 6rem; }
  .footer__col--legal { margin-right: 5rem; }
}
@media (max-width: 1024px) {
  .footer { padding: 5rem 2rem; }
  .footer__grid { flex-wrap: wrap; gap: 3rem; }
  .footer__col--brand { width: 100%; flex-direction: column; margin-right: 0; }
  .footer__col--nav   { margin-right: 4rem; }
  .footer__col--legal { margin-right: 0; }
  .footer__col--ifa   { width: 100%; flex-direction: row; align-items: center; justify-content: flex-start; gap: 2rem; text-align: left; }
}
@media (max-width: 768px) {
  .footer { padding: 4rem 1.5rem; }
  .footer__grid { flex-direction: column; gap: 2.5rem; }
  .footer__col--brand { width: 100%; margin-right: 0; }
  .footer__logo-link svg { width: 100%; max-width: 280px; height: auto; }
  .footer__col--nav, .footer__col--legal { margin-right: 0; }
  .footer__col--ifa { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__login-btn { font-size: 0.875rem; padding: 0.625rem 1.25rem; }
}


/* ================================================================
   12. HEADER — mobile burger + offcanvas nav
   (single source of truth)
   ================================================================ */

@media (max-width: 1023px) {
  .tf-hero__text { color: rgba(91,91,91,0.8); }

  .tf-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; padding-inline: 0;
  }
  .tf-header__right { display: flex; align-items: center; gap: 0.75rem; }
  .tf-header__nav    { display: none; }
  .tf-header__portal { display: none; }

  .tf-header__burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 999px;
    background: #E7F0F5; padding: 0; border: none; cursor: pointer;
  }
  .tf-header__burger-icon { display: block; width: 24px; height: 24px; position: relative; }
  .tf-header__burger-icon::before,
  .tf-header__burger-icon::after,
  .tf-header__burger-icon span {
    content: ''; position: absolute; left: 0; right: 0;
    height: 4px; border-radius: 2px; background: #000;
  }
  .tf-header__burger-icon::before { top: 0; }
  .tf-header__burger-icon::after  { bottom: 0; }
  .tf-header__burger-icon span    { top: 50%; transform: translateY(-50%); }

  /* Mobile nav overlay */
  .tf-header__mobile-nav {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.45);
    display: none; z-index: 9999;
  }
  .tf-header__mobile-nav.is-open { display: block; }

  .tf-header__mobile-nav-inner {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(280px, 80vw); background: #fff;
    padding: 1.5rem var(--tf-spacing-outer) 2rem;
    box-shadow: -16px 0 40px rgba(0,0,0,0.18);
    display: flex; flex-direction: column; gap: 1.5rem;
    overflow-y: auto;
  }
  .tf-header__mobile-close { align-self: flex-end; background: transparent; border: none; font-size: 2rem; line-height: 1; cursor: pointer; color: #111; padding: 0; }
  .tf-header__mobile-menu { flex: 1; }
  .tf-header__mobile-menu .menu,
  .tf-header__mobile-menu .tf-header__menu { list-style: none; margin: 0; padding: 0; display: block; }
  .tf-header__mobile-menu .menu > li,
  .tf-header__mobile-menu .tf-header__menu > li { display: block; margin: 0; padding: 0; }
  .tf-header__mobile-menu .menu > li + li,
  .tf-header__mobile-menu .tf-header__menu > li + li { margin-top: 0.75rem; }
  .tf-header__mobile-menu a { display: block; padding: 0.5rem 0; text-decoration: none; color: #111827; font-size: 1rem; font-weight: 500; }
  .tf-header__mobile-menu a:hover { color: var(--tf-secondary); }
}

html.tf-menu-open,
body.tf-menu-open { overflow: hidden; }


/* ================================================================
   13. BLOG & INDUSTRY NEWS
   ================================================================ */

.tf-blog { background-color: #f6f8fb; padding: 80px var(--tf-spacing-outer); }
.tf-blog__inner { max-width: 1440px; margin-inline: auto; }
.tf-blog__eyebrow { text-align: center; font-family: var(--tf-font-heading); font-size: 36px; font-weight: 600; color: #022d33; margin: 0 0 48px; }
.tf-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tf-blog__card { display: flex; }
.tf-blog__card-inner { background: #ffffff; border-radius: 20px; box-shadow: 5px 5px 15px #38bdf84c, -5px -5px 15px #8a5bf54c; display: flex; flex-direction: column; overflow: hidden; width: 100%; }
.tf-blog__card-img { display: block; margin: 15px; width: calc(100% - 30px); height: 206px; object-fit: cover; border-radius: 10px; filter: grayscale(100%); transition: filter 0.35s ease; }
.tf-blog__card-body { padding: 0 20px 24px; display: flex; flex-direction: column; flex: 1; }
.tf-blog__card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.tf-blog__badge { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 25px; border-radius: 70px; border: 1px solid #000; font-family: var(--tf-font-heading); font-size: 12px; font-weight: 600; color: #ffffff; flex-shrink: 0; }
.tf-blog__badge--black { background: #000000; border-color: #000000; }
.tf-blog__badge--dark  { background: #022d33; border-color: #022d33; }
.tf-blog__date { font-family: var(--tf-font-body); font-size: 14px; font-weight: 600; color: #96a0a1; line-height: 22px; display: none; }
.tf-blog__card-title { font-family: var(--tf-font-heading); font-size: 22px; font-weight: 600; color: #000000; line-height: 1.3; margin: 0 0 12px; }
.tf-blog__card-excerpt { font-family: var(--tf-font-body); font-size: 16px; color: #000000; line-height: 22px; margin: 0 0 auto; padding-bottom: 16px; }
.tf-blog__read-more { display: inline-flex; align-items: center; gap: 6px; font-family: var(--tf-font-body); font-size: 14px; font-weight: 600; color: #8b5cf6; text-decoration: none; line-height: 22px; margin-top: 16px; }
.tf-blog__read-more:hover { text-decoration: underline; }

@media (max-width: 1023px) {
  .tf-blog { padding: 64px var(--tf-spacing-outer); }
  .tf-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .tf-blog__card:last-child { grid-column: span 2; max-width: 417px; margin-inline: auto; width: 100%; }
}
@media (max-width: 767px) {
  .tf-blog { padding: 48px var(--tf-spacing-outer); }
  .tf-blog__eyebrow { font-size: 30px; margin-bottom: 32px; }
  .tf-blog__grid { grid-template-columns: 1fr; }
  .tf-blog__card:last-child { grid-column: span 1; max-width: 100%; }
  .mobile-logo { margin-top: 12px; }
}


/* ================================================================
   14. CONTACT / EXPLORE OUR SOLUTIONS
   ================================================================ */

.tf-contact { padding: 0 var(--tf-spacing-outer) 80px; background-color: #f6f8fb; }
.page-id-2518 .tf-contact { padding-block: 80px 0; margin-bottom: -3.5rem; }
.tf-contact__inner { max-width: 1062px; margin-inline: auto; border-radius: 20px; background: linear-gradient(104deg, #38bdf8 0%, #8b5cf6 100%); box-shadow: -5px -5px 15px #8a5bf54c; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 64px 60px; position: relative; overflow: hidden; }
.tf-contact__heading { font-family: var(--tf-font-heading); font-size: 40px; font-weight: 600; color: #ffffff; line-height: 1.15; margin: 0 0 24px; }
.tf-contact__subtext { font-family: var(--tf-font-body); font-size: 20px; font-weight: 600; color: #ffffff; line-height: 26px; margin: 0 0 40px; }
.tf-contact__address { display: flex; flex-direction: column; gap: 20px; font-style: normal; }
.tf-contact__address-item { display: flex; align-items: flex-start; gap: 12px; }
.tf-contact__address-item:last-child { align-items: center; }
.tf-contact__address-icon { flex-shrink: 0; margin-top: 3px; }
.tf-contact__address-item p, .tf-contact__email { font-family: var(--tf-font-body); font-size: 20px; font-weight: 500; color: #ffffff; line-height: 26px; margin: 0; }
.tf-contact__email { text-decoration: none; display: block; }
.tf-contact__email:hover { text-decoration: underline; }
.tf-contact__form { display: flex; flex-direction: column; gap: 12px; }
.tf-contact__field { display: block; }
.tf-contact__field input, .tf-contact__field textarea { width: 100%; background: #ffffff; border: none; border-radius: 10px; padding: 0 20px; height: 48px; font-family: var(--tf-font-body); font-size: 16px; font-weight: 400; color: #022d33; line-height: 22px; box-sizing: border-box; appearance: none; -webkit-appearance: none; }
.tf-contact__field textarea { height: 96px; resize: none; padding-top: 13px; padding-bottom: 13px; }
.tf-contact__field input::placeholder, .tf-contact__field textarea::placeholder { color: #022d33; opacity: 0.4; }
.tf-contact__field input:focus, .tf-contact__field textarea:focus { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 2px; }
.tf-contact__submit { width: 100%; height: 57px; background: transparent; border: 1px solid #fff !important; border-radius: 70px; font-family: var(--tf-font-heading); font-size: 16px; font-weight: 600; color: #ffffff; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.tf-contact__submit:hover { background: rgba(255,255,255,0.15); }
.tf-contact__submit:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.tf-contact__row--2col { display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 1023px) {
  .tf-contact__inner { grid-template-columns: 1fr; padding: 48px 40px; gap: 40px; }
  .tf-contact__heading { font-size: 32px; }
}
@media (max-width: 767px) {
  .tf-contact { padding: 0 var(--tf-spacing-outer) 48px; }
  .tf-contact__inner { padding: 40px 24px; gap: 32px; border-radius: 20px; }
  .tf-contact__heading { font-size: 28px; margin-bottom: 16px; }
  .tf-contact__subtext { font-size: 16px; margin-bottom: 24px; }
  .tf-contact__address-item p, .tf-contact__email { font-size: 16px; line-height: 22px; }
  .tf-contact__row--2col { grid-template-columns: 1fr; }
}

/* ================================================================
   15. HERO / FUEL / INTRO / MOBILE OVERRIDES (dev-strip.css)
   ================================================================ */

/* Hero video background */
.tf-hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.tf-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 120px;
}

/* AI badge */
.tf-ai__badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  width: 71.569px;
  height: 27.797px;
  border-radius: 70px;
  border: 1px solid #000;
  color: #FFF;
  text-align: center;
  font-family: var(--tf-font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
  cursor: default;
  pointer-events: none;
}

@media screen and (max-width: 1023px) {
  .tf-ai__badge {
    margin-top: 32px;
  }
}

/* tf-fuel – desktop */
.tf-fuel {
  position: relative;
  overflow: hidden;
  background-image: url('https://wpmarketing.lioneight.dev/wp-content/uploads/2026/04/Frame-1000008393-newest3-scaled.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.tf-fuel__inner {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  min-height: 620px;
  padding-inline: var(--tf-spacing-outer);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 136px;
}

@media (min-width: 768px) {
  .tf-fuel__card-wrap {
    position: relative;
    width: 811px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: -5px -5px 15px #8a5bf54c, 5px 5px 15px #38bdf84c;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 75px 48px;
  }

  .tf-fuel__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 28px;
    border-radius: 70px;
    border: 1px solid #022d33;
    background: #022d33;
    color: #ffffff;
    font-family: var(--tf-font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
    cursor: default;
    pointer-events: none;
  }

  .tf-fuel__headline {
    background: linear-gradient(104deg, rgba(56,189,248,1) 0%, rgba(139,92,246,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--tf-font-heading);
    font-weight: 600;
    font-size: 36px;
    line-height: 45px;
    margin: 0;
  }

  .tf-fuel__subheadline {
    font-family: var(--tf-font-heading);
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    color: #000000;
    margin: 0;
  }

  .tf-fuel__text {
    font-family: var(--tf-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #5a5a5a;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .tf-fuel__btn {
    margin-top: 24px;
  }
}

/* tf-fuel – mobile (max-width: 767px) */
@media (max-width: 767px) {
  .tf-fuel {
    background-position: top center;
    background-color: #f6f8fb;
    background-image: url(/wp-content/uploads/2026/04/Frame-1000008395.webp);
  }

  .tf-fuel__inner {
    min-height: auto;
    padding-top: 300px;
    padding-bottom: 5rem;
    padding-inline: var(--tf-spacing-outer);
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0;
  }

  .tf-fuel__card-wrap {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: -5px -5px 15px #8a5bf54c, 5px 5px 15px #38bdf84c;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px 40px;
  }

  .tf-fuel__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 28px;
    border-radius: 70px;
    border: 1px solid #022d33;
    background: #022d33;
    color: #ffffff;
    font-family: var(--tf-font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
    cursor: default;
    pointer-events: none;
  }

  .tf-fuel__headline {
    background: linear-gradient(104deg, rgba(56,189,248,1) 0%, rgba(139,92,246,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--tf-font-heading);
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    margin: 0;
    width: 100%;
  }

  .tf-fuel__subheadline {
    font-family: var(--tf-font-heading);
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    margin: 8px 0 0;
  }

  .tf-fuel__text {
    font-family: var(--tf-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #5a5a5a;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .tf-fuel__btn {
    margin-top: 24px;
  }
}

/* Mobile layout (max-width: 1023px) */
@media (max-width: 1023px) {
  /* Strip wrapper */
  .tf-strip {
    padding-inline: var(--tf-spacing-outer);
  }

  .tf-strip__inner {
    padding-block: 24px;
    padding-inline: var(--tf-spacing-outer);
    margin-top: -94px;
    margin-bottom: 0;
    padding-bottom: 48px;
  }

  /* Strip cards */
  .tf-strip__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .tf-strip__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
    border-radius: 50px;
    background: #ffffff;
    justify-content: center;
  }

  .tf-strip__feature-icon svg {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
  }

  .tf-strip__feature-text {
    font-family: var(--tf-font-body);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: #000000;
  }

  /* Hero sizing & typography */
  .tf-hero {
    height: 100vh;
    height: 100svh;
  }

  .tf-hero__content {
    padding-block: 64px 100px;
    padding-inline: var(--tf-spacing-outer);
  }

  .tf-hero__eyebrow {
    font-size: 40px;
  }

  .tf-hero__title {
    font-size: 26px;
  }

  .tf-hero__text {
    margin-top: 16px;
    font-size: 16px;
  }

  /* Mobile header menu styling */
  .tf-header__mobile-nav {
    position: fixed !important;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: none !important;
    z-index: 9999;
  }

  .tf-header__mobile-nav.is-open {
    display: block !important;
  }

  .tf-header__mobile-nav-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 80vw);
    background: #ffffff;
    padding: 1.5rem var(--tf-spacing-outer) 2rem;
    box-shadow: -16px 0 40px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .tf-header__mobile-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }

  .tf-header__mobile-menu {
    flex: 1;
  }

  .tf-header__mobile-menu .menu,
  .tf-header__mobile-menu .tf-header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
  }

  .tf-header__mobile-menu .menu > li,
  .tf-header__mobile-menu .tf-header__menu > li {
    display: block;
    margin: 0;
    padding: 0;
  }

  .tf-header__mobile-menu .menu > li + li,
  .tf-header__mobile-menu .tf-header__menu > li + li {
    margin-top: 0.75rem;
  }

  .tf-header__mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    color: #111827;
    font-size: 1rem;
    font-weight: 500;
  }

  html.tf-menu-open,
  body.tf-menu-open {
    overflow: hidden;
  }

  /* AI section */
  .tf-ai {
    padding: 2rem 1.5rem;
  }

  .tf-ai__grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .tf-ai__headline {
    font-size: 40px;
  }

  /* Stats section */
  .tf-stats__inner {
    padding-inline: var(--tf-spacing-outer);
    padding-block: 48px;
  }

  .tf-stats__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .tf-stats__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .tf-stats__number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
  }

  .tf-stats__number,
  .tf-stats__number-suffix {
    color: #000000;
    text-align: center;
    font-family: var(--tf-font-heading);
    font-size: 96px;
    font-weight: 600;
    line-height: 100px;
    opacity: 0.15;
  }

  .tf-stats__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
    text-align: center;
  }

  .tf-stats__label {
    color: #022D33;
    text-align: center;
    font-family: var(--tf-font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
  }

  .tf-stats__headline {
    font-size: 28px;
    line-height: 1.15;
    text-align: center;
    margin: 8px 0 0;
  }

  .tf-stats__text {
    color: #5B5B5B;
    text-align: center;
    font-family: var(--tf-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 16px;
    margin-bottom: 0;
  }

  .tf-stats__right {
    width: 100%;
    margin-top: 32px;
  }

  .tf-stats__image {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* tf-intro section */
.tf-intro {
  padding-block: 96px;
  padding-inline: var(--tf-spacing-outer);
}

.tf-intro__inner {
  max-width: 1176px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

/* Left pills */
.tf-intro__left {
  flex: 0 0 520px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.tf-intro__pill {
  position: relative;
  width: 100%;
  height: 81px;
}

.tf-intro__pill-bg {
  position: absolute;
  inset: 0;
  border-radius: 70px;
  background: #ffffff;
  box-shadow: 5px 5px 15px #38bdf84c, -5px -5px 15px #8a5bf54c;
  overflow: hidden;
}

.tf-intro__pill-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tf-intro__pill-label {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-inline: 32px;
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
}

.tf-intro__pill-label span {
  color: #000000;
}

.tf-intro__pill-dot {
  color: #38bdf8 !important;
}

/* Right content */
.tf-intro__right {
  flex: 1 1 auto;
  max-width: 568px;
}

.tf-intro__headline {
  margin: 0;
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  max-width: 540px;
}

.tf-intro__text {
  margin-top: 24px;
  margin-bottom: 0;
  font-family: var(--tf-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #5a5a5a;
}

.tf-intro__btn {
  margin-top: 32px;
}

/* 1440px tablet/desktop adjustment */
@media (max-width: 1439px) {
  .tf-intro {
    padding-block: 80px;
  }

  .tf-intro__inner {
    padding: 0;
    gap: 48px;
  }
}

/* Tablet stack */
@media (max-width: 991px) {
  .tf-intro {
    padding-block: 64px;
  }

  .tf-intro__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .tf-intro__left,
  .tf-intro__right {
    flex: none;
    width: 100%;
    max-width: 568px;
  }
}

/* Mobile ≤ 767px */
@media (max-width: 767px) {
  .tf-intro {
    padding-block: 48px;
  }

  .tf-intro__inner {
    gap: 40px;
  }

  .tf-intro__headline {
    font-size: 30px;
  }

  .tf-intro__text {
    margin-top: 16px;
  }

  .tf-intro__btn {
    margin-top: 24px;
  }

  .tf-intro__left {
    gap: 20px;
  }

  .tf-intro__pill {
    height: 72px;
  }

  .tf-intro__pill-bg,
  .tf-intro__pill-bg img {
    height: 72px;
  }

  .tf-intro__pill-label {
    padding-inline: 28px;
    font-size: 20px;
  }
}

/* Safety override */
.tf-header__mobile-nav {
  display: none !important;
}

/* ================================================================
   BLOG — SINGLE & ARCHIVE
   ================================================================ */

/* -------- SINGLE HERO -------- */

.tf-single {
  background-color: #f6f8fb;
}

.tf-single-hero {
  padding-inline: var(--tf-spacing-outer);
  padding-block: 80px 48px;
  background-color: #f6f8fb;
}

.tf-single-hero__inner {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tf-single-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tf-single-hero__cat {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--tf-grad);
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tf-single-hero__date {
  font-family: var(--tf-font-body);
  font-size: 14px;
  color: #5a5a5a;
}

.tf-single-hero__title {
  margin: 0;
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  background: var(--tf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tf-single-hero__excerpt {
  margin: 0;
  font-family: var(--tf-font-body);
  font-size: 20px;
  line-height: 1.5;
  color: #5a5a5a;
  max-width: 660px;
}

.tf-single-hero__author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.tf-single-hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.tf-single-hero__author-name {
  font-family: var(--tf-font-body);
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

/* -------- FEATURED IMAGE -------- */

.tf-single-thumb {
  padding-inline: var(--tf-spacing-outer);
  padding-block: 0 48px;
  background-color: #f6f8fb;
}

.tf-single-thumb__inner {
  max-width: 960px;
  margin-inline: auto;
}

.tf-single-thumb__img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: 5px 5px 15px rgba(56, 189, 248, 0.25);
}

/* -------- POST CONTENT -------- */

.tf-single-body {
  padding-inline: var(--tf-spacing-outer);
  padding-block: 0 64px;
  background-color: #fff;
}

.tf-single-body__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 48px 0;
}

/* Prose styles — targeting WP editor output */

.tf-single-body__content h2,
.tf-single-body__content h3,
.tf-single-body__content h4 {
  font-family: var(--tf-font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  margin: 2rem 0 0.75rem;
}

.tf-single-body__content h2 {
  font-size: clamp(24px, 2.5vw, 32px);
}

.tf-single-body__content h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.tf-single-body__content h4 {
  font-size: 18px;
}

.tf-single-body__content p {
  font-family: var(--tf-font-body);
  font-size: 17px;
  line-height: 1.75;
  color: #2a2a2a;
  margin: 0 0 1.25rem;
}

.tf-single-body__content a {
  color: #8B5CF6;
  text-underline-offset: 3px;
}

.tf-single-body__content a:hover {
  color: #38BDF8;
}

.tf-single-body__content ul,
.tf-single-body__content ol {
  font-family: var(--tf-font-body);
  font-size: 17px;
  line-height: 1.75;
  color: #2a2a2a;
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}

.tf-single-body__content li + li {
  margin-top: 0.3rem;
}

.tf-single-body__content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #8B5CF6;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 18px;
  color: #2a2a2a;
}

.tf-single-body__content img {
  display: block;
  max-width: 100%;
  border-radius: 16px;
  margin: 1.5rem auto;
}

.tf-single-body__content figure {
  margin: 1.5rem 0;
}

.tf-single-body__content figcaption {
  font-family: var(--tf-font-body);
  font-size: 13px;
  color: #5a5a5a;
  text-align: center;
  margin-top: 0.5rem;
}

.tf-single-body__content code {
  font-size: 0.88em;
  background: rgba(56, 189, 248, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: #38BDF8;
}

.tf-single-body__content pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin: 1.5rem 0;
}

/* -------- TAGS -------- */

.tf-single-tags {
  padding-inline: var(--tf-spacing-outer);
  padding-block: 0 40px;
  background-color: #fff;
}

.tf-single-tags__inner {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.tf-single-tags__label {
  font-family: var(--tf-font-body);
  font-weight: 600;
  font-size: 14px;
  color: #5a5a5a;
}

.tf-single-tags__item {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  font-family: var(--tf-font-body);
  font-size: 13px;
  font-weight: 500;
  color: #8B5CF6;
  text-decoration: none;
  transition: background-color 200ms, color 200ms;
}

.tf-single-tags__item:hover {
  background-color: #8B5CF6;
  color: #fff;
}

/* -------- PREV / NEXT -------- */

.tf-single-nav {
  padding-inline: var(--tf-spacing-outer);
  padding-block: 40px 64px;
  background-color: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.tf-single-nav__inner {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.tf-single-nav__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
}

.tf-single-nav__item--next {
  text-align: right;
}

.tf-single-nav__direction {
  font-family: var(--tf-font-body);
  font-size: 13px;
  font-weight: 600;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tf-single-nav__post-title {
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: 16px;
  color: #000;
  transition: color 200ms;
}

.tf-single-nav__item:hover .tf-single-nav__post-title {
  color: #8B5CF6;
}

/* -------- RELATED POSTS -------- */

.tf-single-related {
  padding-inline: var(--tf-spacing-outer);
  padding-block: 64px 80px;
  background-color: #f6f8fb;
}

.tf-single-related__inner {
  max-width: 1280px;
  margin-inline: auto;
}

.tf-single-related__heading {
  margin: 0 0 40px;
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: 28px;
  background: var(--tf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -------- ARCHIVE HERO -------- */

.tf-blog-archive {
  background-color: #f6f8fb;
}

.tf-blog-archive__hero {
  padding-inline: var(--tf-spacing-outer);
  padding-block: 72px 48px;
  background-color: #f6f8fb;
}

.tf-blog-archive__hero-inner {
  max-width: 1280px;
  margin-inline: auto;
}

.tf-blog-archive__title {
  margin: 0 0 8px;
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  background: var(--tf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tf-blog-archive__subtitle {
  margin: 0;
  font-family: var(--tf-font-body);
  font-size: 18px;
  color: #5a5a5a;
}

/* -------- ARCHIVE GRID -------- */

.tf-blog-archive__main {
  padding-inline: var(--tf-spacing-outer);
  padding-block: 0 80px;
}

.tf-blog-archive__inner {
  max-width: 1280px;
  margin-inline: auto;
}

/* tf-blog__grid i tf-blog__card su definirani globalno – ovde samo osiguravamo */ 
.tf-blog-archive__main .tf-blog__card-title a {
  color: #000;
  text-decoration: none;
  transition: color 200ms;
}

.tf-blog-archive__main .tf-blog__card-title a:hover {
  color: #8B5CF6;
}

/* -------- PAGINATION -------- */

.tf-blog-archive__pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.tf-blog-archive__pagination ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.tf-blog-archive__pagination ul li a,
.tf-blog-archive__pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-family: var(--tf-font-body);
  font-weight: 600;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.12);
  transition: background 200ms, color 200ms, border-color 200ms;
}

.tf-blog-archive__pagination ul li a:hover {
  background: var(--tf-grad);
  color: #fff;
  border-color: transparent;
}

.tf-blog-archive__pagination ul li .current {
  background: var(--tf-grad);
  color: #fff;
  border-color: transparent;
}

/* -------- RESPONSIVE: SINGLE -------- */

@media (max-width: 767px) {
  .tf-single-hero {
    padding-block: 48px 32px;
  }

  .tf-single-hero__title {
    font-size: 32px;
  }

  .tf-single-hero__excerpt {
    font-size: 17px;
  }

  .tf-single-thumb {
    padding-block: 0 32px;
  }

  .tf-single-thumb__img {
    border-radius: 16px;
  }

  .tf-single-body {
    padding-block: 0 48px;
  }

  .tf-single-body__inner {
    padding-block: 32px 0;
  }

  .tf-single-body__content p,
  .tf-single-body__content ul,
  .tf-single-body__content ol {
    font-size: 16px;
  }

  .tf-single-nav__inner {
    grid-template-columns: 1fr;
  }

  .tf-single-nav__item--next {
    text-align: left;
  }

  .tf-single-related {
    padding-block: 48px 64px;
  }

  .tf-single-related__heading {
    margin-bottom: 28px;
    font-size: 24px;
  }
}

/* -------- RESPONSIVE: ARCHIVE -------- */

@media (max-width: 767px) {
  .tf-blog-archive__hero {
    padding-block: 48px 32px;
  }

  .tf-blog-archive__title {
    font-size: 28px;
  }

  .tf-blog-archive__pagination ul li a,
  .tf-blog-archive__pagination ul li span {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tf-blog-archive__pagination ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Single post hero — matchuje header */
.tf-single-hero {
  background-color: #fff;
  padding-block: 80px 48px;
}

/* Archive hero — matchuje header */
.tf-blog-archive__hero {
  background-color: #fff;
  padding-block: 72px 48px;
}

/* Featured image sekcija ispod heroja */
.tf-single-thumb {
  background-color: #fff;
  padding-block: 0 48px;
}

/* -------- RELATED POSTS SLIDER -------- */

.tf-related {
  padding-inline: var(--tf-spacing-outer);
  padding-block: 64px 80px;
  background-color: #f6f8fb;
  overflow: hidden;
}

.tf-related__inner {
  max-width: 1280px;
  margin-inline: auto;
}

/* Header row: naslov + dugmad */
.tf-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 1rem;
}

.tf-related__heading {
  margin: 0;
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: 28px;
  background: var(--tf-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tf-related__controls {
  display: flex;
  gap: 10px;
}

.tf-related__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(139, 92, 246, 0.35);
  background: #fff;
  color: #8B5CF6;
  cursor: pointer;
  transition:
    background 200ms,
    border-color 200ms,
    color 200ms;
  flex-shrink: 0;
}

.tf-related__btn:hover {
  background: var(--tf-grad);
  border-color: transparent;
  color: #fff;
}

.tf-related__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Track */
.tf-related__track-wrap {
  overflow: hidden;
}

.tf-related__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Kada ima više od 3 posta, track postaje širi */
.tf-related__track[data-slides]  {
  grid-template-columns: unset;
  display: flex;
}

.tf-related__slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .tf-related__slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  .tf-related__slide {
    flex: 0 0 100%;
  }

  .tf-related__heading {
    font-size: 22px;
  }

  .tf-related__btn {
    width: 38px;
    height: 38px;
  }
}

/* ============================================
   PORTAL DROPDOWN CARD (nav u headeru, Anima layout)
   ============================================ */

.tf-portal-card {
  position: relative;
  width: 278px;
  max-width: 100%;
  min-height: 164px;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 24px 25px 24px;
  box-shadow: var(--shadow-card-soft);
}

/* Gradient border kao .frame .rectangle::before */
.tf-portal-card__border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
}

.tf-portal-card__border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(164deg, #38bdf8 0%, #8b5cf6 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Unutrašnji layout – vertikalni stack */
.tf-portal-card__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Linkovi — tipografija i hover kao u Anima primjeru */
.tf-portal-card__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  opacity: 0.8;
  line-height: 1.2;
  white-space: nowrap;
  padding-right: 28px; /* prostor za ikonu desno */
  outline: none;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

.tf-portal-card__label {
  display: inline-flex;
  align-items: center;
}

/* Desna strelica */
.tf-portal-card__icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 10px;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.tf-portal-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Divider linije između linkova */
.tf-portal-card__divider {
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.08);
}

/* Hover + fokus */
.tf-portal-card__link:hover {
  opacity: 1;
  transform: translateX(1px);
}

.tf-portal-card__link:focus-visible {
  border-radius: 4px;
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Mali responsive tweak – na jako uskim ekranima kartica max-width 100% */
@media (max-width: 480px) {
  .tf-portal-card {
    width: 100%;
  }
}