/* ═══════════════════════════════════════════════════════
   AI FOR ALL NETWORK — Global Stylesheet v2.0
   theaifan.com  |  Founded by Robert McGinnis
   ═══════════════════════════════════════════════════════ */

/* ── 1. Custom Properties ── */
:root {
  --navy:    #06101f;
  --navy2:   #0b1a30;
  --navy3:   #0f2244;
  --teal:    #00e5c0;
  --teal2:   #00ffda;
  --cyan:    #38bdf8;
  --amber:   #f59e0b;
  --purple:  #a78bfa;
  --white:   #f0f6ff;
  --slate:   #94a3b8;
  --slate2:  #cbd5e1;
  --border:  rgba(0,229,192,0.15);
  --borderdim: rgba(255,255,255,0.07);
  --font-display: "Rajdhani", sans-serif;
  --font-body:    "Inter", sans-serif;
  --font-mono:    "JetBrains Mono", monospace;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 40px rgba(0,229,192,0.1);
  --shadow-deep: 0 24px 60px rgba(0,0,0,0.5);
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--navy); color: var(--slate2); font-size: 15px; line-height: 1.7; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; background: repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,.022) 2px,rgba(0,0,0,.022) 4px); pointer-events: none; z-index: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── 3. Navigation ── */
#site-nav nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(6,16,31,.94); backdrop-filter: blur(18px); height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; border-bottom: 1px solid var(--border); transition: background .3s; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-mark { position: relative; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-mark svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.nav-mark-txt { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--teal); letter-spacing: .05em; }
.nav-wordmark { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; letter-spacing: .08em; text-transform: uppercase; }
.nav-wordmark em { color: var(--teal); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--slate); font-size: 12.5px; font-weight: 500; text-decoration: none; letter-spacing: .05em; text-transform: uppercase; transition: color .2s; position: relative; }
.nav-links a::after { content: ""; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--teal); transform: scaleX(0); transition: transform .2s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-cta { background: transparent !important; border: 1px solid var(--teal) !important; color: var(--teal) !important; padding: 6px 16px !important; border-radius: 3px !important; font-family: var(--font-display) !important; font-weight: 600 !important; letter-spacing: .08em !important; transition: background .2s,color .2s !important; }
.nav-cta:hover { background: var(--teal) !important; color: var(--navy) !important; }
.nav-cta::after { display: none !important; }
.nav-ham { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-ham span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.7); transition: .3s; border-radius: 1px; }
.nav-mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(6,16,31,.98); border-bottom: 1px solid var(--border); padding: 1.5rem 2.5rem; z-index: 199; flex-direction: column; gap: 1rem; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { color: var(--slate); font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.05); transition: color .2s; }
.nav-mobile-menu a:hover, .nav-mobile-menu a.active { color: var(--teal); }

/* ── 4. Buttons ── */
.btn-teal { display: inline-flex; align-items: center; gap: 9px; background: var(--teal); color: var(--navy); font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 11px 26px; border-radius: 3px; text-decoration: none; border: none; cursor: pointer; clip-path: polygon(0 0,calc(100% - 9px) 0,100% 9px,100% 100%,0 100%); transition: background .2s,transform .15s; }
.btn-teal:hover { background: var(--teal2); transform: translateY(-1px); }
.btn-teal.cyan { background: var(--cyan); color: var(--navy); }
.btn-teal.amber { background: var(--amber); color: var(--navy); }
.btn-teal.purple { background: var(--purple); color: var(--navy); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--slate); border: 1px solid rgba(255,255,255,.15); font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 11px 22px; border-radius: 3px; text-decoration: none; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,0 100%); transition: border-color .2s,color .2s; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ── 5. Section Layouts ── */
section { position: relative; padding: 5.5rem 2.5rem; }
.container { max-width: 1280px; margin: 0 auto; }
.container-sm { max-width: 860px; margin: 0 auto; }
.container-md { max-width: 1040px; margin: 0 auto; }
.sec-dark { background: var(--navy); }
.sec-mid  { background: var(--navy2); }
.sec-deep { background: var(--navy3); }
.sec-dot-bg::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(0,229,192,.055) 1px,transparent 1px); background-size: 28px 28px; pointer-events: none; }
.sec-grid-bg::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,229,192,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,229,192,.03) 1px,transparent 1px); background-size: 40px 40px; pointer-events: none; }
.sec-teal-top::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 500px; height: 1px; background: linear-gradient(90deg,transparent,var(--teal),transparent); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--teal); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; }
.eyebrow::before { content: ""; display: block; width: 22px; height: 1px; background: var(--teal); }
.eyebrow.center { justify-content: center; }
h2.sec-title { font-family: var(--font-display); font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .05em; line-height: 1.1; margin-bottom: .75rem; }
.sec-desc { font-size: .95rem; color: var(--slate); max-width: 540px; font-weight: 300; line-height: 1.9; margin-bottom: 3rem; }
.sec-desc.wide { max-width: 720px; }
.text-center { text-align: center; }
.text-center .sec-desc { margin-left: auto; margin-right: auto; }

