:root {
  --ink: #050505;
  --ink2: #111;
  --paper: #f4f4ef;
  --white: #fff;
  --yellow: #FFD900;
  --yellow2: #ffc800;
  --muted: #6c6c65;
  --line: rgba(5, 5, 5, 0.14);
  --darkline: rgba(255, 255, 255, 0.14);
  --max: 1500px;
  --gutter: clamp(18px, 3.2vw, 56px);
  --radius: 28px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.16);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;
  --serif: "Iowan Old Style", "Baskerville", Georgia, serif;
}
* {
  box-sizing: border-box;
}


::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 0px;
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 0;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(85, 100, 66, 1);
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--ink);
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open,
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
button {
  -webkit-appearance: none;
  appearance: none;
}
.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: -100px;
  left: 16px;
  padding: 12px 16px;
  background: var(--yellow);
  font-weight: 800;
}
.skip-link:focus {
  top: 16px;
}
.kicker {
  margin: 0 0 14px;
  
    font-size: clamp(14px, 1vw, 16px);
  font-weight: 850;
  letter-spacing: 0.13em;
    letter-spacing: clamp(1px, 0.35vw, 5px);;
  text-transform: uppercase;
    color: var(--yellow);
}
.light-bg .kicker{
    
    color: var(--ink);
}
.section-heading h2,
.community-heading h2 {
  margin: 0;
  font-size: clamp(45px,6vw,100px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
      font-family: var(--sans);
}
.button:hover {
  transform: translateY(-2px);
}
.button-yellow {
  background: linear-gradient(135deg, #fff98c, var(--yellow) 55%, #dda800);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(255, 230, 0, 0.18);
}
.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
/* Header */
.site-header {
    width: 100%;
    z-index: 55;
    z-index: 100;
    background: background: rgba(5, 5, 5);
    position: fixed;
    padding: 15px 0;
    left: 0;
    
     background: rgba(5, 5, 5);
    border-bottom: 1px solid rgba(255,255,255,.2);
/*
  border: 1px solid var(--darkline);
  border-radius: 00px;
  color: #fff;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
*/
}

.sticky {
  will-change: all;
  -webkit-transition: -webkit-all 0.2s ease;
  transition: -webkit-all 0.2s ease;
  transition: all 0.2s ease;
  transition: all 0.2s ease, -webkit-transform 0.2s ease;
}
.sticky--not-top.sticky--pinned {
    top: 10px;
    width: calc(100% - 20px);
    left: 10px;
      backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.2);;
  border-radius: 20px;
     background: rgba(5, 5, 5);
}
.sticky--not-top.sticky--pinned.open-menu-box,
.sticky--not-top.sticky--pinned.open-search-box {
  background-color: transparent;
  box-shadow: none;
}
.sticky--not-top {
    padding: 10px 0;
    top: 0;
}
header.sticky--not-top .logo{
    max-width: 150px;
    transition: all .2s ease;
}

.sticky.sticky--pinned {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.sticky.sticky--unpinned {
  -webkit-transform: translateY(-13rem);
  transform: translateY(-13rem);
  -webkit-transition: -webkit-all 0.4s ease-in;
  transition: -webkit-all 0.4s ease-in;
  transition: all 0.4s ease-in;
  transition: all 0.4s ease-in, -webkit-all 0.6s ease-in;
}
.sticky--top {
  box-shadow: none !important;
}

#main {
  padding-top: 77px;
    background: var(--ink);
}


#nav-icon{
    width: 24px;
    height: 16px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    position: relative;
    display: none;
    margin: 0;
    float: right;
}
#nav-icon span{
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    opacity: 1;
    right: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    border-radius: 3px;
    margin-top: -2px;
}
#nav-icon span:nth-child(1){
  top: 0px;
}
#nav-icon span:nth-child(2) {
    top: 8px;
}
#nav-icon span:nth-child(3) {
    top: 16px;
}

#nav-icon.open span{
    width: 28px;
}
#nav-icon.open span:nth-child(2){
    width: 0px;
}
#nav-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
}

#nav-icon.open span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
}




.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: block;
  flex: 0 0 auto;
}
.brand img, .footer-brand img {
  width: 190px;
  height: auto;
}


.primary-nav ul, .nav-right{
    margin: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
    list-style-type: none;
}
.primary-nav a, .nav-right .nav-cta {
  position: relative;
  padding: 11px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
    display: inline-block;
}
.primary-nav a:hover {
  color: #fff;
}
.nav-right .nav-cta {
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
    border: 1px solid var(--yellow);
    transition: all .2s ease;
}
.nav-right .nav-cta:hover{
    background: transparent;
    color: var(--yellow);
    transition: all .2s ease;
}
/* Hero */
.home-hero {
  padding: 70px 0 10px;
  background: var(--ink);
  color: #F5F5F0;
}
.hero-layout {
  padding: 0;
  display: flex;
  gap: 60px;
}
.hero-copy,
.hero-carousel {
  min-width: 0;
  border-radius: 0px;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}
