:root {
  --ink: #10211e;
  --ink-soft: #42524e;
  --ink-muted: #778580;
  --paper: #f7faf4;
  --paper-warm: #f1f4eb;
  --line: #dce5dc;
  --mint: #b7e8c7;
  --mint-bright: #8be0ae;
  --mint-soft: #dff4e4;
  --forest: #23483c;
  --forest-deep: #17352e;
  --coral: #f28e75;
  --yellow: #f6d778;
  --white: #ffffff;
  --shadow-soft: 0 22px 50px rgba(16, 33, 30, 0.09);
  --shadow-card: 0 14px 28px rgba(16, 33, 30, 0.06);
  --radius-large: 28px;
  --radius-medium: 17px;
  --radius-small: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "DM Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

.site-frame {
  min-height: 100vh;
  overflow: hidden;
}

.page-width {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  min-height: 38px;
  background: var(--ink);
  color: #dce9e1;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.announcement-inner {
  width: min(1160px, calc(100% - 48px));
  min-height: 38px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.announcement a {
  margin-left: 9px;
  color: var(--mint-bright);
  font-weight: 800;
  transition: color 180ms ease;
}

.announcement a:hover {
  color: var(--white);
}

.live-dot,
.tiny-signal {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-bright);
  box-shadow: 0 0 0 4px rgba(139, 224, 174, 0.12);
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(247, 250, 244, 0.88);
  border-bottom: 1px solid rgba(220, 229, 220, 0.75);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1160px, calc(100% - 48px));
  min-height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 12px 12px 12px 4px;
  background: var(--ink);
  color: var(--mint-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.06em;
  transform: rotate(-5deg);
}

.brand-name {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.brand-name span {
  color: var(--forest);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--ink);
}

.primary-nav a.active::after {
  position: absolute;
  right: 13px;
  bottom: 3px;
  left: 13px;
  height: 2px;
  border-radius: 3px;
  background: var(--coral);
  content: "";
}

.primary-nav .nav-contact {
  margin-left: 9px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
}

.primary-nav .nav-contact:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.primary-nav .nav-contact.active::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 4px;
  background: var(--ink);
}

.hero-section {
  min-height: 560px;
  padding-top: 82px;
  padding-bottom: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.card-eyebrow {
  color: var(--forest);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-mark {
  color: var(--coral);
  font-size: 15px;
  line-height: 0;
}

.hero-copy h1,
.subpage-hero h1 {
  max-width: 610px;
  margin: 19px 0 20px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(49px, 6.2vw, 78px);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.99;
}

.hero-copy h1 em,
.subpage-hero h1 em,
.section-heading h2 em {
  color: var(--forest);
  font-style: normal;
  font-weight: 600;
}

.hero-lede {
  max-width: 490px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(242, 142, 117, 0.46);
  outline-offset: 3px;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(16, 33, 30, 0.15);
}

.button-primary:hover {
  background: var(--forest);
  box-shadow: 0 12px 24px rgba(16, 33, 30, 0.2);
}

.button-quiet {
  border-color: var(--line);
  color: var(--ink);
}

.button-quiet:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button-light {
  background: var(--mint);
  color: var(--ink);
}

.button-light:hover {
  background: var(--white);
}

.button-wide {
  width: 100%;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
}

.hero-meta strong {
  color: var(--ink-soft);
}

.meta-check {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--forest);
  font-size: 10px;
}

.meta-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line);
}

.hero-visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.visual-glow-one {
  top: 8%;
  right: 5%;
  width: 290px;
  height: 290px;
  background: rgba(183, 232, 199, 0.65);
}

.visual-glow-two {
  bottom: 2%;
  left: 5%;
  width: 170px;
  height: 170px;
  background: rgba(246, 215, 120, 0.42);
}

.translation-window {
  position: relative;
  z-index: 1;
  width: min(100%, 435px);
  min-height: 286px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 17px;
  background: #1a2b28;
  box-shadow: 20px 25px 55px rgba(16, 33, 30, 0.22);
  transform: rotate(3.5deg);
}

.window-topbar {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid rgba(210, 236, 219, 0.1);
  color: #a8bcb2;
  font-family: "Space Grotesk", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 5px;
  margin-right: auto;
}