/* ── 6. Hero Components ── */
.page-hero { min-height: 100vh; position: relative; display: flex; align-items: center; padding-top: 64px; overflow: hidden; background: var(--navy); }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,229,192,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,229,192,.04) 1px,transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center,black 30%,transparent 80%); }
.hero-glow-r { position: absolute; top: -150px; right: -150px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle,rgba(0,229,192,.07) 0%,transparent 65%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 3rem 2.5rem; }
.hero-two-col { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; }
.hero-sys-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10.5px; color: var(--teal); letter-spacing: .1em; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .5s .1s ease forwards; }
.hero-sys-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); animation: blink 1.8s infinite; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.8rem,5.5vw,4.5rem); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 1.25rem; opacity: 0; animation: fadeUp .6s .2s ease forwards; }
.hero-headline .hl-teal   { color: var(--teal);   text-shadow: 0 0 30px rgba(0,229,192,.4); }
.hero-headline .hl-cyan   { color: var(--cyan);   text-shadow: 0 0 30px rgba(56,189,248,.4); }
.hero-headline .hl-amber  { color: var(--amber);  text-shadow: 0 0 30px rgba(245,158,11,.4); }
.hero-headline .hl-purple { color: var(--purple); text-shadow: 0 0 30px rgba(167,139,250,.4); }
.hero-headline .hl-dim    { color: rgba(255,255,255,.3); }
.hero-sub { font-size: 1rem; color: var(--slate); font-weight: 300; max-width: 520px; line-height: 1.9; margin-bottom: 2.25rem; opacity: 0; animation: fadeUp .6s .3s ease forwards; }
.hero-cta-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; opacity: 0; animation: fadeUp .5s .45s ease forwards; }
.hero-paths { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 2.25rem; opacity: 0; animation: fadeUp .5s .4s ease forwards; }
.path-btn { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.7); background: rgba(255,255,255,.04); font-family: var(--font-display); font-size: 13.5px; font-weight: 600; letter-spacing: .06em; padding: 8px 17px; border-radius: 3px; text-decoration: none; transition: border-color .2s,color .2s,background .2s; clip-path: polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,0 100%); }
.path-btn:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,229,192,.06); }
.section-hero { min-height: 52vh; position: relative; display: flex; align-items: center; padding-top: 64px; overflow: hidden; background: var(--navy); }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 5px; color: rgba(255,255,255,.3); font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; opacity: 0; animation: fadeUp 1s .9s ease forwards; }
.scroll-arrow { width: 20px; height: 20px; border-right: 1.5px solid rgba(0,229,192,.5); border-bottom: 1.5px solid rgba(0,229,192,.5); transform: rotate(45deg); animation: bounce 1.5s infinite; }

