@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #11111a;
  --dark: #171719;
  --paper: #f2f1ee;
  --muted: #a4a4aa;
  --accent: #ef6847;
  --line: rgba(17, 17, 26, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--dark);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 72px, 1320px);
  height: 96px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(17, 17, 26, .16);
  color: var(--ink);
}

.logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav { display: flex; gap: 34px; font-size: 13px; font-weight: 600; }
.desktop-nav a, .header-cta { transition: opacity .2s ease; }
.desktop-nav a:hover, .header-cta:hover { opacity: .55; }
.header-cta {
  justify-self: end;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 42% 10%, rgba(255,255,255,.95) 0 17%, transparent 41%),
    linear-gradient(120deg, #bdc7f8 0%, #eff0ec 37%, #f5d3c8 65%, #ee8973 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
  padding-top: 190px;
}

.eyebrow {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 800;
}

.eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
  content: "";
}

h1 {
  max-width: 900px;
  margin-bottom: 34px;
  letter-spacing: -.065em;
  font-size: clamp(62px, 7.25vw, 112px);
  line-height: .92;
}
h1 span { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.hero-lead {
  max-width: 515px;
  margin-bottom: 35px;
  color: rgba(17,17,26,.72);
  font-size: 17px;
  line-height: 1.6;
}

.primary-button, .telegram-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 205px;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.primary-button:hover, .telegram-button:hover {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.system-map {
  position: absolute;
  z-index: 2;
  top: 135px;
  right: -42px;
  width: min(51vw, 700px);
  height: 550px;
}
.system-map svg { width: 100%; height: 100%; }
.map-line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-dasharray: 8 13;
  opacity: .73;
}
.map-node { fill: #f4f1ed; stroke: var(--ink); stroke-width: 3px; }
.map-node-main { fill: var(--accent); }
.map-label {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 20px;
  background: rgba(244,241,237,.75);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 9px;
  font-weight: 800;
}
.label-user { top: 76px; left: 4px; }
.label-api { top: 153px; left: 43%; }
.label-data { top: 98px; right: 1px; }
.label-result { right: 10%; bottom: 78px; }
.hero-curve {
  position: absolute;
  z-index: 4;
  right: -5%;
  bottom: -119px;
  left: -5%;
  height: 170px;
  border-radius: 50% 50% 0 0;
  background: var(--dark);
}

.light-section {
  position: relative;
  width: min(100% - 48px, 1370px);
  margin: 0 auto;
  padding: 140px 48px 64px;
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper);
}
.section-number {
  position: absolute;
  top: 45px;
  right: 48px;
  color: #b1b1b3;
  font-size: 12px;
  font-weight: 700;
}
.section-heading h2, .program-heading h2, .author-heading h2, .contact-copy h2 {
  margin-bottom: 70px;
  letter-spacing: -.055em;
  font-size: clamp(52px, 6.5vw, 92px);
  line-height: .98;
}

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.audience-card {
  position: relative;
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #e8e7e3;
  transition: transform .25s ease;
}
.audience-card:hover { transform: translateY(-6px); }
.audience-card h3 {
  max-width: 280px;
  margin: 105px 0 18px;
  font-size: 22px;
  line-height: 1.18;
}
.audience-card p { margin: 0; color: #5d5d62; font-size: 13px; line-height: 1.6; }
.card-index { font-size: 11px; font-weight: 700; }
.accent-card { color: white; border-color: var(--accent); background: var(--accent); }
.accent-card p { color: rgba(255,255,255,.76); }

.audience-info-grid { grid-template-columns: repeat(2, 1fr); }
.audience-info-card {
  min-height: 450px;
  padding: 38px;
  background: transparent;
  border: 2px solid var(--ink);
}
.audience-info-card h3 {
  max-width: 560px;
  margin: 62px 0 35px;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.32;
  letter-spacing: -.035em;
}
.audience-info-card p {
  max-width: 590px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.72;
}

.program-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  width: min(100% - 48px, 1370px);
  margin: 0 auto;
  padding: 135px 48px 75px;
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper);
}
.program-heading h2 { margin: 0; }
.program-content {
  padding-top: 48px;
  font-size: 15px;
  line-height: 1.72;
}
.program-lead {
  max-width: 760px;
  margin-bottom: 38px;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.program-list {
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.program-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.45;
}
.program-list li span {
  padding-top: 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}
.program-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}
.program-facts p {
  margin: 0;
  padding: 24px;
  border-radius: 12px;
  background: #e7e6e2;
  color: #65656a;
  font-size: 13px;
}
.program-facts strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.5;
}
.program-format { margin: 0; color: #55555a; }
.program-format strong { color: var(--ink); }

.author-section {
  position: relative;
  width: min(100% - 48px, 1370px);
  margin: 0 auto;
  padding: 135px 48px 48px;
  border-radius: 30px;
  background: #242427;
}
.light-number { color: #76767c; }
.author-heading h2 {
  max-width: 1000px;
  margin-bottom: 75px;
  font-size: clamp(49px, 6vw, 86px);
}
.author-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 14px; }
.author-photo {
  position: relative;
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  border-radius: 18px;
}
.author-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 28%;
}
.author-copy {
  display: flex;
  min-height: 620px;
  justify-content: center;
  flex-direction: column;
  padding: 45px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper);
}
.author-copy > p { color: #68686c; font-size: 14px; line-height: 1.75; }
.author-copy .author-intro {
  margin-bottom: 36px;
  color: var(--ink);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.17;
  letter-spacing: -.035em;
}
.socials { margin-top: auto; padding-top: 25px; border-top: 1px solid var(--line); }
.socials > p {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 800;
}
.social-links { display: flex; gap: 9px; }
.social-links a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  transition: color .2s, background .2s;
}
.social-links a:hover { color: var(--paper); background: var(--ink); }

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  margin-top: 95px;
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
}
.contact-copy {
  align-self: center;
  padding: 90px max(48px, calc((100vw - 1270px)/2));
  padding-right: 40px;
}
.contact-copy h2 { margin-bottom: 30px; }
.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(17,17,26,.68);
  font-size: 15px;
  line-height: 1.7;
}
.telegram-button { margin-top: 24px; }
.contact-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, #f1d8cb 0 10%, transparent 34%),
    linear-gradient(135deg, #9eafff, #f0eeea 53%, #ffae91);
}
.telegram-plane {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  transform: translate(-50%, -50%) rotate(-15deg);
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-size: 66px;
}
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 230px;
  transform: translate(-50%, -50%) rotate(28deg);
  border: 2px dashed rgba(17,17,26,.66);
  border-radius: 50%;
}
.orbit-two { transform: translate(-50%, -50%) rotate(-34deg); }