.hero-copy .kicker {
  color: #fff;
}
.hero-copy h1 {
  max-width: 850px;
  margin: 0 0 28px;
  font-size: clamp(45px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.5;
}
.hero-copy h1 span {
  color: var(--yellow);
}
.hero-intro {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 1);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.55;
}
.hero-secondary {
  max-width: 720px;
  margin: 18px 0 32px;
/*  color: rgb(254, 230, 0);*/
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
}
.hero-copy .button {
  align-self: flex-start;
}
.hero-carousel {
  position: relative;
  flex: 0 1 50%;
/*  min-height: 650px;*/
  background: var(--yellow);
}
/*
.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}
*/
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    
}
.slide-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.86);
  color: #fff;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}
.slide-overlay > span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slide-overlay h2 {
  margin: 10px 0 8px;
  font-size: clamp(27px, 3vw, 49px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.slide-overlay p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.65);
}
.slide-overlay a {
  font-weight: 800;
  text-decoration: none;
}


.swiper-ab-pagination-box {
z-index: 6;
  position: absolute;
  top: 15px;
  width: 100%;
      text-align: center;
}
.ab-pagination-slider-button {
  position: relative;
  margin-top: -15px;
}
.swiper-pagination.after-before-pagination {
  width: auto;
  position: relative;
  background: #000;
  display: inline-block;
  margin: auto;
    border-radius: 20px;
  padding: 10px;
    display: inline-flex;
  align-items: center;
}

.ab-pagination-slider-button  .swiper-button-next, .ab-pagination-slider-button  .swiper-button-prev {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  color: rgba(255, 255, 255, 1);
}
.ab-pagination-slider-button  .swiper-button-next::after, .ab-pagination-slider-button  .swiper-button-prev::after {
  font-size: 18px;
}


.swiper-ab-pagination-box .swiper-pagination-bullet {
  background: rgba(255,255,255,.38);
  width: 10px;
  height: 10px;
  border-radius: 6px;
  opacity: 1;
}
.swiper-ab-pagination-box .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--yellow);
    box-shadow: 0 0 14px var(--yellow);
    width: 50px;
}