/* ── 7. Everett Card ── */
.ev-card { position: relative; opacity: 0; animation: fadeUp .8s .25s ease forwards; }
.ev-frame { position: relative; border-radius: 6px; overflow: hidden; border: 1px solid rgba(0,229,192,.22); box-shadow: 0 0 60px rgba(0,229,192,.1),0 30px 80px rgba(0,0,0,.6); }
.ev-frame img { width: 100%; display: block; filter: brightness(.88) contrast(1.06) saturate(.9); }
.ev-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 38%,rgba(6,16,31,.55) 68%,rgba(6,16,31,.96) 100%); }
.ev-hud { position: absolute; inset: 0; pointer-events: none; }
.ev-corner { position: absolute; width: 15px; height: 15px; border-color: var(--teal); border-style: solid; opacity: .6; }
.ev-tl { top: 10px; left: 10px; border-width: 1.5px 0 0 1.5px; }
.ev-tr { top: 10px; right: 10px; border-width: 1.5px 1.5px 0 0; }
.ev-bl { bottom: 10px; left: 10px; border-width: 0 0 1.5px 1.5px; }
.ev-br { bottom: 10px; right: 10px; border-width: 0 1.5px 1.5px 0; }
.ev-scanbeam { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,rgba(0,229,192,.6),transparent); animation: scanv 4s linear infinite; top: 0; }
.ev-scanline { position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--teal),transparent); animation: scanLine 5s ease-in-out infinite; z-index: 4; }
.ev-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 1.5rem; }
.ev-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #fff; letter-spacing: .05em; text-transform: uppercase; }
.ev-role { font-family: var(--font-mono); font-size: 10.5px; color: var(--teal); letter-spacing: .1em; margin-top: 2px; }
/* Everett section (meet Everett) */
.ev-section-grid { display: grid; grid-template-columns: 360px 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.ev-photo-wrap { position: relative; }
.ev-photo-frame { border-radius: 4px; overflow: hidden; border: 1px solid rgba(0,229,192,.2); box-shadow: 0 0 80px rgba(0,229,192,.07),0 24px 60px rgba(0,0,0,.5); position: relative; }
.ev-photo-frame img { width: 100%; display: block; filter: brightness(.92); }
.ev-photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(6,16,31,.65) 0%,transparent 50%); }
.ev-hc { position: absolute; width: 13px; height: 13px; border-color: var(--teal); border-style: solid; z-index: 3; opacity: .65; }
.ev-htl { top: 7px; left: 7px; border-width: 2px 0 0 2px; }
.ev-htr { top: 7px; right: 7px; border-width: 2px 2px 0 0; }
.ev-hbl { bottom: 7px; left: 7px; border-width: 0 0 2px 2px; }
.ev-hbr { bottom: 7px; right: 7px; border-width: 0 2px 2px 0; }
.ev-badge { position: absolute; bottom: -14px; right: -14px; z-index: 4; background: var(--teal); color: var(--navy); font-family: var(--font-display); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 9px 15px; border-radius: 3px; box-shadow: 0 8px 24px rgba(0,229,192,.4); clip-path: polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,0 100%); }
.ev-quote { font-style: italic; color: rgba(255,255,255,.58); font-size: .98rem; line-height: 1.95; font-weight: 300; border-left: 2px solid var(--teal); padding-left: 1.2rem; margin-bottom: 1.75rem; }
.ev-art-list { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.75rem; }
.ev-art-row { display: flex; align-items: center; gap: 11px; text-decoration: none; padding: 9px 13px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 3px; transition: background .2s,border-color .2s; }
.ev-art-row:hover { background: rgba(0,229,192,.05); border-color: rgba(0,229,192,.2); }
.ev-art-icon { width: 30px; height: 30px; border-radius: 3px; background: rgba(0,229,192,.1); border: 1px solid rgba(0,229,192,.2); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.ev-art-text strong { display: block; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; }
.ev-art-text span { font-family: var(--font-mono); font-size: 10px; color: var(--slate); }
.ev-art-arrow { color: rgba(255,255,255,.25); font-family: var(--font-mono); font-size: 11px; margin-left: auto; }

/* ── 8. Card Components ── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; position: relative; z-index: 1; }
.feat-card { background: rgba(6,16,31,.85); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 1.75rem; position: relative; overflow: hidden; transition: border-color .2s,transform .2s; }
.feat-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--teal),transparent); transform: scaleX(0); transition: transform .4s; }
.feat-card:hover { border-color: rgba(0,229,192,.3); transform: translateY(-3px); }
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon { width: 42px; height: 42px; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem; border: 1px solid rgba(0,229,192,.2); background: rgba(0,229,192,.05); }
.feat-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.feat-card p { font-size: 13px; color: var(--slate); line-height: 1.75; }
.feat-tag { position: absolute; top: 1.2rem; right: 1.2rem; font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 3px 9px; border-radius: 2px; }
.tag-live { background: rgba(0,229,192,.1); color: var(--teal); border: 1px solid rgba(0,229,192,.2); }
.tag-soon { background: rgba(245,158,11,.1); color: var(--amber); border: 1px solid rgba(245,158,11,.2); }

/* ── 9. Article Cards ── */
.art-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr; grid-template-rows: auto auto; gap: 1.2rem; }
.art-grid-simple { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.art-card { background: var(--navy); border: 1px solid rgba(255,255,255,.07); border-radius: 4px; padding: 1.75rem; text-decoration: none; color: inherit; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: border-color .25s,transform .25s; }
.art-card::before { content: ""; position: absolute; top: 0; right: 0; width: 50px; height: 50px; border-left: 1px solid rgba(0,229,192,.07); border-bottom: 1px solid rgba(0,229,192,.07); border-radius: 0 0 0 3px; opacity: 0; transition: opacity .3s; }
.art-card:hover { border-color: rgba(0,229,192,.28); transform: translateY(-3px); }
.art-card:hover::before { opacity: 1; }
.art-card.featured { grid-row: span 2; }
.art-cat { font-family: var(--font-mono); font-size: 10px; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .65rem; }
.art-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; text-transform: uppercase; letter-spacing: .04em; line-height: 1.25; margin-bottom: .65rem; }
.art-card.featured h3 { font-size: 1.45rem; }
.art-card p { font-size: 13.5px; color: var(--slate); flex: 1; line-height: 1.75; }
.art-meta { display: flex; align-items: center; gap: 8px; margin-top: 1.2rem; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.28); letter-spacing: .04em; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.06); }
.art-av { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; }
.av-em { background: rgba(0,229,192,.18); color: var(--teal); border: 1px solid rgba(0,229,192,.3); }
.av-rm { background: rgba(56,189,248,.18); color: var(--cyan); border: 1px solid rgba(56,189,248,.3); }

