/* FBC shared styles — pulled out so all pages match */
:root {
  --accent: #2242fd;
  --accent-deep: #0a1f6b;
  --bg: #fafaf7;
  --bg-alt: #f1f1ec;
  --ink: #0a0a0a;
  --ink-2: #3a3a38;
  --ink-3: #76766f;
  --rule: #d9d9d2;
  --white: #ffffff;
  --sans: "Inter", -apple-system, sans-serif;
  --mono: "Roboto Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.eyebrow { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); font-weight: 500; }
.eyebrow .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 8px; vertical-align: middle; transform: translateY(-1px); }
.display { font-family: var(--sans); font-weight: 700; line-height: 0.95; letter-spacing: -0.03em; font-size: clamp(56px, 9vw, 110px); }
.display em { font-style: normal; color: var(--accent); }
.h-section { font-family: var(--sans); font-size: clamp(36px, 4.5vw, 60px); line-height: 0.98; letter-spacing: -0.03em; font-weight: 700; }
.h-section em { font-style: normal; color: var(--accent); }
.body-lg { font-size: 18px; line-height: 1.55; color: var(--ink-2); }
.body { font-size: 15px; line-height: 1.6; color: var(--ink-2); }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* TICKER */
.ticker { background: var(--ink); color: var(--bg); padding: 10px 0; overflow: hidden; max-width: 1600px; margin: 0 auto; }
.ticker-track { display: flex; animation: tickerScroll 30s linear infinite; white-space: nowrap; font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; width: max-content; }
.ticker-track span { display: inline-flex; align-items: center; gap: 28px; margin-right: 28px; }
.ticker-track .star { color: var(--accent); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--rule); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo .name { font-family: var(--sans); font-size: 22px; letter-spacing: -0.02em; font-weight: 700; }
.nav-logo .sub { font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; margin-top: 3px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--ink-2); transition: color 0.15s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.current { color: var(--accent); font-weight: 700; }
  .nav-links a.current { font-weight: 700; }
@media (max-width: 980px) { .nav-links { gap: 22px; } .nav-links a { font-size: 13px; } }
@media (max-width: 820px) { .nav-links { gap: 16px; } .nav-links a { font-size: 12px; } .nav-logo .sub { display: none; } }
@media (max-width: 640px) { .nav-links { display: none; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-size: 14px; font-weight: 500; transition: all 0.18s; white-space: nowrap; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: var(--accent); }
.btn .arrow { display: inline-block; transition: transform 0.18s; }
.btn:hover .arrow { transform: translateX(3px); }

/* SECTION HEAD */
.sec-head { display: grid; grid-template-columns: 200px 1fr; gap: 40px; padding-top: 80px; padding-bottom: 40px; border-top: 1px solid var(--rule); }
.sec-head .num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; }
@media (max-width: 720px) { .sec-head { grid-template-columns: 1fr; gap: 20px; padding-top: 56px; } }

/* IMAGE PLACEHOLDER */
.imgph { background: var(--bg-alt); background-image: repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(10,10,10,0.04) 12px, rgba(10,10,10,0.04) 13px); border: 1px solid var(--rule); position: relative; overflow: hidden; }
.imgph::after { content: attr(data-label); position: absolute; bottom: 12px; left: 12px; font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; background: var(--bg); padding: 4px 8px; border: 1px solid var(--rule); border-radius: 999px; }

/* FOOTER */
footer { background: var(--ink); color: var(--bg); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,250,247,0.5); margin-bottom: 16px; font-weight: 500; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { font-size: 14px; color: var(--bg); }
.footer-grid ul a:hover { color: var(--accent); }

/* SOCIAL ICONS */
.ico { display: inline-block; width: 1em; height: 1em; vertical-align: -0.15em; fill: currentColor; flex-shrink: 0; }
.footer-grid ul a { display: inline-flex; align-items: center; gap: 8px; }
.footer-grid ul a .ico { width: 14px; height: 14px; opacity: 0.85; }
.footer-brand .footer-mark { width: 120px; height: auto; display: block; }
.footer-brand .name { display: none; }
.footer-brand p { font-size: 14px; color: rgba(250,250,247,0.6); line-height: 1.55; max-width: 360px; margin-top: 12px; }
.footer-meta { display: flex; justify-content: space-between; padding-top: 28px; font-family: var(--mono); font-size: 11px; color: rgba(250,250,247,0.5); letter-spacing: 0.05em; }
@media (max-width: 540px) { .footer-meta { flex-direction: column; gap: 12px; align-items: flex-start; } }
