/*
==========================================================
BitPangea Framework v1.0
Institutional Design System

Copyright © 2026 BitPangea

Provides:
• Theme
• Layout
• Typography
• Navigation
• Footer
• Components
• Utilities
==========================================================
*/

/* ==========================================================
   BitPangea Framework

   Version: 1.0.0
   Released: July 4, 2026

   Changelog
   ----------
   1.0.0
   - Initial Framework release
   - Shared header
   - Shared footer
   - Shared layout
   - Shared typography
   - Shared components
   - Identity-based navigation
   ========================================================== */

/* ==========================================================
   01. Theme Variables
   ========================================================== */

:root {
  --bp-bg: #02050a;
  --bp-black: #000000;
  --bp-black-soft: #05070b;

  --bp-gold: #d4a938;
  --bp-cyan: #00c8d7;
  --bp-white: #ffffff;

  --bp-muted: rgba(255, 255, 255, 0.74);
  --bp-line: rgba(212, 169, 56, 0.18);

  --bp-panel: rgba(0, 0, 0, 0.50);
  --bp-panel-soft: rgba(0, 0, 0, 0.32);

  --bp-header-bg: rgba(0, 0, 0, 0.78);
  --bp-footer-bg: rgba(0, 0, 0, 0.72);
}

/* ==========================================================
   02. Shared Layout Utilities
   ========================================================== */

.bp-page {
  width: 100%;
  padding: 150px 28px 90px;
}

.bp-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 58px;
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid var(--bp-line);
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
}

.bp-section {
  margin-top: 34px;
  padding: 34px 34px 30px;
  background: var(--bp-panel-soft);
  border: 1px solid rgba(212, 169, 56, 0.13);
}

.bp-section + .bp-section {
  margin-top: 26px;
}

.bp-divider {
  width: 64px;
  height: 2px;
  background: var(--bp-gold);
  margin: 34px 0 42px;
  box-shadow: 0 0 14px rgba(212, 169, 56, 0.65);
}

@media (max-width: 768px) {
  .bp-page {
    padding: 178px 16px 60px;
  }

  .bp-container {
    padding: 36px 24px 46px;
  }

  .bp-section {
    padding: 28px 22px;
  }
}

/* ==========================================================
   03. Shared Typography
   ========================================================== */

.bp-eyebrow{

    color:var(--bp-cyan);

    font-size:12px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:22px;
}

.bp-title{

    color:white;

    font-size:clamp(42px,7vw,76px);

    line-height:1.02;

    letter-spacing:7px;

    text-transform:uppercase;

    margin-bottom:20px;

    text-shadow:0 0 24px rgba(0,0,0,.92);
}

.bp-subtitle{

    color:var(--bp-gold);

    font-size:20px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:28px;
}

.bp-intro{

    color:rgba(255,255,255,.88);

    font-size:20px;

    max-width:820px;

    margin-bottom:32px;
}

.bp-heading{

    margin-bottom:18px;

    font-size:24px;

    letter-spacing:4px;

    text-transform:uppercase;

    color:white;
}

.bp-text{

    color:white;

    font-size:17px;

    line-height:1.72;
}

/* ==========================================================
   04. Global Header
   ========================================================== */

.bp-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    min-height: 86px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 32px;

    padding: 18px 60px;

    background: var(--bp-header-bg);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--bp-line);

    z-index: 5000;
}

/* ------------------------------------- */

.bp-brand {

    text-decoration: none;

    color: var(--bp-white);

    white-space: nowrap;

    flex: 0 0 auto;

    letter-spacing: 9px;

    font-size: 24px;

    font-weight: 400;

    text-transform: uppercase;
}

.bp-brand span {

    display: block;

    margin-top: 4px;

    color: var(--bp-gold);

    font-size: 11px;

    letter-spacing: 4px;

    text-transform: uppercase;
}

/* ------------------------------------- */

.bp-nav {

    display: flex;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 18px 24px;
}

