:root{
  --bg:#0b0f14;
  --panel:rgba(255,255,255,0.06);
  --panel2:rgba(255,255,255,0.03);
  --text:#eef2f7;
  --muted:rgba(238,242,247,0.72);
  --line:rgba(255,255,255,0.12);

  --gold:#c9a84c;
  --goldDim:rgba(201,168,76,0.40);

  --max:1100px;
  --radius:18px;
  --shadow:0 18px 40px rgba(0,0,0,0.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Barlow, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 500px at 50% -10%, rgba(201,168,76,0.10), transparent 55%),
              radial-gradient(900px 600px at 80% 20%, rgba(255,255,255,0.04), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a.link{color:var(--gold)}
a.link:hover{text-decoration:underline}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,0.72);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 18px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 220px;
}

.brand__mark{
  width:42px; height:42px;
  object-fit:contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}

.brand__title{
  font-family:"Libre Baskerville", serif;
  font-weight:700;
  letter-spacing:0.3px;
}
.brand__sub{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.nav__links{
  display:flex; align-items:center; gap:14px;
  list-style:none; margin:0; padding:0;
}
.nav__links a{
  font-size:14px;
  color:rgba(238,242,247,0.88);
  padding:10px 10px;
  border-radius:12px;
}
.nav__links a:hover{background:rgba(255,255,255,0.04)}
.nav__links a.is-active{
  color:var(--text);
  background:rgba(201,168,76,0.10);
  border:1px solid rgba(201,168,76,0.22);
}

/* Mobile toggle (hamburger button) */
.nav__toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--line);
  background:transparent;
  border-radius:14px;
  cursor:pointer;
  position: relative;
  z-index: 9999;
}
.nav__toggle span{
  display:block;
  width:18px; height:2px;
  background:rgba(238,242,247,0.85);
  margin:4px auto;
}

/* ===  MOBILE NAV PANEL  ===
   Works with either class: .navMobile or .nav__mobile
   Both are styled identically here.                       */
.navMobile,
.nav__mobile {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  background: rgba(11,15,20,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 10px 18px 16px;
  z-index: 9998;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.navMobile.is-open,
.nav__mobile.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.navMobile a,
.nav__mobile a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(238,242,247,0.90);
  font-size: 15px;
}
.navMobile a:hover,
.nav__mobile a:hover {
  background: rgba(255,255,255,0.06);
}

body.nav-open { overflow: hidden; }

/* HERO */
.hero{
  padding:70px 0 36px;
}
.eyebrow{
  font-family:"Barlow Condensed", sans-serif;
  text-transform:uppercase;
  letter-spacing:0.16em;
  color:rgba(238,242,247,0.70);
  font-size:13px;
}
.h1{
  font-family:"Libre Baskerville", serif;
  margin:14px 0 14px;
  line-height:1.1;
  font-size:44px;
  letter-spacing:0.2px;
}
.lead{
  max-width: 860px;
  font-size:18px;
  color:rgba(238,242,247,0.86);
}

.badgeRow{
  display:flex; flex-wrap:wrap; gap:10px;
  margin:18px 0 18px;
}
.badge{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(201,168,76,0.22);
  background:rgba(201,168,76,0.08);
  color:rgba(238,242,247,0.92);
}
.badge--solid{
  background: rgba(201,168,76,0.22);
  border:1px solid rgba(201,168,76,0.40);
}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin:20px 0 10px}
.micro{margin-top:8px; color:var(--muted); font-size:13px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:600;
  font-size:14px;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn--gold{
  background: linear-gradient(135deg, rgba(201,168,76,0.95), rgba(201,168,76,0.55));
  color:#0b0f14;
  border-color: rgba(201,168,76,0.55);
}
.btn--outline{
  background: rgba(255,255,255,0.02);
  border-color: rgba(201,168,76,0.22);
  color: rgba(238,242,247,0.92);
}

/* Sections */
.section{padding:48px 0}
.section--panel{
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.sectionHead{margin-bottom:18px}
.label{
  font-family:"Barlow Condensed", sans-serif;
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-size:12px;
  color:rgba(201,168,76,0.90);
}
.h2{
  font-family:"Libre Baskerville", serif;
  margin:10px 0 10px;
  font-size:30px;
  line-height:1.15;
}
.muted{color:var(--muted); max-width: 900px}

/* Grids */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  padding:18px;
}
.card--flat{box-shadow:none; background: rgba(255,255,255,0.02)}
.card__kicker{
  font-family:"Barlow Condensed", sans-serif;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(238,242,247,0.70);
  margin-bottom:10px;
}
.h3{
  font-family:"Libre Baskerville", serif;
  margin:0 0 10px;
  font-size:18px;
}
.bullets{margin:10px 0 0; padding-left:18px; color:rgba(238,242,247,0.84)}
.bullets li{margin:6px 0}

/* CTA bar */
.ctaBar{
  margin-top:18px;
  display:flex; gap:14px;
  align-items:center; justify-content:space-between;
  padding:16px;
  border-radius:var(--radius);
  border:1px solid rgba(201,168,76,0.22);
  background: rgba(201,168,76,0.08);
}
.ctaBar__title{
  font-family:"Libre Baskerville", serif;
  font-weight:700;
}
.ctaBar__text{color:rgba(238,242,247,0.86); font-size:14px; margin-top:4px}

/* Footer — self-contained styling, same on every page (no reliance on body gradient) */
.footer{
  padding:34px 0 24px;
  border-top:1px solid var(--line);
  background: radial-gradient(ellipse 85% 120px at 50% 0%, rgba(201,168,76,0.07), transparent 70%),
              linear-gradient(180deg, rgba(18,22,30,0.98) 0%, rgba(11,15,20,0.99) 100%);
  color: var(--text);
}
.footer__grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap:16px;
}
.footer__brand{
  font-family:"Libre Baskerville", serif;
  font-size:18px;
  font-weight:700;
}
.footer__sub{color:var(--muted); margin-top:6px; font-size:13px}
.footer__desc{color:rgba(238,242,247,0.84); max-width: 520px; font-size:14px}
.footer__head{
  font-family:"Barlow Condensed", sans-serif;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:rgba(201,168,76,0.90);
  font-size:12px;
  margin-bottom:10px;
}
.footer a{display:block; padding:6px 0; color:rgba(238,242,247,0.86)}
.footer a:hover{color:var(--text); text-decoration:underline}