.clr-white{
    color: #fff;
}
.clr-dark{
    color: var(--ink);
}
/* Home sections */
.principles {
  padding: 50px 0 0px;
  background: #050505;
}
.principles-shell-grid{
    display: grid;
grid-template-columns: 1fr 2fr;
gap: 12px;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0px;
}
.principle {
  border-top: 1px solid rgba(255,255,255,.3);
  padding: 18px 18px 0 0;
  min-height: 190px;
}
.principle + .principle {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.hero-extended .hero-grid{padding-bottom:55px}
.hero-extended .principles-inside{padding:28px 0 62px;border-top:1px solid rgba(255,255,255,.2)}
.hero-extended .heading-row{margin-bottom:30px}
.hero-extended .heading-row h2{color:white;font-size:38px}
.hero-extended .heading-row .kicker{color:var(--yellow);margin-bottom:12px}
.hero-extended .principle-grid{color:white}
.hero-extended .principle{border-color:rgba(255,255,255,.3)}

.hero-extended .principle p{color:#aaa}


.perspectives {
  padding: clamp(50px, 7vw, 100px) 0;
  background: var(--paper);
}
.perspectives-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
}
.perspectives h2 {
  max-width: 800px;
    margin-bottom: 30px;
  
}
.perspectives p:not(.kicker) {
  max-width: 660px;
  color: rgba(5, 5, 5, 0.65);
  font-size: 19px;
}
.perspectives .button {
  margin-top: 20px;
/*
  background: var(--yellow);
  color: var(--ink);
*/
}
.m-0{
    margin: 0 !important;
}
.stat-grid {
  display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.stat-grid div:nth-child(3), .format-definition-grid article:nth-child(3) {
    grid-column: 1 / -1;
}
.stat-grid-foot-txt{
text-align: center;
font-size: 20px;
    color: var(--ink);
}
.stat-grid article {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--darkline);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #f0f0ea); 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.stat-grid span {
/*  color: rgba(255, 255, 255, 0.66);*/
  font-weight: 600;
}
.stat-grid strong, .stat-grid strong span {
  font-size: clamp(48px, 5vw, 80px);
  letter-spacing: -0.06em;
    font-weight: 900;
}
.formats {
  padding: clamp(50px, 7vw, 100px) 0;
  background: linear-gradient(135deg, #fff56c, var(--yellow) 45%, #ffc400);
}
.formats .kicker{
    color: #343433;
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 60px;
  align-items: end;
}
.split-heading > p {
  max-width: 620px;
  margin: 0;
  color: rgba(5, 5, 5, 0.68);
  font-size: 18px;
  line-height: 1.65;
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.format-grid, .mt-55{
  margin-top: 55px;
}
.mb-55{
  margin-bottom: 55px;
}

.format-card {
  min-height: 470px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 24px 70px rgba(110, 82, 0, 0.12);
  transition: transform 0.22s ease, background 0.22s ease;
}
.format-card:hover {
  transform: translateY(-8px);
  background: #fff;
}
.format-card > div {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.format-card h3 {
  margin: auto 0 18px;
  font-size: clamp(30px, 3vw, 41px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.format-card p {
  margin: 0;
  color: rgba(5, 5, 5, 0.66);
  line-height: 1.62;
}
.format-card em {
  margin-top: 28px;
  font-style: normal;
  font-weight: 800;
}
/* Generic pages */
.page-hero {
  padding: clamp(90px, 10vw, 160px) 0;
  background: var(--ink);
  color: #fff;
}
.page-hero h1 {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(72px, 12vw, 190px);
  line-height: 0.78;
  letter-spacing: -0.085em;
}
.page-hero > .shell > p:last-child {
  max-width: 820px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.5;
}
.page-hero .kicker {
  color: var(--yellow);
}
/* Insights */
.page-hero-insights {
  background: radial-gradient(
      circle at 80% 30%,
      rgba(255, 230, 0, 0.18),
      transparent 350px
    ),
    #050505;
}
.insights-toolbar {
  /* position: sticky; */
  z-index: 30;
  top: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 244, 239, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.toolbar-inner {
  display: flex;
  gap: 20px;
  align-items: center;
}
.filter-buttons {
  display: flex;
  gap: 15px;
  overflow: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
    padding: 15px 0;
}
.filter-buttons button , .filter-buttons a{
  flex: 0 0 auto;
/*
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
*/
    color: #414141;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;  
    border: 0;
    text-decoration: none;
    position: relative;
    transition: all .2s ease;
}
.filter-buttons a:after {
    content: attr(data-label);
    font-weight: 800;
    visibility: hidden;
    display: block;
    height: 0;
    overflow: hidden;
}

.filter-buttons button.is-active, .filter-buttons a.is-active, .filter-buttons button:hover, .filter-buttons a:hover {
/*
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
*/
  font-weight: 800;
  color: var(--ink);
  background: transparent;  
    transition: all .2s ease;
}
.search-box {
  margin-left: auto;
  flex: 0 1 330px;
}
.search-box input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.insights-list {
  padding: 80px 0;
}
.bg-light{
   background: var(--paper) !important;
}
.insights-section {
  scroll-margin-top: 160px;
}
.insights-section + .insights-section {
  margin-top: 120px;
}
.insights-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.insights-section-heading h2 {
  margin: 0;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.068em;
}
.insights-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.insight-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 36px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.insight-art {
  min-height: 260px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  text-decoration: none;
  overflow: hidden;
}
.insight-art span {
  font-size: 12px;
  font-weight: 850;
}
.insight-art b {
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.88;
  letter-spacing: -0.06em;
}
.art-1,
.art-3,
.art-5 {
  background: var(--yellow);
  color: var(--ink);
}
.art-2,
.art-4 {
  background: var(--ink);
  color: var(--yellow);
}
.insight-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.insight-meta span {
  color: #8a6b00;
}
.insight-copy h2,
.video-card h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.insight-copy h2 a,
.video-card h2 a {
  text-decoration: none;
}
.insight-copy > p {
  max-width: 800px;
  color: var(--muted);
  font-size: 17px;
}
.insight-copy > p:nth-last-child(2) {
  display: none;
}
.insight-copy .byline {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.video-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.video-thumb {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 17px;
  background: radial-gradient(circle at 75% 20%, #fff98b, transparent 190px),
    linear-gradient(135deg, #111 0%, #050505 55%, #ffc900 150%);
  color: #fff;
  text-decoration: none;
}
.video-thumb .play {
  align-self: flex-start;
  margin-bottom: auto;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}
.video-thumb strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}
.video-thumb small {
  color: rgba(255, 255, 255, 0.64);
}
.video-card > div {
  padding: 20px 10px 14px;
}
.video-card h2 {
  font-size: 28px;
}
.video-card > div > p:last-child {
  color: var(--muted);
}
.playlist-link {
  margin-top: 28px;
}
.empty-format {
  padding: 70px;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
}
.empty-format h2 {
  margin: 0 0 18px;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}
.empty-format p:not(.kicker) {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 19px;
}
.empty-format .kicker {
  color: var(--yellow);
}
.no-results {
  padding: 50px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
}
/* Community */
.community-hero {
  background: radial-gradient(
      circle at 78% 26%,
      rgba(255, 230, 0, 0.22),
      transparent 360px
    ),
    var(--ink);
}
.community-section {
  padding: 100px 0;
}
.community-section-dark {
  background: var(--ink);
  color: #fff;
}
.community-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.7fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}
.community-heading > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.community-section-dark .community-heading > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}
.community-section-dark .kicker {
  color: var(--yellow);
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.profile-card {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
    height: 100%;
      display: flex;
  flex-wrap: wrap;
      align-items: self-start;
}
.profile-card:hover {
  transform: translateY(-6px);
}
.community-section-dark .profile-card {
  border-color: var(--darkline);
}
.profile-card img {
  width: 100%;
/*
  aspect-ratio: 4/4.7;
  object-fit: cover;
*/
}
.profile-card > div {
  padding: 20px;
}
.profile-card > div p {
  margin: 0 0 35px;
  color: #806400;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.profile-card h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.profile-card strong,
.profile-card > div span {
  display: block;
}
.profile-card strong {
  font-size: 13px;
}
.profile-card > div span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.profile-number {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.75);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
    display: none;
}
.profile-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.profile-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.profile-modal-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 38px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.44);
}
.profile-modal-panel > img {
  width: 100%;
  border-radius: 20px;
      position: sticky;
  top: 0;
}
.profile-modal-panel > div {
  padding: 45px 34px 45px 0;
}
.profile-modal h2 {
  margin: 0 0 12px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}
.modal-affiliation {
  font-weight: 800;
}
.profile-modal [data-modal-bio] {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.modal-close {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
/* Reading */
.guidelines-hero {
  background: radial-gradient(
      circle at 80% 20%,
      rgba(255, 230, 0, 0.23),
      transparent 350px
    ),
    var(--ink);
}
.reading-page {
  padding: 100px 0 140px;
}
.reading-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 860px);
  gap: clamp(50px, 8vw, 130px);
  justify-content: center;
}
.reading-nav {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 20px;
  border-left: 3px solid var(--yellow);
}
.reading-nav p {
  font-weight: 850;
}
.reading-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
}
.reading-nav a.is-active {
  color: var(--ink);
  font-weight: 700;
}
.prose {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.78;
}
.prose .lede {
  font-family: var(--sans);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}
.prose section {
  scroll-margin-top: 130px;
  margin-top: 75px;
}
.prose h2 {
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.prose h3 {
  font-family: var(--sans);
}
.prose li + li {
  margin-top: 14px;
}
.guideline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.guideline-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  font-family: var(--sans);
}
.guideline-grid article span {
  font-size: 11px;
  font-weight: 850;
}
.guideline-grid article h3 {
  margin: 36px 0 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.guideline-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
/* Story */
.story-hero {
  padding: 150px 0;
  background: var(--yellow);
}
.story-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(350px, 0.65fr);
  gap: 70px;
  align-items: end;
}
.story-hero h1 {
  margin: 0;
  font-size: clamp(96px, 16vw, 240px);
  line-height: 0.72;
  letter-spacing: -0.09em;
}
.story-hero-grid > p {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.story-mission {
  padding: 130px 0;
  background: var(--ink);
  color: #fff;
}
.story-mission .kicker {
  color: var(--yellow);
}
.story-mission h2 {
  max-width: 1200px;
  margin: 0 0 70px;
  font-size: clamp(58px, 9vw, 140px);
  line-height: 0.86;
  letter-spacing: -0.075em;
}
.story-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin-left: auto;
}
.story-columns p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 19px;
  line-height: 1.7;
}
.story-history {
  padding: 120px 0;
}
.timeline {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.timeline article {
  display: grid;
  grid-template-columns: 140px minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.timeline span {
  font-weight: 850;
}
.timeline h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.045em;
}
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.story-callout {
  padding: 130px 0;
  background: var(--yellow);
}
.story-callout blockquote {
  max-width: 1350px;
  margin: 0;
  font-size: clamp(50px, 8vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 800;
}
.story-principles {
  padding: 120px 0;
}
.story-principles-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 100px;
}
.story-principles h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.story-principles-grid > div p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}
.story-principles .button {
  margin-top: 20px;
}
/* Article */
.article-shell {
  padding: 100px 0 80px;
}
.back-link {
  display: inline-block;
  margin-bottom: 45px;
  font-weight: 800;
  text-decoration: none;
}
.article-page {
  max-width: 980px;
  margin: 0 auto !important;
}
.article-page header {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.article-page h1 {
  margin: 0 0 28px;
  font-size: clamp(45px, 6vw, 80px);
  line-height: 0.88;
  letter-spacing: -0.072em;
}
.article-summary {
  max-width: 820px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 800;
}
.article-meta button {
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}
.article-body {
  max-width: 760px;
  margin: 65px auto 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
}
.article-body h2 {
  font-family: var(--sans);
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.article-notice {
  padding: 22px;
  border: 1px solid #d7bc00;
  border-radius: 16px;
  background: #fff8ad;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}
.article-body a {
  font-family: var(--sans);
  font-weight: 800;
}
.article-body a b, .article-body a{
  font-weight: 800;
}
.article-body .references-holder p, .article-body .references-holder li{
    font-size: 16px;
}
/* Newsletter/footer */
.newsletter-band {
  padding: 70px 0;
  background: radial-gradient(circle at 30% 20%, #fff99c, transparent 260px),
    var(--yellow);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.8fr);
  gap: 60px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
    background: radial-gradient( circle at 78% 26%, rgba(255, 230, 0, 0.22), transparent 360px ), var(--ink);
    color: #fff;
    max-width: calc(100% - 30px);
}
.newsletter-inner h2{
    font-size: clamp(35px,5vw,55px);
}
.newsletter-inner > div > p:last-child {
  font-size: 18px;
      color: rgba(255, 255, 255, 0.84);
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0px;
      border-radius: 10px;
  overflow: hidden;
}
.newsletter-form input,
.newsletter-form button {
  min-height: 56px;
  border: 0px solid rgba(5, 5, 5, 0.22);
  border-radius: 0px;
}
.newsletter-form input {
  padding: 0 16px;
  background: #1e1e1e;
    color: #fff;
}
.newsletter-form button {
  padding: 0 22px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.mt-30{
    margin-top: 30px;
}
.pt-0{
    padding-top: 0 !important;
}
.pb-0{
    padding-bottom: 0 !important;
}
hr {
  height: 1px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 50px 0;
}
.newsletter-inner .kicker{
      color: var(--yellow);
}
.form-status {
  grid-column: 1/-1;
  margin: 0;
  font-size: 13px;
}
.site-footer {
  padding: 80px 0 24px;
  background: var(--ink);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.55fr) minmax(
      220px,
      0.7fr
    );
  gap: 70px;
}

.footer-brand > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}
.footer-brand .founded {
  color: #fff;
}
.site-footer h3 {
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer .footer-grid > div:not(.footer-brand) > a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--darkline);
  border-radius: 50%;
  text-decoration: none;
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid var(--darkline);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
.about-author-sec .contributor-guidelines-panel + .contributor-guidelines-panel{
    margin-top: 30px !important;
}

@media (max-width: 1350px) {
    :root {
        --max: 1230px;
    }

    .hero-copy h1 {
        font-size: clamp(45px, 6vw, 72px);
    }
    .kicker {
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: clamp(1px, 0.3vw, 3px);
    }
}

/* Responsive */
@media (max-width: 1100px) {
  .primary-nav ul, .nav-right {
    gap: 14px;
  }
  .primary-nav a, .nav-right .nav-cta{
    font-size: 12px;
  }
  
  .principle-grid,
  .format-grid,
  .profile-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
    .principle:nth-child(3){
        border-left: 0px;
    }
  .perspectives-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid {
    max-width: 780px;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-hero-grid,
  .story-principles-grid {
    grid-template-columns: 1fr;
  }
  .story-hero-grid > p {
    max-width: 700px;
  }
  .reading-layout {
    grid-template-columns: 1fr;
  }

  .reading-page {
    padding-top: 0px;
  }
  .reading-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 15px;
    background: #fff;
    top: 0;
    width: calc(100% + (var(--gutter) * 2));
    margin-left: calc(var(--gutter) * -1);
    scrollbar-width: none;
  }
  .reading-nav::-webkit-scrollbar {
    display: none;
  }
  .reading-nav p {
    display: none;
  }
  .reading-nav a {
    flex: 0 0 auto;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
  }
  .community-heading {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
    #main {
  padding-top: 70px;
}
    
 
  .principles-shell-grid {
  grid-template-columns: 1fr;
    }
  .brand img, .footer-brand img {
    width: 160px;
  }
  
     body.openmenu{
        height: 100vh;
        overflow: hidden;
    }
    
     .primary-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
         background: #000;
    padding: 10px 0;
  }
    .openmenu .primary-nav {
            top: 50px;
    }
    .primary-nav ul{
        display: block;
    margin-left: 0;
    padding: 0 30px;
    }
    .primary-nav ul li{
        border-bottom: 1px solid rgba(255,255,255,.5);
    }
    .primary-nav ul li a{
        color: #fff;
    }
    .primary-nav ul li:last-child{border-bottom: 0; padding-top: 10px;}
  .menu-button {
    display: block;
  }
    #nav-icon{
        display: block;
    }
    
   
    
  .site-header.menu-open .mobile-navigation {
    display: block;
  }
  .hero-layout {
    display: block;
    min-height: 0;
  }
    .hero-slide img{
        position: relative;
    }
  .hero-copy,
  .hero-carousel {
    border-radius: 10px;
  }
  .hero-copy {
      padding: 20px 0 50px;
  }
  .hero-carousel {
    min-height: 600px;
    margin-top: 10px;
  }
  .principle-grid,
  .format-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-heading,
  .insights-section-heading {
    grid-template-columns: 1fr;
  }
    .split-heading{
        gap: 0px;
    }
  .stat-grid {
    gap: 10px;
      
      grid-template-columns: 1fr;
  }
  .stat-grid article {
    min-height: 190px;
  }
  .toolbar-inner {
    display: block;
  }
  .search-box {
    display: block;
    margin: 10px 0 0;
  }
  .insight-row {
    grid-template-columns: 1fr;
  }
  .insight-art {
    min-height: 220px;
  }
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-modal-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .profile-modal-panel > img {
    max-height: 360px;
    min-height: 0;
  }
  .profile-modal-panel > div {
    padding: 24px;
  }
  .newsletter-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    max-width: 650px;
  }
  .timeline article {
    grid-template-columns: 100px 1fr;
  }
  .timeline p {
    grid-column: 2;
  }
  .story-columns {
    margin-left: 0;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
    .section-heading h2, .community-heading h2{
        margin-bottom: 20px;
    }
    .newsletter-band {
  padding: 50px 0;
    }
}
@media (max-width: 560px) {
    body{
        font-size: 13px;
        line-height: 1.3;
    }
  .shell {
    --gutter: 18px;
  }
  .brand img, .footer-brand img {
    width: 142px;
  }
  .home-hero {
    padding: 0 6px 6px;
  }
  .hero-copy {
    padding: 50px 0px 50px;
  }
  .hero-secondary{
        font-size: 13px;
    }
  .hero-carousel {
    min-height: auto;
  }
  .slide-overlay {
   left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 15px;
    border-radius: 10px;

  }
  .slide-overlay h2 {
        font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.04em;
  }
  .carousel-controls {
    top: 12px;
    left: 12px;
    right: 12px;
  }
  .format-grid,
  .profile-grid,
  .video-grid,
  .guideline-grid,
  .story-columns {
    grid-template-columns: 1fr;
  }
  .principle-grid article {
      padding: 20px 12px;
  }
 
  .format-card {
    min-height: auto;
  }
  .page-hero {
    padding: 80px 0;
  }
  .page-hero h1 {
    font-size: 68px;
    line-height: 0.82;
  }
  .insights-toolbar {
    top: 77px;
  }
  .filter-buttons {
    margin-right: -18px;
    padding-right: 18px;
  }
  .insights-list {
    padding: 55px 0;
  }
  .insights-section-heading h2 {
    font-size: 48px;
  }
  .insight-copy h2 {
    font-size: 36px;
  }
  .empty-format {
    padding: 38px 24px;
  }
  .community-section {
    padding: 70px 0;
  }
  .profile-card h3 {
    font-size: 28px;
  }
  .profile-modal {
    padding: 8px;
  }
  .profile-modal-panel {
    max-height: 96vh;
    padding: 10px;
    border-radius: 22px;
  }
  .profile-modal-panel > img {
    height: 260px;
  }
  .story-hero {
    padding: 100px 0;
  }
  .story-hero h1 {
    font-size: 96px;
  }
  .story-mission,
  .story-history,
  .story-principles {
    padding: 80px 0;
  }
  .story-mission h2 {
    font-size: 54px;
  }
  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .timeline p {
    grid-column: auto;
  }
  .story-callout {
    padding: 80px 0;
  }
  .story-callout blockquote {
    font-size: 50px;
  }
  .article-shell {
    padding-top: 70px;    padding-bottom: 50px;
  }
  .article-page h1 {
    font-size: 35px;
  }
  .article-body {   
      font-size: 16px;
  }
  .article-body h2 {
    font-size: 30px;
  }
    .article-body h3{
          margin: 1em 0 0.6em;
        font-size: 22px;
    }
    .article-body .references-holder p, .article-body .references-holder li {
  font-size: 14px;
}
  .article-meta button {
    width: 100%;
    margin-left: 0;
  }
  .newsletter-inner {
    padding-left: 18px;
    padding-right: 18px;
      gap: 0px;
          max-width: 100%;
      border-radius: 12px;
  }
  
  .newsletter-form button {
    width: 100%;
      padding: 0 15px;
  }
  .site-footer {
    padding-top: 60px;
  }
    .icon-badge {
  width: 50px;
  height: 50px;
  padding: 10px;
}
    .back-link{
        margin-bottom: 30px;
    }
    .format-grid, .mt-55{
        margin-top: 30px;
    }
    .mb-55{
        margin-bottom: 30px;
    }
    .format-card h3 {
  margin: 50px 0 15px;
    }
    .newsletter-band {
  padding: 30px 0;
    }
    .footer-grid{
        gap: 40px;
    }
    .hero-extended .principles-inside {
  padding: 25px 0 20px;
    }
    .split-heading > p{
        font-size: 16px;
    }
    .openmenu .primary-nav {
    top: 47px;
  }
    hr{
        margin: 30px 0;
    }
    
    .about-author-sec .contributor-guidelines-panel + .contributor-guidelines-panel{
    margin-top: 20px !important;
}
    
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .site-header,
  .newsletter-band,
  .site-footer,
  .back-link,
  .article-meta button {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .article-shell {
    padding: 0;
  }
  .article-page {
    max-width: none;
  }
  .article-page h1 {
    font-size: 48pt;
  }
  .article-summary,
  .article-body {
    color: #000;
  }
  .article-notice {
    border: 1px solid #999;
    background: #fff;
  }
  .article-body {
    max-width: none;
    font-size: 12pt;
  }
  .article-page a:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
  }
}

/* Approved content update — Our Story and Contributor Guidelines */
.contributor-hero a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.contributor-reading {
  background: linear-gradient(180deg, #f4f4ef 0%, #fff 46%, #f4f4ef 100%);
}
.contributor-prose .first-prose-section {
  margin-top: 0;
}
.section-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
}
.contributor-prose .section-intro {
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.subsection-title {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.04em;
}
.format-definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 38px;
}
.format-definition-grid article {
  min-height: 235px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
}
.format-definition-grid article span {
  color: var(--yellow);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 850;
  letter-spacing: -0.045em;
}
.format-definition-grid article p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.62;
}
.contributor-guidelines-panel {
  margin: 40px 0;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 26px;
  background: linear-gradient(135deg, #fff9a2, var(--yellow));
  font-family: var(--sans);
}
.contributor-guidelines-panel h3 {
  margin: 0 0 28px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.contributor-guidelines-panel ul {
  margin: 0;
  padding-left: 24px;
}
.contributor-guidelines-panel li {
  padding-left: 8px;
  line-height: 1.65;
}
.multimedia-format-list {
  margin: 28px 0;
  border-top: 1px solid var(--line);
}
.multimedia-format-list article,
.review-process article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
}
.multimedia-format-list article > span,
.review-process article > span {
  font-size: 12px;
  font-weight: 900;
}
.multimedia-format-list h4,
.review-process h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.multimedia-format-list p,
.review-process p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.72;
}
.review-process p + p {
  margin-top: 18px;
}
.closing-note {
  font-style: italic;
}
.submission-callout {
  margin-top: 44px;
  padding: 28px;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
}
.submission-callout p {
  margin: 0 0 22px;
  font-size: 20px;
}
.submission-callout p a {
  color: var(--yellow);
}
.story-hero-founders {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #fff36a 0%,
    var(--yellow) 55%,
    #ffc400 100%
  );
}
.page-hero-inner{
      position: relative;
  overflow: hidden;
}
.story-hero-founders:after, .page-hero-inner:after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -18vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.1),
    0 0 0 16vw rgba(255, 255, 255, 0.08);
}
.story-hero-founders .story-hero-grid {
  position: relative;
  z-index: 1;
}
.story-hero-founders .kicker {
  margin-bottom: 22px;
}
.story-hero-founders .story-hero-grid > p {
  max-width: 500px;
  font-weight: 750;
}
.story-chapter {
  padding: clamp(90px, 10vw, 160px) 0;
}
.story-chapter-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 150px);
}
.story-chapter header {
  position: sticky;
  top: 120px;
  align-self: start;
}
.story-chapter header > span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}
.story-chapter h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(58px, 8vw, 126px);
  line-height: 0.82;
  letter-spacing: -0.075em;
}
.story-chapter-copy {
  max-width: 820px;
}
.story-chapter-copy p {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.78;
}
.story-chapter-copy .story-lede {
  font-family: var(--sans);
  font-size: clamp(29px, 3.2vw, 48px);
  line-height: 1.27;
  letter-spacing: -0.045em;
}
.story-chapter-dark {
  background: var(--ink);
  color: #fff;
}
.story-chapter-dark .kicker {
  color: var(--yellow);
}
.story-chapter-dark .story-chapter-copy p:not(.story-lede) {
  color: rgba(255, 255, 255, 0.66);
}
.story-chapter-light {
  background: #fff;
}
.story-chapter-light .story-chapter-copy p:not(.story-lede) {
  color: var(--muted);
}
.story-chapter-yellow {
  background: #ffe600;
}
.bg-offwhite {
  background: var(--paper);
}
.story-chapter-yellow blockquote {
  margin: 58px 0;
  padding: 34px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.28);
  border-bottom: 1px solid rgba(5, 5, 5, 0.28);
  font-family: var(--sans);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 850;
  line-height: 0.93;
  letter-spacing: -0.065em;
}
.story-chapter-yellow .button {
  margin-top: 20px;
}
@media (max-width: 860px) {
  .story-chapter-grid {
    grid-template-columns: 1fr;
  }
  .story-chapter header {
    position: static;
  }
  .story-chapter h2 {
    max-width: none;
  }
  .story-chapter-copy {
    max-width: none;
  }
  .story-hero-founders:after {
    right: -30vw;
    bottom: -10vw;
    width: 75vw;
    height: 75vw;
  }
  .format-definition-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .contributor-hero h1 {
    font-size: 56px;
  }
  .contributor-hero > .shell > p:last-child {
    font-size: 18px;
  }
  .multimedia-format-list article,
  .review-process article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }
  .story-hero-founders .story-hero-grid > p {
    font-size: 22px;
  }
  .story-chapter {
    padding: 76px 0;
  }
  .story-chapter h2 {
    font-size: 58px;
  }
  .story-chapter-copy p {
    font-size: 18px;
  }
  .story-chapter-copy .story-lede {
    font-size: 29px;
  }
  .story-chapter-yellow blockquote {
    font-size: 42px;
  }
  .format-definition-grid article {
    min-height: 210px;
  }
  .contributor-guidelines-panel {
    margin-left: -4px;
    margin-right: -4px;
  }
}
@media print {
  .reading-nav,
  .section-number,
  .submission-callout .button {
    display: none !important;
  }
  .contributor-reading {
    padding: 0;
    background: #fff;
  }
  .reading-layout {
    display: block;
  }
  .contributor-prose {
    max-width: none;
    font-size: 11pt;
  }
  .contributor-prose h2 {
    font-size: 28pt;
  }
  .contributor-prose h3 {
    font-size: 18pt;
  }
  .format-definition-grid {
    display: block;
  }
  .format-definition-grid article {
    min-height: 0;
    margin: 12pt 0;
    border: 1px solid #999;
    background: #fff;
    color: #000;
  }
  .format-definition-grid article span,
  .format-definition-grid article p {
    color: #000;
  }
  .contributor-guidelines-panel {
    border: 1px solid #999;
    background: #fff;
  }
  .story-hero-founders,
  .story-chapter {
    background: #fff !important;
    color: #000 !important;
  }
  .story-hero-founders:after {
    display: none;
  }
  .story-chapter {
    padding: 24pt 0;
  }
  .story-chapter-grid {
    display: block;
  }
  .story-chapter header {
    position: static;
  }
  .story-chapter-copy p,
  .story-chapter-dark .story-chapter-copy p:not(.story-lede) {
    color: #000 !important;
  }
  .story-chapter-yellow blockquote {
    font-size: 30pt;
  }
}