.bp-nav a {
  position: relative;
  display: inline-block;

  color: rgba(212,169,56,.92);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  transition: .25s;
}

.bp-nav a:hover {

    color: white;

    text-shadow: 0 0 10px rgba(212,169,56,.55);
}

/* ------------------------------------- */

.bp-nav a.active,
.bp-nav a[aria-current="page"] {
  position: relative;
  color: var(--bp-white);
  text-shadow: 0 0 12px rgba(212, 169, 56, .65);
}

.bp-nav a.active::after,
.bp-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: calc(100% + 14px);
  height: 1px;
  transform: translateX(-50%);
  background: var(--bp-gold);
  box-shadow: 0 0 10px rgba(212, 169, 56, .75);
}

/* ------------------------------------- */

@media (max-width:980px){

.bp-header{

    flex-direction:column;

    align-items:flex-start;

    padding:20px 24px;
}

.bp-nav{

    justify-content:flex-start;
}

}

/* ------------------------------------- */

@media (max-width:768px){

.bp-brand{

    font-size:20px;

    letter-spacing:6px;
}

.bp-brand span{

    font-size:10px;

    letter-spacing:3px;
}

.bp-nav{

    gap:14px 18px;
}

.bp-nav a{

    font-size:10px;

    letter-spacing:2px;
}

}

/* ==========================================================
   05. Global Footer
   ========================================================== */


.bp-footer {
  margin-top: 120px;
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 191, 0, .15);
  background: var(--bp-footer-bg);
}

.bp-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.bp-footer-links a,
.bp-footer-links a:visited {
  color: rgba(212, 169, 56, 0.9);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.bp-footer-links a:hover {
  color: var(--bp-white);
  text-shadow: 0 0 12px rgba(212, 169, 56, .6);
}

.bp-footer-divider {
  width: 120px;
  height: 1px;
  background: rgba(212, 160, 23, .35);
  margin: 24px auto;
}

.bp-footer-notice {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  line-height: 1.8;
}

.bp-footer-notice p {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bp-footer-copy {
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==========================================================
   06. Shared Components
   ========================================================== */

.bp-card {
  padding: 24px 22px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(212, 169, 56, 0.20);
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.30);
}

.bp-card-title {
  color: var(--bp-gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bp-card-text {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.bp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.bp-callout {
  padding: 30px 34px;
  background: rgba(0, 0, 0, 0.56);
  border: 1px dashed rgba(212, 169, 56, 0.30);
  color: rgba(255,255,255,.78);
}

.bp-quote {
  margin: 36px 0;
  padding: 30px 36px;
  border-left: 3px solid var(--bp-gold);
  background: rgba(0, 0, 0, 0.52);
  color: var(--bp-white);
  font-size: 25px;
  line-height: 1.45;
  letter-spacing: 1px;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.45);
}

.bp-quote-label {
  display: block;
  color: var(--bp-cyan);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bp-status {
  margin-top: 38px;
  padding: 18px 24px;
  border: 1px solid rgba(212, 169, 56, 0.38);
  color: var(--bp-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .bp-grid {
    grid-template-columns: 1fr;
  }

  .bp-quote {
    font-size: 20px;
    padding: 24px 24px;
  }
}

/* ==========================================================
   07. Shared Utilities
   ========================================================== */

.bp-center {
  text-align: center;
}

.bp-muted {
  color: var(--bp-muted);
}

.bp-gold {
  color: var(--bp-gold);
}

.bp-cyan {
  color: var(--bp-cyan);
}

.bp-uppercase {
  text-transform: uppercase;
}

.bp-no-margin {
  margin: 0;
}

.bp-soft-link,
.bp-soft-link:visited,
.bp-soft-link:active {
  color: inherit;
  text-decoration: none;
}

.bp-soft-link:hover {
  color: var(--bp-gold);
  text-shadow: 0 0 10px rgba(212,169,56,.35);
}