/* ── 10. Audience Tags ── */
.atags { display: inline-flex; flex-wrap: wrap; gap: 5px; margin-bottom: .65rem; }
.at { font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: .08em; padding: 3px 9px; border-radius: 2px; text-transform: uppercase; }
.at-k   { background: rgba(245,158,11,.1);  color: var(--amber);  border: 1px solid rgba(245,158,11,.25); }
.at-t   { background: rgba(0,229,192,.1);   color: var(--teal);   border: 1px solid rgba(0,229,192,.25); }
.at-a   { background: rgba(56,189,248,.1);  color: var(--cyan);   border: 1px solid rgba(56,189,248,.25); }
.at-s   { background: rgba(167,139,250,.12);color: var(--purple); border: 1px solid rgba(167,139,250,.25); }
.at-all { background: rgba(255,255,255,.06);color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.1); }
.awho { font-size: 11.5px; color: var(--slate); font-style: italic; padding: 5px 10px; background: rgba(255,255,255,.03); border-left: 2px solid rgba(0,229,192,.3); border-radius: 0 2px 2px 0; margin-bottom: .75rem; line-height: 1.6; }

/* ── 11. Word of the Day ── */
.wotd-wrap { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 3rem; }
.wotd-label { font-family: var(--font-mono); font-size: 10px; color: var(--teal); letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-lr; opacity: .6; }
.wotd-word { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; text-shadow: 0 0 40px rgba(0,229,192,.18); }
.wotd-pron { font-family: var(--font-mono); font-size: 11.5px; color: var(--slate); margin: 4px 0 10px; }
.wotd-def { font-size: .95rem; color: var(--slate); font-weight: 300; max-width: 580px; line-height: 1.85; }
.wotd-btn { white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--teal); color: var(--teal); font-family: var(--font-display); font-size: 13.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 11px 20px; border-radius: 3px; text-decoration: none; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,0 100%); transition: background .2s,color .2s; }
.wotd-btn:hover { background: var(--teal); color: var(--navy); }