.footer__bottom{
  margin-top:18px;
  display:flex; gap:12px;
  justify-content:space-between;
  color:rgba(238,242,247,0.62);
  font-size:12px;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:14px;
}

/* === LOGO SIZE FIX (NAV + FOOTER) === */
.nav__logo-mark{
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.footer__logo-img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.nav__logo img{
  max-width: 48px;
  height: auto;
}

/* ═══════ FOUNDER PAGE ═══════ */

/* Hero variant with side-by-side grid */
.hero--page { padding: 50px 0 36px; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

/* text side — no extra styles needed beyond flow */
/* .hero__copy {} */

/* card side */
/* .hero__side {} */

.kicker {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(238,242,247,0.70);
  font-size: 13px;
}

.lede {
  max-width: 860px;
  font-size: 18px;
  color: rgba(238,242,247,0.86);
  margin: 0 0 10px;
}

.sub {
  color: var(--muted);
  max-width: 900px;
}

/* Chips (badge-like tags) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.chip {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.22);
  background: rgba(201,168,76,0.08);
  color: rgba(238,242,247,0.92);
}

.btnRow { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 10px; }

/* Profile card */
.card--profile { background: rgba(255,255,255,0.04); }

.profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.profile__img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.30);
}
.profile__name {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-size: 16px;
}
.profile__role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 14px 0;
}

.quote {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: rgba(238,242,247,0.88);
  line-height: 1.5;
  margin: 10px 0;
}

.note {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0;
}

/* Generic grid helpers (founder page uses .grid.grid--2 / .grid--3) */
.grid { display: grid; gap: 14px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Media card (image + text side by side) */
/* inherits .card */
/* .card--media {} */

.mediaRow {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.mediaImg {
  width: 120px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.mediaCopy { flex: 1; }
.mediaLabel {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: rgba(238,242,247,0.70);
  margin-bottom: 8px;
}

/* Nav active state (founder page uses .active instead of .is-active) */
.nav__links a.active,
.nav__links a.is-active {
  color: var(--text);
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.22);
}

/* Nav CTA button variant */
.nav__cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.95), rgba(201,168,76,0.55));
  color: #0b0f14 !important;
  border-color: rgba(201,168,76,0.55);
  font-weight: 600;
}

/* Nav logo (founder page naming) */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.nav__logo-title {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.nav__logo-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 920px){
  .grid3, .grid--3{grid-template-columns:1fr}
  .grid2, .grid--2{grid-template-columns:1fr}
  .hero__grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column; gap:6px}
  .h1{font-size:36px}
  .ctaBar{flex-direction:column; text-align:center}
  .mediaRow{flex-direction:column}
  .mediaImg{width:100%; max-width:200px}
  .profile__img{width:60px; height:60px}
}

@media (max-width: 840px){
  .nav__links{display:none}
  .nav__toggle{display:block}
}
<p><a href="https://sagacious-training.neocities.org" style="color:#4CAF50; font-weight:bold;">→ Sonic Architect Portal (Training Hub)</a></p>