.window-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5a7166;
}

.window-dots i:first-child {
  background: var(--coral);
}

.window-dots i:nth-child(2) {
  background: var(--yellow);
}

.window-badge {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 19px;
  margin-left: auto;
  border-radius: 5px;
  background: rgba(183, 232, 199, 0.13);
  color: var(--mint-bright);
  font-size: 9px;
  font-weight: 900;
}

.translation-line {
  display: flex;
  gap: 20px;
  min-height: 50px;
  align-items: center;
  padding: 0 22px;
  color: #d6e2da;
  font-family: "Space Grotesk", monospace;
  font-size: 13px;
}

.translation-line .line-number {
  width: 18px;
  color: #60786b;
  font-size: 10px;
  text-align: right;
}

.translation-line b {
  color: #edf5e9;
  font-weight: 600;
}

.muted-line {
  margin-top: 18px;
  color: #9db1a6;
}

.active-line {
  background: rgba(139, 224, 174, 0.09);
  border-left: 3px solid var(--mint-bright);
}

.active-line strong {
  color: var(--mint-bright);
  font-weight: 600;
}

.soft-code {
  color: #7f9a8a;
  font-size: 11px;
}

.window-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 12px 21px;
  color: #769082;
  font-family: "Space Grotesk", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tiny-signal {
  width: 5px;
  height: 5px;
  margin-right: 5px;
  box-shadow: none;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 26px rgba(16, 33, 30, 0.11);
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note small {
  display: block;
  line-height: 1.2;
}

.floating-note strong {
  font-size: 11px;
}

.floating-note small {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 9px;
}

.note-top {
  top: 14%;
  left: -3%;
}

.note-bottom {
  right: -2%;
  bottom: 8%;
}

.note-icon,
.note-star {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--mint-soft);
  color: var(--forest);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.note-star {
  background: #fff3c9;
  color: #aa7d14;
  font-size: 17px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-cell {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.metric-cell:first-child {
  padding-left: 0;
}

.metric-cell:last-child {
  border-right: 0;
}

.metric-label {
  margin-bottom: 3px;
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric-cell strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.metric-cell > span:last-child {
  color: var(--ink-muted);
  font-size: 10px;
}

.metric-action {
  align-items: flex-end;
  justify-content: center;
}

.metric-action a {
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
}

.metric-action a:hover {
  color: var(--coral);
}

.atlas-section {
  padding-top: 106px;
  padding-bottom: 108px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 34px;
}

.section-heading h2,
.principle-card h3,
.community-copy h2,
.compose-card h2,
.feed-heading h2,
.form-header h2,
.contact-aside-card h2 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.section-heading h2 {
  max-width: 560px;
  font-size: clamp(31px, 4vw, 47px);
}

.section-heading > p {
  max-width: 330px;
  margin: 0 0 3px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.atlas-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}

.search-field,
.feed-search {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  color: var(--ink-muted);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-field {
  width: min(100%, 315px);
  padding: 0 11px 0 15px;
}

.search-field:focus-within,
.feed-search:focus-within {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(35, 72, 60, 0.08);
}

.search-icon,
.feed-search > span {
  color: var(--forest);
  font-size: 21px;
  line-height: 0;
  transform: translateY(-1px);
}

.search-field input,
.feed-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}

.search-field input::placeholder,
.feed-search input::placeholder {
  color: #9aa7a1;
}

.search-field kbd {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink-muted);
  font-size: 10px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.filter-chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.translation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.translation-card {
  min-height: 185px;
  padding: 22px 22px 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.translation-card:hover {
  border-color: #a7c4b2;
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.translation-card.featured-card {
  border-color: #b4dbc1;
  background: var(--mint-soft);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-pill {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--paper-warm);
  color: var(--forest);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mint-pill {
  background: rgba(255, 255, 255, 0.64);
}

.card-index {
  color: #9aa9a1;
  font-family: "Space Grotesk", monospace;
  font-size: 10px;
}

.pair-row {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 13px;
}

.pair-row strong {
  color: var(--forest);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.pair-arrow {
  color: var(--coral);
  font-size: 16px;
}

.translation-card p {
  max-width: 260px;
  margin: 17px 0 0;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.55;
}

.atlas-empty {
  padding: 55px 20px;
  border: 1px dashed #b9cac0;
  border-radius: var(--radius-medium);
  text-align: center;
}

.atlas-empty > span {
  display: block;
  color: var(--coral);
  font-size: 28px;
  line-height: 1;
}

.atlas-empty strong {
  display: block;
  margin-top: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.atlas-empty p {
  margin: 4px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.principles-section {
  padding-bottom: 108px;
}

.compact-heading {
  margin-bottom: 25px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.principle-card {
  position: relative;
  min-height: 235px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--ink);
  color: var(--white);
}

.principle-card:nth-child(2) {
  background: var(--forest);
}

.principle-card:nth-child(3) {
  background: #d7eee0;
  color: var(--ink);
}

.principle-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: rgba(255, 255, 255, 0.38);
  font-family: "Space Grotesk", monospace;
  font-size: 10px;
}

.principle-card:nth-child(3) .principle-number {
  color: rgba(16, 33, 30, 0.37);
}

.principle-icon {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  margin-top: 31px;
  border-radius: 12px;
  background: rgba(183, 232, 199, 0.16);
  color: var(--mint-bright);
  font-size: 24px;
}

.principle-card:nth-child(2) .principle-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.principle-card:nth-child(3) .principle-icon {
  background: rgba(255, 255, 255, 0.62);
  color: var(--forest);
}

.principle-card h3 {
  margin-top: 22px;
  font-size: 21px;
}

.principle-card p {
  max-width: 250px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.65;
}

.principle-card:nth-child(3) p {
  color: var(--ink-soft);
}

.community-banner {
  min-height: 206px;
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 100px;
  padding: 32px 40px;
  border-radius: var(--radius-large);
  background: var(--forest);
  color: var(--white);
}

.community-mark {
  position: relative;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border: 1px solid rgba(183, 232, 199, 0.4);
  border-radius: 50%;
}

.community-mark span {
  position: absolute;
  color: var(--mint-bright);
  font-size: 14px;
}

.community-mark span:first-child {
  top: 12px;
  left: 34px;
}

.community-mark span:nth-child(2) {
  bottom: 15px;
  left: 14px;
  color: var(--coral);
}

.community-mark span:nth-child(3) {
  right: 12px;
  bottom: 27px;
  color: var(--yellow);
}

.community-copy {
  flex: 1;
}

.community-copy .eyebrow {
  color: var(--mint-bright);
}

.community-copy h2 {
  margin-top: 9px;
  font-size: 30px;
}

.community-copy p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1160px, calc(100% - 48px));
  min-height: 103px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand .brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 10px 10px 10px 3px;
  font-size: 8px;
}

.footer-brand .brand-name {
  font-size: 16px;
}

.footer-inner > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 11px;
}

.footer-inner > p span {
  color: var(--coral);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ink);
}

.subpage-hero {
  min-height: 328px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 62px;
  padding-bottom: 58px;
}

.subpage-hero h1 {
  max-width: 650px;
  margin-bottom: 14px;
  font-size: clamp(45px, 6vw, 70px);
}

.subpage-hero p {
  max-width: 545px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.subpage-stat {
  min-width: 145px;
  padding: 22px;
  border-left: 1px solid var(--line);
  color: var(--ink-muted);
}

.subpage-stat strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
}

.subpage-stat > span:last-child {
  display: block;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-orbit {
  color: var(--coral);
  font-size: 22px;
}

.comments-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 65px;
  padding-bottom: 104px;
}

.compose-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.compose-card h2 {
  font-size: 28px;
}

.compose-intro {
  margin: 10px 0 25px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.65;
}

.field-group {
  margin-top: 17px;
}

.field-group:first-child {
  margin-top: 0;
}

.field-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.field-group label span,
.form-header p span {
  color: var(--coral);
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field-group input,
.field-group select {
  height: 45px;
  padding: 0 13px;
}

.field-group textarea {
  min-height: 120px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.55;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(35, 72, 60, 0.08);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #a2ada7;
}

.field-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
  color: var(--ink-muted);
  font-size: 9px;
}

.reply-context {
  min-height: 33px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--mint-soft);
  color: var(--forest);
  font-size: 10px;
}

.reply-context-icon {
  font-size: 16px;
}

.reply-context button {
  width: 20px;
  height: 20px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(35, 72, 60, 0.1);
  color: var(--forest);
  line-height: 1;
}

.reply-context button:hover {
  background: var(--forest);
  color: var(--white);
}

.compose-card .button {
  margin-top: 20px;
}

.form-status {
  min-height: 20px;
  margin: 11px 0 0;
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.5;
}

.form-status.success {
  color: #287044;
}

.form-status.error {
  color: #bb4e3d;
}

.form-status.pending {
  color: var(--forest);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.63;
  transform: none;
}

.side-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 20px 8px 0;
  color: var(--ink-muted);
}

.side-note-mark {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  border: 1px solid #b7cec0;
  border-radius: 50%;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.side-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

.side-note strong {
  color: var(--ink-soft);
}

.feed-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.feed-heading h2 {
  font-size: 34px;
}

.refresh-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-size: 10px;
  font-weight: 900;
}

.refresh-button > span:first-child {
  font-size: 18px;
  transition: transform 300ms ease;
}

.refresh-button:hover > span:first-child {
  transform: rotate(180deg);
}

.feed-toolbar {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
}

.feed-search {
  flex: 1;
  padding: 0 12px;
}

.sort-select {
  position: relative;
  flex-shrink: 0;
}

.sort-select select {
  height: 44px;
  padding: 0 30px 0 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
}

.feed-status {
  min-height: 18px;
  margin: 0 0 10px;
  color: var(--ink-muted);
  font-size: 10px;
}

.comments-list {
  display: grid;
  gap: 10px;
}

.loading-state,
.empty-state,
.error-state {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border: 1px dashed #c6d4ca;
  border-radius: var(--radius-medium);
  text-align: center;
}

.loading-state strong,
.empty-state strong,
.error-state strong {
  margin-top: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}

.loading-state > span:last-child,
.empty-state p,
.error-state p {
  max-width: 300px;
  margin: 3px 0 0;
  color: var(--ink-muted);
  font-size: 11px;
}

.loading-spinner {
  width: 25px;
  height: 25px;
  border: 2px solid var(--mint-soft);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: spin 850ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.retry-button {
  margin-top: 15px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--forest);
  font-size: 10px;
  font-weight: 900;
}

.retry-button:hover {
  border-color: var(--forest);
  background: var(--mint-soft);
}

.comment-card {
  position: relative;
  padding: 21px 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.comment-card:hover {
  border-color: #b5cdbd;
  box-shadow: 0 8px 22px rgba(16, 33, 30, 0.05);
}

.comment-card.comment-reply {
  margin-top: 9px;
  border-color: #cae1d0;
  background: #f0f8f1;
}

.comment-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 11px 11px 11px 3px;
  background: var(--ink);
  color: var(--mint-bright);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.comment-card:nth-child(3n) .comment-avatar {
  background: var(--coral);
  color: var(--white);
}

.comment-card:nth-child(3n + 1) .comment-avatar {
  background: var(--forest);
  color: var(--mint-bright);
}

.comment-author {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.comment-date {
  margin-left: 3px;
  color: var(--ink-muted);
  font-size: 9px;
}

.comment-body {
  margin: 15px 0 14px 42px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 42px;
}

.comment-action {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-size: 9px;
  font-weight: 900;
}

.comment-action:hover {
  color: var(--coral);
}

.comment-replies {
  margin: 16px 0 0 29px;
  padding-left: 12px;
  border-left: 1px solid #c7ddd0;
}

.comment-replies .comment-body,
.comment-replies .comment-actions {
  margin-left: 42px;
}

.modal-backdrop {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 33, 30, 0.62);
  backdrop-filter: blur(5px);
}

.detail-modal {
  width: min(100%, 510px);
  max-height: min(600px, calc(100vh - 40px));
  overflow: auto;
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 28px 20px;
  border-bottom: 1px solid var(--line);
}

.modal-head h2 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  letter-spacing: -0.06em;
}

.modal-close {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1;
}

.modal-close:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.modal-body {
  padding: 26px 28px 30px;
}

.modal-note-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-note-author strong {
  display: block;
  font-size: 12px;
}

.modal-note-author span {
  display: block;
  color: var(--ink-muted);
  font-size: 9px;
}

.modal-note-body {
  margin: 23px 0 0;
  padding: 18px;
  border-radius: 13px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.modal-note-context {
  margin: 15px 0 0;
  color: var(--ink-muted);
  font-size: 10px;
}

.modal-loading {
  padding: 24px 0;
  color: var(--ink-muted);
  font-size: 12px;
  text-align: center;
}

.contact-hero {
  min-height: 342px;
}

.contact-orbit {
  position: relative;
  width: 205px;
  height: 205px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--mint-soft);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(35, 72, 60, 0.22);
  border-radius: 50%;
}

.ring-one {
  inset: 22px;
}

.ring-two {
  inset: 50px;
  border-color: rgba(242, 142, 117, 0.4);
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-one {
  top: 32px;
  right: 37px;
  background: var(--coral);
}

.dot-two {
  bottom: 35px;
  left: 39px;
  background: var(--forest);
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--mint-bright);
  font-size: 24px;
  transform: translate(-50%, -50%) rotate(-8deg);
  box-shadow: 8px 13px 20px rgba(16, 33, 30, 0.18);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: 65px;
  padding-bottom: 110px;
}

.contact-form-wrap {
  padding: 31px 34px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-header {
  margin-bottom: 27px;
}

.form-header h2 {
  font-size: 32px;
}

.form-header p {
  margin: 9px 0 0;
  color: var(--ink-muted);
  font-size: 11px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form .field-group {
  margin-top: 19px;
}

.contact-form .form-row .field-group {
  margin-top: 0;
}

.contact-form .button {
  margin-top: 23px;
}

.contact-aside {
  padding-top: 19px;
}

.contact-aside-card {
  padding: 28px;
  border-radius: var(--radius-large);
  background: var(--forest);
  color: var(--white);
}

.aside-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(183, 232, 199, 0.13);
  color: var(--mint-bright);
  font-size: 18px;
}

.contact-aside-card h2 {
  margin-top: 21px;
  font-size: 26px;
}

.choice-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 25px;
}

.choice-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(183, 232, 199, 0.14);
  color: var(--mint-bright);
  font-size: 18px;
}

.private-choice {
  background: rgba(242, 142, 117, 0.15);
  color: #ffad98;
}

.choice-row strong {
  display: block;
  font-size: 12px;
}

.choice-row p {
  max-width: 210px;
  margin: 3px 0 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.55;
}

.choice-row a,
.choice-current {
  color: var(--mint-bright);
  font-size: 9px;
  font-weight: 900;
}

.choice-current {
  color: #ffad98;
}

.choice-divider {
  height: 1px;
  margin: 22px 0 0 43px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-quote {
  position: relative;
  margin: 36px 12px 0;
  padding-left: 22px;
}

.contact-quote > span {
  position: absolute;
  top: -20px;
  left: 0;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 49px;
  line-height: 1;
}

.contact-quote p {
  margin: 0;
  color: var(--ink-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

@media (max-width: 960px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.85fr);
    gap: 35px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 6vw, 67px);
  }

  .translation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comments-layout,
  .contact-layout {
    gap: 35px;
  }
}

@media (max-width: 760px) {
  .page-width,
  .announcement-inner,
  .header-inner,
  .footer-inner {
    width: min(100% - 32px, 580px);
  }

  .announcement-inner {
    justify-content: flex-start;
    padding: 8px 0;
    line-height: 1.35;
  }

  .announcement-inner a {
    margin-left: auto;
    text-align: right;
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav a {
    padding: 12px 13px;
  }

  .primary-nav a.active::after {
    right: auto;
    bottom: 10px;
    left: 4px;
    width: 3px;
    height: 18px;
  }

  .primary-nav .nav-contact {
    margin: 5px 0 0;
    justify-content: center;
  }

  .hero-section {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 61px;
    padding-bottom: 58px;
  }

  .hero-copy h1 {
    max-width: 540px;
    margin-top: 16px;
    font-size: clamp(47px, 13vw, 73px);
  }

  .hero-visual {
    min-height: 325px;
  }

  .translation-window {
    width: min(100% - 32px, 435px);
  }

  .note-top {
    left: 0;
  }

  .note-bottom {
    right: 0;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-cell,
  .metric-cell:first-child {
    min-height: 92px;
    padding: 17px 14px;
  }

  .metric-cell:nth-child(2) {
    border-right: 0;
  }

  .metric-cell:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .metric-action {
    align-items: flex-start;
  }

  .atlas-section,
  .principles-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .section-heading {
    display: block;
    margin-bottom: 25px;
  }

  .section-heading > p {
    margin-top: 13px;
  }

  .atlas-toolbar {
    display: block;
  }

  .search-field {
    width: 100%;
  }

  .filter-row {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 205px;
  }

  .community-banner {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 70px;
    padding: 27px;
  }

  .community-mark {
    width: 62px;
    height: 62px;
  }

  .community-mark span:first-child {
    top: 8px;
    left: 25px;
  }

  .community-mark span:nth-child(2) {
    bottom: 10px;
    left: 10px;
  }

  .community-mark span:nth-child(3) {
    right: 8px;
    bottom: 20px;
  }

  .community-copy {
    min-width: calc(100% - 85px);
  }

  .community-copy h2 {
    font-size: 25px;
  }

  .community-banner .button {
    width: 100%;
  }

  .footer-inner {
    min-height: 150px;
    flex-wrap: wrap;
    align-content: center;
    padding: 24px 0;
  }

  .footer-inner > p {
    order: 3;
    width: 100%;
  }

  .subpage-hero {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    padding-top: 58px;
    padding-bottom: 50px;
  }

  .subpage-hero h1 {
    margin-top: 16px;
    font-size: clamp(45px, 12vw, 68px);
  }

  .subpage-stat {
    min-width: 100%;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .comments-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 75px;
  }

  .comment-feed-column {
    min-width: 0;
  }

  .contact-orbit {
    align-self: center;
    width: 160px;
    height: 160px;
  }

  .contact-layout {
    gap: 46px;
  }

  .contact-aside {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .page-width,
  .announcement-inner,
  .header-inner,
  .footer-inner {
    width: min(100% - 26px, 580px);
  }

  .announcement {
    font-size: 10px;
  }

  .announcement-inner a {
    max-width: 105px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    display: block;
    line-height: 2;
  }

  .meta-divider {
    display: none;
  }

  .hero-visual {
    min-height: 300px;
  }

  .translation-window {
    min-height: 245px;
  }

  .window-topbar {
    height: 40px;
  }

  .translation-line {
    min-height: 43px;
    gap: 10px;
    padding-inline: 14px;
    font-size: 11px;
  }

  .note-top {
    top: 2%;
    left: -1%;
  }

  .note-bottom {
    right: -1%;
    bottom: 1%;
  }

  .floating-note {
    padding: 8px 10px;
  }

  .note-icon,
  .note-star {
    width: 27px;
    height: 27px;
  }

  .floating-note strong {
    font-size: 9px;
  }

  .floating-note small {
    font-size: 8px;
  }

  .metric-cell strong {
    font-size: 18px;
  }

  .translation-grid {
    grid-template-columns: 1fr;
  }

  .translation-card {
    min-height: 160px;
  }

  .compose-card,
  .contact-form-wrap {
    padding: 23px 19px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form .form-row .field-group {
    margin-top: 19px;
  }

  .contact-form .form-row .field-group:first-child {
    margin-top: 0;
  }

  .feed-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sort-select select {
    width: 100%;
  }

  .feed-heading h2 {
    font-size: 30px;
  }

  .comment-card {
    padding: 17px 15px 15px;
  }

  .comment-body,
  .comment-actions {
    margin-left: 0;
  }

  .comment-replies {
    margin-left: 12px;
  }

  .comment-replies .comment-body,
  .comment-replies .comment-actions {
    margin-left: 0;
  }

  .modal-head,
  .modal-body {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-inner {
    gap: 13px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}