
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  /* Apex: slightly compressed “paper”, not pure white */
  --bg: #f9f9f9;

  /* Ink */
  --text: #0a0a0a;

  /* Muted ink (not soft) */
  --muted: #555555;

  /* Rule lines (slightly heavier visual presence) */
  --rule: rgba(10,10,10,.18);

  /* Swiss blue accent (used sparingly; mostly hover) */
  --accent: #0047ab;

  /* Measure */
  --max: 740px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

  /* Slightly tighter than KOMUNIKATOR */
  font-size: 15.5px;
  line-height: 1.50;
  letter-spacing: -0.012em;
}

/* Layout */
.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 20px 54px;
}

/* Links */
a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover{ color: var(--accent); }
.link{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.site-header{ margin-bottom: 26px; }

.mast{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 14px;
}

.brand a{
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.11em;
  font-size: 12px;
  text-transform: uppercase;
}

.brand-sub{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* Nav: text-only, restrained */
.nav{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: flex-end;
}
.nav a{
  text-decoration: none;
  font-size: 13.5px;
}
.nav a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Apex pressure cue: heavier rule */
.rule{
  height: 2px;
  width: 100%;
  background: var(--rule);
}

/* Main typography */
.title{
  margin: 0 0 8px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.lede{
  margin: 0 0 22px;
  font-size: 17px;
  max-width: 66ch;
}

/* Sections */
.section{
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}

.kicker{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

p{
  margin: 0 0 12px;
  max-width: 74ch;
}

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

.fineprint{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Lists (used for pillars, etc.) */
.list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.item{
  padding: 8px 0;
}

.item-title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.012em;
}

/* Footer */
.footer{
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.footer a{
  text-decoration: none;
}
.footer a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Small-screen behavior */
@media (max-width: 560px){
  .mast{
    flex-direction: column;
    align-items: flex-start;
  }
  .nav{ justify-content: flex-start; }
  .title{ font-size: 34px; }
  .lede{ font-size: 16px; }
}

/* Print: keep it brief-ready */
@media print{
  :root{
    --bg:#ffffff;
    --text:#000000;
    --muted:#333333;
    --rule: rgba(0,0,0,.25);
  }
  body{
    background:#ffffff;
  }
  .wrap{
    max-width: 170mm;
    padding: 0;
  }
  a{ text-decoration: none; }
}