/* ── 12. Community ── */
.comm-grid { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 1.2rem; position: relative; z-index: 1; }
.comm-post { background: var(--navy); border: 1px solid rgba(255,255,255,.07); border-radius: 4px; padding: 1.5rem; transition: border-color .2s; }
.comm-post:hover { border-color: rgba(0,229,192,.2); }
.comm-head { display: flex; align-items: center; gap: 9px; margin-bottom: 1rem; }
.comm-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 11px; font-weight: 700; flex-shrink: 0; border: 1px solid rgba(0,229,192,.3); background: rgba(0,229,192,.1); color: var(--teal); }
.comm-user strong { display: block; font-size: 13px; color: rgba(255,255,255,.8); font-weight: 500; }
.comm-user span { font-family: var(--font-mono); font-size: 10px; color: var(--slate); }
.comm-post h4 { font-family: var(--font-display); font-weight: 700; font-size: .98rem; color: #fff; letter-spacing: .03em; margin-bottom: .5rem; }
.comm-post p { font-size: 13px; color: var(--slate); line-height: 1.7; }
.comm-foot { display: flex; gap: 1rem; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.05); font-family: var(--font-mono); font-size: 10px; color: var(--slate); }
.trend-box { background: var(--navy); border: 1px solid rgba(255,255,255,.07); border-radius: 4px; padding: 1.5rem; }
.trend-box h4 { font-family: var(--font-mono); font-size: 10px; color: var(--teal); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .9rem; padding-bottom: .7rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.trend-item { display: flex; align-items: center; gap: 9px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.04); text-decoration: none; color: var(--slate); font-size: 13px; transition: color .2s; }
.trend-item:last-of-type { border-bottom: none; }
.trend-item:hover { color: #fff; }
.trend-num { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.14); min-width: 18px; font-weight: 700; }
.trend-item:hover .trend-num { color: var(--teal); }

/* ── 13. Newsletter ── */
.nl-section { background: var(--navy); text-align: center; padding: 5.5rem 2.5rem; position: relative; overflow: hidden; }
.nl-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%,rgba(0,229,192,.05) 0%,transparent 50%),radial-gradient(ellipse at 70% 50%,rgba(56,189,248,.04) 0%,transparent 50%); pointer-events: none; }
.nl-section::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--teal),transparent); opacity: .35; }
.nl-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.nl-form { display: flex; gap: 8px; background: rgba(255,255,255,.04); border: 1px solid rgba(0,229,192,.2); border-radius: 4px; padding: 5px 5px 5px 15px; max-width: 460px; margin: 0 auto; }
.nl-form input { flex: 1; background: transparent; border: none; color: #fff; font-family: var(--font-body); font-size: 14px; outline: none; }
.nl-form input::placeholder { color: rgba(255,255,255,.23); }
.nl-form button { background: var(--teal); color: var(--navy); font-family: var(--font-display); font-size: 13.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 9px 20px; border: none; border-radius: 2px; cursor: pointer; transition: background .2s; clip-path: polygon(0 0,calc(100% - 6px) 0,100% 6px,100% 100%,0 100%); }
.nl-form button:hover { background: var(--teal2); }
.nl-note { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.2); margin-top: 1rem; letter-spacing: .08em; }