.site-footer {
  padding: 70px max(48px, calc((100vw - 1270px)/2)) 25px;
  color: #a6a6aa;
  background: #101012;
  font-size: 12px;
  line-height: 1.8;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 55px;
}
.footer-main p { margin-bottom: 2px; }
.footer-name { color: var(--paper); font-size: 14px; font-weight: 700; }
.footer-main a { border-bottom: 1px solid #424247; }
.footer-docs { display: flex; align-items: flex-start; flex-direction: column; }
.footer-docs p { color: var(--paper); font-size: 14px; font-weight: 700; }
.footer-docs a { margin-bottom: 5px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid #29292d;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 9px;
}
.mobile-menu { display: none; }

.legal-body { background: var(--paper); color: var(--ink); }
.legal-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 72px, 1180px);
  height: 100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.legal-logo { flex: 0 0 auto; }
.legal-page {
  width: min(100% - 72px, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 115px 0;
}
.legal-page h1 {
  max-width: 1050px;
  margin: 0 0 45px;
  font-size: clamp(55px, 8vw, 112px);
  line-height: .94;
}
.legal-back {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: #6a6a70;
  font-size: 12px;
}
.legal-lead {
  max-width: 760px;
  margin-bottom: 70px;
  color: #65656a;
  font-size: 19px;
  line-height: 1.65;
}
.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 80px;
}
.policy-nav a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}
.policy-document {
  max-width: 920px;
  margin-left: auto;
}
.policy-document h2 {
  position: relative;
  margin: 100px 0 34px;
  padding: 30px 0 0 72px;
  border-top: 1px solid var(--line);
  letter-spacing: -.035em;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
}
.policy-document h2:first-child { margin-top: 0; }
.policy-document h2 span {
  position: absolute;
  top: 38px;
  left: 0;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0;
}
.policy-document h3 {
  margin: 48px 0 18px;
  font-size: 22px;
  line-height: 1.35;
}
.policy-document p,
.policy-list {
  color: #4f4f55;
  font-size: 15px;
  line-height: 1.8;
}
.policy-document p { margin-bottom: 18px; }
.policy-document a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  overflow-wrap: anywhere;
}
.policy-list {
  margin: 0 0 28px;
  padding-left: 22px;
}
.policy-list li { margin-bottom: 10px; padding-left: 8px; }
.legal-placeholder {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #5c5c62;
  background: #e7e6e2;
  line-height: 1.7;
}
.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px max(36px, calc((100vw - 1180px)/2));
  color: #a6a6aa;
  background: #101012;
  font-size: 11px;
}

