:root {
  --ink: #11110f;
  --paper: #f3f0e7;
  --white: #fffefa;
  --blue: #165dff;
  --blue-dark: #0d41bb;
  --yellow: #ffd84d;
  --red: #ee493c;
  --muted: #68665f;
  --line: #171714;
  --shadow: 6px 6px 0 var(--ink);
  --display: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(#11110f14 0.8px, transparent 0.8px);
  background-size: 10px 10px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
svg { display: block; }

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 2px solid #343434;
  color: #d4d4d4;
  background: rgba(17, 17, 15, 0.97);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 3vw, 37px);
  line-height: 1;
  letter-spacing: -1.8px;
  text-decoration: none;
}

.site-header .brand { color: #f4f4f2; }

.brand-blue { color: var(--blue); }
.brand sup { margin: -2px 0 0 3px; font: 700 8px/1 Arial, sans-serif; letter-spacing: 0; }

.icon-nav { display: flex; align-items: center; gap: 7px; }
.icon-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid transparent;
  color: #bdbdbb;
  transition: transform 140ms ease, color 140ms ease, background 140ms ease;
}
.icon-link:hover, .icon-link:focus-visible, .icon-link.active {
  color: #ffffff;
  background: #272725;
  border-color: #767672;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 2px 2px 0 #6a6a66;
}
.icon-link svg { width: 21px; height: 21px; fill: currentColor; }
.icon-link svg.stroke-icon { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.platform-logo { display: block; width: 23px; height: 23px; object-fit: contain; filter: grayscale(1) brightness(2.1); }
.pump-logo { width: 24px; height: 24px; }
.dex-logo { width: 27px; height: 27px; clip-path: inset(5%); }

main { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

.intro-shell { padding: 74px 0 42px; }
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #18a95b; box-shadow: 0 0 0 4px #18a95b25; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, 0.75fr); gap: 45px; align-items: end; margin-top: 25px; }
.intro-grid h1, .how-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-stretch: condensed;
  font-weight: 800;
}
.hero-line { display: block; white-space: nowrap; }
.intro-grid h1 .hero-blue, .how-hero h1 span { color: var(--blue); }
.intro-copy { margin: 0 0 4px; font-size: 16px; font-weight: 700; line-height: 1.5; }

.composer-card {
  position: relative;
  padding: 30px;
  border: 2px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.composer-card::before {
  content: "OPEN CALL";
  position: absolute;
  top: -13px;
  right: 34px;
  padding: 6px 12px;
  border: 2px solid var(--line);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  transform: rotate(1.5deg);
}
.composer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.composer-head h2, .section-heading h2, .admin-heading h1 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-stretch: condensed;
  font-weight: 800;
}
.proof-stamp {
  padding: 8px 12px;
  border: 3px double var(--blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  transform: rotate(4deg);
}

#post-body {
  width: 100%;
  min-height: 150px;
  padding: 20px;
  border: 2px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #f8f6ef;
  resize: vertical;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
  outline: none;
}
#post-body:focus, .field-wrap input:focus, .admin-field input:focus { border-color: var(--blue); box-shadow: inset 0 -3px 0 var(--blue); }
#post-body::placeholder, input::placeholder { color: #87847a; opacity: 1; }
.character-line { display: flex; justify-content: space-between; gap: 20px; padding: 8px 2px 18px; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: 0.03em; }

.composer-row { display: grid; grid-template-columns: 1.1fr 0.9fr auto; gap: 12px; align-items: stretch; }
.field-wrap, .admin-field { display: flex; flex-direction: column; gap: 7px; font-size: 10px; font-weight: 900; letter-spacing: 0.12em; }
.field-wrap input, .admin-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 2px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  outline: none;
}
.post-button, .admin-button {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--line);
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.post-button:hover, .admin-button:hover { background: var(--blue-dark); transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.post-button:active, .admin-button:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.post-button:disabled, .admin-button:disabled { cursor: wait; opacity: 0.65; }
.post-button svg { width: 21px; height: 21px; fill: currentColor; }
.form-foot { display: flex; justify-content: space-between; gap: 20px; margin-top: 16px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: 0.08em; }
.form-message { min-height: 20px; margin-top: 10px; color: var(--blue); font-size: 12px; font-weight: 900; }
.form-message.error { color: #c62119; }
.form-message.success { color: #087c3f; }

.content-section { padding-top: 88px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 22px; padding-bottom: 15px; border-bottom: 2px solid var(--line); }
.heading-note { max-width: 290px; color: var(--muted); font-size: 10px; font-weight: 900; line-height: 1.45; letter-spacing: 0.09em; text-align: right; }

.top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.top-card {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1;
  min-width: 0;
  padding: 20px;
  border: 2px solid var(--line);
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.top-card:nth-child(2n) { background: #e8efff; }
.top-card:nth-child(3n) { background: #fff4b7; }
.top-card:hover, .top-card:focus-visible { outline: none; transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.top-rank { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 950; letter-spacing: 0.08em; }
.top-rank strong { display: grid; place-items: center; min-width: 38px; height: 28px; padding: 0 7px; color: white; background: var(--blue); }
.top-body {
  display: -webkit-box;
  margin: 18px 0 16px;
  overflow: hidden;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
.top-stats { display: flex; gap: 14px; margin-top: auto; font-size: 11px; font-weight: 950; }
.top-stats .positive { color: var(--blue); }

.wall-section { padding-bottom: 95px; }
.wall-status { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 950; letter-spacing: 0.1em; }
.wall-status i { width: 9px; height: 9px; border-radius: 50%; background: #16a85b; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 #16a85b55; } 50% { box-shadow: 0 0 0 7px transparent; } }

.feed { display: grid; gap: 14px; }
.feed-post {
  position: relative;
  padding: 23px 24px 19px;
  border: 2px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease;
}
.feed-post:hover { transform: translateX(4px); border-left: 7px solid var(--blue); }
.post-meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 15px; }
.post-id { display: inline-flex; align-items: center; min-height: 27px; padding: 0 9px; color: white; background: var(--ink); font-size: 11px; font-weight: 950; letter-spacing: 0.08em; }
.post-time { color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.post-body { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; font-size: 17px; font-weight: 700; line-height: 1.55; }
.read-more { color: var(--blue); font-weight: 950; }
.post-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; padding-top: 15px; border-top: 1px solid #c9c6bc; }
.post-links { display: flex; min-width: 0; align-items: center; gap: 9px; }
.wallet-chip, .social-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  height: 31px;
  padding: 0 10px;
  border: 1.5px solid var(--line);
  background: #f3f0e7;
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
}
.wallet-chip { max-width: 230px; }
.wallet-chip span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wallet-chip svg, .social-chip svg { flex: 0 0 auto; width: 14px; height: 14px; fill: currentColor; }
.social-chip:hover { color: white; background: var(--blue); }
.vote-group { display: flex; align-items: center; gap: 7px; }
.vote-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 10px;
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}
.vote-button svg { width: 15px; height: 15px; fill: currentColor; }
.vote-button:hover, .vote-button.active.like { color: white; background: var(--blue); }
.vote-button.active.dislike { color: white; background: var(--red); }
.vote-button:disabled { opacity: 0.55; cursor: wait; }

.empty-state {
  padding: 55px 30px;
  border: 2px dashed var(--line);
  text-align: center;
  background: #fffefa80;
}
.empty-state strong { display: block; font-family: var(--display); font-size: 34px; font-weight: 800; letter-spacing: 0; }
.empty-state span { display: block; margin-top: 8px; color: var(--muted); font-weight: 700; }
.loading-card { min-height: 180px; border: 2px solid var(--line); background: linear-gradient(100deg, #ebe7dc 30%, #fffefa 50%, #ebe7dc 70%); background-size: 300% 100%; animation: loading 1.2s infinite; }
@keyframes loading { to { background-position: -150% 0; } }
.load-more { display: block; margin: 22px auto 0; padding: 14px 20px; border: 2px solid var(--line); background: var(--yellow); font-size: 11px; font-weight: 950; letter-spacing: 0.08em; cursor: pointer; box-shadow: 3px 3px 0 var(--ink); }

.post-dialog {
  width: min(680px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  margin: auto;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
  overflow: auto;
}
.post-dialog::backdrop { background: #11110fd1; backdrop-filter: blur(3px); }
.dialog-close { position: sticky; top: 12px; z-index: 2; float: right; display: grid; place-items: center; width: 42px; height: 42px; margin: 12px 12px 0 0; border: 2px solid var(--line); background: var(--yellow); font-size: 30px; font-weight: 800; line-height: 1; cursor: pointer; }
.dialog-inner { padding: 34px 34px 30px; clear: both; }
.dialog-label { color: var(--blue); font-size: 11px; font-weight: 950; letter-spacing: 0.12em; }
.dialog-inner h2 { margin: 9px 0 25px; font-family: var(--display); font-size: 45px; font-weight: 800; line-height: 1.05; letter-spacing: -0.035em; }
.dialog-body { white-space: pre-wrap; overflow-wrap: anywhere; font-size: 19px; font-weight: 700; line-height: 1.6; }
.dialog-details { display: grid; gap: 11px; margin-top: 28px; padding-top: 20px; border-top: 2px solid var(--line); }
.detail-row { min-width: 0; }
.detail-row > span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 9px; font-weight: 950; letter-spacing: 0.12em; }
.detail-action { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-width: 0; padding: 12px; border: 1.5px solid var(--line); background: #f3f0e7; }
.detail-action code, .detail-action a { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; font-weight: 750; }
.detail-action a { color: var(--blue); }
.copy-button { flex: 0 0 auto; padding: 7px 10px; border: 1.5px solid var(--line); background: var(--white); font-size: 9px; font-weight: 950; cursor: pointer; }
.dialog-votes { margin-top: 20px; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  border-top: 2px solid var(--line);
  color: white;
  background: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
footer a { color: #8eaefb; text-decoration: none; }

.paper-main { padding: 68px 0 100px; }
.paper-hero { border-bottom: 2px solid var(--line); }
.paper-hero > div:first-child { display: grid; grid-template-columns: 1fr; gap: 18px; }
.paper-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(64px, 10vw, 132px); font-weight: 800; font-stretch: condensed; line-height: 0.84; letter-spacing: -0.06em; }
.paper-hero h1 span { color: var(--blue); }
.paper-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: end; margin: 44px 0 35px; }
.paper-summary strong { max-width: 620px; font-size: clamp(22px, 3vw, 40px); line-height: 1.08; letter-spacing: -0.025em; }
.paper-summary p { margin: 0; font-size: 16px; font-weight: 700; line-height: 1.55; }
.paper-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 55px; align-items: start; padding-top: 60px; }
.paper-index { position: sticky; top: 102px; display: grid; border-top: 2px solid var(--line); }
.paper-index > span { padding: 14px 0; color: var(--muted); font-size: 9px; font-weight: 950; letter-spacing: 0.14em; }
.paper-index a { padding: 12px 0; border-top: 1px solid #b7b3a8; font-size: 10px; font-weight: 900; letter-spacing: 0.06em; text-decoration: none; }
.paper-index a:hover { color: var(--blue); padding-left: 5px; }
.paper-document { border-top: 2px solid var(--line); }
.paper-section { scroll-margin-top: 95px; display: grid; grid-template-columns: 55px minmax(0, 1fr); gap: 24px; padding: 38px 0 42px; border-bottom: 2px solid var(--line); }
.paper-number { display: grid; place-items: center; align-self: start; width: 45px; height: 32px; border: 2px solid var(--line); background: var(--white); font-size: 10px; font-weight: 950; }
.paper-section h2 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(29px, 4vw, 46px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.paper-section p { max-width: 760px; margin: 0; font-size: 15px; font-weight: 650; line-height: 1.72; }
.paper-section p + p { margin-top: 15px; }
.paper-highlight { margin: 0 -22px; padding: 38px 22px 42px; background: #dfe8ff; border: 2px solid var(--line); box-shadow: 5px 5px 0 var(--ink); }
.paper-rule { display: grid; grid-template-columns: 110px 1fr; margin: 20px 0; border: 2px solid var(--line); background: var(--yellow); }
.paper-rule b, .paper-rule span { padding: 12px; font-size: 11px; line-height: 1.35; }
.paper-rule b { border-right: 2px solid var(--line); letter-spacing: 0.08em; }
.paper-rule span { font-weight: 800; }
.paper-footer-card { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-top: 60px; padding: 32px; border: 2px solid var(--line); color: white; background: var(--ink); }
.paper-footer-card div { display: grid; gap: 9px; }
.paper-footer-card span { color: #aaa; font-size: 9px; font-weight: 900; letter-spacing: 0.13em; }
.paper-footer-card strong { color: var(--yellow); font-size: clamp(20px, 3vw, 34px); line-height: 1.05; }
.how-hero { display: grid; grid-template-columns: 1.45fr 0.55fr; gap: 30px 55px; align-items: end; padding-bottom: 60px; }
.how-hero .section-kicker { grid-column: 1 / -1; }
.how-hero h1 { font-size: clamp(66px, 11vw, 145px); line-height: 0.9; }
.how-hero p { margin: 0; font-size: 17px; font-weight: 750; line-height: 1.55; }
.how-hero p + p { margin-top: -15px; color: var(--blue); font-size: 22px; font-weight: 900; }
.how-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 2px solid var(--line); border-left: 2px solid var(--line); }
.how-card { min-height: 310px; padding: 30px; border-right: 2px solid var(--line); border-bottom: 2px solid var(--line); background: var(--white); }
.how-card.blue-card { color: white; background: var(--blue); }
.how-card.yellow-card { background: var(--yellow); }
.how-card.red-card { color: white; background: var(--red); }
.how-card.reward-card { background: #dfe8ff; }
.how-number { display: inline-grid; place-items: center; width: 45px; height: 33px; border: 2px solid currentColor; font-size: 12px; font-weight: 950; }
.how-card h2 { max-width: 430px; margin: 45px 0 16px; font-family: var(--display); font-size: 32px; font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; }
.how-card p { max-width: 500px; margin: 0; font-size: 15px; font-weight: 700; line-height: 1.55; }
.fine-print { margin-top: 55px; padding: 35px; border: 2px solid var(--line); background: var(--ink); color: white; }
.fine-print h2 { margin: 0 0 14px; color: var(--yellow); font-family: var(--display); font-size: 34px; font-weight: 800; line-height: 1.08; }
.fine-print p { max-width: 850px; margin: 0; line-height: 1.65; font-weight: 650; }
.back-button { display: inline-block; margin-top: 25px; padding: 14px 18px; border: 2px solid white; color: var(--ink); background: var(--yellow); font-size: 11px; font-weight: 950; letter-spacing: 0.08em; text-decoration: none; box-shadow: 4px 4px 0 white; }

.admin-body { min-height: 100vh; background: #141413; }
.admin-main { width: min(980px, calc(100% - 36px)); padding: 44px 0 80px; }
.admin-brand { color: white; margin-bottom: 45px; }
.admin-card { position: relative; padding: 28px; border: 2px solid var(--line); background: var(--white); box-shadow: 5px 5px 0 #5f78ad; }
.login-card { width: min(460px, 100%); margin: 25px auto 0; }
.login-card h1 { margin: 8px 0 28px; font-family: var(--display); font-size: 60px; font-weight: 800; line-height: 1; }
.admin-field { margin-top: 17px; }
.admin-button { width: 100%; margin-top: 20px; }
.admin-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; color: white; }
.admin-heading h1 { font-size: 65px; }
.ghost-button { padding: 11px 15px; border: 1.5px solid white; color: white; background: transparent; font-size: 10px; font-weight: 900; letter-spacing: 0.08em; cursor: pointer; }
.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.admin-grid .admin-card:last-child { grid-column: 1 / -1; }
.admin-card-number { color: var(--blue); font-size: 11px; font-weight: 950; letter-spacing: 0.1em; }
.admin-card h2 { margin: 8px 0 12px; font-family: var(--display); font-size: 32px; font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.admin-card > p { margin: 0 0 8px; color: var(--muted); font-size: 13px; font-weight: 650; line-height: 1.5; }
.danger-admin-card { box-shadow: 5px 5px 0 var(--red); }
.danger-button { background: var(--red); }
.danger-button:hover { background: #be2c25; }

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 22px; }
  .intro-copy { max-width: 560px; }
  .composer-row { grid-template-columns: 1fr 1fr; }
  .post-button { grid-column: 1 / -1; }
  .top-grid { grid-template-columns: repeat(2, 1fr); }
  .how-hero { grid-template-columns: 1fr; }
  .how-hero .section-kicker { grid-column: auto; }
  .how-hero p + p { margin-top: 0; }
  .paper-layout { grid-template-columns: 1fr; gap: 25px; }
  .paper-index { position: static; grid-template-columns: repeat(2, 1fr); }
  .paper-index > span { grid-column: 1 / -1; }
  .paper-index a { padding-right: 12px; }
}

@media (max-width: 620px) {
  .site-header { height: 62px; padding: 0 14px; }
  .icon-nav { gap: 1px; }
  .icon-link { width: 35px; height: 35px; }
  .icon-link svg { width: 18px; height: 18px; }
  main { width: min(100% - 24px, 1180px); }
  .intro-shell { padding: 48px 0 28px; }
  .intro-grid h1 { font-size: clamp(27px, 8.2vw, 46px); }
  .intro-copy { font-size: 14px; }
  .composer-card { padding: 20px 16px; box-shadow: 4px 4px 0 var(--ink); }
  .proof-stamp { display: none; }
  #post-body { min-height: 170px; padding: 15px; font-size: 16px; }
  .character-line span { display: none; }
  .character-line { justify-content: flex-end; }
  .composer-row { grid-template-columns: 1fr; }
  .post-button { grid-column: auto; }
  .form-foot { flex-direction: column; gap: 6px; }
  .content-section { padding-top: 62px; }
  .section-heading { align-items: flex-start; }
  .heading-note { display: none; }
  .top-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .top-card { padding: 14px; }
  .top-body { margin-top: 12px; font-size: 14px; -webkit-line-clamp: 5; }
  .top-stats { gap: 8px; font-size: 9px; }
  .feed-post { padding: 18px 15px; }
  .feed-post:hover { transform: none; border-left: 2px solid var(--line); }
  .post-body { font-size: 15px; }
  .post-bottom { align-items: flex-end; }
  .post-links { flex-direction: column; align-items: flex-start; }
  .wallet-chip { max-width: 170px; }
  .dialog-inner { padding: 23px 18px 24px; }
  .dialog-inner h2 { font-size: 40px; }
  .dialog-body { font-size: 16px; }
  footer { flex-wrap: wrap; padding: 18px 14px; }
  .paper-main { padding-top: 45px; }
  .paper-hero h1 { font-size: clamp(53px, 19vw, 88px); }
  .paper-summary { grid-template-columns: 1fr; margin-top: 30px; }
  
  .paper-layout { padding-top: 38px; }
  .paper-index { grid-template-columns: 1fr; }
  .paper-index > span { grid-column: auto; }
  .paper-section { grid-template-columns: 42px minmax(0, 1fr); gap: 13px; padding: 30px 0 34px; }
  .paper-number { width: 38px; }
  .paper-highlight { margin: 0 -8px; padding: 30px 8px 34px; box-shadow: 3px 3px 0 var(--ink); }
  .paper-rule { grid-template-columns: 1fr; }
  .paper-rule b { border-right: 0; border-bottom: 2px solid var(--line); }
  .paper-footer-card { align-items: flex-start; flex-direction: column; padding: 24px 20px; }
  .how-hero { padding-bottom: 40px; gap: 21px; }
  .how-hero h1 { font-size: clamp(68px, 23vw, 105px); }
  .how-grid { grid-template-columns: 1fr; }
  .how-card { min-height: 280px; padding: 23px; }
  .how-card h2 { margin-top: 38px; font-size: 30px; }
  .fine-print { padding: 24px 20px; }
  .admin-main { padding-top: 28px; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-grid .admin-card:last-child { grid-column: auto; }
  .admin-heading { align-items: flex-start; }
  .admin-heading h1 { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* BEGWORK TEXT NAV PATCH START */

.site-header {
  gap: 18px;
}

.text-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.text-nav::-webkit-scrollbar {
  display: none;
}

.nav-text {
  flex: 0 0 auto;
  padding: 11px 13px;
  border: 1.5px solid transparent;
  color: #bdbdbb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: none;
  transition: color 140ms ease, background 140ms ease, border-color 140ms ease;
}

.nav-text:hover,
.nav-text:focus-visible,
.nav-text.active {
  color: #ffffff;
  background: #272725;
  border-color: #767672;
  outline: none;
}

/* Only shrink the first hero line. TRY BEGWORK stays unchanged. */

@media (max-width: 620px) {
  .text-nav {
    justify-content: flex-start;
  }

  .nav-text {
    padding: 9px 8px;
    font-size: 9px;
  }
}

/* BEGWORK TEXT NAV PATCH END */


/* BEGWORK mission start */
.intro-grid h1 .hero-line:first-child {
  font-size: 0.62em;
  letter-spacing: -0.035em;
}

.paper-origin {
  margin-bottom: 0;
  padding: 30px;
  border: 2px solid var(--line);
  color: white;
  background: var(--blue);
  box-shadow: 7px 7px 0 var(--ink);
}

.paper-origin-label {
  display: block;
  margin-bottom: 18px;
  color: #cbd8ff;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.paper-origin-asks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 28px;
}

.paper-origin-asks span {
  padding: 8px 11px;
  border: 2px solid white;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
  transform: rotate(-1deg);
}

.paper-origin-asks span:nth-child(2) {
  transform: rotate(1deg);
}

.paper-origin-copy {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(35px, 7vw, 95px);
  align-items: start;
}

.paper-origin-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.paper-origin-copy p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.62;
}

.paper-origin-copy strong {
  color: var(--yellow);
}

.paper-origin-close {
  display: block;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #8aa7ed;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

@media (max-width: 620px) {
  .paper-origin {
    padding: 22px 18px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .paper-origin-copy {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .paper-origin-copy h2 {
    max-width: 360px;
  }
}
/* BEGWORK mission end */


.paper-origin-story {
  display: grid;
  gap: 16px;
  max-width: 650px;
}

@media (max-width: 620px) {
  .paper-origin-copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .paper-origin-story {
    max-width: none;
  }
}


/* FORCED BEGWORK COLUMN START */
#why-begwork .paper-origin-asks {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 9px !important;
}

#why-begwork .paper-origin-copy {
  display: grid !important;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr) !important;
  gap: clamp(35px, 7vw, 95px) !important;
  align-items: start !important;
}

#why-begwork .paper-origin-story {
  grid-column: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 650px !important;
}

#why-begwork .paper-origin-story > p {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

@media (max-width: 620px) {
  #why-begwork .paper-origin-copy {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  #why-begwork .paper-origin-story {
    grid-column: 1 !important;
    max-width: none !important;
  }
}
/* FORCED BEGWORK COLUMN END */





/* SMALL HEADLINE FIX START */
#why-begwork .paper-origin-copy h2 {
  font-size: clamp(32px, 3.4vw, 44px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.03em !important;
  white-space: normal !important;
  overflow: visible !important;
}
/* SMALL HEADLINE FIX END */
