/* ──────────────────────────────────────────────────────────────────────────── AKQA · Aleph SG Studio — Weekly Business Journal Design Language: "Editorial Tech" — high-contrast serif, editorial grid ──────────────────────────────────────────────────────────────────────────── */ @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap'); /* ── TOKENS ──────────────────────────────────────────────────────────────── */ :root { --black: #0A0A0A; --white: #FFFFFF; --cream: #F5F2EC; --cream-dark: #EDE9E1; --charcoal: #2A2A2A; --dgray: #707070; --mgray: #C8C4BC; --lgray: #EDEAE4; --terra: #A05A42; --stone: #8A8078; --red: #B52020; --amber: #A86820; --green: #2A6B3A; --active: #1A4A8A; --red-bg: #FBF0EE; --amber-bg: #FAF6EC; --green-bg: #EFF6F1; --active-bg: #EBF1FA; --neutral-bg: #F5F2EC; --serif: 'Cormorant Garamond', Georgia, serif; --sans: 'Inter', Arial, sans-serif; --radius: 2px; --shadow: 0 1px 8px rgba(10,10,10,0.06); } /* ── RESET / BASE ────────────────────────────────────────────────────────── */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { background: var(--cream); color: var(--charcoal); font-family: var(--sans); font-size: 14px; line-height: 1.55; -webkit-font-smoothing: antialiased; } /* ── HERO ────────────────────────────────────────────────────────────────── */ .hero { background: var(--black); color: var(--white); padding: 72px 64px 64px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; min-height: 280px; position: relative; } .hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.08); } .hero-left { display: flex; flex-direction: column; gap: 16px; } .hero-brand { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; color: rgba(255,255,255,0.45); text-transform: uppercase; } .hero-title { font-family: var(--serif); font-size: clamp(48px, 7vw, 84px); font-weight: 300; line-height: 0.95; letter-spacing: -0.01em; color: var(--white); } .hero-title span { display: block; } .hero-subtitle { display: flex; align-items: center; gap: 20px; margin-top: 8px; } .hero-week { font-family: var(--serif); font-size: 22px; font-weight: 300; color: rgba(255,255,255,0.75); letter-spacing: 0.01em; } .hero-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.25); } .hero-meta { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; } .hero-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; } .hero-studio { font-family: var(--serif); font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; } .hero-generated { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; } /* ── NAV ──────────────────────────────────────────────────────────────────── */ .nav { background: var(--black); border-top: 1px solid rgba(255,255,255,0.07); position: sticky; top: 0; z-index: 100; padding: 0 64px; display: flex; align-items: stretch; gap: 0; overflow-x: auto; } /* Entity tabs (left cluster) */ .nav-entities { display: flex; align-items: stretch; gap: 0; flex-shrink: 0; } .nav-entity-tab { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); text-decoration: none; padding: 14px 16px; border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.2s, border-color 0.2s; } .nav-entity-tab:hover:not(.disabled) { color: rgba(255,255,255,0.85); } .nav-entity-tab.active { color: var(--white); border-bottom-color: var(--entity-color, var(--terra)); } .nav-entity-tab.disabled { color: rgba(255,255,255,0.18); cursor: default; } /* Vertical divider between entity tabs and section links */ .nav-divider-v { width: 1px; background: rgba(255,255,255,0.08); margin: 8px 12px; flex-shrink: 0; } /* Section anchor links (middle) */ .nav-sections { display: flex; align-items: stretch; flex: 1; } .nav-section-link { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; padding: 14px 14px; border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.2s, border-color 0.2s; } .nav-section-link:hover { color: rgba(255,255,255,0.8); border-bottom-color: var(--terra); } /* Week navigator (right) */ .week-nav { display: flex; align-items: center; gap: 0; margin-left: auto; flex-shrink: 0; } .week-nav-btn { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); text-decoration: none; padding: 14px 12px; transition: color 0.2s; white-space: nowrap; } .week-nav-btn:hover:not(.disabled) { color: rgba(255,255,255,0.85); } .week-nav-btn.disabled { color: rgba(255,255,255,0.15); cursor: default; } .week-nav-current { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); padding: 0 8px; white-space: nowrap; } /* ── LAYOUT ──────────────────────────────────────────────────────────────── */ .page { max-width: 1200px; margin: 0 auto; padding: 0 64px 80px; } /* ── SECTION WRAPPER ─────────────────────────────────────────────────────── */ .section { margin-top: 56px; } /* ── SECTION BAR (AKQA full-bleed black header) ────────────────────────── */ .section-bar { background: var(--black); color: var(--white); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; padding: 14px 20px; margin: 0 -64px; /* bleed to page edge */ margin-bottom: 28px; display: flex; align-items: center; justify-content: space-between; } .section-bar-right { font-weight: 400; color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 0.1em; } /* ── PRIORITIES ──────────────────────────────────────────────────────────── */ .priorities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--mgray); border-radius: var(--radius); overflow: hidden; } .priority-col { background: var(--white); padding: 24px 28px; } .priority-col-header { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dgray); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--lgray); } .priority-item { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--lgray); } .priority-item:last-child { border-bottom: none; } .priority-num { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1; min-width: 24px; margin-top: 1px; } .priority-text { font-size: 13.5px; line-height: 1.5; color: var(--charcoal); } /* ── SCORECARD ────────────────────────────────────────────────────────────── */ .scorecard-table { width: 100%; border-collapse: collapse; background: var(--white); } .scorecard-table th { background: var(--lgray); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dgray); padding: 10px 14px; text-align: left; border: 1px solid var(--mgray); } .scorecard-table td { padding: 12px 14px; border: 1px solid var(--mgray); vertical-align: top; font-size: 13.5px; line-height: 1.5; } .scorecard-table tr:hover td { background: var(--cream); } .pillar-cell { font-weight: 600; font-size: 13px; background: var(--lgray) !important; min-width: 180px; } /* ── RAG STATUS ───────────────────────────────────────────────────────────── */ .rag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; white-space: nowrap; } .rag-dot { font-size: 9px; } .rag.red { background: var(--red-bg); color: var(--red); } .rag.amber { background: var(--amber-bg); color: var(--amber); } .rag.green { background: var(--green-bg); color: var(--green); } .rag.active { background: var(--active-bg); color: var(--active); } .rag.neutral{ background: var(--lgray); color: var(--dgray); } /* ── KPI TILES ────────────────────────────────────────────────────────────── */ .kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--mgray); border-radius: var(--radius); overflow: hidden; margin-bottom: 2px; } .kpi-tile { background: var(--cream); padding: 24px 20px 20px; display: flex; flex-direction: column; gap: 6px; } .kpi-tile.red { background: var(--red-bg); } .kpi-tile.amber { background: var(--amber-bg); } .kpi-tile.green { background: var(--green-bg); } .kpi-tile.active { background: var(--active-bg); } .kpi-tile.neutral{ background: var(--lgray); } .kpi-label { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dgray); } .kpi-value { font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; letter-spacing: -0.01em; } .kpi-tile.red .kpi-value { color: var(--red); } .kpi-tile.amber .kpi-value { color: var(--amber); } .kpi-tile.green .kpi-value { color: var(--green); } .kpi-tile.active .kpi-value { color: var(--active); } .kpi-tile.neutral .kpi-value { color: var(--charcoal); } .kpi-detail { font-size: 12px; color: var(--dgray); line-height: 1.4; } /* ── PROGRESS BARS ──────────────────────────────────────────────────────── */ .progress-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--mgray); margin-bottom: 2px; border-radius: var(--radius); overflow: hidden; } .progress-item { background: var(--white); padding: 16px 20px; } .progress-label { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dgray); margin-bottom: 10px; } .progress-bar-track { width: 100%; height: 6px; background: var(--lgray); border-radius: 1px; overflow: hidden; margin-bottom: 6px; } .progress-bar-fill { height: 100%; border-radius: 1px; transition: width 1s cubic-bezier(0.4,0,0.2,1); width: 0%; /* animated in via JS */ } .progress-detail { font-size: 12px; color: var(--dgray); display: flex; justify-content: space-between; } .progress-pct { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--charcoal); } /* ── DETAIL TABLES ───────────────────────────────────────────────────────── */ .detail-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 13px; } .detail-table th { background: var(--lgray); font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dgray); padding: 10px 14px; text-align: left; border: 1px solid var(--mgray); white-space: nowrap; } .detail-table td { padding: 11px 14px; border: 1px solid var(--mgray); vertical-align: top; line-height: 1.5; } .detail-table tr:nth-child(even) td { background: #FDFCFA; } .detail-table tr:hover td { background: var(--cream); } .item-label { font-weight: 600; font-size: 13px; background: var(--lgray) !important; white-space: nowrap; } /* ── STATS TILES (People, etc.) ──────────────────────────────────────────── */ .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--mgray); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; } .stat-tile { background: var(--cream); padding: 24px 24px 20px; display: flex; flex-direction: column; gap: 6px; } .stat-tile.red { background: var(--red-bg); } .stat-tile.amber { background: var(--amber-bg); } .stat-tile.green { background: var(--green-bg); } .stat-tile.active { background: var(--active-bg); } .stat-label { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dgray); } .stat-value { font-family: var(--serif); font-size: 52px; font-weight: 600; line-height: 1; } .stat-tile.red .stat-value { color: var(--red); } .stat-tile.amber .stat-value { color: var(--amber); } .stat-tile.green .stat-value { color: var(--green); } .stat-tile.active .stat-value { color: var(--active); } .stat-detail { font-size: 12px; color: var(--dgray); line-height: 1.4; } /* ── PIPELINE TABLE (New Biz) ─────────────────────────────────────────────── */ .pipeline-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 13px; } .pipeline-table th { background: var(--lgray); font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dgray); padding: 10px 14px; text-align: left; border: 1px solid var(--mgray); } .pipeline-table td { padding: 11px 14px; border: 1px solid var(--mgray); vertical-align: top; line-height: 1.5; } .pipeline-table tr:nth-child(even) td { background: #FDFCFA; } .pipeline-table tr:hover td { background: var(--cream); } /* ── GROWTH STUDIO THREADS ───────────────────────────────────────────────── */ .threads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; background: var(--mgray); border-radius: var(--radius); overflow: hidden; margin-bottom: 2px; } .thread-card { background: var(--white); padding: 20px 24px; display: flex; flex-direction: column; gap: 8px; } .thread-card-header { display: flex; align-items: center; justify-content: space-between; } .thread-card-name { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dgray); } .thread-card-source { font-size: 10px; color: var(--stone); letter-spacing: 0.08em; } .thread-card-summary { font-size: 13.5px; line-height: 1.55; color: var(--charcoal); } .thread-card-signals { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; } .thread-signal { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; background: var(--lgray); color: var(--dgray); } .thread-signal.flag { background: var(--amber-bg); color: var(--amber); } .thread-signal.risk { background: var(--red-bg); color: var(--red); } .thread-signal.win { background: var(--green-bg); color: var(--green); } /* ── LEADERSHIP PULSE ────────────────────────────────────────────────────── */ .pulse-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px; background: var(--mgray); border-radius: var(--radius); overflow: hidden; margin-bottom: 2px; } .pulse-card { background: var(--white); padding: 20px 24px; display: flex; flex-direction: column; gap: 6px; } .pulse-card-person { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--charcoal); } .pulse-card-role { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dgray); } .pulse-card-summary { font-size: 13px; line-height: 1.55; color: var(--charcoal); } .pulse-card-rag { margin-top: 4px; } /* ── CHART BARS (P&L Visual) ─────────────────────────────────────────────── */ .chart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--mgray); border-radius: var(--radius); overflow: hidden; margin-bottom: 2px; } .chart-panel { background: var(--white); padding: 24px; } .chart-panel-title { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dgray); margin-bottom: 16px; } .bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 120px; } .bar-chart-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; } .bar-chart-fill { width: 100%; border-radius: 2px 2px 0 0; transition: height 1s cubic-bezier(0.4,0,0.2,1); background: var(--active); } .bar-chart-fill.budget { background: var(--lgray); } .bar-chart-fill.actual { background: var(--active); } .bar-chart-fill.forecast { background: var(--amber); opacity: 0.7; } .bar-chart-label { font-size: 10px; color: var(--dgray); text-align: center; } /* ── FOOTER ───────────────────────────────────────────────────────────────── */ .footer { background: var(--black); color: rgba(255,255,255,0.3); font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em; padding: 24px 64px; display: flex; justify-content: space-between; align-items: center; margin-top: 80px; } .footer-sources { display: flex; gap: 16px; } .footer-source { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 2px; font-size: 10px; letter-spacing: 0.12em; } /* ── RESPONSIVE ──────────────────────────────────────────────────────────── */ @media (max-width: 900px) { .hero, .page { padding-left: 28px; padding-right: 28px; } .nav { padding: 0 28px; } .section-bar { margin: 0 -28px; margin-bottom: 24px; } .priorities-grid, .kpi-grid, .progress-grid, .stats-grid, .threads-grid, .pulse-grid, .chart-grid { grid-template-columns: 1fr; } .hero { grid-template-columns: 1fr; } .hero-right { align-items: flex-start; } .footer { flex-direction: column; gap: 16px; padding: 24px 28px; } } /* ── PRINT ────────────────────────────────────────────────────────────────── */ @media print { .nav { display: none; } .section { page-break-inside: avoid; } }