/* Content-complete archive and cross-platform fixes */
.article-author-detail {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.article-body h2 {
  margin: 2.2em 0 0.55em;
}
.article-body h3 {
  margin: 2em 0 0.6em;
  font-family: var(--sans);
  font-size: 28px;
  letter-spacing: -0.025em;
}
.article-body p {
  margin: 0 0 1.25em;
}
.article-body ul,
.article-body ol {
  padding-left: 1.4em;
}
.article-body blockquote {
  margin: 2em 0;
  padding: 22px 28px;
  border-left: 5px solid var(--yellow);
  background: #fffbd0;
}
.article-body .article-disclaimer,
.article-body .article-note {
  padding: 18px 20px;
  border-radius: 14px;
  background: #f2f1e9;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
}
.article-body .article-note {
  border-left: 4px solid var(--yellow);
}
.table-scroll {
  width: calc(100vw - 40px);
  max-width: 980px;
  margin: 2.2em 50%;
  transform: translateX(-50%);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.article-body table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}
.article-body th,
.article-body td {
  padding: 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}
.article-body th {
  background: var(--ink);
  color: #fff;
  text-align: left;
}
.playlist-player {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 42px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}
.playlist-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}
.playlist-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.playlist-player h3 {
  margin: 7px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.playlist-player > div:last-child {
  padding: 20px;
}
.video-thumb {
  background: radial-gradient(circle at 75% 20%, #fff98b, transparent 190px),
    linear-gradient(135deg, #111 0%, #050505 55%, #ffc900 150%);
}
.profile-card[data-has-bio="false"] > div span {
  color: #8b8b82;
}
.hero-slide img {
  object-position: center center;
}
.hero-carousel {
  isolation: isolate;
}
.hero-carousel .swiper{height: 100%;}
@media (max-width: 860px) {
  .playlist-player {
    grid-template-columns: 1fr;
  }
  .table-scroll {
    width: calc(100vw - 24px);
  }
  .article-body {   
      font-size: 18px;
  }
  .article-body h2 {
    font-size: 34px;
  }
}
@media (max-width: 560px) {
  .article-body table {
    min-width: 620px;
  }
  .playlist-player {
    padding: 10px;
    border-radius: 22px;
  }
  .playlist-player > div:last-child {
    padding: 14px;
  }
  .hero-slide img {
    object-position: center center;
  }
}
@media print {
  .article-author-detail {
    color: #000;
  }
  .table-scroll {
    width: auto;
    max-width: none;
    margin: 1.5em 0;
    transform: none;
    overflow: visible;
  }
  .article-body table {
    min-width: 0;
    font-size: 9pt;
    break-inside: auto;
  }
  .article-body tr {
    break-inside: avoid;
  }
  .article-body a:after {
    word-break: break-all;
  }
}