/* ── 14. Footer ── */
#site-footer footer { background: #030c18; padding: 3.5rem 2.5rem 2rem; border-top: 1px solid var(--borderdim); }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: 1.75rem; }
.footer-brand p { font-size: 12.5px; color: rgba(255,255,255,.3); line-height: 1.8; margin-top: .85rem; max-width: 280px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a { color: rgba(255,255,255,.35); font-size: 13.5px; text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .05em; }

/* ── 15. Pricing ── */
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.price-card { background: var(--navy); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 2.25rem 1.75rem; position: relative; overflow: hidden; display: flex; flex-direction: column; clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,0 100%); transition: border-color .25s,transform .25s; }
.price-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.price-card.free::before     { background: linear-gradient(90deg,var(--slate),rgba(255,255,255,.3)); }
.price-card.personal::before { background: linear-gradient(90deg,var(--teal),var(--teal2)); }
.price-card.family::before   { background: linear-gradient(90deg,var(--cyan),#7dd3fc); }
.price-card.business::before { background: linear-gradient(90deg,var(--amber),#fcd34d); }
.price-card.popular { border-color: rgba(0,229,192,.4); box-shadow: 0 0 40px rgba(0,229,192,.08); }
.price-card:hover { transform: translateY(-4px); }
.price-badge { position: absolute; top: 1.5rem; right: 1.5rem; font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 3px 9px; border-radius: 2px; }
.pb-pop { background: rgba(0,229,192,.12); color: var(--teal); border: 1px solid rgba(0,229,192,.3); }
.pb-val { background: rgba(56,189,248,.12); color: var(--cyan); border: 1px solid rgba(56,189,248,.3); }
.price-num-label { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.18); letter-spacing: .1em; margin-bottom: 1rem; }
.price-plan { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem; }
.price-tier { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.25rem; }
.price-amount { display: flex; align-items: baseline; gap: 5px; margin-bottom: .35rem; }
.price-big { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1; }
.price-mo { font-family: var(--font-mono); font-size: 11px; color: var(--slate); }
.price-note { font-family: var(--font-mono); font-size: 10.5px; color: var(--slate); margin-bottom: 1.75rem; min-height: 1.4rem; }
.price-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 1.5rem; }
.price-features { flex: 1; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.pf { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.55; }
.pf-yes { flex-shrink: 0; width: 16px; height: 16px; border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 10px; margin-top: 2px; }
.pf-no  { flex-shrink: 0; width: 16px; height: 16px; border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 9px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.07); margin-top: 2px; }
.pf-teal  { background: rgba(0,229,192,.15);  color: var(--teal);   border: 1px solid rgba(0,229,192,.25); }
.pf-cyan  { background: rgba(56,189,248,.15); color: var(--cyan);   border: 1px solid rgba(56,189,248,.25); }
.pf-amber { background: rgba(245,158,11,.15); color: var(--amber);  border: 1px solid rgba(245,158,11,.25); }
.pf-dim   { background: rgba(255,255,255,.06);color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.1); }
.pf.dim   { color: rgba(255,255,255,.3); }
.pf-sec   { font-family: var(--font-mono); font-size: 9.5px; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; margin: .9rem 0 .45rem; }
.price-btn-wrap { margin-top: auto; }

/* ── 16. Article Page Layout ── */
.article-page { padding-top: 64px; }
.article-hero { background: var(--navy); border-bottom: 1px solid var(--borderdim); padding: 4rem 2.5rem 3rem; position: relative; overflow: hidden; }
.article-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,229,192,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,229,192,.03) 1px,transparent 1px); background-size: 50px 50px; pointer-events: none; }
.article-hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.article-back { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; color: var(--slate); letter-spacing: .1em; text-transform: uppercase; text-decoration: none; margin-bottom: 1.5rem; transition: color .2s; }
.article-back:hover { color: var(--teal); }
.article-title-h1 { font-family: var(--font-display); font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .04em; line-height: 1.1; margin-bottom: 1rem; }
.article-meta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; color: var(--slate); }
.article-meta-row .art-av { width: 28px; height: 28px; }
.article-body-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 2.5rem; }
.article-body { font-size: 1.02rem; line-height: 1.9; color: var(--slate2); }
.article-body h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .05em; margin: 2.5rem 0 1rem; padding-top: .5rem; border-top: 1px solid rgba(255,255,255,.07); }
.article-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .04em; margin: 2rem 0 .75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { margin-bottom: .5rem; }
.article-body strong { color: rgba(255,255,255,.85); font-weight: 600; }
.article-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote { border-left: 3px solid var(--teal); padding: 1rem 1.5rem; background: rgba(0,229,192,.04); border-radius: 0 4px 4px 0; margin: 1.5rem 0; font-style: italic; color: rgba(255,255,255,.65); }
.article-body .callout { background: rgba(0,229,192,.05); border: 1px solid rgba(0,229,192,.2); border-radius: 4px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.article-body .callout strong { color: var(--teal); }
.article-divider { height: 1px; background: linear-gradient(90deg,transparent,rgba(0,229,192,.3),transparent); margin: 3rem 0; }
.author-bio { display: flex; align-items: flex-start; gap: 1.25rem; background: var(--navy2); border: 1px solid var(--borderdim); border-radius: 4px; padding: 1.5rem; margin-top: 3rem; }
.author-av { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 700; flex-shrink: 0; }
.author-bio h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.author-bio p { font-size: 13px; color: var(--slate); line-height: 1.7; margin: 0; }

/* ── 17. Audience cards section pages ── */
.aud-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.aud-card { position: relative; border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,.07); background: var(--navy); text-decoration: none; color: inherit; padding: 2.25rem 1.75rem 1.75rem; display: block; transition: border-color .2s,transform .2s; clip-path: polygon(0 0,calc(100% - 13px) 0,100% 13px,100% 100%,0 100%); }
.aud-card::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s; }
.aud-card.kids::before   { background: radial-gradient(ellipse at 50% 0%,rgba(245,158,11,.12) 0%,transparent 65%); }
.aud-card.teens::before  { background: radial-gradient(ellipse at 50% 0%,rgba(0,229,192,.1) 0%,transparent 65%); }
.aud-card.adults::before { background: radial-gradient(ellipse at 50% 0%,rgba(56,189,248,.1) 0%,transparent 65%); }
.aud-card.seniors::before{ background: radial-gradient(ellipse at 50% 0%,rgba(167,139,250,.12) 0%,transparent 65%); }
.aud-card:hover { border-color: rgba(0,229,192,.3); transform: translateY(-4px); }
.aud-card:hover::before { opacity: 1; }
.aud-cut { position: absolute; top: 0; right: 0; width: 13px; height: 13px; clip-path: polygon(0 0,100% 0,100% 100%); }
.aud-num  { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.18); letter-spacing: .1em; margin-bottom: 1rem; }
.aud-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.aud-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.aud-card p { font-size: 13px; color: var(--slate); line-height: 1.7; }
.aud-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-family: var(--font-mono); font-size: 10.5px; color: var(--teal); letter-spacing: .08em; }
.aud-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.aud-card.kids .aud-bar    { background: var(--amber); }
.aud-card.teens .aud-bar   { background: var(--teal); }
.aud-card.adults .aud-bar  { background: var(--cyan); }
.aud-card.seniors .aud-bar { background: var(--purple); }
.aud-card:hover .aud-bar { transform: scaleX(1); }

