/* ===== RESET & ROOT ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0D1B3E;--navy-mid:#1A2F5E;--navy-dark:#070f24;
  --blue:#1D6FF2;--blue-dark:#1558C9;--blue-light:#EBF2FF;
  --accent:#00C2FF;--white:#fff;
  --gray-50:#F7F9FC;--gray-100:#EEF2F8;--gray-200:#D8E0EE;
  --gray-400:#8A97B0;--gray-600:#4A5568;
  --text:#1E2A3B;--text-muted:#5A6A82;
  --font-head:'Outfit',sans-serif;--font-body:'DM Sans',sans-serif;
  --radius:12px;--radius-lg:20px;
  --shadow:0 4px 20px rgba(13,27,62,.10);
  --shadow-lg:0 12px 40px rgba(13,27,62,.16);
}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:var(--font-body);background:#fff;color:var(--text);-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto}
a{color:var(--blue);text-decoration:none}
a:hover{color:var(--blue-dark)}
h1,h2,h3,h4,h5{font-family:var(--font-head);font-weight:700;line-height:1.2;color:var(--navy)}
h1{font-size:clamp(2rem,3.5vw,3.1rem);font-weight:800}
h2{font-size:clamp(1.6rem,2.8vw,2.2rem)}
h3{font-size:1.2rem;font-weight:600}
h4{font-size:1rem;font-weight:600}
p{color:var(--text-muted);font-size:1.0625rem;line-height:1.75}
ul,ol{padding-left:1.4rem}
li{color:var(--text-muted);font-size:1rem;line-height:1.7}

/* ===== LAYOUT ===== */
.container{max-width:1200px;margin:0 auto;padding:0 32px}
.section{padding:80px 0}
.section--gray{background:var(--gray-50)}
.section--dark{background:var(--navy)}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
@media(max-width:1024px){.grid-3{grid-template-columns:repeat(2,1fr)}.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow{display:inline-block;font-family:var(--font-head);font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);margin-bottom:10px}
.eyebrow--white{color:var(--accent)}
.section-header{max-width:700px;margin-bottom:52px}
.section-header--center{text-align:center;margin-left:auto;margin-right:auto}
.section-header h2{margin-bottom:14px}
.section-header p{font-size:1.05rem}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-head);font-size:.9rem;font-weight:600;padding:12px 26px;border-radius:6px;border:2px solid transparent;cursor:pointer;transition:all .18s ease;text-decoration:none;white-space:nowrap}
.btn-primary{background:var(--blue);color:#fff;border-color:var(--blue)}
.btn-primary:hover{background:var(--blue-dark);color:#fff;border-color:var(--blue-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(29,111,242,.35)}
.btn-outline{background:transparent;color:var(--navy);border-color:var(--gray-200)}
.btn-outline:hover{border-color:var(--blue);color:var(--blue);background:var(--blue-light)}
.btn-outline-white{background:transparent;color:#fff;border-color:rgba(255,255,255,.45)}
.btn-outline-white:hover{background:rgba(255,255,255,.1);color:#fff;border-color:rgba(255,255,255,.7)}
.btn-group{display:flex;flex-wrap:wrap;gap:12px;align-items:center}

/* ===== TOP BAR ===== */
.vfn-top-bar{background:var(--navy-dark);border-bottom:1px solid rgba(255,255,255,.07);height:40px;display:flex;align-items:center;position:relative;z-index:9998}
.vfn-top-bar .container{display:flex;align-items:center;justify-content:space-between;width:100%}
.top-bar-links{display:flex;align-items:center;gap:2px}
.top-bar-links a{font-family:var(--font-head);font-size:.72rem;font-weight:600;color:#fff;padding:4px 10px;border-radius:4px;transition:all .15s}
.top-bar-links a:hover{color:#fff;background:rgba(255,255,255,.08)}
.top-bar-right{display:flex;align-items:center;gap:20px}
.top-bar-tagline{font-family:var(--font-head);font-size:.67rem;color:rgba(255,255,255,.25);letter-spacing:.09em;text-transform:uppercase}
.top-bar-cta{font-family:var(--font-head);font-size:.75rem;font-weight:700;color:var(--accent);transition:color .15s}
.top-bar-cta:hover{color:#fff}
@media(max-width:768px){.vfn-top-bar{display:none}}

/* ===== HEADER / NAV ===== */
.vfn-header{
  background:#fff;
  border-bottom:1px solid var(--gray-100);
  box-shadow:0 1px 6px rgba(13,27,62,.08);
  position:sticky;
  top:0;
  z-index:9999;
}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;height:68px}
.site-logo{display:flex;align-items:center;flex-shrink:0;text-decoration:none}
.site-logo img{height:36px;width:auto;display:block}
.primary-nav{display:flex;align-items:center;gap:2px;list-style:none}
.primary-nav>li{position:relative}
.primary-nav>li>a{font-family:var(--font-head);font-size:.85rem;font-weight:600;color:var(--gray-600);padding:8px 13px;border-radius:6px;display:flex;align-items:center;gap:5px;transition:all .15s;white-space:nowrap}
.primary-nav>li>a:hover,.primary-nav>li.active>a{color:var(--blue);background:var(--blue-light)}
.chevron{width:10px;height:10px;stroke:currentColor;fill:none;stroke-width:2;flex-shrink:0;transition:transform .2s}
.has-dropdown:hover .chevron{transform:rotate(180deg)}
.dropdown{position:absolute;top:calc(100% + 6px);left:0;min-width:230px;background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:8px;opacity:0;visibility:hidden;transform:translateY(-8px);transition:all .18s;z-index:600;list-style:none}
.has-dropdown:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown li a{display:block;padding:9px 14px;font-family:var(--font-head);font-size:.83rem;font-weight:600;color:var(--gray-600);border-radius:8px;transition:all .15s;white-space:nowrap}
.dropdown li a:hover{background:var(--blue-light);color:var(--blue)}
.nav-cta{margin-left:8px}
.nav-cta .btn{padding:9px 20px;font-size:.83rem}
@media(max-width:900px){.primary-nav,.nav-cta{display:none}.vfn-header{top:0}}

/* ===== HERO (Homepage) ===== */
.hero{
  background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 55%,#142b5c 100%);
  padding:96px 0 88px;position:relative;overflow:hidden;
}
.hero::before{content:'';position:absolute;top:-80px;right:-120px;width:600px;height:600px;background:radial-gradient(circle,rgba(29,111,242,.18) 0%,transparent 68%);pointer-events:none}
.hero::after{content:'';position:absolute;bottom:-40px;left:-60px;width:380px;height:380px;background:radial-gradient(circle,rgba(0,194,255,.1) 0%,transparent 68%);pointer-events:none}
.hero-inner{position:relative;z-index:1;max-width:780px}
.hero h1{color:#fff;margin-bottom:20px}
.hero p{font-size:1.18rem;color:rgba(255,255,255,.78);margin-bottom:34px;max-width:620px}
.hero-trust{margin-top:44px;padding-top:24px;border-top:1px solid rgba(255,255,255,.1);font-size:.82rem;color:rgba(255,255,255,.45);font-family:var(--font-head);font-weight:500;letter-spacing:.02em}

/* ===== PAGE HERO ===== */
.page-hero{
  background:linear-gradient(125deg,var(--navy-dark) 0%,var(--navy) 60%,#142b5c 100%);
  padding:68px 0 64px;position:relative;overflow:hidden;
}
.page-hero::after{content:'';position:absolute;bottom:0;right:0;width:480px;height:280px;background:radial-gradient(ellipse at bottom right,rgba(29,111,242,.16) 0%,transparent 70%);pointer-events:none}
.page-hero .hero-inner{position:relative;z-index:1}
.page-hero h1{color:#fff;font-size:clamp(1.75rem,3vw,2.5rem);margin-bottom:16px}
.page-hero p{color:rgba(255,255,255,.76);font-size:1.06rem;max-width:660px;margin-bottom:28px;line-height:1.72}

/* ===== STATS BAR ===== */
.stats-bar{background:var(--navy);padding:44px 0}
.stats-inner{display:flex;justify-content:space-around;flex-wrap:wrap;gap:28px;text-align:center}
.stat-num{font-family:var(--font-head);font-size:2.4rem;font-weight:800;color:#fff;line-height:1;margin-bottom:5px}
.stat-label{font-size:.82rem;color:rgba(255,255,255,.5);letter-spacing:.04em}
.stat-accent{color:var(--accent)}

/* ===== CARDS ===== */
.card{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:28px;box-shadow:0 1px 4px rgba(13,27,62,.07);transition:all .22s}
.card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.card-icon{width:46px;height:46px;background:var(--blue-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.card-icon svg{width:23px;height:23px;stroke:var(--blue);fill:none;stroke-width:1.8}
.card h3{font-size:1.05rem;margin-bottom:8px}
.card p{font-size:.9rem}

/* ===== LANDING CARDS (Solutions/Industry/Features) ===== */
.lcard{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:36px;box-shadow:0 1px 4px rgba(13,27,62,.07);transition:all .22s;display:flex;flex-direction:column}
.lcard:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px);border-color:rgba(29,111,242,.25)}
.lcard-icon{width:54px;height:54px;background:var(--blue-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:22px;flex-shrink:0}
.lcard-icon svg{width:27px;height:27px;stroke:var(--blue);fill:none;stroke-width:1.75}
.lcard h3{font-size:1.2rem;margin-bottom:10px}
.lcard p{font-size:.9rem;flex:1;margin-bottom:0}
.lcard .check-list{list-style:none;padding:0;margin:16px 0;display:flex;flex-direction:column;gap:8px}
.lcard .check-list li{display:flex;align-items:flex-start;gap:9px;font-size:.87rem;color:var(--text-muted);line-height:1.5}
.lcard .check-list li::before{content:'';flex-shrink:0;width:17px;height:17px;margin-top:2px;border-radius:50%;background:var(--blue-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%231D6FF2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/9px no-repeat}
.lcard-actions{margin-top:24px;padding-top:20px;border-top:1px solid var(--gray-100);display:flex;gap:10px;flex-wrap:wrap}

/* ===== INDUSTRY TILES (homepage grid) ===== */
.ind-tile{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:26px;box-shadow:0 1px 4px rgba(13,27,62,.07);transition:all .2s;display:block;text-decoration:none}
.ind-tile:hover{border-color:var(--blue);box-shadow:var(--shadow);transform:translateY(-2px)}
.ind-tile-icon{width:42px;height:42px;border-radius:10px;background:var(--blue-light);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.ind-tile-icon svg{width:20px;height:20px;stroke:var(--blue);fill:none;stroke-width:1.75}
.ind-tile h3{font-size:.97rem;margin-bottom:6px}
.ind-tile p{font-size:.86rem}
.tile-link{display:inline-flex;align-items:center;gap:4px;font-size:.82rem;font-weight:600;color:var(--blue);margin-top:12px;font-family:var(--font-head)}

/* ===== BADGE ===== */
.badge{display:inline-block;background:var(--blue-light);color:var(--blue);font-family:var(--font-head);font-size:.65rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;padding:3px 9px;border-radius:100px;vertical-align:middle;margin-left:4px}
.badge-green{background:#E6F9F0;color:#0A7C45}

/* ===== STEPS ===== */
.steps{display:flex;flex-direction:column}
.step{display:grid;grid-template-columns:56px 1fr;gap:22px;padding:26px 0;border-bottom:1px solid var(--gray-100)}
.step:last-child{border-bottom:none}
.step-num{width:46px;height:46px;border-radius:50%;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-size:.9rem;font-weight:800;flex-shrink:0}
.step-body h3{margin-bottom:7px;font-size:1.05rem}
.step-body p{font-size:.9rem}

/* ===== HOW IT WORKS STEPS ===== */
.hiw-step{display:grid;grid-template-columns:80px 1fr;gap:36px;padding:52px 0;border-bottom:1px solid var(--gray-100);align-items:start}
.hiw-step:last-child{border-bottom:none}
.hiw-num{width:66px;height:66px;border-radius:50%;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-size:1.5rem;font-weight:800;flex-shrink:0}
.hiw-body h3{font-size:1.45rem;margin-bottom:12px}
.hiw-body>p{font-size:1rem;margin-bottom:0}
.hiw-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:22px}
.hiw-card{background:var(--gray-50);border:1px solid var(--gray-100);border-radius:var(--radius);padding:20px}
.hiw-card h4{font-size:.9rem;margin-bottom:7px}
.hiw-card p{font-size:.86rem}
@media(max-width:768px){.hiw-cards{grid-template-columns:1fr}.hiw-step{grid-template-columns:1fr;gap:16px}}

/* ===== USE CASE TABLE ===== */
.uc-table{border:1px solid var(--gray-200);border-radius:var(--radius-lg);overflow:hidden}
.uc-row{display:grid;grid-template-columns:200px 1fr;border-bottom:1px solid var(--gray-100)}
.uc-row:last-child{border-bottom:none}
.uc-row:nth-child(even){background:var(--gray-50)}
.uc-label{padding:16px 18px;font-family:var(--font-head);font-size:.82rem;font-weight:700;color:var(--navy);border-right:1px solid var(--gray-100);display:flex;align-items:center}
.uc-text{padding:16px 20px;font-size:.88rem;color:var(--text-muted);display:flex;align-items:center}

/* ===== OUTCOME LIST ===== */
.outcome-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:9px}
.outcome-list li{display:flex;align-items:flex-start;gap:10px;font-size:.9rem;color:var(--text-muted)}
.outcome-list li::before{content:'';flex-shrink:0;width:18px;height:18px;margin-top:3px;border-radius:50%;background:var(--blue-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%231D6FF2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat}

/* ===== COMPLIANCE BADGES ===== */
.comp-badges{display:flex;flex-wrap:wrap;gap:12px;margin-top:16px}
.comp-badge{background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius);padding:10px 16px;font-family:var(--font-head);font-size:.78rem;font-weight:700;color:var(--navy);display:flex;align-items:center;gap:7px}
.comp-badge::before{content:'✓';color:#0A7C45;font-weight:800}

/* ===== INTEGRATION PILLS ===== */
.int-grid{display:flex;flex-wrap:wrap;gap:12px}
.int-pill{background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius);padding:12px 22px;font-family:var(--font-head);font-size:.85rem;font-weight:600;color:var(--navy);box-shadow:0 1px 4px rgba(13,27,62,.06)}

/* ===== DEMO / CONTACT LAYOUT ===== */
.form-layout{display:grid;grid-template-columns:1fr 1.4fr;gap:64px;align-items:start}
.form-bullets{list-style:none;padding:0;display:flex;flex-direction:column;gap:14px;margin-top:16px}
.form-bullets li{display:flex;align-items:flex-start;gap:12px;font-size:.95rem;color:var(--text-muted);line-height:1.55}
.form-bullets li::before{content:'';flex-shrink:0;width:20px;height:20px;margin-top:2px;border-radius:50%;background:var(--blue-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%231D6FF2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat}
.form-box{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:36px;box-shadow:var(--shadow)}
.calendly-wrap{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
@media(max-width:900px){.form-layout{grid-template-columns:1fr}}

/* ===== INFO BOX ===== */
.info-box{padding:24px;background:var(--gray-50);border:1px solid var(--gray-100);border-radius:var(--radius-lg)}
.info-box h4{margin-bottom:7px}
.info-box p{font-size:.9rem}

/* ===== TWO-COLUMN FEATURE GRID ===== */
.feat-split{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.feat-split--rev .feat-split-visual{order:1}
@media(max-width:768px){.feat-split{grid-template-columns:1fr}.feat-split--rev .feat-split-visual{order:0}}
.feat-split-visual{background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);border-radius:var(--radius-lg);padding:40px;display:flex;align-items:center;justify-content:center;min-height:280px}

/* ===== TIMELINE (About page) ===== */
.timeline{position:relative;padding-left:32px}
.timeline::before{content:'';position:absolute;left:0;top:8px;bottom:8px;width:2px;background:var(--blue-light)}
.tl-item{position:relative;padding-bottom:36px}
.tl-item:last-child{padding-bottom:0}
.tl-dot{position:absolute;left:-39px;top:4px;width:14px;height:14px;border-radius:50%;background:var(--blue);border:3px solid #fff;box-shadow:0 0 0 2px var(--blue)}
.tl-year{font-family:var(--font-head);font-size:.75rem;font-weight:700;color:var(--blue);text-transform:uppercase;letter-spacing:.08em;margin-bottom:4px}
.tl-item h3{font-size:1.05rem;margin-bottom:6px}
.tl-item p{font-size:.9rem}

/* ===== CTA SECTION ===== */
.cta-band{background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 60%,#142b5c 100%);padding:80px 0;text-align:center;position:relative;overflow:hidden}
.cta-band::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:640px;height:380px;background:radial-gradient(ellipse,rgba(29,111,242,.14) 0%,transparent 70%)}
.cta-band h2{color:#fff;position:relative;margin-bottom:14px}
.cta-band p{color:rgba(255,255,255,.72);font-size:1.05rem;max-width:540px;margin:0 auto 32px;position:relative}
.cta-band .btn-group{justify-content:center;position:relative}

/* ===== FOOTER ===== */
.site-footer{background:var(--navy-dark);padding:60px 0 28px}
.footer-inner{display:grid;grid-template-columns:260px repeat(4,1fr);gap:40px;padding-bottom:44px;border-bottom:1px solid rgba(255,255,255,.08);margin-bottom:28px}
@media(max-width:1000px){.footer-inner{grid-template-columns:1fr 1fr}}
@media(max-width:540px){.footer-inner{grid-template-columns:1fr}}
.footer-brand{}
.footer-logo{display:block;margin-bottom:14px}
.footer-logo img{height:30px;width:auto;filter:brightness(0) invert(1);opacity:.85}
.footer-tagline{font-size:.83rem;color:rgba(255,255,255,.45);line-height:1.65;max-width:200px}
.footer-col h4{font-family:var(--font-head);font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.32);margin-bottom:16px}
.footer-col ul{list-style:none;padding:0;display:flex;flex-direction:column;gap:10px}
.footer-col ul li a{font-size:.86rem;color:rgba(255,255,255,.6);transition:color .15s}
.footer-col ul li a:hover{color:#fff}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;font-size:.78rem;color:rgba(255,255,255,.28);flex-wrap:wrap;gap:8px}
.footer-bottom a{color:rgba(255,255,255,.38);transition:color .15s}
.footer-bottom a:hover{color:#fff}

/* ===== PRIVACY PAGE ===== */
.prose{max-width:800px}
.prose h2{font-size:1.4rem;margin:44px 0 14px;padding-bottom:10px;border-bottom:1px solid var(--gray-100)}
.prose h3{font-size:1.1rem;margin:28px 0 10px}
.prose p{margin-bottom:16px}
.prose ul,.prose ol{margin:12px 0 18px;display:flex;flex-direction:column;gap:6px}

/* ===== BLOG ===== */
.blog-layout{display:grid;grid-template-columns:1fr 300px;gap:48px;align-items:start}
@media(max-width:900px){.blog-layout{grid-template-columns:1fr}}
.post-card{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);overflow:hidden;margin-bottom:24px;transition:all .2s}
.post-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.post-thumb{height:200px;background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);position:relative}
.post-body{padding:24px}
.post-meta{font-size:.78rem;color:var(--gray-400);font-family:var(--font-head);margin-bottom:8px}
.post-body h3{font-size:1.1rem;margin-bottom:8px;line-height:1.35}
.post-body h3 a{color:var(--navy)}
.post-body h3 a:hover{color:var(--blue)}
.post-body p{font-size:.9rem;margin-bottom:12px}
.sidebar-box{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:24px;margin-bottom:20px}
.sidebar-box h4{font-size:.85rem;margin-bottom:14px;padding-bottom:10px;border-bottom:1px solid var(--gray-100)}

/* ===== ABOUT PAGE ===== */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:768px){.team-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.team-grid{grid-template-columns:1fr}}
.team-card{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:28px;text-align:center}
.team-avatar{width:72px;height:72px;border-radius:50%;background:var(--blue-light);margin:0 auto 14px;display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-size:1.4rem;font-weight:800;color:var(--blue)}
.team-card h3{font-size:1rem;margin-bottom:4px}
.team-card .role{font-size:.83rem;color:var(--blue);font-family:var(--font-head);font-weight:600}

/* ===== UTILITY ===== */
.text-center{text-align:center}
.mt-8{margin-top:8px}.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* ── NEUTRALIZE OLD THEME PLUGIN INJECTIONS ───────────────────────────────── */
/* If old header/footer plugins inject content, hide it so only VFN theme shows */
body > header:not(#vfn-header),
body > .site-header:not(#vfn-header),
body > nav:not(.vfn-nav),
body > .main-navigation:not(.vfn-nav) {
  display: none !important;
}

/* Force-hide any old theme elements that WordPress might inject */
#wpadminbar { position:fixed !important; }