@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&display=swap');

:root {
  --ink: #15141c;
  --muted: #6b6674;
  --paper: #f7f1e7;
  --paper2: #fffbf4;
  --cream: #efe6d8;
  --line: rgba(21,20,28,.13);
  --blue: #0c62b4;
  --gold: #e0b21b;
  --red: #c52126;
  --green: #13914a;
  --shadow: 0 24px 70px rgba(21,20,28,.13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(224,178,27,.12), transparent 32%),
    linear-gradient(180deg, #fbf6ed 0%, #fffaf2 42%, #f7f1e7 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,251,244,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-left-color: var(--green);
  border-right-color: var(--red);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 700;
  font-size: 12px;
  background: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  color: var(--ink) !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255,255,255,.7);
}

main { overflow: hidden; }
.container, section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
  padding: 70px 0 86px;
}
.kicker, .eyebrow, .page-label, .meta, .button, .tag {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 22px;
}
.kicker:before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue), var(--red));
}
h1, h2, h3, .tagline, .page-title, .quote-text {
  font-family: "Newsreader", Georgia, serif;
}
h1 {
  margin: 0 0 24px;
  font-size: clamp(58px, 8vw, 108px);
  line-height: .92;
  letter-spacing: -.058em;
  font-weight: 600;
}
h1 span { display: block; }
.tagline {
  margin: 0 0 24px;
  max-width: 760px;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 650;
}
.lead {
  margin: 0 0 34px;
  max-width: 690px;
  font-size: 20px;
  line-height: 1.65;
  color: #373340;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(21,20,28,.07);
}
.button.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.portrait-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(21,20,28,.08);
  box-shadow: var(--shadow);
  background: var(--cream);
}
.portrait-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.portrait-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,251,244,.82);
  backdrop-filter: blur(16px);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 13px;
  color: #35313b;
}