/* ── 18. Animations ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink    { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes scanv    { 0% { top: 0; opacity: .8; } 100% { top: 100%; opacity: 0; } }
@keyframes scanLine { 0%,100% { top: 0; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; top: 100%; } }
@keyframes bounce   { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── 19. Responsive ── */
@media (max-width: 1200px) {
  .hero-two-col { grid-template-columns: 1fr; }
  .ev-card { max-width: 400px; }
  .aud-grid { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .art-grid { grid-template-columns: 1fr 1fr; }
  .art-card.featured { grid-column: span 2; }
  .comm-grid { grid-template-columns: 1fr 1fr; }
  .trend-box { grid-column: span 2; }
  .ev-section-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wotd-wrap { grid-template-columns: 1fr auto; gap: 2rem; }
  .wotd-label { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  section { padding: 3.5rem 1.5rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .art-grid, .art-grid-simple { grid-template-columns: 1fr; }
  .art-card.featured { grid-column: auto; }
  .comm-grid { grid-template-columns: 1fr; }
  .trend-box { grid-column: auto; }
  .wotd-wrap { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; padding: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .price-grid { grid-template-columns: 1fr; }
  .article-body-wrap { padding: 2rem 1.5rem; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
}
/* ═══════════════════════════════════════════════════════════════
   AI FOR ALL NETWORK — CSS Additions v2.0
   FILE: css/style-additions.css

   HOW TO USE THIS FILE:
   ─────────────────────
   DO NOT upload this as a separate file.
   OPEN your existing /css/style.css on Bluehost File Manager,
   scroll to the very bottom, and PASTE all of the content
   below (everything after this comment block).

   These styles add:
     1. Nav login / account button styles
     2. Breadcrumb navigation styles
   ═══════════════════════════════════════════════════════════════ */


/* ── Nav: Login & Account States ──────────────────────────────
   These control how the Log In and My Account links look
   in the navigation bar.
   ──────────────────────────────────────────────────────────── */

/* Log In link — subtle ghost style */
.nav-login {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: var(--slate) !important;
  padding: 5px 14px !important;
  border-radius: 3px !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: border-color 0.2s, color 0.2s !important;
}
.nav-login:hover {
  border-color: rgba(255,255,255,0.35) !important;
  color: #fff !important;
}
.nav-login::after { display: none !important; }

/* Subscribe CTA button — teal filled */
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--teal) !important;
  color: var(--teal) !important;
  padding: 5px 14px !important;
  border-radius: 3px !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--teal) !important;
  color: var(--navy) !important;
}
.nav-cta::after { display: none !important; }

/* User avatar initials badge in nav */
.nav-user-av {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,229,192,0.18);
  border: 1px solid rgba(0,229,192,0.4);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: middle;
  margin-right: 2px;
}

/* Log Out link — muted, no underline animation */
.nav-logout {
  color: var(--slate) !important;
  font-size: 11.5px !important;
  opacity: 0.7;
  transition: opacity 0.2s !important;
}
.nav-logout:hover { opacity: 1; color: #ef4444 !important; }
.nav-logout::after { display: none !important; }


/* ── Breadcrumb Navigation ────────────────────────────────────
   Fixed position — sits directly below the 64px nav bar.
   Injected automatically by components.js on every page.
   Database-driven — no manual page edits needed.
   ──────────────────────────────────────────────────────────── */

/* The bar itself — fixed below the nav */
#aifan-breadcrumb-bar {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(6,16,31,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.55rem 2.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Also style the .breadcrumb class for PHP pages that
   render breadcrumbs inline (admin pages, member pages) */
.breadcrumb {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.65rem 2.5rem;
  position: relative;
  z-index: 1;
}

/* The list inside the breadcrumb */
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* Each breadcrumb item */
.breadcrumb-item {
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Links in the trail */
.breadcrumb-item a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.breadcrumb-item a:hover { color: var(--teal); }

/* Current page — last item, no link */
.breadcrumb-current span {
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
  display: inline-block;
  vertical-align: middle;
}

/* Arrow separator */
.breadcrumb-sep {
  color: rgba(255,255,255,0.15);
  margin: 0 0.6rem;
  font-size: 10px;
  flex-shrink: 0;
}

/* Pages with a hero section — push hero down so breadcrumb
   doesn't overlap it. Hero already accounts for 64px nav,
   we add another 36px for the breadcrumb bar. */
body.has-breadcrumb .page-hero,
body.has-breadcrumb .section-hero {
  padding-top: calc(64px + 36px);
}

/* Admin breadcrumb variant — amber accent */
.breadcrumb.breadcrumb-admin .breadcrumb-item a:hover {
  color: var(--amber);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #aifan-breadcrumb-bar { padding: 0.55rem 1rem; }
  .breadcrumb { padding: 0.65rem 1rem; }

  /* Hide middle items on small screens, show first and last two */
  .breadcrumb-item:not(:first-child):not(:nth-last-child(-n+2)) {
    display: none;
  }
  .br
  
  /* ═══════════════════════════════════════════════════════════════
   CSS ADDITION — Pricing nav link style
   PASTE at the bottom of /css/style.css

   Also adds the nav-pricing link style so Pricing sits cleanly
   between the nav links and the Login/Join Free buttons.
   ═══════════════════════════════════════════════════════════════ */

/* Pricing link in nav — subtle amber tint to stand out slightly */
.nav-pricing {
  color: var(--amber) !important;
  font-weight: 600 !important;
}
.nav-pricing::after {
  background: var(--amber) !important;
}
.nav-pricing:hover {
  color: #fcd34d !important;
}