.license-page { width: min(100% - 72px, 1280px); }
.organization-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.organization-tabs-wrap {
  position: sticky;
  top: 24px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #e7e6e2;
}
.organization-tabs {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.org-tab {
  position: relative;
  width: 100%;
  padding: 14px 42px 14px 15px;
  border: 0;
  border-radius: 11px;
  color: #5d5d62;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.org-tab::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: "→";
  opacity: 0;
  transform: translate(-5px, -50%);
  transition: opacity .2s ease, transform .2s ease;
}
.org-tab:hover { color: var(--ink); background: rgba(255,255,255,.42); }
.org-tab.is-active {
  color: var(--paper);
  background: var(--ink);
}
.org-tab.is-active::after { opacity: 1; transform: translate(0, -50%); }
.org-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.organization-panels { min-width: 0; }
.org-panel {
  position: relative;
  width: 100%;
  min-height: 820px;
  padding: 60px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.org-panel[hidden] { display: none; }
.org-panel-index {
  position: absolute;
  top: 34px;
  right: 38px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}
.org-panel h2 {
  max-width: 750px;
  margin: 0 0 45px;
  padding-right: 45px;
  letter-spacing: -.045em;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.06;
}
.org-panel > p:not(.org-panel-index) {
  max-width: 760px;
  color: #56565c;
  font-size: 15px;
  line-height: 1.75;
}
.org-info-list { margin: 0; }
.org-info-list > div {
  display: grid;
  grid-template-columns: minmax(170px, .72fr) minmax(0, 1.28fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.org-info-list > div:last-child { border-bottom: 1px solid var(--line); }
.org-info-list dt {
  color: #77777c;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.org-info-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}
.org-info-list a,
.org-panel > p a {
  border-bottom: 1px solid var(--accent);
}
.org-document-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.org-document-list > a,
.org-document-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
}
.org-document-list b { color: var(--accent); font-size: 18px; }
.org-document-list em {
  color: #8b8b90;
  font-size: 11px;
  font-style: normal;
  white-space: nowrap;
}
.org-numbered-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: org-item;
}
.org-numbered-list > li {
  position: relative;
  padding: 22px 0 22px 58px;
  border-top: 1px solid var(--line);
  color: #56565c;
  font-size: 14px;
  line-height: 1.75;
  counter-increment: org-item;
}
.org-numbered-list > li:last-child { border-bottom: 1px solid var(--line); }
.org-numbered-list > li::before {
  position: absolute;
  top: 24px;
  left: 0;
  color: var(--accent);
  content: counter(org-item, decimal-leading-zero);
  font-size: 10px;
  font-weight: 800;
}
.org-numbered-list strong { color: var(--ink); }
.org-numbered-list p { margin: 12px 0 0; }
.org-numbered-list a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.org-statement-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.org-statement-list p {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: #56565c;
  font-size: 15px;
  line-height: 1.7;
}
.org-statement-list strong { color: var(--ink); }

@media (max-width: 980px) {
  .site-header { width: calc(100% - 40px); grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
  }
  .menu-button span { width: 16px; height: 1px; background: var(--ink); }
  .mobile-menu {
    position: fixed;
    z-index: 19;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    color: var(--ink);
    background: var(--paper);
    font-size: 25px;
    transition: opacity .25s, visibility .25s;
  }
  .mobile-menu.open { visibility: visible; opacity: 1; }
  .hero-copy { width: calc(100% - 40px); padding-top: 170px; }
  .system-map { right: -175px; opacity: .53; }
  .audience-grid, .program-section, .author-layout, .contact-section { grid-template-columns: 1fr; }
  .audience-card { min-height: 260px; }
  .program-section { width: calc(100% - 80px); gap: 70px; }
  .contact-visual { min-height: 500px; }
  .organization-layout { grid-template-columns: 1fr; }
  .organization-tabs-wrap {
    position: static;
    overflow: hidden;
    padding: 8px;
  }
  .organization-tabs {
    overflow-x: auto;
    flex-direction: row;
    scrollbar-width: thin;
  }
  .org-tab {
    width: auto;
    min-width: 210px;
    flex: 0 0 auto;
  }
  .org-panel { min-height: 680px; }
}

@media (max-width: 640px) {
  .hero { min-height: 720px; }
  h1 { margin-top: 55px; font-size: 50px; }
  .hero-lead { max-width: 90%; font-size: 14px; }
  .system-map { top: 295px; right: -260px; width: 660px; opacity: .35; }
  .map-label { display: none; }
  .hero-curve { bottom: -135px; }
  .light-section, .author-section {
    width: calc(100% - 20px);
    padding: 100px 20px 20px;
    border-radius: 22px;
  }
  .section-number { top: 30px; right: 24px; }
  .section-heading h2, .program-heading h2, .author-heading h2, .contact-copy h2 {
    margin-bottom: 50px;
    font-size: 48px;
  }
  .audience-card { padding: 25px; }
  .program-section { width: calc(100% - 20px); padding: 95px 20px 30px; }
  .program-content { padding-top: 0; }
  .program-lead { font-size: 18px; }
  .program-list li { grid-template-columns: 38px 1fr; font-size: 16px; }
  .program-facts { grid-template-columns: 1fr; }
  .author-photo { min-height: 470px; }
  .author-photo img { min-height: 470px; }
  .author-copy { min-height: 560px; padding: 28px; }
  .contact-section { margin-top: 70px; }
  .contact-copy { padding: 90px 20px; }
  .contact-visual { min-height: 420px; }
  .site-footer { padding: 60px 20px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { gap: 30px; }
  .legal-site-header,
  .legal-page { width: calc(100% - 40px); }
  .legal-site-header { height: 82px; }
  .legal-page { padding: 80px 0; }
  .legal-page h1 { font-size: 44px; overflow-wrap: anywhere; }
  .legal-lead { font-size: 16px; margin-bottom: 50px; }
  .policy-nav { margin-bottom: 60px; }
  .policy-document h2 { padding-left: 42px; }
  .policy-document h2 span { top: 36px; }
  .policy-document p,
  .policy-list { font-size: 14px; }
  .legal-footer { flex-direction: column; padding: 35px 20px; }
  .license-page { width: calc(100% - 20px); }
  .license-page > .eyebrow,
  .license-page > h1,
  .license-page > .legal-lead { margin-left: 10px; margin-right: 10px; }
  .organization-layout { gap: 10px; }
  .org-tab { min-width: 188px; font-size: 11px; }
  .org-panel { min-height: 620px; padding: 70px 22px 32px; border-radius: 16px; }
  .org-panel-index { top: 25px; right: 24px; }
  .org-panel h2 { margin-bottom: 32px; padding-right: 0; font-size: 34px; }
  .org-info-list > div { grid-template-columns: 1fr; gap: 7px; padding: 17px 0; }
  .org-document-list > a,
  .org-document-list > div { grid-template-columns: 1fr; gap: 8px; }
  .org-document-list em { white-space: normal; }
  .org-numbered-list > li { padding-left: 40px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