section { padding: 84px 0; }
.section-head {
  display: grid;
  grid-template-columns: .58fr 1.42fr;
  gap: 58px;
  align-items: start;
  margin-bottom: 38px;
}
.eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 600;
}
.section-text { margin: 0; color: #3e3947; font-size: 19px; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 42px rgba(21,20,28,.06);
}
.card h3 { margin: 0 0 12px; font-size: 25px; line-height: 1.15; letter-spacing: -.025em; font-weight: 600; }
.card p { margin: 0; color: #4d4856; }
.card .more { display: inline-block; margin-top: 18px; color: var(--blue); font-family: "IBM Plex Sans", system-ui, sans-serif; font-weight: 700; font-size: 14px; }

.banner {
  width: 100%; height: 360px; border-radius: 36px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(21,20,28,.09); margin-top: 26px;
}
.banner img { width: 100%; height: 100%; object-fit: cover; }
.quote-block {
  padding: 58px;
  border-radius: 38px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.quote-block:after { content:""; position:absolute; inset: auto -70px -90px auto; width: 250px; height:250px; background: radial-gradient(circle, rgba(12,98,180,.44), transparent 68%); }
.quote-text { position: relative; z-index: 1; font-size: clamp(34px, 5vw, 66px); line-height: 1; letter-spacing: -.052em; margin: 0; }
.quote-block small { position:relative; z-index:1; display:block; margin-top:22px; color:rgba(255,255,255,.72); font-family:"IBM Plex Sans", system-ui, sans-serif; }

.work-list { display: grid; gap: 12px; }
.work-item {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.72); padding: 20px 22px;
}
.work-title { font-family: "IBM Plex Sans", system-ui, sans-serif; font-size: 18px; font-weight: 700; }
.work-meta { margin-top: 3px; color: var(--muted); font-size: 14px; }
.pill, .tag { display:inline-flex; align-items:center; white-space:nowrap; border-radius:999px; border:1px solid var(--line); background:#fff; padding:7px 11px; font-size:12px; font-weight:700; color:#393542; }
.airbox-panel { display:grid; grid-template-columns: 184px 1fr; gap: 34px; align-items:center; background:#fff; border:1px solid var(--line); border-radius:36px; padding:34px; box-shadow:var(--shadow); }
.airbox-panel img { width:184px; height:184px; border-radius:28px; object-fit:cover; border:1px solid var(--line); }
.airbox-panel h3 { margin:0 0 14px; font-size:36px; line-height:1.04; letter-spacing:-.04em; font-weight:600; }

.page-hero { padding: 78px 0 38px; }
.page-label { text-transform: uppercase; letter-spacing:.16em; color: var(--blue); font-size:12px; font-weight:700; margin-bottom:18px; }
.page-title { margin:0; font-size: clamp(48px, 7vw, 92px); line-height:.96; letter-spacing:-.055em; font-weight:600; }
.page-intro { max-width: 850px; margin: 24px 0 0; font-size: 21px; color:#3b3643; }
.content-layout { display:grid; grid-template-columns: .68fr 1.32fr; gap: 44px; align-items:start; padding: 36px 0 86px; }
.sidebar { position: sticky; top: 98px; }
.sidebar-card { border:1px solid var(--line); border-radius:28px; background:rgba(255,255,255,.75); padding:24px; box-shadow:0 12px 38px rgba(21,20,28,.05); }
.sidebar-card h3 { margin:0 0 12px; font-size:24px; }
.sidebar-card ul { margin:0; padding-left:18px; color:#4d4856; }
.article { display:grid; gap:24px; }
.article-block { border:1px solid var(--line); border-radius:30px; background:rgba(255,255,255,.76); padding:32px; box-shadow:0 12px 42px rgba(21,20,28,.055); }
.article-block h2 { font-size: clamp(30px, 4vw, 46px); }
.article-block p { font-size:18px; color:#413c49; margin: 14px 0 0; }
.article-block ul { margin: 14px 0 0; padding-left: 22px; color:#413c49; font-size:18px; }
.article-block li { margin: 8px 0; }

.footer { width:min(1180px, calc(100% - 40px)); margin:0 auto; padding:46px 0 56px; border-top:1px solid var(--line); color:var(--muted); display:flex; flex-wrap:wrap; justify-content:space-between; gap:24px; font-family:"IBM Plex Sans", system-ui, sans-serif; font-size:14px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .portrait-card { max-width: 520px; }
  .section-head, .content-layout { grid-template-columns: 1fr; gap: 18px; }
  .grid.two, .grid.three { grid-template-columns: 1fr; }
  .airbox-panel { grid-template-columns: 1fr; }
  .banner { height: 240px; }
  .quote-block { padding: 34px; }
  section { padding: 58px 0; }
  .sidebar { position: static; }
}

/* v0.6.1 mobile refinements */
@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at 20% 0%, rgba(224,178,27,.10), transparent 30%),
      linear-gradient(180deg, #fbf6ed 0%, #fffaf2 46%, #f7f1e7 100%);
  }
  .site-header {
    position: sticky;
    top: 0;
  }
  .nav {
    width: min(100% - 32px, 1180px);
    min-height: 62px;
    gap: 10px;
  }
  .brand {
    gap: 10px;
    font-size: 17px;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 14px;
    flex: 0 0 auto;
  }
  .nav-links { display: none; }

  .container, section {
    width: min(100% - 36px, 1180px);
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 0 64px;
  }
  .kicker {
    font-size: 10px;
    letter-spacing: .13em;
    margin-bottom: 16px;
    gap: 8px;
  }
  .kicker:before { width: 28px; }
  h1 {
    font-size: clamp(54px, 16vw, 76px);
    line-height: .92;
    margin-bottom: 18px;
    letter-spacing: -.065em;
  }
  .tagline {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.04;
    letter-spacing: -.05em;
    margin-bottom: 18px;
  }
  .lead {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .actions {
    gap: 10px;
    align-items: stretch;
  }
  .button {
    padding: 12px 15px;
    font-size: 13px;
    line-height: 1.15;
    min-height: 44px;
  }
  .hero .actions .button {
    flex: 1 1 calc(50% - 10px);
    min-width: 145px;
  }
  .hero .actions .button.primary {
    flex-basis: 100%;
  }
  .portrait-card {
    max-width: 100%;
    border-radius: 34px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .portrait-card img {
    border-radius: 34px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(21,20,28,.08);
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  .portrait-note {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.55;
    box-shadow: 0 10px 26px rgba(21,20,28,.07);
  }

  section { padding: 54px 0; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: .16em;
  }
  h2 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.04;
    letter-spacing: -.055em;
  }
  .section-text {
    font-size: 17px;
    line-height: 1.72;
  }
  .banner {
    height: 210px;
    border-radius: 28px;
    margin-top: 18px;
  }
  .card {
    border-radius: 24px;
    padding: 24px;
  }
  .card h3 {
    font-size: 23px;
  }
  .quote-block {
    border-radius: 30px;
    padding: 32px 26px;
  }
  .quote-text {
    font-size: clamp(35px, 10.5vw, 48px);
    line-height: 1.04;
  }
  .work-item {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    padding: 18px;
    border-radius: 22px;
  }
  .work-title {
    font-size: 16px;
    line-height: 1.4;
  }
  .airbox-panel {
    border-radius: 30px;
    padding: 24px;
    gap: 22px;
  }
  .airbox-panel img {
    width: 132px;
    height: 132px;
    border-radius: 24px;
  }
  .airbox-panel h3 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .footer {
    width: min(100% - 36px, 1180px);
    padding: 36px 0 46px;
    font-size: 13px;
  }

  .page-hero { padding: 54px 0 28px; }
  .page-title {
    font-size: clamp(48px, 15vw, 72px);
  }
  .page-intro {
    font-size: 18px;
  }
  .content-layout {
    grid-template-columns: 1fr;
    padding: 22px 0 64px;
    gap: 24px;
  }
  .sidebar { position: static; }
  .article-block {
    border-radius: 26px;
    padding: 24px;
  }
  .article-block h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .article-block p, .article-block ul {
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .brand { font-size: 15px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero .actions .button { flex-basis: 100%; }
}


.channel-grid .card { display: flex; flex-direction: column; }
.channel-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  background: #fff;
  color: var(--blue);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.channel-card p { flex: 1; }
.channel-button { margin-top: 22px; width: fit-content; }
.channel-button[aria-disabled="true"] {
  color: var(--muted);
  cursor: default;
  background: rgba(255,255,255,.56);
}

@media (max-width: 760px) {
  .nav { min-height: 76px; align-items: flex-start; padding: 12px 0; flex-direction: column; gap: 10px; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: 4px; gap: 10px; font-size: 13px; }
  .nav-links a { flex: 0 0 auto; }
  .channel-button { width: 100%; }
}


/* v0.6.4 prominent public channel links */
.public-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}
.public-links span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.public-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(21,20,28,.055);
}
.public-links a:nth-of-type(1) { border-color: rgba(12,98,180,.28); }
.public-links a:nth-of-type(2) { border-color: rgba(224,178,27,.40); }
.public-links .disabled { color: var(--muted); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-links a { color: var(--ink); font-weight: 700; }
.footer-links span { color: var(--muted); }
.sidebar-channels { margin-top: 16px; }
.sidebar-channels p { margin: 0 0 14px; color: #4d4856; }
.side-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.side-actions .button { width: 100%; }
@media (max-width: 720px) {
  .public-links {
    margin-top: 18px;
    gap: 9px;
    align-items: stretch;
  }
  .public-links span {
    flex-basis: 100%;
  }
  .public-links a {
    flex: 1 1 100%;
    justify-content: center;
    font-size: 13px;
  }
  .channel-button { width: 100%; }
}
