/* ===========================================================
   Podiumblock Capital — Design System v2
   Aligned with Blocks Holding interaction language (Blockstone-style)
   Accent: steel blue — capital markets / liquidity / venture
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #080808; color: #fff;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.35); }

:root {
  --accent: #ffffff;
  --accent-soft: rgba(255,255,255,0.55);
  --accent-dim: rgba(255,255,255,0.08);
}

@keyframes progressBar { from { width: 0%; } to { width: 100%; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.fade-in { opacity: 0; transform: translateY(32px); transition: opacity 0.9s ease, transform 0.9s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* NAV */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; transition: background 0.5s, border-color 0.5s;
}
nav.site-nav.scrolled { background: rgba(8,8,8,0.97); border-bottom: 0.5px solid rgba(255,255,255,0.14); backdrop-filter: blur(20px); }
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-brand img { height: 28px; width: auto; }
.nav-brand-name { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); line-height: 1; font-family: 'Fraunces', serif; }
.nav-brand-sub { font-size: 9px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-soft); margin-top: 2px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.34); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: rgba(255,255,255,0.9); }
.nav-cta { color: var(--accent) !important; border: 0.5px solid rgba(255,255,255,0.4); padding: 8px 18px; border-radius: 1px; transition: all 0.2s !important; }
.nav-cta:hover { border-color: var(--accent) !important; color: #080808 !important; background: var(--accent); }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
#mobileMenu { position: fixed; inset: 0; background: rgba(6,6,6,0.98); z-index: 300; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
#mobileMenu.open { display: flex; }
#mobileMenu a { font-family: 'Fraunces', serif; font-size: 24px; color: rgba(255,255,255,0.7); text-decoration: none; }
#mobileMenu a.active { color: #fff; }
#mobileMenu .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }

/* HERO CAROUSEL */
.hero { position: relative; height: 92vh; min-height: 580px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; transition: opacity 0.9s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: all; }
.slide-bg { position: absolute; inset: 0; }
.slide-bg-1 { background: #080808; }
.slide-bg-2 { background: #080808; }
.slide-bg-3 { background: #080808; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, rgba(8,8,8,0.5) 60%, rgba(8,8,8,1) 100%); z-index: 1; }
.hero-line { position: absolute; left: 52px; top: 0; bottom: 0; width: 0.5px; background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.35) 30%, rgba(255,255,255,0.15) 70%, transparent 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; padding: 0 72px 88px; max-width: 860px; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 0.5px; background: var(--accent-soft); }
.hero-h1 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(46px, 7.5vw, 92px); font-weight: 500; line-height: 1.02; letter-spacing: -0.02em; color: #fff; }
.hero-h1 em { color: var(--accent-soft); font-style: italic; font-weight: 400; }
.hero-p { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-top: 26px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.btn-accent { background: var(--accent); color: #080808; border: none; padding: 14px 32px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; border-radius: 1px; transition: opacity 0.2s; text-decoration: none; display: inline-block; }
.btn-accent:hover { opacity: 0.82; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.62); border: 0.5px solid rgba(255,255,255,0.18); padding: 14px 32px; font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; border-radius: 1px; transition: border-color 0.2s, color 0.2s; text-decoration: none; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: #fff; }

.carousel-controls { position: absolute; bottom: 34px; right: 52px; z-index: 10; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot { width: 20px; height: 1.5px; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; border: none; padding: 0; position: relative; overflow: hidden; }
.carousel-dot.active { background: rgba(255,255,255,0.18); width: 44px; }
.carousel-dot.active::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; background: var(--accent); animation: progressBar 5s linear forwards; }
.carousel-nav { display: flex; gap: 10px; }
.carousel-btn { width: 36px; height: 36px; border: 0.5px solid rgba(255,255,255,0.3); background: transparent; color: var(--accent); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; border-radius: 1px; font-size: 14px; }
.carousel-btn:hover { border-color: var(--accent); background: rgba(255,255,255,0.08); }

/* TICKER */
.ticker-strip { background: rgba(255,255,255,0.05); border-top: 0.5px solid rgba(255,255,255,0.12); border-bottom: 0.5px solid rgba(255,255,255,0.12); overflow: hidden; height: 52px; display: flex; align-items: center; }
.ticker-track { display: flex; align-items: center; animation: ticker 32s linear infinite; white-space: nowrap; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 36px; border-right: 0.5px solid rgba(255,255,255,0.12); }
.ticker-val { font-size: 14px; font-weight: 400; color: var(--accent); letter-spacing: -0.01em; font-family: 'Fraunces', serif; }
.ticker-lbl { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* STATEMENT */
.statement { border-bottom: 0.5px solid rgba(255,255,255,0.12); padding: 34px 72px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.statement-text { font-family: 'Fraunces', Georgia, serif; font-size: clamp(16px, 1.9vw, 21px); font-weight: 400; color: rgba(255,255,255,0.34); letter-spacing: 0.005em; line-height: 1.5; font-style: italic; }
.statement-text strong { color: var(--accent); font-weight: 500; font-style: normal; }
.statement-rule { flex: 1; height: 0.5px; background: rgba(255,255,255,0.12); min-width: 40px; }

/* SECTIONS */
.psection { padding: 100px 72px; }
.pinner { max-width: 1120px; margin: 0 auto; }
.peyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.peyebrow::before { content: ''; display: block; width: 20px; height: 0.5px; background: var(--accent-soft); }
.pdivider { height: 0.5px; background: rgba(255,255,255,0.06); margin: 0 72px; }

/* TYPE */
.h2-serif { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -0.02em; color: #fff; }
.h2-serif em { color: var(--accent-soft); font-style: italic; font-weight: 400; }
.body-text { font-size: 14px; color: rgba(255,255,255,0.44); line-height: 1.85; }

/* STAT GRID */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 0.5px solid rgba(255,255,255,0.14); border-left: 0.5px solid rgba(255,255,255,0.14); }
.stat-block { padding: 28px 20px; border-right: 0.5px solid rgba(255,255,255,0.14); border-bottom: 0.5px solid rgba(255,255,255,0.14); position: relative; overflow: hidden; transition: background 0.3s; text-align: center; }
.stat-block:hover { background: rgba(255,255,255,0.04); }
.stat-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
.stat-block:hover::before { transform: scaleX(1); }
.stat-val { font-family: 'Fraunces', Georgia, serif; font-size: 26px; font-weight: 500; color: var(--accent); letter-spacing: -0.02em; display: block; }
.stat-lbl { font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; display: block; }

/* PANEL GRID (cards) */
.panels-grid { display: grid; gap: 10px; }
.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pcard { background: rgba(255,255,255,0.02); border: 0.5px solid rgba(255,255,255,0.07); padding: 36px 28px; position: relative; overflow: hidden; transition: background 0.35s, border-color 0.35s, transform 0.35s; border-radius: 1px; }
.pcard:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.28); transform: translateY(-3px); }
.pcard-accent { position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0.3)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.pcard:hover .pcard-accent { transform: scaleX(1); }
.pcard-icon { width: 42px; height: 42px; margin-bottom: 20px; border: 0.5px solid rgba(255,255,255,0.25); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 16px; font-weight: 600; font-family: 'Fraunces', serif; transition: all 0.3s; }
.pcard:hover .pcard-icon { border-color: var(--accent); background: rgba(255,255,255,0.08); }
.pcard-num { font-size: 11px; color: var(--accent-soft); letter-spacing: 0.18em; font-style: italic; margin-bottom: 18px; font-family: 'Fraunces', serif; }
.pcard-title { font-size: 16px; font-weight: 500; color: #e4e8ea; margin-bottom: 12px; font-family: 'Fraunces', serif; }
.pcard-body { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; }
.pcard-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 20px; }
.ptag { font-size: 9px; padding: 4px 10px; border-radius: 1px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border: 0.5px solid rgba(255,255,255,0.2); letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; }
.pcard:hover .ptag { background: rgba(255,255,255,0.14); color: var(--accent); }

/* checklist */
.check-list { list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 13.5px; color: rgba(255,255,255,0.55); border-bottom: 0.5px solid rgba(255,255,255,0.05); }
.check-list li::before { content: '✓'; color: var(--accent); font-size: 12px; }

/* MARKER (numbered roman/digit badge) */
.marker { width: 38px; height: 38px; border: 0.5px solid rgba(255,255,255,0.3); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--accent); }

/* PHILOSOPHY GRID */
.philosophy-sec { background: #050505; border-top: 0.5px solid rgba(255,255,255,0.1); border-bottom: 0.5px solid rgba(255,255,255,0.1); }
.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.phil-item { padding: 42px 34px; border-top: 0.5px solid rgba(255,255,255,0.06); transition: background 0.3s; }
.phil-item:hover { background: rgba(255,255,255,0.03); }
.phil-item:nth-child(odd) { border-right: 0.5px solid rgba(255,255,255,0.06); }
.phil-sym { font-family: 'Fraunces', Georgia, serif; font-size: 11px; color: var(--accent-soft); letter-spacing: 0.16em; font-style: italic; margin-bottom: 16px; }
.phil-title { font-size: 16px; font-weight: 500; color: #d2dade; margin-bottom: 12px; font-family: 'Fraunces', serif; }
.phil-body { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.75; }

/* INSIGHTS / NEWS CARDS + MODAL */
.insights-sec { background: #050505; border-top: 0.5px solid rgba(255,255,255,0.1); }
.insights-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 10px; }
.insight-card { background: rgba(255,255,255,0.02); border: 0.5px solid rgba(255,255,255,0.07); overflow: hidden; position: relative; transition: border-color 0.3s; cursor: pointer; display: flex; flex-direction: column; }
.insight-card:hover { border-color: rgba(255,255,255,0.28); }
.insight-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.insight-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.insight-card:hover .insight-card-img img { transform: scale(1.04); }
.insight-card-body { padding: 22px 22px 50px; flex: 1; display: flex; flex-direction: column; background: rgba(12,12,12,0.95); }
.insight-tag { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.insight-title { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.88); line-height: 1.5; flex: 1; font-family: 'Fraunces', serif; }
.insight-card.featured .insight-title { font-size: 18px; }
.insight-date { font-size: 10px; color: rgba(255,255,255,0.36); margin-top: 14px; letter-spacing: 0.04em; }
.insight-arrow { position: absolute; bottom: 18px; right: 18px; width: 28px; height: 28px; border: 0.5px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 11px; transition: all 0.25s; border-radius: 1px; }
.insight-card:hover .insight-arrow { background: var(--accent); color: #080808; border-color: var(--accent); }

.modal-overlay { position: fixed; inset: 0; z-index: 500; background: rgba(4,4,4,0.88); backdrop-filter: blur(6px); display: flex; align-items: flex-start; justify-content: center; padding: 56px 24px; overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: #0c0c0c; border: 0.5px solid rgba(255,255,255,0.2); max-width: 720px; width: 100%; border-radius: 2px; transform: translateY(24px); transition: transform 0.4s ease; overflow: hidden; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-hero { width: 100%; aspect-ratio: 16/7; overflow: hidden; position: relative; background: #0a0a0a; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-close { position: absolute; top: 18px; right: 18px; z-index: 2; width: 36px; height: 36px; border-radius: 1px; background: rgba(8,8,8,0.7); border: 0.5px solid rgba(255,255,255,0.35); color: var(--accent); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-close:hover { background: var(--accent); color: #080808; }
.modal-body { padding: 38px 42px 46px; }
.modal-tag { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.modal-title { font-family: 'Fraunces', Georgia, serif; font-size: clamp(24px, 3.6vw, 34px); font-weight: 500; color: #fff; line-height: 1.22; margin-bottom: 12px; }
.modal-meta { font-size: 11px; color: rgba(255,255,255,0.32); letter-spacing: 0.03em; margin-bottom: 30px; padding-bottom: 26px; border-bottom: 0.5px solid rgba(255,255,255,0.14); }
.modal-text p { font-size: 14.5px; color: rgba(255,255,255,0.62); line-height: 1.9; margin-bottom: 18px; }
.modal-text h3 { font-family: 'Fraunces', Georgia, serif; font-size: 19px; font-weight: 500; color: #cfd8db; margin: 28px 0 12px; }
.modal-text strong { color: var(--accent); font-weight: 600; }
body.modal-locked { overflow: hidden; }

/* PARENT STRIP */
.parent-strip { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 30px 72px; border-top: 0.5px solid rgba(255,255,255,0.06); border-bottom: 0.5px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.01); }
.parent-left { font-size: 11px; color: rgba(255,255,255,0.24); letter-spacing: 0.1em; text-transform: uppercase; }
.parent-right { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.parent-right span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.32); transition: color 0.2s; }
.parent-right:hover span { color: rgba(255,255,255,0.62); }

/* CONTACT / FORM */
.contact-sec { position: relative; overflow: hidden; background: #050505; border-top: 0.5px solid rgba(255,255,255,0.12); padding: 100px 72px 0; }
.contact-inner { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; }
.contact-h2 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(36px, 5.5vw, 68px); font-weight: 500; letter-spacing: -0.02em; color: #fff; line-height: 1.06; margin-bottom: 44px; }
.contact-h2 em { color: var(--accent-soft); font-style: italic; font-weight: 400; }
.field-input { background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.22); color: #fff; padding: 14px 18px; font-size: 13.5px; border-radius: 1px; outline: none; transition: border-color 0.2s; font-family: 'Inter', sans-serif; width: 100%; }
.field-input::placeholder { color: rgba(255,255,255,0.28); }
.field-input:focus { border-color: var(--accent); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.c-card { background: rgba(255,255,255,0.02); border: 0.5px solid rgba(255,255,255,0.12); border-radius: 1px; padding: 22px 24px; transition: background 0.3s, border-color 0.3s; }
.c-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.28); }
.c-label { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 8px; }
.c-val { font-size: 13px; color: rgba(255,255,255,0.55); }

/* FOOTER */
.site-footer { background: #050505; padding: 64px 72px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-about img { height: 32px; margin-bottom: 16px; }
.footer-about p { font-size: 12.5px; color: rgba(255,255,255,0.32); line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.42); text-decoration: none; padding: 5px 0; transition: color 0.2s; }
.footer-link:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 0.5px solid rgba(255,255,255,0.18); border-radius: 1px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.38); text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.05); }
.footer-social a svg { display: block; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 0.5px solid rgba(255,255,255,0.1); font-size: 11px; color: rgba(255,255,255,0.22); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,0.32); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* SCROLL TOP */
.scroll-top { position: fixed; bottom: 32px; right: 32px; z-index: 100; width: 40px; height: 40px; border: 0.5px solid rgba(255,255,255,0.35); background: rgba(8,8,8,0.85); backdrop-filter: blur(10px); color: var(--accent); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; border-radius: 1px; opacity: 0; transform: translateY(10px); transition: all 0.3s; }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { border-color: var(--accent); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .cols-2, .cols-3, .cols-4, .stats-grid, .phil-grid, .insights-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav.site-nav { padding: 0 22px; }
  .psection { padding: 64px 24px; }
  .hero-content { padding: 0 24px 64px; }
  .hero-line { display: none; }
  .cols-2, .cols-3, .cols-4, .phil-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .statement, .parent-strip { padding: 22px 24px; flex-direction: column; gap: 14px; }
  .contact-sec { padding: 64px 24px 0; }
  .carousel-controls { right: 22px; bottom: 24px; }
  .ticker-strip { display: none; }
  .site-footer { padding: 48px 24px 0; }
}
